2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-02-05 13:40:41 +01:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-02-05 13:40:41 +01:00
|
|
|
// 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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2016-02-05 13:40:41 +01:00
|
|
|
// 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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-02-05 13:40:41 +01:00
|
|
|
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::H256;
|
2018-03-29 11:19:45 +02:00
|
|
|
use ethkey::{Generator, KeyPair, Random, Secret};
|
2017-08-30 17:14:52 +02:00
|
|
|
use hash::keccak;
|
2016-10-30 09:56:34 +01:00
|
|
|
use mio::{deprecated::EventLoop, tcp::*, udp::*, *};
|
2018-03-29 11:19:45 +02:00
|
|
|
use rlp::{Encodable, RlpStream};
|
2018-03-09 11:26:40 +01:00
|
|
|
use std::{
|
|
|
|
cmp::{max, min},
|
2016-06-21 13:56:33 +02:00
|
|
|
collections::{HashMap, HashSet},
|
2020-08-05 06:08:03 +02:00
|
|
|
fs,
|
2018-03-29 11:19:45 +02:00
|
|
|
io::{self, Read, Write},
|
2016-10-31 19:58:47 +01:00
|
|
|
net::{Ipv4Addr, SocketAddr, SocketAddrV4},
|
2020-08-05 06:08:03 +02:00
|
|
|
ops::*,
|
2016-02-15 18:36:34 +01:00
|
|
|
path::{Path, PathBuf},
|
2016-06-21 13:56:33 +02:00
|
|
|
str::FromStr,
|
2020-08-05 06:08:03 +02:00
|
|
|
sync::{
|
2018-03-09 11:26:40 +01:00
|
|
|
atomic::{AtomicBool, Ordering as AtomicOrdering},
|
2020-08-05 06:08:03 +02:00
|
|
|
Arc,
|
|
|
|
},
|
2018-04-14 21:35:58 +02:00
|
|
|
time::Duration,
|
2020-08-05 06:08:03 +02:00
|
|
|
};
|
2018-03-29 11:19:45 +02:00
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
use discovery::{Discovery, NodeEntry, TableUpdates, MAX_DATAGRAM_SIZE};
|
2016-01-13 11:31:37 +01:00
|
|
|
use io::*;
|
2016-08-05 10:32:04 +02:00
|
|
|
use ip_utils::{map_external_address, select_public_address};
|
2018-03-05 11:56:35 +01:00
|
|
|
use network::{
|
2018-05-29 09:16:08 +02:00
|
|
|
client_version::ClientVersion, ConnectionDirection, ConnectionFilter, DisconnectReason, Error,
|
2018-03-05 11:56:35 +01:00
|
|
|
ErrorKind, NetworkConfiguration, NetworkContext as NetworkContextTrait, NetworkIoMessage,
|
|
|
|
NetworkProtocolHandler, NonReservedPeerMode, PacketId, PeerId, ProtocolId, SessionInfo,
|
2020-08-05 06:08:03 +02:00
|
|
|
};
|
2016-08-05 10:32:04 +02:00
|
|
|
use node_table::*;
|
2018-09-04 20:13:51 +02:00
|
|
|
use parity_path::restrict_permissions_owner;
|
2016-07-13 19:59:59 +02:00
|
|
|
use parking_lot::{Mutex, RwLock};
|
2018-05-22 06:34:01 +02:00
|
|
|
use session::{Session, SessionData};
|
2019-01-04 19:58:21 +01:00
|
|
|
use PROTOCOL_VERSION;
|
2016-01-15 00:50:48 +01:00
|
|
|
|
|
|
|
type Slab<T> = ::slab::Slab<T, usize>;
|
2015-11-29 11:50:28 +01:00
|
|
|
|
2018-07-30 11:19:47 +02:00
|
|
|
const MAX_SESSIONS: usize = 2048 + MAX_HANDSHAKES;
|
2016-10-24 18:25:27 +02:00
|
|
|
const MAX_HANDSHAKES: usize = 1024;
|
2016-10-11 18:42:20 +02:00
|
|
|
|
2016-10-31 19:58:47 +01:00
|
|
|
const DEFAULT_PORT: u16 = 30303;
|
|
|
|
|
2017-06-27 18:24:18 +02:00
|
|
|
// StreamToken/TimerToken
|
|
|
|
const TCP_ACCEPT: StreamToken = SYS_TIMER + 1;
|
|
|
|
const IDLE: TimerToken = SYS_TIMER + 2;
|
|
|
|
const DISCOVERY: StreamToken = SYS_TIMER + 3;
|
|
|
|
const DISCOVERY_REFRESH: TimerToken = SYS_TIMER + 4;
|
2018-09-14 22:18:03 +02:00
|
|
|
const FAST_DISCOVERY_REFRESH: TimerToken = SYS_TIMER + 5;
|
|
|
|
const DISCOVERY_ROUND: TimerToken = SYS_TIMER + 6;
|
|
|
|
const NODE_TABLE: TimerToken = SYS_TIMER + 7;
|
2017-06-27 18:24:18 +02:00
|
|
|
const FIRST_SESSION: StreamToken = 0;
|
|
|
|
const LAST_SESSION: StreamToken = FIRST_SESSION + MAX_SESSIONS - 1;
|
|
|
|
const USER_TIMER: TimerToken = LAST_SESSION + 256;
|
|
|
|
const SYS_TIMER: TimerToken = LAST_SESSION + 1;
|
2016-10-11 18:42:20 +02:00
|
|
|
|
|
|
|
// Timeouts
|
2017-06-27 18:24:18 +02:00
|
|
|
// for IDLE TimerToken
|
2018-04-14 21:35:58 +02:00
|
|
|
const MAINTENANCE_TIMEOUT: Duration = Duration::from_secs(1);
|
2017-06-27 18:24:18 +02:00
|
|
|
// for DISCOVERY_REFRESH TimerToken
|
2018-04-14 21:35:58 +02:00
|
|
|
const DISCOVERY_REFRESH_TIMEOUT: Duration = Duration::from_secs(60);
|
2018-09-14 22:18:03 +02:00
|
|
|
// for FAST_DISCOVERY_REFRESH TimerToken
|
|
|
|
const FAST_DISCOVERY_REFRESH_TIMEOUT: Duration = Duration::from_secs(10);
|
2017-06-27 18:24:18 +02:00
|
|
|
// for DISCOVERY_ROUND TimerToken
|
2018-04-14 21:35:58 +02:00
|
|
|
const DISCOVERY_ROUND_TIMEOUT: Duration = Duration::from_millis(300);
|
2017-06-27 18:24:18 +02:00
|
|
|
// for NODE_TABLE TimerToken
|
2018-04-14 21:35:58 +02:00
|
|
|
const NODE_TABLE_TIMEOUT: Duration = Duration::from_secs(300);
|
2016-01-14 16:52:10 +01:00
|
|
|
|
2015-12-02 20:11:13 +01:00
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Protocol info
|
2015-12-02 20:11:13 +01:00
|
|
|
pub struct CapabilityInfo {
|
2018-05-14 10:09:05 +02:00
|
|
|
/// Protocol ID
|
2015-12-17 11:42:30 +01:00
|
|
|
pub protocol: ProtocolId,
|
2018-05-14 10:09:05 +02:00
|
|
|
/// Protocol version
|
2015-12-17 11:42:30 +01:00
|
|
|
pub version: u8,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Total number of packet IDs this protocol support.
|
2015-12-17 11:42:30 +01:00
|
|
|
pub packet_count: u8,
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Encodable for CapabilityInfo {
|
2016-01-27 12:14:57 +01:00
|
|
|
fn rlp_append(&self, s: &mut RlpStream) {
|
|
|
|
s.begin_list(2);
|
2021-02-19 12:52:24 +01:00
|
|
|
s.append(&self.protocol.as_u64());
|
2016-01-27 12:14:57 +01:00
|
|
|
s.append(&self.version);
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// IO access point. This is passed to all IO handlers and provides an interface to the IO subsystem.
|
2016-07-11 17:02:42 +02:00
|
|
|
pub struct NetworkContext<'s> {
|
|
|
|
io: &'s IoContext<NetworkIoMessage>,
|
2016-01-13 13:56:48 +01:00
|
|
|
protocol: ProtocolId,
|
2016-02-14 11:34:59 +01:00
|
|
|
sessions: Arc<RwLock<Slab<SharedSession>>>,
|
2016-03-05 23:09:51 +01:00
|
|
|
session: Option<SharedSession>,
|
|
|
|
session_id: Option<StreamToken>,
|
2018-09-10 13:45:49 +02:00
|
|
|
reserved_peers: &'s HashSet<NodeId>,
|
2015-12-17 11:42:30 +01:00
|
|
|
}
|
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
impl<'s> NetworkContext<'s> {
|
2016-01-13 11:31:37 +01:00
|
|
|
/// Create a new network IO access point. Takes references to all the data that can be updated within the IO handler.
|
2018-05-07 13:11:12 +02:00
|
|
|
fn new(
|
|
|
|
io: &'s IoContext<NetworkIoMessage>,
|
2016-02-19 17:11:24 +01:00
|
|
|
protocol: ProtocolId,
|
2018-05-07 13:11:12 +02:00
|
|
|
session: Option<SharedSession>,
|
|
|
|
sessions: Arc<RwLock<Slab<SharedSession>>>,
|
|
|
|
reserved_peers: &'s HashSet<NodeId>,
|
|
|
|
) -> NetworkContext<'s> {
|
2016-07-13 19:59:59 +02:00
|
|
|
let id = session.as_ref().map(|s| s.lock().token());
|
2016-01-13 11:31:37 +01:00
|
|
|
NetworkContext {
|
2018-05-31 13:38:46 +02:00
|
|
|
io,
|
|
|
|
protocol,
|
2016-03-05 23:09:51 +01:00
|
|
|
session_id: id,
|
2018-05-31 13:38:46 +02:00
|
|
|
session,
|
|
|
|
sessions,
|
2018-09-10 13:45:49 +02:00
|
|
|
reserved_peers: reserved_peers,
|
2015-12-17 11:42:30 +01:00
|
|
|
}
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-03-05 23:09:51 +01:00
|
|
|
fn resolve_session(&self, peer: PeerId) -> Option<SharedSession> {
|
|
|
|
match self.session_id {
|
|
|
|
Some(id) if id == peer => self.session.clone(),
|
2016-07-13 19:59:59 +02:00
|
|
|
_ => self.sessions.read().get(peer).cloned(),
|
2016-03-05 23:09:51 +01:00
|
|
|
}
|
|
|
|
}
|
2018-03-05 11:56:35 +01:00
|
|
|
}
|
2016-03-05 23:09:51 +01:00
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
impl<'s> NetworkContextTrait for NetworkContext<'s> {
|
|
|
|
fn send(&self, peer: PeerId, packet_id: PacketId, data: Vec<u8>) -> Result<(), Error> {
|
2016-10-25 18:40:01 +02:00
|
|
|
self.send_protocol(self.protocol, peer, packet_id, data)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
fn send_protocol(
|
|
|
|
&self,
|
|
|
|
protocol: ProtocolId,
|
|
|
|
peer: PeerId,
|
|
|
|
packet_id: PacketId,
|
|
|
|
data: Vec<u8>,
|
|
|
|
) -> Result<(), Error> {
|
2016-03-05 23:09:51 +01:00
|
|
|
let session = self.resolve_session(peer);
|
2016-02-14 11:34:59 +01:00
|
|
|
if let Some(session) = session {
|
2017-10-19 14:41:11 +02:00
|
|
|
session
|
|
|
|
.lock()
|
|
|
|
.send_packet(self.io, Some(protocol), packet_id as u8, &data)?;
|
2016-01-21 16:48:37 +01:00
|
|
|
} else {
|
2016-02-20 01:10:27 +01:00
|
|
|
trace!(target: "network", "Send: Peer no longer exist")
|
2015-12-22 22:23:43 +01:00
|
|
|
}
|
2015-12-17 11:42:30 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
fn respond(&self, packet_id: PacketId, data: Vec<u8>) -> Result<(), Error> {
|
2016-03-05 23:09:51 +01:00
|
|
|
assert!(
|
|
|
|
self.session.is_some(),
|
|
|
|
"Respond called without network context"
|
|
|
|
);
|
2017-11-13 14:37:08 +01:00
|
|
|
self.session_id.map_or_else(
|
|
|
|
|| Err(ErrorKind::Expired.into()),
|
|
|
|
|id| self.send(id, packet_id, data),
|
|
|
|
)
|
2015-12-17 11:42:30 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
fn disable_peer(&self, peer: PeerId) {
|
2016-06-27 19:30:13 +02:00
|
|
|
self.io
|
|
|
|
.message(NetworkIoMessage::DisablePeer(peer))
|
|
|
|
.unwrap_or_else(|e| warn!("Error sending network IO message: {:?}", e));
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
fn disconnect_peer(&self, peer: PeerId) {
|
2020-08-05 06:08:03 +02:00
|
|
|
self.io
|
2016-06-27 19:30:13 +02:00
|
|
|
.message(NetworkIoMessage::Disconnect(peer))
|
|
|
|
.unwrap_or_else(|e| warn!("Error sending network IO message: {:?}", e));
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
fn is_expired(&self) -> bool {
|
2016-07-13 19:59:59 +02:00
|
|
|
self.session.as_ref().map_or(false, |s| s.lock().expired())
|
2016-06-17 16:01:33 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-04-14 21:35:58 +02:00
|
|
|
fn register_timer(&self, token: TimerToken, delay: Duration) -> Result<(), Error> {
|
2016-01-21 16:48:37 +01:00
|
|
|
self.io
|
|
|
|
.message(NetworkIoMessage::AddTimer {
|
2018-04-14 21:35:58 +02:00
|
|
|
token,
|
|
|
|
delay,
|
2016-01-21 16:48:37 +01:00
|
|
|
protocol: self.protocol,
|
2016-06-27 19:30:13 +02:00
|
|
|
})
|
|
|
|
.unwrap_or_else(|e| warn!("Error sending network IO message: {:?}", e));
|
2016-01-21 16:48:37 +01:00
|
|
|
Ok(())
|
2016-01-13 11:31:37 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2019-02-07 15:27:09 +01:00
|
|
|
fn peer_client_version(&self, peer: PeerId) -> ClientVersion {
|
|
|
|
self.resolve_session(peer)
|
|
|
|
.map_or(ClientVersion::from("unknown").to_owned(), |s| {
|
|
|
|
s.lock().info.client_version.clone()
|
2020-08-05 06:08:03 +02:00
|
|
|
})
|
2016-10-12 20:18:59 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
fn session_info(&self, peer: PeerId) -> Option<SessionInfo> {
|
2016-10-12 20:18:59 +02:00
|
|
|
self.resolve_session(peer).map(|s| s.lock().info.clone())
|
2016-01-14 16:52:10 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
fn protocol_version(&self, protocol: ProtocolId, peer: PeerId) -> Option<u8> {
|
2016-09-06 15:31:13 +02:00
|
|
|
let session = self.resolve_session(peer);
|
|
|
|
session.and_then(|s| s.lock().capability_version(protocol))
|
2018-03-05 11:56:35 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
fn subprotocol_name(&self) -> ProtocolId {
|
|
|
|
self.protocol
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2018-09-10 13:45:49 +02:00
|
|
|
fn is_reserved_peer(&self, peer: PeerId) -> bool {
|
|
|
|
self.session_info(peer)
|
|
|
|
.and_then(|info| info.id)
|
|
|
|
.map(|node| self.reserved_peers.contains(&node))
|
|
|
|
.unwrap_or(false)
|
|
|
|
}
|
2015-12-17 11:42:30 +01:00
|
|
|
}
|
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Shared host information
|
2015-11-30 16:38:55 +01:00
|
|
|
pub struct HostInfo {
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Our private and public keys.
|
2016-01-08 13:49:00 +01:00
|
|
|
keys: KeyPair,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Current network configuration
|
2016-01-08 13:49:00 +01:00
|
|
|
config: NetworkConfiguration,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Connection nonce.
|
2015-12-02 20:11:13 +01:00
|
|
|
nonce: H256,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// RLPx protocol version
|
2015-12-02 20:11:13 +01:00
|
|
|
pub protocol_version: u32,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Registered capabilities (handlers)
|
2016-02-23 19:38:06 +01:00
|
|
|
pub capabilities: Vec<CapabilityInfo>,
|
2016-03-20 11:35:46 +01:00
|
|
|
/// Local address + discovery port
|
|
|
|
pub local_endpoint: NodeEndpoint,
|
2016-02-23 19:38:06 +01:00
|
|
|
/// Public address + discovery port
|
2016-03-20 11:35:46 +01:00
|
|
|
pub public_endpoint: Option<NodeEndpoint>,
|
2015-11-30 16:38:55 +01:00
|
|
|
}
|
|
|
|
|
2018-05-18 08:04:25 +02:00
|
|
|
impl HostInfo {
|
|
|
|
fn next_nonce(&mut self) -> H256 {
|
|
|
|
self.nonce = keccak(&self.nonce);
|
|
|
|
self.nonce
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-05-22 06:32:05 +02:00
|
|
|
pub(crate) fn client_version(&self) -> &str {
|
|
|
|
&self.config.client_version
|
2015-11-30 16:38:55 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-05-22 06:32:05 +02:00
|
|
|
pub(crate) fn secret(&self) -> &Secret {
|
2015-11-30 16:38:55 +01:00
|
|
|
self.keys.secret()
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-06-02 11:05:11 +02:00
|
|
|
pub(crate) fn id(&self) -> &NodeId {
|
2018-05-22 06:32:05 +02:00
|
|
|
self.keys.public()
|
2017-12-02 10:08:04 +01:00
|
|
|
}
|
2015-11-30 16:38:55 +01:00
|
|
|
}
|
|
|
|
|
2016-02-14 11:34:59 +01:00
|
|
|
type SharedSession = Arc<Mutex<Session>>;
|
2016-01-21 16:48:37 +01:00
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct ProtocolTimer {
|
|
|
|
pub protocol: ProtocolId,
|
|
|
|
pub token: TimerToken, // Handler level token
|
|
|
|
}
|
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Root IO handler. Manages protocol handlers, IO timers and network connections.
|
2019-09-12 18:43:53 +02:00
|
|
|
///
|
|
|
|
/// NOTE: must keep the lock in order of: reserved_nodes (rwlock) -> session (mutex, from sessions)
|
2016-07-11 17:02:42 +02:00
|
|
|
pub struct Host {
|
2016-01-21 16:48:37 +01:00
|
|
|
pub info: RwLock<HostInfo>,
|
2018-06-08 16:31:48 +02:00
|
|
|
udp_socket: Mutex<Option<UdpSocket>>,
|
2016-03-20 11:35:46 +01:00
|
|
|
tcp_listener: Mutex<TcpListener>,
|
2016-02-14 11:34:59 +01:00
|
|
|
sessions: Arc<RwLock<Slab<SharedSession>>>,
|
2018-07-11 21:22:06 +02:00
|
|
|
discovery: Mutex<Option<Discovery<'static>>>,
|
2016-02-12 09:52:32 +01:00
|
|
|
nodes: RwLock<NodeTable>,
|
2020-07-29 10:36:15 +02:00
|
|
|
handlers: RwLock<HashMap<ProtocolId, Arc<dyn NetworkProtocolHandler + Sync>>>,
|
2016-01-21 16:48:37 +01:00
|
|
|
timers: RwLock<HashMap<TimerToken, ProtocolTimer>>,
|
|
|
|
timer_counter: RwLock<usize>,
|
2016-06-21 13:56:33 +02:00
|
|
|
reserved_nodes: RwLock<HashSet<NodeId>>,
|
2016-06-17 18:26:54 +02:00
|
|
|
stopping: AtomicBool,
|
2020-07-29 10:36:15 +02:00
|
|
|
filter: Option<Arc<dyn ConnectionFilter>>,
|
2015-11-29 11:50:28 +01:00
|
|
|
}
|
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
impl Host {
|
2016-01-23 02:36:58 +01:00
|
|
|
/// Create a new instance
|
2018-03-28 08:45:36 +02:00
|
|
|
pub fn new(
|
|
|
|
mut config: NetworkConfiguration,
|
2020-07-29 10:36:15 +02:00
|
|
|
filter: Option<Arc<dyn ConnectionFilter>>,
|
2018-03-28 08:45:36 +02:00
|
|
|
) -> Result<Host, Error> {
|
2016-03-20 11:35:46 +01:00
|
|
|
let mut listen_address = match config.listen_address {
|
2016-10-31 19:58:47 +01:00
|
|
|
None => SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(0, 0, 0, 0), DEFAULT_PORT)),
|
2016-02-16 02:05:36 +01:00
|
|
|
Some(addr) => addr,
|
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-02-19 17:11:24 +01:00
|
|
|
let keys = if let Some(ref secret) = config.use_secret {
|
2016-12-27 12:53:56 +01:00
|
|
|
KeyPair::from_secret(secret.clone())?
|
2016-02-19 17:11:24 +01:00
|
|
|
} else {
|
2016-07-26 20:31:25 +02:00
|
|
|
config
|
|
|
|
.config_path
|
|
|
|
.clone()
|
|
|
|
.and_then(|ref p| load_key(Path::new(&p)))
|
2016-02-15 18:36:34 +01:00
|
|
|
.map_or_else(
|
|
|
|
|| {
|
2016-10-31 19:58:47 +01:00
|
|
|
let key = Random.generate().expect("Error generating random key pair");
|
2016-02-15 18:36:34 +01:00
|
|
|
if let Some(path) = config.config_path.clone() {
|
2016-07-26 20:31:25 +02:00
|
|
|
save_key(Path::new(&path), key.secret());
|
2016-02-15 18:36:34 +01:00
|
|
|
}
|
|
|
|
key
|
|
|
|
},
|
|
|
|
|s| KeyPair::from_secret(s).expect("Error creating node secret key"),
|
|
|
|
)
|
|
|
|
};
|
2016-08-21 11:23:47 +02:00
|
|
|
let path = config.net_config_path.clone();
|
2016-03-20 11:35:46 +01:00
|
|
|
// Setup the server socket
|
2016-12-27 12:53:56 +01:00
|
|
|
let tcp_listener = TcpListener::bind(&listen_address)?;
|
|
|
|
listen_address = SocketAddr::new(listen_address.ip(), tcp_listener.local_addr()?.port());
|
2016-12-10 14:20:34 +01:00
|
|
|
debug!(target: "network", "Listening at {:?}", listen_address);
|
2018-05-31 13:38:46 +02:00
|
|
|
let udp_port = config.udp_port.unwrap_or_else(|| listen_address.port());
|
2018-08-21 11:55:31 +02:00
|
|
|
let local_endpoint = NodeEndpoint {
|
|
|
|
address: listen_address,
|
|
|
|
udp_port,
|
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 14:13:33 +02:00
|
|
|
let boot_nodes = config.boot_nodes.clone();
|
|
|
|
let reserved_nodes = config.reserved_nodes.clone();
|
2016-10-24 18:25:27 +02:00
|
|
|
config.max_handshakes = min(config.max_handshakes, MAX_HANDSHAKES as u32);
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
let mut host = Host {
|
2016-01-21 16:48:37 +01:00
|
|
|
info: RwLock::new(HostInfo {
|
2018-08-21 11:55:31 +02:00
|
|
|
keys,
|
|
|
|
config,
|
2015-12-02 20:11:13 +01:00
|
|
|
nonce: H256::random(),
|
2016-02-13 22:57:39 +01:00
|
|
|
protocol_version: PROTOCOL_VERSION,
|
2015-12-17 11:42:30 +01:00
|
|
|
capabilities: Vec::new(),
|
2016-03-20 11:35:46 +01:00
|
|
|
public_endpoint: None,
|
2018-08-21 11:55:31 +02:00
|
|
|
local_endpoint,
|
2016-01-21 16:48:37 +01:00
|
|
|
}),
|
2016-02-23 19:38:06 +01:00
|
|
|
discovery: Mutex::new(None),
|
2018-06-08 16:31:48 +02:00
|
|
|
udp_socket: Mutex::new(None),
|
2016-03-20 11:35:46 +01:00
|
|
|
tcp_listener: Mutex::new(tcp_listener),
|
2016-02-14 11:34:59 +01:00
|
|
|
sessions: Arc::new(RwLock::new(Slab::new_starting_at(
|
|
|
|
FIRST_SESSION,
|
|
|
|
MAX_SESSIONS,
|
|
|
|
))),
|
2016-02-12 09:52:32 +01:00
|
|
|
nodes: RwLock::new(NodeTable::new(path)),
|
2016-01-21 16:48:37 +01:00
|
|
|
handlers: RwLock::new(HashMap::new()),
|
|
|
|
timers: RwLock::new(HashMap::new()),
|
2016-02-14 11:34:59 +01:00
|
|
|
timer_counter: RwLock::new(USER_TIMER),
|
2016-06-21 13:56:33 +02:00
|
|
|
reserved_nodes: RwLock::new(HashSet::new()),
|
2016-06-17 18:26:54 +02:00
|
|
|
stopping: AtomicBool::new(false),
|
2018-08-21 11:55:31 +02:00
|
|
|
filter,
|
2016-01-21 16:48:37 +01:00
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-01-24 19:21:31 +01:00
|
|
|
for n in boot_nodes {
|
2016-06-21 13:56:33 +02:00
|
|
|
host.add_node(&n);
|
2016-06-20 14:13:33 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 14:13:33 +02:00
|
|
|
for n in reserved_nodes {
|
2016-06-21 13:56:33 +02:00
|
|
|
if let Err(e) = host.add_reserved_node(&n) {
|
|
|
|
debug!(target: "network", "Error parsing node id: {}: {:?}", n, e);
|
2016-01-23 02:36:58 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-03-20 11:35:46 +01:00
|
|
|
Ok(host)
|
2016-01-08 13:49:00 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-21 13:56:33 +02:00
|
|
|
pub fn add_node(&mut self, id: &str) {
|
2015-11-29 11:50:28 +01:00
|
|
|
match Node::from_str(id) {
|
2016-05-02 14:48:30 +02:00
|
|
|
Err(e) => {
|
|
|
|
debug!(target: "network", "Could not add node {}: {:?}", id, e);
|
|
|
|
}
|
2015-12-02 12:07:46 +01:00
|
|
|
Ok(n) => {
|
2018-05-31 13:38:46 +02:00
|
|
|
let entry = NodeEntry {
|
|
|
|
endpoint: n.endpoint.clone(),
|
|
|
|
id: n.id,
|
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-13 19:59:59 +02:00
|
|
|
self.nodes.write().add_node(n);
|
|
|
|
if let Some(ref mut discovery) = *self.discovery.lock() {
|
2016-07-20 12:41:31 +02:00
|
|
|
discovery.add_node(entry);
|
2015-11-29 11:50:28 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-13 14:37:08 +01:00
|
|
|
pub fn add_reserved_node(&self, id: &str) -> Result<(), Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
let n = Node::from_str(id)?;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-05-31 13:38:46 +02:00
|
|
|
let entry = NodeEntry {
|
|
|
|
endpoint: n.endpoint.clone(),
|
|
|
|
id: n.id,
|
|
|
|
};
|
|
|
|
self.reserved_nodes.write().insert(n.id);
|
|
|
|
self.nodes
|
|
|
|
.write()
|
|
|
|
.add_node(Node::new(entry.id, entry.endpoint.clone()));
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-13 19:59:59 +02:00
|
|
|
if let Some(ref mut discovery) = *self.discovery.lock() {
|
2016-07-20 12:41:31 +02:00
|
|
|
discovery.add_node(entry);
|
2016-06-21 13:56:33 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-21 13:56:33 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-08-21 11:55:31 +02:00
|
|
|
pub fn set_non_reserved_mode(
|
|
|
|
&self,
|
|
|
|
mode: NonReservedPeerMode,
|
|
|
|
io: &IoContext<NetworkIoMessage>,
|
|
|
|
) {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut info = self.info.write();
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-08-21 11:55:31 +02:00
|
|
|
if info.config.non_reserved_mode != mode {
|
|
|
|
info.config.non_reserved_mode = mode;
|
2016-06-21 13:56:33 +02:00
|
|
|
drop(info);
|
|
|
|
if let NonReservedPeerMode::Deny = mode {
|
|
|
|
// disconnect all non-reserved peers here.
|
2016-07-13 19:59:59 +02:00
|
|
|
let reserved: HashSet<NodeId> = self.reserved_nodes.read().clone();
|
2016-06-21 13:56:33 +02:00
|
|
|
let mut to_kill = Vec::new();
|
2018-03-09 11:26:40 +01:00
|
|
|
for e in self.sessions.read().iter() {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut s = e.lock();
|
2016-06-21 13:56:33 +02:00
|
|
|
{
|
|
|
|
let id = s.id();
|
2016-10-31 19:58:47 +01:00
|
|
|
if id.map_or(false, |id| reserved.contains(id)) {
|
2016-06-21 13:56:33 +02:00
|
|
|
continue;
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2016-06-21 13:56:33 +02:00
|
|
|
s.disconnect(io, DisconnectReason::ClientQuit);
|
|
|
|
to_kill.push(s.token());
|
|
|
|
}
|
|
|
|
for p in to_kill {
|
|
|
|
trace!(target: "network", "Disconnecting on reserved-only mode: {}", p);
|
|
|
|
self.kill_connection(p, io, false);
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-13 14:37:08 +01:00
|
|
|
pub fn remove_reserved_node(&self, id: &str) -> Result<(), Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
let n = Node::from_str(id)?;
|
2016-07-13 19:59:59 +02:00
|
|
|
self.reserved_nodes.write().remove(&n.id);
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-21 13:56:33 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-03-20 11:35:46 +01:00
|
|
|
pub fn external_url(&self) -> Option<String> {
|
2017-01-30 17:08:21 +01:00
|
|
|
let info = self.info.read();
|
2018-05-31 13:38:46 +02:00
|
|
|
info.public_endpoint
|
|
|
|
.as_ref()
|
|
|
|
.map(|e| format!("{}", Node::new(*info.id(), e.clone())))
|
2016-02-23 19:38:06 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-03-20 11:35:46 +01:00
|
|
|
pub fn local_url(&self) -> String {
|
2017-01-30 17:08:21 +01:00
|
|
|
let info = self.info.read();
|
2018-05-31 13:38:46 +02:00
|
|
|
format!("{}", Node::new(*info.id(), info.local_endpoint.clone()))
|
2016-03-20 11:35:46 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-05-22 06:35:13 +02:00
|
|
|
pub fn stop(&self, io: &IoContext<NetworkIoMessage>) {
|
2016-06-17 18:26:54 +02:00
|
|
|
self.stopping.store(true, AtomicOrdering::Release);
|
2016-06-17 12:58:28 +02:00
|
|
|
let mut to_kill = Vec::new();
|
2018-03-09 11:26:40 +01:00
|
|
|
for e in self.sessions.read().iter() {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut s = e.lock();
|
2016-06-17 18:26:54 +02:00
|
|
|
s.disconnect(io, DisconnectReason::ClientQuit);
|
|
|
|
to_kill.push(s.token());
|
2016-06-17 12:58:28 +02:00
|
|
|
}
|
|
|
|
for p in to_kill {
|
2016-06-17 18:26:54 +02:00
|
|
|
trace!(target: "network", "Disconnecting on shutdown: {}", p);
|
2016-06-17 12:58:28 +02:00
|
|
|
self.kill_connection(p, io, true);
|
|
|
|
}
|
2018-05-22 06:35:13 +02:00
|
|
|
io.unregister_handler();
|
2016-06-17 12:58:28 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-01-20 12:41:49 +01:00
|
|
|
/// Get all connected peers.
|
|
|
|
pub fn connected_peers(&self) -> Vec<PeerId> {
|
|
|
|
let sessions = self.sessions.read();
|
|
|
|
let sessions = &*sessions;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-01-20 12:41:49 +01:00
|
|
|
let mut peers = Vec::with_capacity(sessions.count());
|
|
|
|
for i in (0..MAX_SESSIONS).map(|x| x + FIRST_SESSION) {
|
|
|
|
if sessions.get(i).is_some() {
|
|
|
|
peers.push(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
peers
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-11-13 14:37:08 +01:00
|
|
|
fn init_public_interface(&self, io: &IoContext<NetworkIoMessage>) -> Result<(), Error> {
|
2016-07-13 19:59:59 +02:00
|
|
|
if self.info.read().public_endpoint.is_some() {
|
2016-03-20 11:35:46 +01:00
|
|
|
return Ok(());
|
2016-02-23 19:38:06 +01:00
|
|
|
}
|
2016-07-13 19:59:59 +02:00
|
|
|
let local_endpoint = self.info.read().local_endpoint.clone();
|
2018-08-21 11:55:31 +02:00
|
|
|
let public_address = self.info.read().config.public_address;
|
2017-07-28 19:06:39 +02:00
|
|
|
let allow_ips = self.info.read().config.ip_filter.clone();
|
2016-03-04 22:01:36 +01:00
|
|
|
let public_endpoint = match public_address {
|
2016-02-23 19:38:06 +01:00
|
|
|
None => {
|
2016-03-20 11:35:46 +01:00
|
|
|
let public_address = select_public_address(local_endpoint.address.port());
|
|
|
|
let public_endpoint = NodeEndpoint {
|
|
|
|
address: public_address,
|
|
|
|
udp_port: local_endpoint.udp_port,
|
|
|
|
};
|
2016-07-13 19:59:59 +02:00
|
|
|
if self.info.read().config.nat_enabled {
|
2016-02-23 19:38:06 +01:00
|
|
|
match map_external_address(&local_endpoint) {
|
|
|
|
Some(endpoint) => {
|
2016-03-20 11:35:46 +01:00
|
|
|
info!("NAT mapped to external address {}", endpoint.address);
|
2016-02-23 19:38:06 +01:00
|
|
|
endpoint
|
|
|
|
}
|
2016-03-20 11:35:46 +01:00
|
|
|
None => public_endpoint,
|
2016-02-23 19:38:06 +01:00
|
|
|
}
|
|
|
|
} else {
|
2016-03-20 11:35:46 +01:00
|
|
|
public_endpoint
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-02-23 19:38:06 +01:00
|
|
|
}
|
2016-03-20 11:35:46 +01:00
|
|
|
Some(addr) => NodeEndpoint {
|
|
|
|
address: addr,
|
|
|
|
udp_port: local_endpoint.udp_port,
|
|
|
|
},
|
2016-02-23 19:38:06 +01:00
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-13 19:59:59 +02:00
|
|
|
self.info.write().public_endpoint = Some(public_endpoint.clone());
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-06 18:28:11 +02:00
|
|
|
if let Some(url) = self.external_url() {
|
|
|
|
io.message(NetworkIoMessage::NetworkStarted(url))
|
|
|
|
.unwrap_or_else(|e| warn!("Error sending IO notification: {:?}", e));
|
2016-06-29 17:50:27 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-02-23 19:38:06 +01:00
|
|
|
// Initialize discovery.
|
|
|
|
let discovery = {
|
2016-07-13 19:59:59 +02:00
|
|
|
let info = self.info.read();
|
2016-06-21 13:56:33 +02:00
|
|
|
if info.config.discovery_enabled
|
|
|
|
&& info.config.non_reserved_mode == NonReservedPeerMode::Accept
|
|
|
|
{
|
2018-06-08 16:31:48 +02:00
|
|
|
Some(Discovery::new(&info.keys, public_endpoint, allow_ips))
|
2016-02-23 19:38:06 +01:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-02-23 19:38:06 +01:00
|
|
|
if let Some(mut discovery) = discovery {
|
2018-06-08 16:31:48 +02:00
|
|
|
let mut udp_addr = local_endpoint.address;
|
|
|
|
udp_addr.set_port(local_endpoint.udp_port);
|
|
|
|
let socket = UdpSocket::bind(&udp_addr).expect("Error binding UDP socket");
|
|
|
|
*self.udp_socket.lock() = Some(socket);
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-16 22:39:23 +01:00
|
|
|
discovery.add_node_list(self.nodes.read().entries());
|
2016-07-13 19:59:59 +02:00
|
|
|
*self.discovery.lock() = Some(discovery);
|
2016-12-27 12:53:56 +01:00
|
|
|
io.register_stream(DISCOVERY)?;
|
2018-09-14 22:18:03 +02:00
|
|
|
io.register_timer(FAST_DISCOVERY_REFRESH, FAST_DISCOVERY_REFRESH_TIMEOUT)?;
|
2016-12-27 12:53:56 +01:00
|
|
|
io.register_timer(DISCOVERY_REFRESH, DISCOVERY_REFRESH_TIMEOUT)?;
|
|
|
|
io.register_timer(DISCOVERY_ROUND, DISCOVERY_ROUND_TIMEOUT)?;
|
2016-02-23 19:38:06 +01:00
|
|
|
}
|
2016-12-27 12:53:56 +01:00
|
|
|
io.register_timer(NODE_TABLE, NODE_TABLE_TIMEOUT)?;
|
|
|
|
io.register_stream(TCP_ACCEPT)?;
|
2016-03-20 11:35:46 +01:00
|
|
|
Ok(())
|
2016-01-21 16:48:37 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn maintain_network(&self, io: &IoContext<NetworkIoMessage>) {
|
2016-02-02 20:58:12 +01:00
|
|
|
self.keep_alive(io);
|
2016-01-13 11:31:37 +01:00
|
|
|
self.connect_peers(io);
|
2016-01-08 13:49:00 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2015-11-29 11:50:28 +01:00
|
|
|
fn have_session(&self, id: &NodeId) -> bool {
|
2018-08-21 11:55:31 +02:00
|
|
|
self.sessions
|
|
|
|
.read()
|
|
|
|
.iter()
|
|
|
|
.any(|e| e.lock().info.id == Some(*id))
|
2016-02-14 01:03:48 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-09 11:26:40 +01:00
|
|
|
// returns (handshakes, egress, ingress)
|
|
|
|
fn session_count(&self) -> (usize, usize, usize) {
|
|
|
|
let mut handshakes = 0;
|
|
|
|
let mut egress = 0;
|
|
|
|
let mut ingress = 0;
|
|
|
|
for s in self.sessions.read().iter() {
|
|
|
|
match s.try_lock() {
|
|
|
|
Some(ref s) if s.is_ready() && s.info.originated => egress += 1,
|
|
|
|
Some(ref s) if s.is_ready() && !s.info.originated => ingress += 1,
|
|
|
|
_ => handshakes += 1,
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2018-03-09 11:26:40 +01:00
|
|
|
}
|
|
|
|
(handshakes, egress, ingress)
|
2015-11-29 11:50:28 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2015-11-29 11:50:28 +01:00
|
|
|
fn connecting_to(&self, id: &NodeId) -> bool {
|
2016-07-13 19:59:59 +02:00
|
|
|
self.sessions
|
|
|
|
.read()
|
|
|
|
.iter()
|
|
|
|
.any(|e| e.lock().id() == Some(id))
|
2016-02-14 01:03:48 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn keep_alive(&self, io: &IoContext<NetworkIoMessage>) {
|
2016-02-02 20:58:12 +01:00
|
|
|
let mut to_kill = Vec::new();
|
2018-03-09 11:26:40 +01:00
|
|
|
for e in self.sessions.read().iter() {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut s = e.lock();
|
2016-02-14 11:34:59 +01:00
|
|
|
if !s.keep_alive(io) {
|
2016-06-13 18:55:24 +02:00
|
|
|
s.disconnect(io, DisconnectReason::PingTimeout);
|
2016-02-14 11:34:59 +01:00
|
|
|
to_kill.push(s.token());
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-02-02 20:58:12 +01:00
|
|
|
}
|
|
|
|
for p in to_kill {
|
2016-05-02 14:48:30 +02:00
|
|
|
trace!(target: "network", "Ping timeout: {}", p);
|
2016-02-14 01:03:48 +01:00
|
|
|
self.kill_connection(p, io, true);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-02-02 20:58:12 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-09-14 22:18:03 +02:00
|
|
|
fn has_enough_peers(&self) -> bool {
|
|
|
|
let min_peers = {
|
|
|
|
let info = self.info.read();
|
|
|
|
let config = &info.config;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-09-14 22:18:03 +02:00
|
|
|
config.min_peers
|
|
|
|
};
|
|
|
|
let (_, egress_count, ingress_count) = self.session_count();
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-09-14 22:18:03 +02:00
|
|
|
return egress_count + ingress_count >= min_peers as usize;
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn connect_peers(&self, io: &IoContext<NetworkIoMessage>) {
|
2016-10-31 12:54:50 +01:00
|
|
|
let (min_peers, mut pin, max_handshakes, allow_ips, self_id) = {
|
2016-07-13 19:59:59 +02:00
|
|
|
let info = self.info.read();
|
2016-06-21 13:56:33 +02:00
|
|
|
if info.capabilities.is_empty() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let config = &info.config;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-08-21 11:55:31 +02:00
|
|
|
(
|
|
|
|
config.min_peers,
|
|
|
|
config.non_reserved_mode == NonReservedPeerMode::Deny,
|
|
|
|
config.max_handshakes as usize,
|
|
|
|
config.ip_filter.clone(),
|
|
|
|
*info.id(),
|
|
|
|
)
|
2016-06-21 13:56:33 +02:00
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-09 11:26:40 +01:00
|
|
|
let (handshake_count, egress_count, ingress_count) = self.session_count();
|
2016-07-13 19:59:59 +02:00
|
|
|
let reserved_nodes = self.reserved_nodes.read();
|
2018-03-09 11:26:40 +01:00
|
|
|
if egress_count + ingress_count >= min_peers as usize + reserved_nodes.len() {
|
2016-06-20 14:13:33 +02:00
|
|
|
// check if all pinned nodes are connected.
|
2016-06-21 13:56:33 +02:00
|
|
|
if reserved_nodes
|
|
|
|
.iter()
|
|
|
|
.all(|n| self.have_session(n) && self.connecting_to(n))
|
|
|
|
{
|
2016-06-20 14:13:33 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-21 13:56:33 +02:00
|
|
|
// if not, only attempt connect to reserved peers
|
|
|
|
pin = true;
|
2015-11-29 11:50:28 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-02-16 02:05:36 +01:00
|
|
|
// allow 16 slots for incoming connections
|
2016-10-24 18:25:27 +02:00
|
|
|
if handshake_count >= max_handshakes {
|
2016-02-14 01:03:48 +01:00
|
|
|
return;
|
2015-11-29 11:50:28 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 14:13:33 +02:00
|
|
|
// iterate over all nodes, reserved ones coming first.
|
|
|
|
// if we are pinned to only reserved nodes, ignore all others.
|
2016-06-21 13:56:33 +02:00
|
|
|
let nodes = reserved_nodes.iter().cloned().chain(if !pin {
|
2018-05-31 13:38:46 +02:00
|
|
|
self.nodes.read().nodes(&allow_ips)
|
2016-06-20 14:13:33 +02:00
|
|
|
} else {
|
|
|
|
Vec::new()
|
|
|
|
});
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-10-24 18:25:27 +02:00
|
|
|
let max_handshakes_per_round = max_handshakes / 2;
|
2016-06-15 19:01:58 +02:00
|
|
|
let mut started: usize = 0;
|
2017-08-30 17:14:52 +02:00
|
|
|
for id in nodes
|
|
|
|
.filter(|id| {
|
2017-08-29 14:38:01 +02:00
|
|
|
!self.have_session(id)
|
|
|
|
&& !self.connecting_to(id)
|
|
|
|
&& *id != self_id
|
|
|
|
&& self.filter.as_ref().map_or(true, |f| {
|
|
|
|
f.connection_allowed(&self_id, &id, ConnectionDirection::Outbound)
|
2020-08-05 06:08:03 +02:00
|
|
|
})
|
2017-08-29 14:38:01 +02:00
|
|
|
})
|
|
|
|
.take(min(
|
|
|
|
max_handshakes_per_round,
|
|
|
|
max_handshakes - handshake_count,
|
|
|
|
))
|
|
|
|
{
|
2016-02-14 01:03:48 +01:00
|
|
|
self.connect_peer(&id, io);
|
2016-06-15 19:01:58 +02:00
|
|
|
started += 1;
|
2015-11-29 11:50:28 +01:00
|
|
|
}
|
2018-03-09 11:26:40 +01:00
|
|
|
debug!(target: "network", "Connecting peers: {} sessions, {} pending + {} started", egress_count + ingress_count, handshake_count, started);
|
2016-01-08 13:49:00 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn connect_peer(&self, id: &NodeId, io: &IoContext<NetworkIoMessage>) {
|
2017-01-17 16:02:29 +01:00
|
|
|
if self.have_session(id) {
|
2016-02-20 01:10:27 +01:00
|
|
|
trace!(target: "network", "Aborted connect. Node already connected.");
|
2015-11-29 11:50:28 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-01-21 16:48:37 +01:00
|
|
|
if self.connecting_to(id) {
|
2016-02-20 01:10:27 +01:00
|
|
|
trace!(target: "network", "Aborted connect. Node already connecting.");
|
2015-11-29 11:50:28 +01:00
|
|
|
return;
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2015-11-30 16:38:55 +01:00
|
|
|
let socket = {
|
2016-01-21 16:48:37 +01:00
|
|
|
let address = {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut nodes = self.nodes.write();
|
2016-02-14 17:42:03 +01:00
|
|
|
if let Some(node) = nodes.get_mut(id) {
|
|
|
|
node.endpoint.address
|
2018-05-07 13:11:12 +02:00
|
|
|
} else {
|
2016-02-20 01:10:27 +01:00
|
|
|
debug!(target: "network", "Connection to expired node aborted");
|
2016-02-14 17:45:00 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-01-21 16:48:37 +01:00
|
|
|
};
|
|
|
|
match TcpStream::connect(&address) {
|
2016-12-10 14:20:34 +01:00
|
|
|
Ok(socket) => {
|
2018-03-29 11:20:27 +02:00
|
|
|
trace!(target: "network", "{}: Connecting to {:?}", id, address);
|
2016-12-10 14:20:34 +01:00
|
|
|
socket
|
|
|
|
}
|
2016-02-16 17:54:34 +01:00
|
|
|
Err(e) => {
|
2018-03-29 11:20:27 +02:00
|
|
|
debug!(target: "network", "{}: Can't connect to address {:?}: {:?}", id, address, e);
|
2018-05-07 13:11:12 +02:00
|
|
|
self.nodes.write().note_failure(&id);
|
2015-11-30 16:38:55 +01:00
|
|
|
return;
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2015-11-30 16:38:55 +01:00
|
|
|
}
|
2015-11-29 11:50:28 +01:00
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-02 11:49:56 +02:00
|
|
|
if let Err(e) = self.create_connection(socket, Some(id), io) {
|
|
|
|
debug!(target: "network", "Can't create connection: {:?}", e);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-06-02 11:49:56 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-11-13 14:37:08 +01:00
|
|
|
fn create_connection(
|
|
|
|
&self,
|
|
|
|
socket: TcpStream,
|
|
|
|
id: Option<&NodeId>,
|
|
|
|
io: &IoContext<NetworkIoMessage>,
|
|
|
|
) -> Result<(), Error> {
|
2016-07-13 19:59:59 +02:00
|
|
|
let nonce = self.info.write().next_nonce();
|
|
|
|
let mut sessions = self.sessions.write();
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-02 11:49:56 +02:00
|
|
|
let token = sessions.insert_with_opt(|token| {
|
2018-03-29 11:20:27 +02:00
|
|
|
trace!(target: "network", "{}: Initiating session {:?}", token, id);
|
2018-03-28 08:45:36 +02:00
|
|
|
match Session::new(io, socket, token, id, &nonce, &self.info.read()) {
|
2016-06-02 11:49:56 +02:00
|
|
|
Ok(s) => Some(Arc::new(Mutex::new(s))),
|
|
|
|
Err(e) => {
|
|
|
|
debug!(target: "network", "Session create error: {:?}", e);
|
|
|
|
None
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-06-02 11:49:56 +02:00
|
|
|
}
|
|
|
|
});
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-02 11:49:56 +02:00
|
|
|
match token {
|
2016-12-27 12:53:56 +01:00
|
|
|
Some(t) => io.register_stream(t).map(|_| ()).map_err(Into::into),
|
2016-06-02 11:49:56 +02:00
|
|
|
None => {
|
|
|
|
debug!(target: "network", "Max sessions reached");
|
|
|
|
Ok(())
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
2016-06-02 11:49:56 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn accept(&self, io: &IoContext<NetworkIoMessage>) {
|
2016-02-20 01:10:27 +01:00
|
|
|
trace!(target: "network", "Accepting incoming connection");
|
2016-01-24 18:53:54 +01:00
|
|
|
loop {
|
2016-07-13 19:59:59 +02:00
|
|
|
let socket = match self.tcp_listener.lock().accept() {
|
2016-10-30 09:56:34 +01:00
|
|
|
Ok((sock, _addr)) => sock,
|
2016-01-24 18:53:54 +01:00
|
|
|
Err(e) => {
|
2017-11-13 14:37:08 +01:00
|
|
|
if e.kind() != io::ErrorKind::WouldBlock {
|
2016-12-10 14:20:34 +01:00
|
|
|
debug!(target: "network", "Error accepting connection: {:?}", e);
|
|
|
|
}
|
2016-01-24 18:53:54 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
2016-06-02 11:49:56 +02:00
|
|
|
if let Err(e) = self.create_connection(socket, None, io) {
|
|
|
|
debug!(target: "network", "Can't accept connection: {:?}", e);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-01-08 13:55:44 +01:00
|
|
|
}
|
2016-02-19 17:11:24 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn session_writable(&self, token: StreamToken, io: &IoContext<NetworkIoMessage>) {
|
2016-07-13 19:59:59 +02:00
|
|
|
let session = { self.sessions.read().get(token).cloned() };
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-02-14 11:34:59 +01:00
|
|
|
if let Some(session) = session {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut s = session.lock();
|
|
|
|
if let Err(e) = s.writable(io, &self.info.read()) {
|
2016-02-20 01:10:27 +01:00
|
|
|
trace!(target: "network", "Session write error: {}: {:?}", token, e);
|
2016-02-14 11:34:59 +01:00
|
|
|
}
|
2016-05-02 14:48:30 +02:00
|
|
|
if s.done() {
|
2016-06-13 18:55:24 +02:00
|
|
|
io.deregister_stream(token)
|
|
|
|
.unwrap_or_else(|e| debug!("Error deregistering stream: {:?}", e));
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
2016-06-18 15:11:10 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-07-27 12:56:21 +02:00
|
|
|
fn connection_closed(&self, token: StreamToken, io: &IoContext<NetworkIoMessage>) {
|
2016-05-02 14:48:30 +02:00
|
|
|
trace!(target: "network", "Connection closed: {}", token);
|
2016-02-14 01:03:48 +01:00
|
|
|
self.kill_connection(token, io, true);
|
2016-01-10 14:02:01 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn session_readable(&self, token: StreamToken, io: &IoContext<NetworkIoMessage>) {
|
2015-12-22 22:23:43 +01:00
|
|
|
let mut ready_data: Vec<ProtocolId> = Vec::new();
|
2016-06-13 18:55:24 +02:00
|
|
|
let mut packet_data: Vec<(ProtocolId, PacketId, Vec<u8>)> = Vec::new();
|
2016-01-21 16:48:37 +01:00
|
|
|
let mut kill = false;
|
2016-07-13 19:59:59 +02:00
|
|
|
let session = { self.sessions.read().get(token).cloned() };
|
2017-01-17 16:02:29 +01:00
|
|
|
let mut ready_id = None;
|
2016-03-05 23:09:51 +01:00
|
|
|
if let Some(session) = session.clone() {
|
2017-01-17 16:02:29 +01:00
|
|
|
{
|
|
|
|
loop {
|
2018-03-09 11:26:40 +01:00
|
|
|
let session_result = session.lock().readable(io, &self.info.read());
|
2017-01-17 16:02:29 +01:00
|
|
|
match session_result {
|
|
|
|
Err(e) => {
|
2019-09-12 18:43:53 +02:00
|
|
|
let reserved_nodes = self.reserved_nodes.read();
|
2018-03-09 11:26:40 +01:00
|
|
|
let s = session.lock();
|
2017-01-17 16:02:29 +01:00
|
|
|
trace!(target: "network", "Session read error: {}:{:?} ({:?}) {:?}", token, s.id(), s.remote_addr(), e);
|
2018-05-29 09:16:08 +02:00
|
|
|
match *e.kind() {
|
|
|
|
ErrorKind::Disconnect(DisconnectReason::IncompatibleProtocol)
|
|
|
|
| ErrorKind::Disconnect(DisconnectReason::UselessPeer) => {
|
|
|
|
if let Some(id) = s.id() {
|
2019-09-12 18:43:53 +02:00
|
|
|
if !reserved_nodes.contains(id) {
|
2018-05-29 09:16:08 +02:00
|
|
|
let mut nodes = self.nodes.write();
|
|
|
|
nodes.note_failure(&id);
|
|
|
|
nodes.mark_as_useless(id);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2018-05-29 09:16:08 +02:00
|
|
|
}
|
2017-01-17 16:02:29 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
_ => {}
|
|
|
|
}
|
2017-01-17 16:02:29 +01:00
|
|
|
kill = true;
|
2020-08-05 06:08:03 +02:00
|
|
|
break;
|
2018-05-29 09:16:08 +02:00
|
|
|
}
|
|
|
|
Ok(SessionData::Ready) => {
|
2017-01-17 16:02:29 +01:00
|
|
|
let (_, egress_count, ingress_count) = self.session_count();
|
|
|
|
let reserved_nodes = self.reserved_nodes.read();
|
2018-03-09 11:26:40 +01:00
|
|
|
let mut s = session.lock();
|
|
|
|
let (min_peers, mut max_peers, reserved_only, self_id) = {
|
2019-09-12 18:43:53 +02:00
|
|
|
let info = self.info.read();
|
2018-03-09 11:26:40 +01:00
|
|
|
let mut max_peers = info.config.max_peers;
|
|
|
|
for cap in &s.info.capabilities {
|
|
|
|
if let Some(num) =
|
|
|
|
info.config.reserved_protocols.get(&cap.protocol)
|
2020-08-05 06:08:03 +02:00
|
|
|
{
|
2017-01-17 16:02:29 +01:00
|
|
|
max_peers += *num;
|
2020-08-05 06:08:03 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(
|
2017-01-17 16:02:29 +01:00
|
|
|
info.config.min_peers as usize,
|
2018-08-21 11:55:31 +02:00
|
|
|
max_peers as usize,
|
|
|
|
info.config.non_reserved_mode == NonReservedPeerMode::Deny,
|
|
|
|
*info.id(),
|
|
|
|
)
|
2017-01-17 16:02:29 +01:00
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-09 11:26:40 +01:00
|
|
|
max_peers = max(max_peers, min_peers);
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-08-21 11:55:31 +02:00
|
|
|
let id = *s.id().expect("Ready session always has id");
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-09 11:26:40 +01:00
|
|
|
// Check for the session limit.
|
|
|
|
// Outgoing connections are allowed as long as their count is <= min_peers
|
|
|
|
// Incoming connections are allowed to take all of the max_peers reserve, or at most half of the slots.
|
|
|
|
let max_ingress = max(max_peers - min_peers, min_peers / 2);
|
2017-01-17 16:02:29 +01:00
|
|
|
if reserved_only
|
2018-03-09 11:26:40 +01:00
|
|
|
|| (s.info.originated && egress_count > min_peers)
|
2018-09-25 11:59:21 +02:00
|
|
|
|| (!s.info.originated && ingress_count > max_ingress)
|
|
|
|
{
|
2019-09-12 18:43:53 +02:00
|
|
|
if !reserved_nodes.contains(&id) {
|
2018-09-25 11:59:21 +02:00
|
|
|
// only proceed if the connecting peer is reserved.
|
|
|
|
trace!(target: "network", "Disconnecting non-reserved peer {:?}", id);
|
|
|
|
s.disconnect(io, DisconnectReason::TooManyPeers);
|
|
|
|
kill = true;
|
|
|
|
break;
|
|
|
|
}
|
2016-06-13 18:55:24 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-08-29 14:38:01 +02:00
|
|
|
if !self.filter.as_ref().map_or(true, |f| {
|
|
|
|
f.connection_allowed(&self_id, &id, ConnectionDirection::Inbound)
|
|
|
|
}) {
|
|
|
|
trace!(target: "network", "Inbound connection not allowed for {:?}", id);
|
|
|
|
s.disconnect(io, DisconnectReason::UnexpectedIdentity);
|
|
|
|
kill = true;
|
|
|
|
break;
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-01-17 16:02:29 +01:00
|
|
|
ready_id = Some(id);
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-01-17 16:02:29 +01:00
|
|
|
// Add it to the node table
|
|
|
|
if !s.info.originated {
|
|
|
|
if let Ok(address) = s.remote_addr() {
|
|
|
|
// We can't know remote listening ports, so just assume defaults and hope for the best.
|
2017-07-19 15:44:08 +02:00
|
|
|
let endpoint = NodeEndpoint {
|
|
|
|
address: SocketAddr::new(address.ip(), DEFAULT_PORT),
|
|
|
|
udp_port: DEFAULT_PORT,
|
|
|
|
};
|
2018-08-21 11:55:31 +02:00
|
|
|
let entry = NodeEntry { id, endpoint };
|
2017-07-19 15:44:08 +02:00
|
|
|
let mut nodes = self.nodes.write();
|
|
|
|
if !nodes.contains(&entry.id) {
|
2018-05-31 13:38:46 +02:00
|
|
|
nodes.add_node(Node::new(entry.id, entry.endpoint.clone()));
|
2017-07-19 15:44:08 +02:00
|
|
|
let mut discovery = self.discovery.lock();
|
|
|
|
if let Some(ref mut discovery) = *discovery {
|
|
|
|
discovery.add_node(entry);
|
|
|
|
}
|
2017-01-17 16:02:29 +01:00
|
|
|
}
|
|
|
|
}
|
2016-10-30 15:39:36 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-05-07 13:11:12 +02:00
|
|
|
// Note connection success
|
2016-07-13 19:59:59 +02:00
|
|
|
self.nodes.write().note_success(&id);
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-05-07 13:11:12 +02:00
|
|
|
for (p, _) in self.handlers.read().iter() {
|
|
|
|
if s.have_capability(*p) {
|
|
|
|
ready_data.push(*p);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-07 13:11:12 +02:00
|
|
|
Ok(SessionData::Packet {
|
2017-01-17 16:02:29 +01:00
|
|
|
data,
|
2016-07-11 17:02:42 +02:00
|
|
|
protocol,
|
2017-01-17 16:02:29 +01:00
|
|
|
packet_id,
|
|
|
|
}) => match self.handlers.read().get(&protocol) {
|
2016-06-17 12:58:28 +02:00
|
|
|
None => {
|
2017-01-17 16:02:29 +01:00
|
|
|
warn!(target: "network", "No handler found for protocol: {:?}", protocol)
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2017-01-17 16:02:29 +01:00
|
|
|
Some(_) => packet_data.push((protocol, packet_id, data)),
|
|
|
|
},
|
|
|
|
Ok(SessionData::Continue) => (),
|
|
|
|
Ok(SessionData::None) => break,
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-17 16:02:29 +01:00
|
|
|
if kill {
|
|
|
|
self.kill_connection(token, io, true);
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-01-17 16:02:29 +01:00
|
|
|
let handlers = self.handlers.read();
|
|
|
|
if !ready_data.is_empty() {
|
|
|
|
let duplicate = self.sessions.read().iter().any(|e| {
|
|
|
|
let session = e.lock();
|
|
|
|
session.token() != token && session.info.id == ready_id
|
|
|
|
});
|
|
|
|
if duplicate {
|
|
|
|
trace!(target: "network", "Rejected duplicate connection: {}", token);
|
|
|
|
session
|
|
|
|
.lock()
|
|
|
|
.disconnect(io, DisconnectReason::DuplicatePeer);
|
|
|
|
drop(handlers);
|
|
|
|
self.kill_connection(token, io, false);
|
2020-08-05 06:08:03 +02:00
|
|
|
return;
|
2017-01-17 16:02:29 +01:00
|
|
|
}
|
|
|
|
for p in ready_data {
|
|
|
|
let reserved = self.reserved_nodes.read();
|
|
|
|
if let Some(h) = handlers.get(&p) {
|
|
|
|
h.connected(
|
|
|
|
&NetworkContext::new(
|
2020-08-05 06:08:03 +02:00
|
|
|
io,
|
|
|
|
p,
|
2017-01-17 16:02:29 +01:00
|
|
|
Some(session.clone()),
|
|
|
|
self.sessions.clone(),
|
|
|
|
&reserved,
|
|
|
|
),
|
|
|
|
&token,
|
|
|
|
);
|
|
|
|
// accumulate pending packets.
|
|
|
|
let mut session = session.lock();
|
|
|
|
packet_data.extend(session.mark_connected(p));
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
2017-01-17 16:02:29 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-01-17 16:02:29 +01:00
|
|
|
for (p, packet_id, data) in packet_data {
|
|
|
|
let reserved = self.reserved_nodes.read();
|
2018-08-21 11:55:31 +02:00
|
|
|
if let Some(h) = handlers.get(&p) {
|
2017-10-19 14:41:11 +02:00
|
|
|
h.read(
|
|
|
|
&NetworkContext::new(
|
|
|
|
io,
|
|
|
|
p,
|
|
|
|
Some(session.clone()),
|
|
|
|
self.sessions.clone(),
|
|
|
|
&reserved,
|
|
|
|
),
|
|
|
|
&token,
|
|
|
|
packet_id,
|
|
|
|
&data,
|
|
|
|
);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2017-01-17 16:02:29 +01:00
|
|
|
}
|
2016-10-31 19:58:47 +01:00
|
|
|
}
|
2016-01-10 14:02:01 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-06-08 16:31:48 +02:00
|
|
|
fn discovery_readable(&self, io: &IoContext<NetworkIoMessage>) {
|
|
|
|
let node_changes = match (
|
|
|
|
self.udp_socket.lock().as_ref(),
|
|
|
|
self.discovery.lock().as_mut(),
|
|
|
|
) {
|
|
|
|
(Some(udp_socket), Some(discovery)) => {
|
|
|
|
let mut buf = [0u8; MAX_DATAGRAM_SIZE];
|
|
|
|
let writable = discovery.any_sends_queued();
|
|
|
|
let res = match udp_socket.recv_from(&mut buf) {
|
|
|
|
Ok(Some((len, address))) => discovery
|
|
|
|
.on_packet(&buf[0..len], address)
|
|
|
|
.unwrap_or_else(|e| {
|
|
|
|
debug!(target: "network", "Error processing UDP packet: {:?}", e);
|
|
|
|
None
|
|
|
|
}),
|
|
|
|
Ok(_) => None,
|
|
|
|
Err(e) => {
|
|
|
|
debug!(target: "network", "Error reading UPD socket: {:?}", e);
|
|
|
|
None
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let new_writable = discovery.any_sends_queued();
|
|
|
|
if writable != new_writable {
|
|
|
|
io.update_registration(DISCOVERY)
|
|
|
|
.unwrap_or_else(|e| {
|
|
|
|
debug!(target: "network" ,"Error updating discovery registration: {:?}", e)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
res
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
};
|
|
|
|
if let Some(node_changes) = node_changes {
|
|
|
|
self.update_nodes(io, node_changes);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2018-06-08 16:31:48 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-06-08 16:31:48 +02:00
|
|
|
fn discovery_writable(&self, io: &IoContext<NetworkIoMessage>) {
|
2018-08-21 11:55:31 +02:00
|
|
|
if let (Some(udp_socket), Some(discovery)) = (
|
|
|
|
self.udp_socket.lock().as_ref(),
|
|
|
|
self.discovery.lock().as_mut(),
|
|
|
|
) {
|
|
|
|
while let Some(data) = discovery.dequeue_send() {
|
|
|
|
match udp_socket.send_to(&data.payload, &data.address) {
|
|
|
|
Ok(Some(size)) if size == data.payload.len() => {}
|
|
|
|
Ok(Some(_)) => {
|
|
|
|
warn!(target: "network", "UDP sent incomplete datagram");
|
|
|
|
}
|
|
|
|
Ok(None) => {
|
|
|
|
discovery.requeue_send(data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
debug!(target: "network", "UDP send error: {:?}, address: {:?}", e, &data.address);
|
|
|
|
return;
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
2018-06-08 16:31:48 +02:00
|
|
|
}
|
2018-08-21 11:55:31 +02:00
|
|
|
io.update_registration(DISCOVERY).unwrap_or_else(
|
|
|
|
|e| debug!(target: "network", "Error updating discovery registration: {:?}", e),
|
|
|
|
);
|
|
|
|
}
|
2018-06-08 16:31:48 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn connection_timeout(&self, token: StreamToken, io: &IoContext<NetworkIoMessage>) {
|
2016-05-02 14:48:30 +02:00
|
|
|
trace!(target: "network", "Connection timeout: {}", token);
|
2016-02-14 01:03:48 +01:00
|
|
|
self.kill_connection(token, io, true)
|
2015-12-02 12:07:46 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn kill_connection(&self, token: StreamToken, io: &IoContext<NetworkIoMessage>, remote: bool) {
|
2016-01-10 14:02:01 +01:00
|
|
|
let mut to_disconnect: Vec<ProtocolId> = Vec::new();
|
2016-02-14 02:11:55 +01:00
|
|
|
let mut failure_id = None;
|
2016-02-26 11:37:06 +01:00
|
|
|
let mut deregister = false;
|
2016-03-05 23:09:51 +01:00
|
|
|
let mut expired_session = None;
|
2020-07-29 10:41:19 +02:00
|
|
|
if let FIRST_SESSION..=LAST_SESSION = token {
|
2018-03-09 11:26:40 +01:00
|
|
|
let sessions = self.sessions.read();
|
2016-06-03 11:36:30 +02:00
|
|
|
if let Some(session) = sessions.get(token).cloned() {
|
|
|
|
expired_session = Some(session.clone());
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut s = session.lock();
|
2016-06-03 11:36:30 +02:00
|
|
|
if !s.expired() {
|
|
|
|
if s.is_ready() {
|
2016-07-13 19:59:59 +02:00
|
|
|
for (p, _) in self.handlers.read().iter() {
|
2016-09-28 14:21:59 +02:00
|
|
|
if s.have_capability(*p) {
|
|
|
|
to_disconnect.push(*p);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-01-21 16:48:37 +01:00
|
|
|
}
|
|
|
|
}
|
2016-06-03 11:36:30 +02:00
|
|
|
s.set_expired();
|
|
|
|
failure_id = s.id().cloned();
|
2016-01-10 14:02:01 +01:00
|
|
|
}
|
2016-06-03 11:36:30 +02:00
|
|
|
deregister = remote || s.done();
|
|
|
|
}
|
2016-01-10 14:02:01 +01:00
|
|
|
}
|
2016-02-14 02:11:55 +01:00
|
|
|
if let Some(id) = failure_id {
|
|
|
|
if remote {
|
2016-07-13 19:59:59 +02:00
|
|
|
self.nodes.write().note_failure(&id);
|
2016-01-21 16:48:37 +01:00
|
|
|
}
|
2016-01-10 14:02:01 +01:00
|
|
|
}
|
|
|
|
for p in to_disconnect {
|
|
|
|
let reserved = self.reserved_nodes.read();
|
2016-07-13 19:59:59 +02:00
|
|
|
if let Some(h) = self.handlers.read().get(&p) {
|
|
|
|
h.disconnected(
|
2016-10-31 19:58:47 +01:00
|
|
|
&NetworkContext::new(
|
|
|
|
io,
|
|
|
|
p,
|
|
|
|
expired_session.clone(),
|
|
|
|
self.sessions.clone(),
|
|
|
|
&reserved,
|
|
|
|
),
|
|
|
|
&token,
|
|
|
|
);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-10-31 19:58:47 +01:00
|
|
|
}
|
2016-02-26 11:37:06 +01:00
|
|
|
if deregister {
|
2016-06-13 18:55:24 +02:00
|
|
|
io.deregister_stream(token)
|
|
|
|
.unwrap_or_else(|e| debug!("Error deregistering stream: {:?}", e));
|
2016-06-18 15:11:10 +02:00
|
|
|
}
|
2015-11-29 11:50:28 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-10-25 18:40:01 +02:00
|
|
|
fn update_nodes(&self, _io: &IoContext<NetworkIoMessage>, node_changes: TableUpdates) {
|
2016-02-12 09:52:32 +01:00
|
|
|
let mut to_remove: Vec<PeerId> = Vec::new();
|
2016-02-14 02:11:55 +01:00
|
|
|
{
|
2018-03-09 11:26:40 +01:00
|
|
|
let sessions = self.sessions.read();
|
2016-06-02 11:49:56 +02:00
|
|
|
for c in sessions.iter() {
|
2016-07-13 19:59:59 +02:00
|
|
|
let s = c.lock();
|
2016-06-02 11:49:56 +02:00
|
|
|
if let Some(id) = s.id() {
|
|
|
|
if node_changes.removed.contains(id) {
|
2016-02-14 11:34:59 +01:00
|
|
|
to_remove.push(s.token());
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-12 09:52:32 +01:00
|
|
|
}
|
|
|
|
for i in to_remove {
|
2016-05-02 14:48:30 +02:00
|
|
|
trace!(target: "network", "Removed from node table: {}", i);
|
2016-02-12 09:52:32 +01:00
|
|
|
}
|
2019-09-12 18:43:53 +02:00
|
|
|
let reserved_nodes = self.reserved_nodes.read();
|
|
|
|
self.nodes.write().update(node_changes, &*reserved_nodes);
|
2015-11-29 11:50:28 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
pub fn with_context<F>(&self, protocol: ProtocolId, io: &IoContext<NetworkIoMessage>, action: F)
|
|
|
|
where
|
2020-07-29 10:36:15 +02:00
|
|
|
F: FnOnce(&dyn NetworkContextTrait),
|
2018-03-05 11:56:35 +01:00
|
|
|
{
|
2016-07-13 19:59:59 +02:00
|
|
|
let reserved = { self.reserved_nodes.read() };
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
let context = NetworkContext::new(io, protocol, None, self.sessions.clone(), &reserved);
|
|
|
|
action(&context);
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-03-05 11:56:35 +01:00
|
|
|
pub fn with_context_eval<F, T>(
|
|
|
|
&self,
|
|
|
|
protocol: ProtocolId,
|
|
|
|
io: &IoContext<NetworkIoMessage>,
|
|
|
|
action: F,
|
|
|
|
) -> T
|
|
|
|
where
|
2020-07-29 10:36:15 +02:00
|
|
|
F: FnOnce(&dyn NetworkContextTrait) -> T,
|
2018-03-05 11:56:35 +01:00
|
|
|
{
|
2016-10-12 20:18:59 +02:00
|
|
|
let reserved = { self.reserved_nodes.read() };
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-10-12 20:18:59 +02:00
|
|
|
let context = NetworkContext::new(io, protocol, None, self.sessions.clone(), &reserved);
|
|
|
|
action(&context)
|
|
|
|
}
|
2016-01-08 13:55:44 +01:00
|
|
|
}
|
2015-11-29 11:50:28 +01:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
impl IoHandler<NetworkIoMessage> for Host {
|
2016-01-13 11:31:37 +01:00
|
|
|
/// Initialize networking
|
2016-07-11 17:02:42 +02:00
|
|
|
fn initialize(&self, io: &IoContext<NetworkIoMessage>) {
|
2016-01-21 16:48:37 +01:00
|
|
|
io.register_timer(IDLE, MAINTENANCE_TIMEOUT)
|
|
|
|
.expect("Error registering Network idle timer");
|
2016-07-09 11:21:54 +02:00
|
|
|
io.message(NetworkIoMessage::InitPublicInterface)
|
|
|
|
.unwrap_or_else(|e| warn!("Error sending IO notification: {:?}", e));
|
2016-02-19 16:34:31 +01:00
|
|
|
self.maintain_network(io)
|
2016-01-13 11:31:37 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn stream_hup(&self, io: &IoContext<NetworkIoMessage>, stream: StreamToken) {
|
2016-02-20 01:10:27 +01:00
|
|
|
trace!(target: "network", "Hup: {}", stream);
|
2016-01-13 11:31:37 +01:00
|
|
|
match stream {
|
2020-07-29 10:41:19 +02:00
|
|
|
FIRST_SESSION..=LAST_SESSION => self.connection_closed(stream, io),
|
2016-02-20 01:10:27 +01:00
|
|
|
_ => warn!(target: "network", "Unexpected hup"),
|
2016-01-13 11:31:37 +01:00
|
|
|
};
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn stream_readable(&self, io: &IoContext<NetworkIoMessage>, stream: StreamToken) {
|
2016-06-17 18:26:54 +02:00
|
|
|
if self.stopping.load(AtomicOrdering::Acquire) {
|
|
|
|
return;
|
|
|
|
}
|
2016-01-13 11:31:37 +01:00
|
|
|
match stream {
|
2020-07-29 10:41:19 +02:00
|
|
|
FIRST_SESSION..=LAST_SESSION => self.session_readable(stream, io),
|
2018-06-08 16:31:48 +02:00
|
|
|
DISCOVERY => self.discovery_readable(io),
|
2016-02-19 17:11:24 +01:00
|
|
|
TCP_ACCEPT => self.accept(io),
|
2016-01-13 11:31:37 +01:00
|
|
|
_ => panic!("Received unknown readable token"),
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-01-08 13:55:44 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn stream_writable(&self, io: &IoContext<NetworkIoMessage>, stream: StreamToken) {
|
2016-06-17 18:26:54 +02:00
|
|
|
if self.stopping.load(AtomicOrdering::Acquire) {
|
|
|
|
return;
|
|
|
|
}
|
2016-01-13 11:31:37 +01:00
|
|
|
match stream {
|
2020-07-29 10:41:19 +02:00
|
|
|
FIRST_SESSION..=LAST_SESSION => self.session_writable(stream, io),
|
2018-06-08 16:31:48 +02:00
|
|
|
DISCOVERY => self.discovery_writable(io),
|
2016-01-13 11:31:37 +01:00
|
|
|
_ => panic!("Received unknown writable token"),
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2015-11-29 11:50:28 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn timeout(&self, io: &IoContext<NetworkIoMessage>, token: TimerToken) {
|
2016-06-17 18:26:54 +02:00
|
|
|
if self.stopping.load(AtomicOrdering::Acquire) {
|
|
|
|
return;
|
|
|
|
}
|
2016-01-13 11:31:37 +01:00
|
|
|
match token {
|
|
|
|
IDLE => self.maintain_network(io),
|
2020-07-29 10:41:19 +02:00
|
|
|
FIRST_SESSION..=LAST_SESSION => self.connection_timeout(token, io),
|
2016-02-12 09:52:32 +01:00
|
|
|
DISCOVERY_REFRESH => {
|
2018-09-14 22:18:03 +02:00
|
|
|
// Run the _slow_ discovery if enough peers are connected
|
|
|
|
if !self.has_enough_peers() {
|
2020-08-05 06:08:03 +02:00
|
|
|
return;
|
|
|
|
}
|
2018-09-14 22:18:03 +02:00
|
|
|
self.discovery.lock().as_mut().map(|d| d.refresh());
|
2016-06-27 19:30:13 +02:00
|
|
|
io.update_registration(DISCOVERY)
|
|
|
|
.unwrap_or_else(|e| debug!("Error updating discovery registration: {:?}", e));
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2018-09-14 22:18:03 +02:00
|
|
|
FAST_DISCOVERY_REFRESH => {
|
|
|
|
// Run the fast discovery if not enough peers are connected
|
|
|
|
if self.has_enough_peers() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
self.discovery.lock().as_mut().map(|d| d.refresh());
|
2016-06-27 19:30:13 +02:00
|
|
|
io.update_registration(DISCOVERY)
|
|
|
|
.unwrap_or_else(|e| debug!("Error updating discovery registration: {:?}", e));
|
2016-02-12 09:52:32 +01:00
|
|
|
}
|
2018-09-14 22:18:03 +02:00
|
|
|
DISCOVERY_ROUND => {
|
|
|
|
self.discovery.lock().as_mut().map(|d| d.round());
|
|
|
|
io.update_registration(DISCOVERY)
|
|
|
|
.unwrap_or_else(|e| debug!("Error updating discovery registration: {:?}", e));
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2018-04-14 21:35:58 +02:00
|
|
|
NODE_TABLE => {
|
2018-09-14 22:18:03 +02:00
|
|
|
trace!(target: "network", "Refreshing node table");
|
2018-05-07 13:11:12 +02:00
|
|
|
let mut nodes = self.nodes.write();
|
2019-09-12 18:43:53 +02:00
|
|
|
nodes.clear_useless();
|
|
|
|
nodes.save();
|
2018-09-14 22:18:03 +02:00
|
|
|
}
|
|
|
|
_ => match self.timers.read().get(&token).cloned() {
|
|
|
|
Some(timer) => match self.handlers.read().get(&timer.protocol).cloned() {
|
2016-05-02 14:48:30 +02:00
|
|
|
None => {
|
2016-06-15 19:01:58 +02:00
|
|
|
warn!(target: "network", "No handler found for protocol: {:?}", timer.protocol)
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2019-09-12 18:43:53 +02:00
|
|
|
Some(h) => {
|
|
|
|
let reserved = self.reserved_nodes.read();
|
2016-07-13 19:59:59 +02:00
|
|
|
h.timeout(
|
2016-09-28 14:21:59 +02:00
|
|
|
&NetworkContext::new(
|
2016-06-17 12:58:28 +02:00
|
|
|
io,
|
|
|
|
timer.protocol,
|
|
|
|
None,
|
2016-07-13 19:59:59 +02:00
|
|
|
self.sessions.clone(),
|
2016-06-21 13:56:33 +02:00
|
|
|
&reserved,
|
|
|
|
),
|
|
|
|
timer.token,
|
|
|
|
);
|
|
|
|
}
|
2016-01-21 16:48:37 +01:00
|
|
|
},
|
|
|
|
None => {
|
|
|
|
warn!("Unknown timer token: {}", token);
|
|
|
|
} // timer is not registerd through us
|
2020-08-05 06:08:03 +02:00
|
|
|
},
|
|
|
|
}
|
2015-12-17 11:42:30 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn message(&self, io: &IoContext<NetworkIoMessage>, message: &NetworkIoMessage) {
|
2016-06-17 18:26:54 +02:00
|
|
|
if self.stopping.load(AtomicOrdering::Acquire) {
|
|
|
|
return;
|
|
|
|
}
|
2016-01-19 12:14:29 +01:00
|
|
|
match *message {
|
|
|
|
NetworkIoMessage::AddHandler {
|
2016-01-21 16:48:37 +01:00
|
|
|
ref handler,
|
|
|
|
ref protocol,
|
2016-01-13 11:31:37 +01:00
|
|
|
ref versions,
|
2020-08-05 06:08:03 +02:00
|
|
|
} => {
|
2016-01-21 16:48:37 +01:00
|
|
|
let h = handler.clone();
|
2016-07-13 19:59:59 +02:00
|
|
|
let reserved = self.reserved_nodes.read();
|
2016-06-21 13:56:33 +02:00
|
|
|
h.initialize(&NetworkContext::new(
|
2020-08-05 06:08:03 +02:00
|
|
|
io,
|
2016-01-13 11:31:37 +01:00
|
|
|
*protocol,
|
2016-10-24 16:24:35 +02:00
|
|
|
None,
|
2017-07-14 20:40:28 +02:00
|
|
|
self.sessions.clone(),
|
|
|
|
&reserved,
|
|
|
|
));
|
2016-09-28 14:21:59 +02:00
|
|
|
self.handlers.write().insert(*protocol, h);
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut info = self.info.write();
|
2018-05-14 10:09:05 +02:00
|
|
|
for &(version, packet_count) in versions {
|
|
|
|
info.capabilities.push(CapabilityInfo {
|
2016-09-28 14:21:59 +02:00
|
|
|
protocol: *protocol,
|
2020-08-05 06:08:03 +02:00
|
|
|
version,
|
2018-05-14 10:09:05 +02:00
|
|
|
packet_count,
|
2020-08-05 06:08:03 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2018-05-14 10:09:05 +02:00
|
|
|
NetworkIoMessage::AddTimer {
|
2016-01-21 16:48:37 +01:00
|
|
|
ref protocol,
|
|
|
|
ref delay,
|
2020-08-05 06:08:03 +02:00
|
|
|
ref token,
|
|
|
|
} => {
|
2016-01-21 16:48:37 +01:00
|
|
|
let handler_token = {
|
2018-05-14 10:09:05 +02:00
|
|
|
let mut timer_counter = self.timer_counter.write();
|
2016-06-20 14:13:33 +02:00
|
|
|
let counter = &mut *timer_counter;
|
2016-01-21 16:48:37 +01:00
|
|
|
let handler_token = *counter;
|
|
|
|
*counter += 1;
|
|
|
|
handler_token
|
2020-08-05 06:08:03 +02:00
|
|
|
};
|
2018-05-14 10:09:05 +02:00
|
|
|
self.timers.write().insert(
|
2016-01-21 16:48:37 +01:00
|
|
|
handler_token,
|
|
|
|
ProtocolTimer {
|
2018-05-14 10:09:05 +02:00
|
|
|
protocol: *protocol,
|
2016-01-21 16:48:37 +01:00
|
|
|
token: *token,
|
|
|
|
},
|
2016-07-13 19:59:59 +02:00
|
|
|
);
|
2016-09-28 14:21:59 +02:00
|
|
|
io.register_timer(handler_token, *delay)
|
|
|
|
.unwrap_or_else(|e| debug!("Error registering timer {}: {:?}", token, e));
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-09-28 14:21:59 +02:00
|
|
|
NetworkIoMessage::Disconnect(ref peer) => {
|
|
|
|
let session = { self.sessions.read().get(*peer).cloned() };
|
2016-06-27 19:30:13 +02:00
|
|
|
if let Some(session) = session {
|
2020-08-05 06:08:03 +02:00
|
|
|
session
|
|
|
|
.lock()
|
2016-06-27 19:30:13 +02:00
|
|
|
.disconnect(io, DisconnectReason::DisconnectRequested);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-06-27 19:30:13 +02:00
|
|
|
trace!(target: "network", "Disconnect requested {}", peer);
|
2016-02-02 21:10:16 +01:00
|
|
|
self.kill_connection(*peer, io, false);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-02-02 21:10:16 +01:00
|
|
|
NetworkIoMessage::DisablePeer(ref peer) => {
|
2016-07-13 19:59:59 +02:00
|
|
|
let session = { self.sessions.read().get(*peer).cloned() };
|
2016-02-14 11:34:59 +01:00
|
|
|
if let Some(session) = session {
|
2016-07-13 19:59:59 +02:00
|
|
|
session
|
|
|
|
.lock()
|
|
|
|
.disconnect(io, DisconnectReason::DisconnectRequested);
|
|
|
|
if let Some(id) = session.lock().id() {
|
2016-05-02 14:48:30 +02:00
|
|
|
let mut nodes = self.nodes.write();
|
|
|
|
nodes.note_failure(&id);
|
2018-05-07 13:11:12 +02:00
|
|
|
nodes.mark_as_useless(id);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-02 14:48:30 +02:00
|
|
|
trace!(target: "network", "Disabling peer {}", peer);
|
|
|
|
self.kill_connection(*peer, io, false);
|
|
|
|
}
|
|
|
|
NetworkIoMessage::InitPublicInterface => self
|
2016-07-09 11:21:54 +02:00
|
|
|
.init_public_interface(io)
|
2016-05-02 14:48:30 +02:00
|
|
|
.unwrap_or_else(|e| warn!("Error initializing public interface: {:?}", e)),
|
2016-07-06 18:28:11 +02:00
|
|
|
_ => {} // ignore others.
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-02 14:48:30 +02:00
|
|
|
fn register_stream(
|
2020-08-05 06:08:03 +02:00
|
|
|
&self,
|
2016-07-11 17:02:42 +02:00
|
|
|
stream: StreamToken,
|
|
|
|
reg: Token,
|
2016-05-02 14:48:30 +02:00
|
|
|
event_loop: &mut EventLoop<IoManager<NetworkIoMessage>>,
|
|
|
|
) {
|
2016-01-21 16:48:37 +01:00
|
|
|
match stream {
|
2020-07-29 10:41:19 +02:00
|
|
|
FIRST_SESSION..=LAST_SESSION => {
|
2016-07-13 19:59:59 +02:00
|
|
|
let session = { self.sessions.read().get(stream).cloned() };
|
2016-05-02 14:48:30 +02:00
|
|
|
if let Some(session) = session {
|
2016-07-13 19:59:59 +02:00
|
|
|
session
|
|
|
|
.lock()
|
2016-07-11 17:02:42 +02:00
|
|
|
.register_socket(reg, event_loop)
|
2016-07-13 19:59:59 +02:00
|
|
|
.expect("Error registering socket");
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
2016-07-13 19:59:59 +02:00
|
|
|
DISCOVERY => match self.udp_socket.lock().as_ref() {
|
2018-06-08 16:31:48 +02:00
|
|
|
Some(udp_socket) => {
|
|
|
|
event_loop
|
|
|
|
.register(udp_socket, reg, Ready::all(), PollOpt::edge())
|
|
|
|
.expect("Error registering UDP socket");
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2018-06-08 16:31:48 +02:00
|
|
|
_ => panic!("Error registering discovery socket"),
|
|
|
|
},
|
|
|
|
TCP_ACCEPT => event_loop
|
|
|
|
.register(
|
2016-10-30 09:56:34 +01:00
|
|
|
&*self.tcp_listener.lock(),
|
|
|
|
Token(TCP_ACCEPT),
|
|
|
|
Ready::all(),
|
|
|
|
PollOpt::edge(),
|
2020-08-05 06:08:03 +02:00
|
|
|
)
|
2016-10-30 09:56:34 +01:00
|
|
|
.expect("Error registering stream"),
|
2016-01-21 23:33:52 +01:00
|
|
|
_ => warn!("Unexpected stream registration"),
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-01-21 16:48:37 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn deregister_stream(
|
|
|
|
&self,
|
|
|
|
stream: StreamToken,
|
|
|
|
event_loop: &mut EventLoop<IoManager<NetworkIoMessage>>,
|
|
|
|
) {
|
2016-01-22 18:13:59 +01:00
|
|
|
match stream {
|
2020-07-29 10:41:19 +02:00
|
|
|
FIRST_SESSION..=LAST_SESSION => {
|
2016-07-13 19:59:59 +02:00
|
|
|
let mut connections = self.sessions.write();
|
2016-01-22 18:13:59 +01:00
|
|
|
if let Some(connection) = connections.get(stream).cloned() {
|
2017-02-17 12:20:25 +01:00
|
|
|
let c = connection.lock();
|
|
|
|
if c.expired() {
|
|
|
|
// make sure it is the same connection that the event was generated for
|
|
|
|
c.deregister_socket(event_loop)
|
|
|
|
.expect("Error deregistering socket");
|
|
|
|
connections.remove(stream);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
2017-02-17 12:20:25 +01:00
|
|
|
}
|
2016-02-12 09:52:32 +01:00
|
|
|
DISCOVERY => (),
|
2016-01-22 18:13:59 +01:00
|
|
|
_ => warn!("Unexpected stream deregistration"),
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-01-22 18:13:59 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn update_stream(
|
|
|
|
&self,
|
|
|
|
stream: StreamToken,
|
|
|
|
reg: Token,
|
|
|
|
event_loop: &mut EventLoop<IoManager<NetworkIoMessage>>,
|
|
|
|
) {
|
2016-01-21 16:48:37 +01:00
|
|
|
match stream {
|
2020-07-29 10:41:19 +02:00
|
|
|
FIRST_SESSION..=LAST_SESSION => {
|
2016-07-13 19:59:59 +02:00
|
|
|
let connection = { self.sessions.read().get(stream).cloned() };
|
2016-02-14 11:34:59 +01:00
|
|
|
if let Some(connection) = connection {
|
2016-07-13 19:59:59 +02:00
|
|
|
connection
|
|
|
|
.lock()
|
|
|
|
.update_socket(reg, event_loop)
|
|
|
|
.expect("Error updating socket");
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-02-14 11:34:59 +01:00
|
|
|
}
|
2018-06-08 16:31:48 +02:00
|
|
|
DISCOVERY => match (
|
|
|
|
self.udp_socket.lock().as_ref(),
|
|
|
|
self.discovery.lock().as_ref(),
|
|
|
|
) {
|
|
|
|
(Some(udp_socket), Some(discovery)) => {
|
|
|
|
let registration = if discovery.any_sends_queued() {
|
|
|
|
Ready::readable() | Ready::writable()
|
|
|
|
} else {
|
|
|
|
Ready::readable()
|
|
|
|
};
|
|
|
|
event_loop
|
|
|
|
.reregister(udp_socket, reg, registration, PollOpt::edge())
|
|
|
|
.expect("Error reregistering UDP socket");
|
|
|
|
}
|
|
|
|
_ => panic!("Error reregistering discovery socket"),
|
|
|
|
},
|
2016-10-30 09:56:34 +01:00
|
|
|
TCP_ACCEPT => event_loop
|
|
|
|
.reregister(
|
|
|
|
&*self.tcp_listener.lock(),
|
|
|
|
Token(TCP_ACCEPT),
|
|
|
|
Ready::all(),
|
|
|
|
PollOpt::edge(),
|
2020-08-05 06:08:03 +02:00
|
|
|
)
|
2016-10-30 09:56:34 +01:00
|
|
|
.expect("Error reregistering stream"),
|
2016-01-21 16:48:37 +01:00
|
|
|
_ => warn!("Unexpected stream update"),
|
|
|
|
}
|
|
|
|
}
|
2016-01-08 13:55:44 +01:00
|
|
|
}
|
2016-02-15 18:36:34 +01:00
|
|
|
|
|
|
|
fn save_key(path: &Path, key: &Secret) {
|
|
|
|
let mut path_buf = PathBuf::from(path);
|
|
|
|
if let Err(e) = fs::create_dir_all(path_buf.as_path()) {
|
|
|
|
warn!("Error creating key directory: {:?}", e);
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
path_buf.push("key");
|
2016-06-15 00:58:08 +02:00
|
|
|
let path = path_buf.as_path();
|
|
|
|
let mut file = match fs::File::create(&path) {
|
2016-02-15 18:36:34 +01:00
|
|
|
Ok(file) => file,
|
|
|
|
Err(e) => {
|
|
|
|
warn!("Error creating key file: {:?}", e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
2016-12-16 18:17:15 +01:00
|
|
|
if let Err(e) = restrict_permissions_owner(path, true, false) {
|
|
|
|
warn!(target: "network", "Failed to modify permissions of the file ({})", e);
|
2016-06-15 00:58:08 +02:00
|
|
|
}
|
2018-04-02 13:12:52 +02:00
|
|
|
if let Err(e) = file.write(&key.hex().into_bytes()[2..]) {
|
2016-02-15 18:36:34 +01:00
|
|
|
warn!("Error writing key file: {:?}", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn load_key(path: &Path) -> Option<Secret> {
|
|
|
|
let mut path_buf = PathBuf::from(path);
|
|
|
|
path_buf.push("key");
|
|
|
|
let mut file = match fs::File::open(path_buf.as_path()) {
|
|
|
|
Ok(file) => file,
|
|
|
|
Err(e) => {
|
|
|
|
debug!("Error opening key file: {:?}", e);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let mut buf = String::new();
|
|
|
|
match file.read_to_string(&mut buf) {
|
|
|
|
Ok(_) => {}
|
2016-02-19 17:11:24 +01:00
|
|
|
Err(e) => {
|
2016-02-15 18:36:34 +01:00
|
|
|
warn!("Error reading key file: {:?}", e);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
match Secret::from_str(&buf) {
|
|
|
|
Ok(key) => Some(key),
|
2016-02-19 17:11:24 +01:00
|
|
|
Err(e) => {
|
2016-02-15 18:36:34 +01:00
|
|
|
warn!("Error parsing key file: {:?}", e);
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-16 21:25:01 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn key_save_load() {
|
2017-10-20 12:11:34 +02:00
|
|
|
use tempdir::TempDir;
|
|
|
|
|
|
|
|
let tempdir = TempDir::new("").unwrap();
|
2017-05-19 17:06:36 +02:00
|
|
|
let key = H256::random().into();
|
2017-10-20 12:11:34 +02:00
|
|
|
save_key(tempdir.path(), &key);
|
|
|
|
let r = load_key(tempdir.path());
|
2016-02-16 21:25:01 +01:00
|
|
|
assert_eq!(key, r.unwrap());
|
|
|
|
}
|
2016-02-17 14:07:11 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn host_client_url() {
|
2016-10-31 19:58:47 +01:00
|
|
|
let mut config = NetworkConfiguration::new_local();
|
2017-01-11 12:16:47 +01:00
|
|
|
let key = "6f7b0d801bc7b5ce7bbd930b84fd0369b3eb25d09be58d64ba811091046f3aa2"
|
|
|
|
.parse()
|
|
|
|
.unwrap();
|
2016-02-17 14:07:11 +01:00
|
|
|
config.use_secret = Some(key);
|
2018-03-28 08:45:36 +02:00
|
|
|
let host: Host = Host::new(config, None).unwrap();
|
2016-03-20 11:35:46 +01:00
|
|
|
assert!(host.local_url().starts_with("enode://101b3ef5a4ea7a1c7928e24c4c75fd053c235d7b80c22ae5c03d145d0ac7396e2a4ffff9adee3133a7b05044a5cee08115fd65145e5165d646bde371010d803c@"));
|
2016-02-17 14:07:11 +01:00
|
|
|
}
|