|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub(crate) mod handler; |
|
|
pub(crate) mod transport; |
|
|
|
|
|
use crate::multiaddr_ext::MultiaddrExt; |
|
|
use crate::priv_client::handler::Handler; |
|
|
use crate::protocol::{self, inbound_stop}; |
|
|
use bytes::Bytes; |
|
|
use either::Either; |
|
|
use futures::channel::mpsc::Receiver; |
|
|
use futures::future::{BoxFuture, FutureExt}; |
|
|
use futures::io::{AsyncRead, AsyncWrite}; |
|
|
use futures::ready; |
|
|
use futures::stream::StreamExt; |
|
|
use libp2p_core::multiaddr::Protocol; |
|
|
use libp2p_core::transport::PortUse; |
|
|
use libp2p_core::{Endpoint, Multiaddr}; |
|
|
use libp2p_identity::PeerId; |
|
|
use libp2p_swarm::behaviour::{ConnectionClosed, ConnectionEstablished, FromSwarm}; |
|
|
use libp2p_swarm::dial_opts::DialOpts; |
|
|
use libp2p_swarm::{ |
|
|
dummy, ConnectionDenied, ConnectionHandler, ConnectionId, DialFailure, NetworkBehaviour, |
|
|
NotifyHandler, Stream, THandler, THandlerInEvent, THandlerOutEvent, ToSwarm, |
|
|
}; |
|
|
use std::collections::{hash_map, HashMap, VecDeque}; |
|
|
use std::io::{Error, ErrorKind, IoSlice}; |
|
|
use std::pin::Pin; |
|
|
use std::task::{Context, Poll}; |
|
|
use transport::Transport; |
|
|
use void::Void; |
|
|
|
|
|
|
|
|
#[derive(Debug)] |
|
|
pub enum Event { |
|
|
|
|
|
ReservationReqAccepted { |
|
|
relay_peer_id: PeerId, |
|
|
|
|
|
renewal: bool, |
|
|
limit: Option<protocol::Limit>, |
|
|
}, |
|
|
OutboundCircuitEstablished { |
|
|
relay_peer_id: PeerId, |
|
|
limit: Option<protocol::Limit>, |
|
|
}, |
|
|
|
|
|
InboundCircuitEstablished { |
|
|
src_peer_id: PeerId, |
|
|
limit: Option<protocol::Limit>, |
|
|
}, |
|
|
} |
|
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)] |
|
|
enum ReservationStatus { |
|
|
Pending, |
|
|
Confirmed, |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
pub struct Behaviour { |
|
|
local_peer_id: PeerId, |
|
|
|
|
|
from_transport: Receiver<transport::TransportToBehaviourMsg>, |
|
|
|
|
|
|
|
|
directly_connected_peers: HashMap<PeerId, Vec<ConnectionId>>, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
reservation_addresses: HashMap<ConnectionId, (Multiaddr, ReservationStatus)>, |
|
|
|
|
|
|
|
|
queued_actions: VecDeque<ToSwarm<Event, Either<handler::In, Void>>>, |
|
|
|
|
|
pending_handler_commands: HashMap<ConnectionId, handler::In>, |
|
|
} |
|
|
|
|
|
|
|
|
pub fn new(local_peer_id: PeerId) -> (Transport, Behaviour) { |
|
|
let (transport, from_transport) = Transport::new(); |
|
|
let behaviour = Behaviour { |
|
|
local_peer_id, |
|
|
from_transport, |
|
|
directly_connected_peers: Default::default(), |
|
|
reservation_addresses: Default::default(), |
|
|
queued_actions: Default::default(), |
|
|
pending_handler_commands: Default::default(), |
|
|
}; |
|
|
(transport, behaviour) |
|
|
} |
|
|
|
|
|
impl Behaviour { |
|
|
fn on_connection_closed( |
|
|
&mut self, |
|
|
ConnectionClosed { |
|
|
peer_id, |
|
|
connection_id, |
|
|
endpoint, |
|
|
.. |
|
|
}: ConnectionClosed, |
|
|
) { |
|
|
if !endpoint.is_relayed() { |
|
|
match self.directly_connected_peers.entry(peer_id) { |
|
|
hash_map::Entry::Occupied(mut connections) => { |
|
|
let position = connections |
|
|
.get() |
|
|
.iter() |
|
|
.position(|c| c == &connection_id) |
|
|
.expect("Connection to be known."); |
|
|
connections.get_mut().remove(position); |
|
|
|
|
|
if connections.get().is_empty() { |
|
|
connections.remove(); |
|
|
} |
|
|
} |
|
|
hash_map::Entry::Vacant(_) => { |
|
|
unreachable!("`on_connection_closed` for unconnected peer.") |
|
|
} |
|
|
}; |
|
|
if let Some((addr, ReservationStatus::Confirmed)) = |
|
|
self.reservation_addresses.remove(&connection_id) |
|
|
{ |
|
|
self.queued_actions |
|
|
.push_back(ToSwarm::ExternalAddrExpired(addr)); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
impl NetworkBehaviour for Behaviour { |
|
|
type ConnectionHandler = Either<Handler, dummy::ConnectionHandler>; |
|
|
type ToSwarm = Event; |
|
|
|
|
|
fn handle_established_inbound_connection( |
|
|
&mut self, |
|
|
connection_id: ConnectionId, |
|
|
peer: PeerId, |
|
|
local_addr: &Multiaddr, |
|
|
remote_addr: &Multiaddr, |
|
|
) -> Result<THandler<Self>, ConnectionDenied> { |
|
|
if local_addr.is_relayed() { |
|
|
return Ok(Either::Right(dummy::ConnectionHandler)); |
|
|
} |
|
|
let mut handler = Handler::new(self.local_peer_id, peer, remote_addr.clone()); |
|
|
|
|
|
if let Some(event) = self.pending_handler_commands.remove(&connection_id) { |
|
|
handler.on_behaviour_event(event) |
|
|
} |
|
|
|
|
|
Ok(Either::Left(handler)) |
|
|
} |
|
|
|
|
|
fn handle_established_outbound_connection( |
|
|
&mut self, |
|
|
connection_id: ConnectionId, |
|
|
peer: PeerId, |
|
|
addr: &Multiaddr, |
|
|
_: Endpoint, |
|
|
_: PortUse, |
|
|
) -> Result<THandler<Self>, ConnectionDenied> { |
|
|
if addr.is_relayed() { |
|
|
return Ok(Either::Right(dummy::ConnectionHandler)); |
|
|
} |
|
|
|
|
|
let mut handler = Handler::new(self.local_peer_id, peer, addr.clone()); |
|
|
|
|
|
if let Some(event) = self.pending_handler_commands.remove(&connection_id) { |
|
|
handler.on_behaviour_event(event) |
|
|
} |
|
|
|
|
|
Ok(Either::Left(handler)) |
|
|
} |
|
|
|
|
|
fn on_swarm_event(&mut self, event: FromSwarm) { |
|
|
match event { |
|
|
FromSwarm::ConnectionEstablished(ConnectionEstablished { |
|
|
peer_id, |
|
|
connection_id, |
|
|
endpoint, |
|
|
.. |
|
|
}) => { |
|
|
if !endpoint.is_relayed() { |
|
|
self.directly_connected_peers |
|
|
.entry(peer_id) |
|
|
.or_default() |
|
|
.push(connection_id); |
|
|
} |
|
|
|
|
|
if let Some(event) = self.pending_handler_commands.remove(&connection_id) { |
|
|
self.queued_actions.push_back(ToSwarm::NotifyHandler { |
|
|
peer_id, |
|
|
handler: NotifyHandler::One(connection_id), |
|
|
event: Either::Left(event), |
|
|
}) |
|
|
} |
|
|
} |
|
|
FromSwarm::ConnectionClosed(connection_closed) => { |
|
|
self.on_connection_closed(connection_closed) |
|
|
} |
|
|
FromSwarm::DialFailure(DialFailure { connection_id, .. }) => { |
|
|
self.reservation_addresses.remove(&connection_id); |
|
|
self.pending_handler_commands.remove(&connection_id); |
|
|
} |
|
|
_ => {} |
|
|
} |
|
|
} |
|
|
|
|
|
fn on_connection_handler_event( |
|
|
&mut self, |
|
|
event_source: PeerId, |
|
|
connection: ConnectionId, |
|
|
handler_event: THandlerOutEvent<Self>, |
|
|
) { |
|
|
let handler_event = match handler_event { |
|
|
Either::Left(e) => e, |
|
|
Either::Right(v) => void::unreachable(v), |
|
|
}; |
|
|
|
|
|
let event = match handler_event { |
|
|
handler::Event::ReservationReqAccepted { renewal, limit } => { |
|
|
let (addr, status) = self |
|
|
.reservation_addresses |
|
|
.get_mut(&connection) |
|
|
.expect("Relay connection exist"); |
|
|
|
|
|
if !renewal && *status == ReservationStatus::Pending { |
|
|
*status = ReservationStatus::Confirmed; |
|
|
self.queued_actions |
|
|
.push_back(ToSwarm::ExternalAddrConfirmed(addr.clone())); |
|
|
} |
|
|
|
|
|
Event::ReservationReqAccepted { |
|
|
relay_peer_id: event_source, |
|
|
renewal, |
|
|
limit, |
|
|
} |
|
|
} |
|
|
handler::Event::OutboundCircuitEstablished { limit } => { |
|
|
Event::OutboundCircuitEstablished { |
|
|
relay_peer_id: event_source, |
|
|
limit, |
|
|
} |
|
|
} |
|
|
handler::Event::InboundCircuitEstablished { src_peer_id, limit } => { |
|
|
Event::InboundCircuitEstablished { src_peer_id, limit } |
|
|
} |
|
|
}; |
|
|
|
|
|
self.queued_actions.push_back(ToSwarm::GenerateEvent(event)); |
|
|
} |
|
|
|
|
|
#[tracing::instrument(level = "trace", name = "NetworkBehaviour::poll", skip(self, cx))] |
|
|
fn poll( |
|
|
&mut self, |
|
|
cx: &mut Context<'_>, |
|
|
) -> Poll<ToSwarm<Self::ToSwarm, THandlerInEvent<Self>>> { |
|
|
if let Some(action) = self.queued_actions.pop_front() { |
|
|
return Poll::Ready(action); |
|
|
} |
|
|
|
|
|
let action = match ready!(self.from_transport.poll_next_unpin(cx)) { |
|
|
Some(transport::TransportToBehaviourMsg::ListenReq { |
|
|
relay_peer_id, |
|
|
relay_addr, |
|
|
to_listener, |
|
|
}) => { |
|
|
match self |
|
|
.directly_connected_peers |
|
|
.get(&relay_peer_id) |
|
|
.and_then(|cs| cs.first()) |
|
|
{ |
|
|
Some(connection_id) => { |
|
|
self.reservation_addresses.insert( |
|
|
*connection_id, |
|
|
( |
|
|
relay_addr |
|
|
.with(Protocol::P2p(relay_peer_id)) |
|
|
.with(Protocol::P2pCircuit) |
|
|
.with(Protocol::P2p(self.local_peer_id)), |
|
|
ReservationStatus::Pending, |
|
|
), |
|
|
); |
|
|
|
|
|
ToSwarm::NotifyHandler { |
|
|
peer_id: relay_peer_id, |
|
|
handler: NotifyHandler::One(*connection_id), |
|
|
event: Either::Left(handler::In::Reserve { to_listener }), |
|
|
} |
|
|
} |
|
|
None => { |
|
|
let opts = DialOpts::peer_id(relay_peer_id) |
|
|
.addresses(vec![relay_addr.clone()]) |
|
|
.extend_addresses_through_behaviour() |
|
|
.build(); |
|
|
let relayed_connection_id = opts.connection_id(); |
|
|
|
|
|
self.reservation_addresses.insert( |
|
|
relayed_connection_id, |
|
|
( |
|
|
relay_addr |
|
|
.with(Protocol::P2p(relay_peer_id)) |
|
|
.with(Protocol::P2pCircuit) |
|
|
.with(Protocol::P2p(self.local_peer_id)), |
|
|
ReservationStatus::Pending, |
|
|
), |
|
|
); |
|
|
|
|
|
self.pending_handler_commands |
|
|
.insert(relayed_connection_id, handler::In::Reserve { to_listener }); |
|
|
ToSwarm::Dial { opts } |
|
|
} |
|
|
} |
|
|
} |
|
|
Some(transport::TransportToBehaviourMsg::DialReq { |
|
|
relay_addr, |
|
|
relay_peer_id, |
|
|
dst_peer_id, |
|
|
send_back, |
|
|
.. |
|
|
}) => { |
|
|
match self |
|
|
.directly_connected_peers |
|
|
.get(&relay_peer_id) |
|
|
.and_then(|cs| cs.first()) |
|
|
{ |
|
|
Some(connection_id) => ToSwarm::NotifyHandler { |
|
|
peer_id: relay_peer_id, |
|
|
handler: NotifyHandler::One(*connection_id), |
|
|
event: Either::Left(handler::In::EstablishCircuit { |
|
|
to_dial: send_back, |
|
|
dst_peer_id, |
|
|
}), |
|
|
}, |
|
|
None => { |
|
|
let opts = DialOpts::peer_id(relay_peer_id) |
|
|
.addresses(vec![relay_addr]) |
|
|
.extend_addresses_through_behaviour() |
|
|
.build(); |
|
|
let connection_id = opts.connection_id(); |
|
|
|
|
|
self.pending_handler_commands.insert( |
|
|
connection_id, |
|
|
handler::In::EstablishCircuit { |
|
|
to_dial: send_back, |
|
|
dst_peer_id, |
|
|
}, |
|
|
); |
|
|
|
|
|
ToSwarm::Dial { opts } |
|
|
} |
|
|
} |
|
|
} |
|
|
None => unreachable!( |
|
|
"`relay::Behaviour` polled after channel from \ |
|
|
`Transport` has been closed. Unreachable under \ |
|
|
the assumption that the `client::Behaviour` is never polled after \ |
|
|
`client::Transport` is dropped.", |
|
|
), |
|
|
}; |
|
|
|
|
|
Poll::Ready(action) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub struct Connection { |
|
|
pub(crate) state: ConnectionState, |
|
|
} |
|
|
|
|
|
pub(crate) enum ConnectionState { |
|
|
InboundAccepting { |
|
|
accept: BoxFuture<'static, Result<ConnectionState, Error>>, |
|
|
}, |
|
|
Operational { |
|
|
read_buffer: Bytes, |
|
|
substream: Stream, |
|
|
}, |
|
|
} |
|
|
|
|
|
impl Unpin for ConnectionState {} |
|
|
|
|
|
impl ConnectionState { |
|
|
pub(crate) fn new_inbound(circuit: inbound_stop::Circuit) -> Self { |
|
|
ConnectionState::InboundAccepting { |
|
|
accept: async { |
|
|
let (substream, read_buffer) = circuit |
|
|
.accept() |
|
|
.await |
|
|
.map_err(|e| Error::new(ErrorKind::Other, e))?; |
|
|
Ok(ConnectionState::Operational { |
|
|
read_buffer, |
|
|
substream, |
|
|
}) |
|
|
} |
|
|
.boxed(), |
|
|
} |
|
|
} |
|
|
|
|
|
pub(crate) fn new_outbound(substream: Stream, read_buffer: Bytes) -> Self { |
|
|
ConnectionState::Operational { |
|
|
substream, |
|
|
read_buffer, |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
impl AsyncWrite for Connection { |
|
|
fn poll_write( |
|
|
mut self: Pin<&mut Self>, |
|
|
cx: &mut Context, |
|
|
buf: &[u8], |
|
|
) -> Poll<Result<usize, Error>> { |
|
|
loop { |
|
|
match &mut self.state { |
|
|
ConnectionState::InboundAccepting { accept } => { |
|
|
*self = Connection { |
|
|
state: ready!(accept.poll_unpin(cx))?, |
|
|
}; |
|
|
} |
|
|
ConnectionState::Operational { substream, .. } => { |
|
|
return Pin::new(substream).poll_write(cx, buf); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Error>> { |
|
|
loop { |
|
|
match &mut self.state { |
|
|
ConnectionState::InboundAccepting { accept } => { |
|
|
*self = Connection { |
|
|
state: ready!(accept.poll_unpin(cx))?, |
|
|
}; |
|
|
} |
|
|
ConnectionState::Operational { substream, .. } => { |
|
|
return Pin::new(substream).poll_flush(cx); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Error>> { |
|
|
loop { |
|
|
match &mut self.state { |
|
|
ConnectionState::InboundAccepting { accept } => { |
|
|
*self = Connection { |
|
|
state: ready!(accept.poll_unpin(cx))?, |
|
|
}; |
|
|
} |
|
|
ConnectionState::Operational { substream, .. } => { |
|
|
return Pin::new(substream).poll_close(cx); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
fn poll_write_vectored( |
|
|
mut self: Pin<&mut Self>, |
|
|
cx: &mut Context, |
|
|
bufs: &[IoSlice], |
|
|
) -> Poll<Result<usize, Error>> { |
|
|
loop { |
|
|
match &mut self.state { |
|
|
ConnectionState::InboundAccepting { accept } => { |
|
|
*self = Connection { |
|
|
state: ready!(accept.poll_unpin(cx))?, |
|
|
}; |
|
|
} |
|
|
ConnectionState::Operational { substream, .. } => { |
|
|
return Pin::new(substream).poll_write_vectored(cx, bufs); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
impl AsyncRead for Connection { |
|
|
fn poll_read( |
|
|
mut self: Pin<&mut Self>, |
|
|
cx: &mut Context<'_>, |
|
|
buf: &mut [u8], |
|
|
) -> Poll<Result<usize, Error>> { |
|
|
loop { |
|
|
match &mut self.state { |
|
|
ConnectionState::InboundAccepting { accept } => { |
|
|
*self = Connection { |
|
|
state: ready!(accept.poll_unpin(cx))?, |
|
|
}; |
|
|
} |
|
|
ConnectionState::Operational { |
|
|
read_buffer, |
|
|
substream, |
|
|
.. |
|
|
} => { |
|
|
if !read_buffer.is_empty() { |
|
|
let n = std::cmp::min(read_buffer.len(), buf.len()); |
|
|
let data = read_buffer.split_to(n); |
|
|
buf[0..n].copy_from_slice(&data[..]); |
|
|
return Poll::Ready(Ok(n)); |
|
|
} |
|
|
|
|
|
return Pin::new(substream).poll_read(cx, buf); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|