2022-02-13 21:57:38 +01:00
|
|
|
// Copyright 2020 Parity Technologies (UK) Ltd.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
mod error;
|
2022-02-18 11:32:58 +01:00
|
|
|
mod handler_wrapper;
|
2022-02-13 21:57:38 +01:00
|
|
|
|
|
|
|
pub(crate) mod pool;
|
|
|
|
|
|
|
|
pub use error::{
|
|
|
|
ConnectionError, PendingConnectionError, PendingInboundConnectionError,
|
|
|
|
PendingOutboundConnectionError,
|
|
|
|
};
|
|
|
|
pub use pool::{ConnectionCounters, ConnectionLimits};
|
|
|
|
pub use pool::{EstablishedConnection, PendingConnection};
|
|
|
|
|
2022-02-21 13:32:24 +01:00
|
|
|
use crate::handler::ConnectionHandler;
|
2022-06-22 06:02:55 +02:00
|
|
|
use crate::IntoConnectionHandler;
|
2022-02-18 11:32:58 +01:00
|
|
|
use handler_wrapper::HandlerWrapper;
|
2022-02-13 21:57:38 +01:00
|
|
|
use libp2p_core::connection::ConnectedPoint;
|
|
|
|
use libp2p_core::multiaddr::Multiaddr;
|
2022-08-03 15:12:11 +02:00
|
|
|
use libp2p_core::muxing::{StreamMuxerBox, StreamMuxerExt};
|
|
|
|
use libp2p_core::upgrade;
|
2022-02-13 21:57:38 +01:00
|
|
|
use libp2p_core::PeerId;
|
2022-07-18 04:20:11 +01:00
|
|
|
use std::collections::VecDeque;
|
|
|
|
use std::future::Future;
|
|
|
|
use std::{error::Error, fmt, io, pin::Pin, task::Context, task::Poll};
|
2022-02-13 21:57:38 +01:00
|
|
|
|
|
|
|
/// Information about a successfully established connection.
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct Connected {
|
|
|
|
/// The connected endpoint, including network address information.
|
|
|
|
pub endpoint: ConnectedPoint,
|
|
|
|
/// Information obtained from the transport.
|
|
|
|
pub peer_id: PeerId,
|
|
|
|
}
|
|
|
|
|
2022-07-18 04:20:11 +01:00
|
|
|
/// Endpoint for a received substream.
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
|
|
|
pub enum SubstreamEndpoint<TDialInfo> {
|
|
|
|
Dialer(TDialInfo),
|
|
|
|
Listener,
|
|
|
|
}
|
|
|
|
|
2022-02-13 21:57:38 +01:00
|
|
|
/// Event generated by a [`Connection`].
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub enum Event<T> {
|
2022-02-21 13:32:24 +01:00
|
|
|
/// Event generated by the [`ConnectionHandler`].
|
2022-02-13 21:57:38 +01:00
|
|
|
Handler(T),
|
|
|
|
/// Address of the remote has changed.
|
|
|
|
AddressChange(Multiaddr),
|
|
|
|
}
|
|
|
|
|
2022-02-21 13:32:24 +01:00
|
|
|
/// A multiplexed connection to a peer with an associated [`ConnectionHandler`].
|
2022-02-16 13:15:52 +01:00
|
|
|
pub struct Connection<THandler>
|
2022-02-13 21:57:38 +01:00
|
|
|
where
|
2022-02-21 13:32:24 +01:00
|
|
|
THandler: ConnectionHandler,
|
2022-02-13 21:57:38 +01:00
|
|
|
{
|
|
|
|
/// Node that handles the muxing.
|
2022-07-18 04:20:11 +01:00
|
|
|
muxing: StreamMuxerBox,
|
2022-02-13 21:57:38 +01:00
|
|
|
/// Handler that processes substreams.
|
2022-02-18 11:32:58 +01:00
|
|
|
handler: HandlerWrapper<THandler>,
|
2022-07-18 04:20:11 +01:00
|
|
|
/// List of "open_info" that is waiting for new outbound substreams.
|
|
|
|
open_info: VecDeque<handler_wrapper::OutboundOpenInfo<THandler>>,
|
2022-02-13 21:57:38 +01:00
|
|
|
}
|
|
|
|
|
2022-02-16 13:15:52 +01:00
|
|
|
impl<THandler> fmt::Debug for Connection<THandler>
|
2022-02-13 21:57:38 +01:00
|
|
|
where
|
2022-02-21 13:32:24 +01:00
|
|
|
THandler: ConnectionHandler + fmt::Debug,
|
2022-07-18 04:20:11 +01:00
|
|
|
THandler::OutboundOpenInfo: fmt::Debug,
|
2022-02-13 21:57:38 +01:00
|
|
|
{
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
f.debug_struct("Connection")
|
|
|
|
.field("handler", &self.handler)
|
2022-07-18 04:20:11 +01:00
|
|
|
.field("open_info", &self.open_info)
|
2022-02-13 21:57:38 +01:00
|
|
|
.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-21 13:32:24 +01:00
|
|
|
impl<THandler> Unpin for Connection<THandler> where THandler: ConnectionHandler {}
|
2022-02-13 21:57:38 +01:00
|
|
|
|
2022-02-16 13:15:52 +01:00
|
|
|
impl<THandler> Connection<THandler>
|
2022-02-13 21:57:38 +01:00
|
|
|
where
|
2022-02-21 13:32:24 +01:00
|
|
|
THandler: ConnectionHandler,
|
2022-02-13 21:57:38 +01:00
|
|
|
{
|
|
|
|
/// Builds a new `Connection` from the given substream multiplexer
|
|
|
|
/// and connection handler.
|
2022-02-18 11:32:58 +01:00
|
|
|
pub fn new(
|
2022-06-22 06:02:55 +02:00
|
|
|
peer_id: PeerId,
|
|
|
|
endpoint: ConnectedPoint,
|
2022-02-18 11:32:58 +01:00
|
|
|
muxer: StreamMuxerBox,
|
2022-06-22 06:02:55 +02:00
|
|
|
handler: impl IntoConnectionHandler<Handler = THandler>,
|
2022-02-18 11:32:58 +01:00
|
|
|
substream_upgrade_protocol_override: Option<upgrade::Version>,
|
2022-06-08 11:48:46 +02:00
|
|
|
max_negotiating_inbound_streams: usize,
|
2022-02-18 11:32:58 +01:00
|
|
|
) -> Self {
|
2022-06-08 11:48:46 +02:00
|
|
|
let wrapped_handler = HandlerWrapper::new(
|
2022-06-22 06:02:55 +02:00
|
|
|
peer_id,
|
|
|
|
endpoint,
|
2022-06-08 11:48:46 +02:00
|
|
|
handler,
|
|
|
|
substream_upgrade_protocol_override,
|
|
|
|
max_negotiating_inbound_streams,
|
|
|
|
);
|
2022-02-13 21:57:38 +01:00
|
|
|
Connection {
|
2022-07-18 04:20:11 +01:00
|
|
|
muxing: muxer,
|
2022-02-18 11:32:58 +01:00
|
|
|
handler: wrapped_handler,
|
2022-07-18 04:20:11 +01:00
|
|
|
open_info: VecDeque::with_capacity(8),
|
2022-02-13 21:57:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Notifies the connection handler of an event.
|
|
|
|
pub fn inject_event(&mut self, event: THandler::InEvent) {
|
|
|
|
self.handler.inject_event(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Begins an orderly shutdown of the connection, returning the connection
|
|
|
|
/// handler and a `Future` that resolves when connection shutdown is complete.
|
2022-07-18 04:20:11 +01:00
|
|
|
pub fn close(self) -> (THandler, impl Future<Output = io::Result<()>>) {
|
2022-08-03 15:12:11 +02:00
|
|
|
(self.handler.into_connection_handler(), self.muxing.close())
|
2022-02-13 21:57:38 +01:00
|
|
|
}
|
|
|
|
|
2022-05-03 22:26:28 +02:00
|
|
|
/// Polls the handler and the substream, forwarding events from the former to the latter and
|
|
|
|
/// vice versa.
|
2022-02-13 21:57:38 +01:00
|
|
|
pub fn poll(
|
|
|
|
mut self: Pin<&mut Self>,
|
|
|
|
cx: &mut Context<'_>,
|
2022-02-18 11:32:58 +01:00
|
|
|
) -> Poll<Result<Event<THandler::OutEvent>, ConnectionError<THandler::Error>>> {
|
2022-02-13 21:57:38 +01:00
|
|
|
loop {
|
2022-05-03 22:26:28 +02:00
|
|
|
// Poll the handler for new events.
|
2022-06-24 08:26:49 +02:00
|
|
|
match self.handler.poll(cx)? {
|
2022-05-03 22:26:28 +02:00
|
|
|
Poll::Pending => {}
|
2022-06-24 08:26:49 +02:00
|
|
|
Poll::Ready(handler_wrapper::Event::OutboundSubstreamRequest(user_data)) => {
|
2022-07-18 04:20:11 +01:00
|
|
|
self.open_info.push_back(user_data);
|
|
|
|
continue; // Poll handler until exhausted.
|
2022-05-03 22:26:28 +02:00
|
|
|
}
|
2022-06-24 08:26:49 +02:00
|
|
|
Poll::Ready(handler_wrapper::Event::Custom(event)) => {
|
2022-05-03 22:26:28 +02:00
|
|
|
return Poll::Ready(Ok(Event::Handler(event)));
|
|
|
|
}
|
|
|
|
}
|
2022-02-13 21:57:38 +01:00
|
|
|
|
2022-07-18 04:20:11 +01:00
|
|
|
if !self.open_info.is_empty() {
|
2022-08-03 15:12:11 +02:00
|
|
|
if let Poll::Ready(substream) = self.muxing.poll_outbound_unpin(cx)? {
|
2022-07-18 04:20:11 +01:00
|
|
|
let user_data = self
|
|
|
|
.open_info
|
|
|
|
.pop_front()
|
|
|
|
.expect("`open_info` is not empty");
|
2022-02-13 21:57:38 +01:00
|
|
|
let endpoint = SubstreamEndpoint::Dialer(user_data);
|
2022-05-03 22:26:28 +02:00
|
|
|
self.handler.inject_substream(substream, endpoint);
|
2022-07-18 04:20:11 +01:00
|
|
|
continue; // Go back to the top, handler can potentially make progress again.
|
2022-02-13 21:57:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-03 15:12:11 +02:00
|
|
|
if let Poll::Ready(substream) = self.muxing.poll_inbound_unpin(cx)? {
|
2022-07-18 04:20:11 +01:00
|
|
|
self.handler
|
|
|
|
.inject_substream(substream, SubstreamEndpoint::Listener);
|
|
|
|
continue; // Go back to the top, handler can potentially make progress again.
|
|
|
|
}
|
|
|
|
|
2022-08-03 15:12:11 +02:00
|
|
|
if let Poll::Ready(address) = self.muxing.poll_address_change_unpin(cx)? {
|
2022-07-18 04:20:11 +01:00
|
|
|
self.handler.inject_address_change(&address);
|
|
|
|
return Poll::Ready(Ok(Event::AddressChange(address)));
|
|
|
|
}
|
|
|
|
|
|
|
|
return Poll::Pending; // Nothing can make progress, return `Pending`.
|
2022-02-13 21:57:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Borrowed information about an incoming connection currently being negotiated.
|
|
|
|
#[derive(Debug, Copy, Clone)]
|
|
|
|
pub struct IncomingInfo<'a> {
|
|
|
|
/// Local connection address.
|
|
|
|
pub local_addr: &'a Multiaddr,
|
|
|
|
/// Address used to send back data to the remote.
|
|
|
|
pub send_back_addr: &'a Multiaddr,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> IncomingInfo<'a> {
|
|
|
|
/// Builds the [`ConnectedPoint`] corresponding to the incoming connection.
|
2022-05-03 13:11:48 +02:00
|
|
|
pub fn create_connected_point(&self) -> ConnectedPoint {
|
2022-02-13 21:57:38 +01:00
|
|
|
ConnectedPoint::Listener {
|
|
|
|
local_addr: self.local_addr.clone(),
|
|
|
|
send_back_addr: self.send_back_addr.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Information about a connection limit.
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct ConnectionLimit {
|
|
|
|
/// The maximum number of connections.
|
|
|
|
pub limit: u32,
|
|
|
|
/// The current number of connections.
|
|
|
|
pub current: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for ConnectionLimit {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
write!(f, "{}/{}", self.current, self.limit)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A `ConnectionLimit` can represent an error if it has been exceeded.
|
|
|
|
impl Error for ConnectionLimit {}
|