mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-23 06:41:34 +00:00
refactor(relay): revise public API to follow naming convention (#3238)
Continues addressing https://github.com/libp2p/rust-libp2p/issues/2217.
This commit is contained in:
997
protocols/relay/src/behaviour/handler.rs
Normal file
997
protocols/relay/src/behaviour/handler.rs
Normal file
@ -0,0 +1,997 @@
|
||||
// Copyright 2021 Protocol Labs.
|
||||
//
|
||||
// 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.
|
||||
|
||||
use crate::behaviour::CircuitId;
|
||||
use crate::copy_future::CopyFuture;
|
||||
use crate::message_proto::Status;
|
||||
use crate::protocol::{inbound_hop, outbound_stop};
|
||||
use bytes::Bytes;
|
||||
use either::Either;
|
||||
use futures::channel::oneshot::{self, Canceled};
|
||||
use futures::future::{BoxFuture, FutureExt, TryFutureExt};
|
||||
use futures::io::AsyncWriteExt;
|
||||
use futures::stream::{FuturesUnordered, StreamExt};
|
||||
use futures_timer::Delay;
|
||||
use instant::Instant;
|
||||
use libp2p_core::connection::ConnectionId;
|
||||
use libp2p_core::either::EitherError;
|
||||
use libp2p_core::{upgrade, ConnectedPoint, Multiaddr, PeerId};
|
||||
use libp2p_swarm::handler::{
|
||||
ConnectionEvent, DialUpgradeError, FullyNegotiatedInbound, FullyNegotiatedOutbound,
|
||||
ListenUpgradeError, SendWrapper,
|
||||
};
|
||||
use libp2p_swarm::{
|
||||
dummy, ConnectionHandler, ConnectionHandlerEvent, ConnectionHandlerUpgrErr,
|
||||
IntoConnectionHandler, KeepAlive, NegotiatedSubstream, SubstreamProtocol,
|
||||
};
|
||||
use std::collections::VecDeque;
|
||||
use std::fmt;
|
||||
use std::task::{Context, Poll};
|
||||
use std::time::Duration;
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Config {
|
||||
pub reservation_duration: Duration,
|
||||
pub max_circuit_duration: Duration,
|
||||
pub max_circuit_bytes: u64,
|
||||
}
|
||||
|
||||
pub enum In {
|
||||
AcceptReservationReq {
|
||||
inbound_reservation_req: inbound_hop::ReservationReq,
|
||||
addrs: Vec<Multiaddr>,
|
||||
},
|
||||
DenyReservationReq {
|
||||
inbound_reservation_req: inbound_hop::ReservationReq,
|
||||
status: Status,
|
||||
},
|
||||
DenyCircuitReq {
|
||||
circuit_id: Option<CircuitId>,
|
||||
inbound_circuit_req: inbound_hop::CircuitReq,
|
||||
status: Status,
|
||||
},
|
||||
NegotiateOutboundConnect {
|
||||
circuit_id: CircuitId,
|
||||
inbound_circuit_req: inbound_hop::CircuitReq,
|
||||
relay_peer_id: PeerId,
|
||||
src_peer_id: PeerId,
|
||||
src_connection_id: ConnectionId,
|
||||
},
|
||||
AcceptAndDriveCircuit {
|
||||
circuit_id: CircuitId,
|
||||
dst_peer_id: PeerId,
|
||||
inbound_circuit_req: inbound_hop::CircuitReq,
|
||||
dst_handler_notifier: oneshot::Sender<()>,
|
||||
dst_stream: NegotiatedSubstream,
|
||||
dst_pending_data: Bytes,
|
||||
},
|
||||
}
|
||||
|
||||
impl fmt::Debug for In {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
match self {
|
||||
In::AcceptReservationReq {
|
||||
inbound_reservation_req: _,
|
||||
addrs,
|
||||
} => f
|
||||
.debug_struct("In::AcceptReservationReq")
|
||||
.field("addrs", addrs)
|
||||
.finish(),
|
||||
In::DenyReservationReq {
|
||||
inbound_reservation_req: _,
|
||||
status,
|
||||
} => f
|
||||
.debug_struct("In::DenyReservationReq")
|
||||
.field("status", status)
|
||||
.finish(),
|
||||
In::DenyCircuitReq {
|
||||
circuit_id,
|
||||
inbound_circuit_req: _,
|
||||
status,
|
||||
} => f
|
||||
.debug_struct("In::DenyCircuitReq")
|
||||
.field("circuit_id", circuit_id)
|
||||
.field("status", status)
|
||||
.finish(),
|
||||
In::NegotiateOutboundConnect {
|
||||
circuit_id,
|
||||
inbound_circuit_req: _,
|
||||
relay_peer_id,
|
||||
src_peer_id,
|
||||
src_connection_id,
|
||||
} => f
|
||||
.debug_struct("In::NegotiateOutboundConnect")
|
||||
.field("circuit_id", circuit_id)
|
||||
.field("relay_peer_id", relay_peer_id)
|
||||
.field("src_peer_id", src_peer_id)
|
||||
.field("src_connection_id", src_connection_id)
|
||||
.finish(),
|
||||
In::AcceptAndDriveCircuit {
|
||||
circuit_id,
|
||||
inbound_circuit_req: _,
|
||||
dst_peer_id,
|
||||
dst_handler_notifier: _,
|
||||
dst_stream: _,
|
||||
dst_pending_data: _,
|
||||
} => f
|
||||
.debug_struct("In::AcceptAndDriveCircuit")
|
||||
.field("circuit_id", circuit_id)
|
||||
.field("dst_peer_id", dst_peer_id)
|
||||
.finish(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// The events produced by the [`Handler`].
|
||||
#[allow(clippy::large_enum_variant)]
|
||||
pub enum Event {
|
||||
/// An inbound reservation request has been received.
|
||||
ReservationReqReceived {
|
||||
inbound_reservation_req: inbound_hop::ReservationReq,
|
||||
endpoint: ConnectedPoint,
|
||||
/// Indicates whether the request replaces an existing reservation.
|
||||
renewed: bool,
|
||||
},
|
||||
/// An inbound reservation request has been accepted.
|
||||
ReservationReqAccepted {
|
||||
/// Indicates whether the request replaces an existing reservation.
|
||||
renewed: bool,
|
||||
},
|
||||
/// Accepting an inbound reservation request failed.
|
||||
ReservationReqAcceptFailed { error: inbound_hop::UpgradeError },
|
||||
/// An inbound reservation request has been denied.
|
||||
ReservationReqDenied {},
|
||||
/// Denying an inbound reservation request has failed.
|
||||
ReservationReqDenyFailed { error: inbound_hop::UpgradeError },
|
||||
/// An inbound reservation has timed out.
|
||||
ReservationTimedOut {},
|
||||
/// An inbound circuit request has been received.
|
||||
CircuitReqReceived {
|
||||
inbound_circuit_req: inbound_hop::CircuitReq,
|
||||
endpoint: ConnectedPoint,
|
||||
},
|
||||
/// Receiving an inbound circuit request failed.
|
||||
CircuitReqReceiveFailed {
|
||||
error: ConnectionHandlerUpgrErr<void::Void>,
|
||||
},
|
||||
/// An inbound circuit request has been denied.
|
||||
CircuitReqDenied {
|
||||
circuit_id: Option<CircuitId>,
|
||||
dst_peer_id: PeerId,
|
||||
},
|
||||
/// Denying an inbound circuit request failed.
|
||||
CircuitReqDenyFailed {
|
||||
circuit_id: Option<CircuitId>,
|
||||
dst_peer_id: PeerId,
|
||||
error: inbound_hop::UpgradeError,
|
||||
},
|
||||
/// An inbound cirucit request has been accepted.
|
||||
CircuitReqAccepted {
|
||||
circuit_id: CircuitId,
|
||||
dst_peer_id: PeerId,
|
||||
},
|
||||
/// Accepting an inbound circuit request failed.
|
||||
CircuitReqAcceptFailed {
|
||||
circuit_id: CircuitId,
|
||||
dst_peer_id: PeerId,
|
||||
error: inbound_hop::UpgradeError,
|
||||
},
|
||||
/// An outbound substream for an inbound circuit request has been
|
||||
/// negotiated.
|
||||
OutboundConnectNegotiated {
|
||||
circuit_id: CircuitId,
|
||||
src_peer_id: PeerId,
|
||||
src_connection_id: ConnectionId,
|
||||
inbound_circuit_req: inbound_hop::CircuitReq,
|
||||
dst_handler_notifier: oneshot::Sender<()>,
|
||||
dst_stream: NegotiatedSubstream,
|
||||
dst_pending_data: Bytes,
|
||||
},
|
||||
/// Negotiating an outbound substream for an inbound circuit request failed.
|
||||
OutboundConnectNegotiationFailed {
|
||||
circuit_id: CircuitId,
|
||||
src_peer_id: PeerId,
|
||||
src_connection_id: ConnectionId,
|
||||
inbound_circuit_req: inbound_hop::CircuitReq,
|
||||
status: Status,
|
||||
error: ConnectionHandlerUpgrErr<outbound_stop::CircuitFailedReason>,
|
||||
},
|
||||
/// An inbound circuit has closed.
|
||||
CircuitClosed {
|
||||
circuit_id: CircuitId,
|
||||
dst_peer_id: PeerId,
|
||||
error: Option<std::io::Error>,
|
||||
},
|
||||
}
|
||||
|
||||
impl fmt::Debug for Event {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
match self {
|
||||
Event::ReservationReqReceived {
|
||||
inbound_reservation_req: _,
|
||||
endpoint,
|
||||
renewed,
|
||||
} => f
|
||||
.debug_struct("Event::ReservationReqReceived")
|
||||
.field("endpoint", endpoint)
|
||||
.field("renewed", renewed)
|
||||
.finish(),
|
||||
Event::ReservationReqAccepted { renewed } => f
|
||||
.debug_struct("Event::ReservationReqAccepted")
|
||||
.field("renewed", renewed)
|
||||
.finish(),
|
||||
Event::ReservationReqAcceptFailed { error } => f
|
||||
.debug_struct("Event::ReservationReqAcceptFailed")
|
||||
.field("error", error)
|
||||
.finish(),
|
||||
Event::ReservationReqDenied {} => {
|
||||
f.debug_struct("Event::ReservationReqDenied").finish()
|
||||
}
|
||||
Event::ReservationReqDenyFailed { error } => f
|
||||
.debug_struct("Event::ReservationReqDenyFailed")
|
||||
.field("error", error)
|
||||
.finish(),
|
||||
Event::ReservationTimedOut {} => f.debug_struct("Event::ReservationTimedOut").finish(),
|
||||
Event::CircuitReqReceived {
|
||||
endpoint,
|
||||
inbound_circuit_req: _,
|
||||
} => f
|
||||
.debug_struct("Event::CircuitReqReceived")
|
||||
.field("endpoint", endpoint)
|
||||
.finish(),
|
||||
Event::CircuitReqReceiveFailed { error } => f
|
||||
.debug_struct("Event::CircuitReqReceiveFailed")
|
||||
.field("error", error)
|
||||
.finish(),
|
||||
Event::CircuitReqDenied {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
} => f
|
||||
.debug_struct("Event::CircuitReqDenied")
|
||||
.field("circuit_id", circuit_id)
|
||||
.field("dst_peer_id", dst_peer_id)
|
||||
.finish(),
|
||||
Event::CircuitReqDenyFailed {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
error,
|
||||
} => f
|
||||
.debug_struct("Event::CircuitReqDenyFailed")
|
||||
.field("circuit_id", circuit_id)
|
||||
.field("dst_peer_id", dst_peer_id)
|
||||
.field("error", error)
|
||||
.finish(),
|
||||
Event::CircuitReqAccepted {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
} => f
|
||||
.debug_struct("Event::CircuitReqAccepted")
|
||||
.field("circuit_id", circuit_id)
|
||||
.field("dst_peer_id", dst_peer_id)
|
||||
.finish(),
|
||||
Event::CircuitReqAcceptFailed {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
error,
|
||||
} => f
|
||||
.debug_struct("Event::CircuitReqAcceptFailed")
|
||||
.field("circuit_id", circuit_id)
|
||||
.field("dst_peer_id", dst_peer_id)
|
||||
.field("error", error)
|
||||
.finish(),
|
||||
Event::OutboundConnectNegotiated {
|
||||
circuit_id,
|
||||
src_peer_id,
|
||||
src_connection_id,
|
||||
inbound_circuit_req: _,
|
||||
dst_handler_notifier: _,
|
||||
dst_stream: _,
|
||||
dst_pending_data: _,
|
||||
} => f
|
||||
.debug_struct("Event::OutboundConnectNegotiated")
|
||||
.field("circuit_id", circuit_id)
|
||||
.field("src_peer_id", src_peer_id)
|
||||
.field("src_connection_id", src_connection_id)
|
||||
.finish(),
|
||||
Event::OutboundConnectNegotiationFailed {
|
||||
circuit_id,
|
||||
src_peer_id,
|
||||
src_connection_id,
|
||||
inbound_circuit_req: _,
|
||||
status,
|
||||
error,
|
||||
} => f
|
||||
.debug_struct("Event::OutboundConnectNegotiationFailed")
|
||||
.field("circuit_id", circuit_id)
|
||||
.field("src_peer_id", src_peer_id)
|
||||
.field("src_connection_id", src_connection_id)
|
||||
.field("status", status)
|
||||
.field("error", error)
|
||||
.finish(),
|
||||
Event::CircuitClosed {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
error,
|
||||
} => f
|
||||
.debug_struct("Event::CircuitClosed")
|
||||
.field("circuit_id", circuit_id)
|
||||
.field("dst_peer_id", dst_peer_id)
|
||||
.field("error", error)
|
||||
.finish(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub struct Prototype {
|
||||
pub config: Config,
|
||||
}
|
||||
|
||||
impl IntoConnectionHandler for Prototype {
|
||||
type Handler = Either<Handler, dummy::ConnectionHandler>;
|
||||
|
||||
fn into_handler(self, _remote_peer_id: &PeerId, endpoint: &ConnectedPoint) -> Self::Handler {
|
||||
if endpoint.is_relayed() {
|
||||
// Deny all substreams on relayed connection.
|
||||
Either::Right(dummy::ConnectionHandler)
|
||||
} else {
|
||||
Either::Left(Handler {
|
||||
endpoint: endpoint.clone(),
|
||||
config: self.config,
|
||||
queued_events: Default::default(),
|
||||
pending_error: Default::default(),
|
||||
reservation_request_future: Default::default(),
|
||||
circuit_accept_futures: Default::default(),
|
||||
circuit_deny_futures: Default::default(),
|
||||
alive_lend_out_substreams: Default::default(),
|
||||
circuits: Default::default(),
|
||||
active_reservation: Default::default(),
|
||||
keep_alive: KeepAlive::Yes,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
fn inbound_protocol(&self) -> <Self::Handler as ConnectionHandler>::InboundProtocol {
|
||||
upgrade::EitherUpgrade::A(SendWrapper(inbound_hop::Upgrade {
|
||||
reservation_duration: self.config.reservation_duration,
|
||||
max_circuit_duration: self.config.max_circuit_duration,
|
||||
max_circuit_bytes: self.config.max_circuit_bytes,
|
||||
}))
|
||||
}
|
||||
}
|
||||
|
||||
/// [`ConnectionHandler`] that manages substreams for a relay on a single
|
||||
/// connection with a peer.
|
||||
pub struct Handler {
|
||||
endpoint: ConnectedPoint,
|
||||
|
||||
/// Static [`Handler`] [`Config`].
|
||||
config: Config,
|
||||
|
||||
/// Queue of events to return when polled.
|
||||
queued_events: VecDeque<
|
||||
ConnectionHandlerEvent<
|
||||
<Self as ConnectionHandler>::OutboundProtocol,
|
||||
<Self as ConnectionHandler>::OutboundOpenInfo,
|
||||
<Self as ConnectionHandler>::OutEvent,
|
||||
<Self as ConnectionHandler>::Error,
|
||||
>,
|
||||
>,
|
||||
|
||||
/// A pending fatal error that results in the connection being closed.
|
||||
pending_error: Option<
|
||||
ConnectionHandlerUpgrErr<
|
||||
EitherError<inbound_hop::FatalUpgradeError, outbound_stop::FatalUpgradeError>,
|
||||
>,
|
||||
>,
|
||||
|
||||
/// Until when to keep the connection alive.
|
||||
keep_alive: KeepAlive,
|
||||
|
||||
/// Future handling inbound reservation request.
|
||||
reservation_request_future: Option<ReservationRequestFuture>,
|
||||
/// Timeout for the currently active reservation.
|
||||
active_reservation: Option<Delay>,
|
||||
|
||||
/// Futures accepting an inbound circuit request.
|
||||
circuit_accept_futures:
|
||||
Futures<Result<CircuitParts, (CircuitId, PeerId, inbound_hop::UpgradeError)>>,
|
||||
/// Futures deying an inbound circuit request.
|
||||
circuit_deny_futures: Futures<(
|
||||
Option<CircuitId>,
|
||||
PeerId,
|
||||
Result<(), inbound_hop::UpgradeError>,
|
||||
)>,
|
||||
/// Tracks substreams lend out to other [`Handler`]s.
|
||||
///
|
||||
/// Contains a [`futures::future::Future`] for each lend out substream that
|
||||
/// resolves once the substream is dropped.
|
||||
///
|
||||
/// Once all substreams are dropped and this handler has no other work,
|
||||
/// [`KeepAlive::Until`] can be set, allowing the connection to be closed
|
||||
/// eventually.
|
||||
alive_lend_out_substreams: FuturesUnordered<oneshot::Receiver<()>>,
|
||||
/// Futures relaying data for circuit between two peers.
|
||||
circuits: Futures<(CircuitId, PeerId, Result<(), std::io::Error>)>,
|
||||
}
|
||||
|
||||
impl Handler {
|
||||
fn on_fully_negotiated_inbound(
|
||||
&mut self,
|
||||
FullyNegotiatedInbound {
|
||||
protocol: request, ..
|
||||
}: FullyNegotiatedInbound<
|
||||
<Self as ConnectionHandler>::InboundProtocol,
|
||||
<Self as ConnectionHandler>::InboundOpenInfo,
|
||||
>,
|
||||
) {
|
||||
match request {
|
||||
inbound_hop::Req::Reserve(inbound_reservation_req) => {
|
||||
self.queued_events.push_back(ConnectionHandlerEvent::Custom(
|
||||
Event::ReservationReqReceived {
|
||||
inbound_reservation_req,
|
||||
endpoint: self.endpoint.clone(),
|
||||
renewed: self.active_reservation.is_some(),
|
||||
},
|
||||
));
|
||||
}
|
||||
inbound_hop::Req::Connect(inbound_circuit_req) => {
|
||||
self.queued_events.push_back(ConnectionHandlerEvent::Custom(
|
||||
Event::CircuitReqReceived {
|
||||
inbound_circuit_req,
|
||||
endpoint: self.endpoint.clone(),
|
||||
},
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn on_fully_negotiated_outbound(
|
||||
&mut self,
|
||||
FullyNegotiatedOutbound {
|
||||
protocol: (dst_stream, dst_pending_data),
|
||||
info: outbound_open_info,
|
||||
}: FullyNegotiatedOutbound<
|
||||
<Self as ConnectionHandler>::OutboundProtocol,
|
||||
<Self as ConnectionHandler>::OutboundOpenInfo,
|
||||
>,
|
||||
) {
|
||||
let OutboundOpenInfo {
|
||||
circuit_id,
|
||||
inbound_circuit_req,
|
||||
src_peer_id,
|
||||
src_connection_id,
|
||||
} = outbound_open_info;
|
||||
let (tx, rx) = oneshot::channel();
|
||||
self.alive_lend_out_substreams.push(rx);
|
||||
|
||||
self.queued_events.push_back(ConnectionHandlerEvent::Custom(
|
||||
Event::OutboundConnectNegotiated {
|
||||
circuit_id,
|
||||
src_peer_id,
|
||||
src_connection_id,
|
||||
inbound_circuit_req,
|
||||
dst_handler_notifier: tx,
|
||||
dst_stream,
|
||||
dst_pending_data,
|
||||
},
|
||||
));
|
||||
}
|
||||
|
||||
fn on_listen_upgrade_error(
|
||||
&mut self,
|
||||
ListenUpgradeError { error, .. }: ListenUpgradeError<
|
||||
<Self as ConnectionHandler>::InboundOpenInfo,
|
||||
<Self as ConnectionHandler>::InboundProtocol,
|
||||
>,
|
||||
) {
|
||||
let non_fatal_error = match error {
|
||||
ConnectionHandlerUpgrErr::Timeout => ConnectionHandlerUpgrErr::Timeout,
|
||||
ConnectionHandlerUpgrErr::Timer => ConnectionHandlerUpgrErr::Timer,
|
||||
ConnectionHandlerUpgrErr::Upgrade(upgrade::UpgradeError::Select(
|
||||
upgrade::NegotiationError::Failed,
|
||||
)) => ConnectionHandlerUpgrErr::Upgrade(upgrade::UpgradeError::Select(
|
||||
upgrade::NegotiationError::Failed,
|
||||
)),
|
||||
ConnectionHandlerUpgrErr::Upgrade(upgrade::UpgradeError::Select(
|
||||
upgrade::NegotiationError::ProtocolError(e),
|
||||
)) => {
|
||||
self.pending_error = Some(ConnectionHandlerUpgrErr::Upgrade(
|
||||
upgrade::UpgradeError::Select(upgrade::NegotiationError::ProtocolError(e)),
|
||||
));
|
||||
return;
|
||||
}
|
||||
ConnectionHandlerUpgrErr::Upgrade(upgrade::UpgradeError::Apply(
|
||||
inbound_hop::UpgradeError::Fatal(error),
|
||||
)) => {
|
||||
self.pending_error = Some(ConnectionHandlerUpgrErr::Upgrade(
|
||||
upgrade::UpgradeError::Apply(EitherError::A(error)),
|
||||
));
|
||||
return;
|
||||
}
|
||||
};
|
||||
|
||||
self.queued_events.push_back(ConnectionHandlerEvent::Custom(
|
||||
Event::CircuitReqReceiveFailed {
|
||||
error: non_fatal_error,
|
||||
},
|
||||
));
|
||||
}
|
||||
|
||||
fn on_dial_upgrade_error(
|
||||
&mut self,
|
||||
DialUpgradeError {
|
||||
info: open_info,
|
||||
error,
|
||||
}: DialUpgradeError<
|
||||
<Self as ConnectionHandler>::OutboundOpenInfo,
|
||||
<Self as ConnectionHandler>::OutboundProtocol,
|
||||
>,
|
||||
) {
|
||||
let (non_fatal_error, status) = match error {
|
||||
ConnectionHandlerUpgrErr::Timeout => {
|
||||
(ConnectionHandlerUpgrErr::Timeout, Status::ConnectionFailed)
|
||||
}
|
||||
ConnectionHandlerUpgrErr::Timer => {
|
||||
(ConnectionHandlerUpgrErr::Timer, Status::ConnectionFailed)
|
||||
}
|
||||
ConnectionHandlerUpgrErr::Upgrade(upgrade::UpgradeError::Select(
|
||||
upgrade::NegotiationError::Failed,
|
||||
)) => {
|
||||
// The remote has previously done a reservation. Doing a reservation but not
|
||||
// supporting the stop protocol is pointless, thus disconnecting.
|
||||
self.pending_error = Some(ConnectionHandlerUpgrErr::Upgrade(
|
||||
upgrade::UpgradeError::Select(upgrade::NegotiationError::Failed),
|
||||
));
|
||||
return;
|
||||
}
|
||||
ConnectionHandlerUpgrErr::Upgrade(upgrade::UpgradeError::Select(
|
||||
upgrade::NegotiationError::ProtocolError(e),
|
||||
)) => {
|
||||
self.pending_error = Some(ConnectionHandlerUpgrErr::Upgrade(
|
||||
upgrade::UpgradeError::Select(upgrade::NegotiationError::ProtocolError(e)),
|
||||
));
|
||||
return;
|
||||
}
|
||||
ConnectionHandlerUpgrErr::Upgrade(upgrade::UpgradeError::Apply(error)) => match error {
|
||||
outbound_stop::UpgradeError::Fatal(error) => {
|
||||
self.pending_error = Some(ConnectionHandlerUpgrErr::Upgrade(
|
||||
upgrade::UpgradeError::Apply(EitherError::B(error)),
|
||||
));
|
||||
return;
|
||||
}
|
||||
outbound_stop::UpgradeError::CircuitFailed(error) => {
|
||||
let status = match error {
|
||||
outbound_stop::CircuitFailedReason::ResourceLimitExceeded => {
|
||||
Status::ResourceLimitExceeded
|
||||
}
|
||||
outbound_stop::CircuitFailedReason::PermissionDenied => {
|
||||
Status::PermissionDenied
|
||||
}
|
||||
};
|
||||
(
|
||||
ConnectionHandlerUpgrErr::Upgrade(upgrade::UpgradeError::Apply(error)),
|
||||
status,
|
||||
)
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
let OutboundOpenInfo {
|
||||
circuit_id,
|
||||
inbound_circuit_req,
|
||||
src_peer_id,
|
||||
src_connection_id,
|
||||
} = open_info;
|
||||
|
||||
self.queued_events.push_back(ConnectionHandlerEvent::Custom(
|
||||
Event::OutboundConnectNegotiationFailed {
|
||||
circuit_id,
|
||||
src_peer_id,
|
||||
src_connection_id,
|
||||
inbound_circuit_req,
|
||||
status,
|
||||
error: non_fatal_error,
|
||||
},
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
enum ReservationRequestFuture {
|
||||
Accepting(BoxFuture<'static, Result<(), inbound_hop::UpgradeError>>),
|
||||
Denying(BoxFuture<'static, Result<(), inbound_hop::UpgradeError>>),
|
||||
}
|
||||
|
||||
type Futures<T> = FuturesUnordered<BoxFuture<'static, T>>;
|
||||
|
||||
impl ConnectionHandler for Handler {
|
||||
type InEvent = In;
|
||||
type OutEvent = Event;
|
||||
type Error = ConnectionHandlerUpgrErr<
|
||||
EitherError<inbound_hop::FatalUpgradeError, outbound_stop::FatalUpgradeError>,
|
||||
>;
|
||||
type InboundProtocol = inbound_hop::Upgrade;
|
||||
type OutboundProtocol = outbound_stop::Upgrade;
|
||||
type OutboundOpenInfo = OutboundOpenInfo;
|
||||
type InboundOpenInfo = ();
|
||||
|
||||
fn listen_protocol(&self) -> SubstreamProtocol<Self::InboundProtocol, Self::InboundOpenInfo> {
|
||||
SubstreamProtocol::new(
|
||||
inbound_hop::Upgrade {
|
||||
reservation_duration: self.config.reservation_duration,
|
||||
max_circuit_duration: self.config.max_circuit_duration,
|
||||
max_circuit_bytes: self.config.max_circuit_bytes,
|
||||
},
|
||||
(),
|
||||
)
|
||||
}
|
||||
|
||||
fn on_behaviour_event(&mut self, event: Self::InEvent) {
|
||||
match event {
|
||||
In::AcceptReservationReq {
|
||||
inbound_reservation_req,
|
||||
addrs,
|
||||
} => {
|
||||
if self
|
||||
.reservation_request_future
|
||||
.replace(ReservationRequestFuture::Accepting(
|
||||
inbound_reservation_req.accept(addrs).boxed(),
|
||||
))
|
||||
.is_some()
|
||||
{
|
||||
log::warn!("Dropping existing deny/accept future in favor of new one.")
|
||||
}
|
||||
}
|
||||
In::DenyReservationReq {
|
||||
inbound_reservation_req,
|
||||
status,
|
||||
} => {
|
||||
if self
|
||||
.reservation_request_future
|
||||
.replace(ReservationRequestFuture::Denying(
|
||||
inbound_reservation_req.deny(status).boxed(),
|
||||
))
|
||||
.is_some()
|
||||
{
|
||||
log::warn!("Dropping existing deny/accept future in favor of new one.")
|
||||
}
|
||||
}
|
||||
In::NegotiateOutboundConnect {
|
||||
circuit_id,
|
||||
inbound_circuit_req,
|
||||
relay_peer_id,
|
||||
src_peer_id,
|
||||
src_connection_id,
|
||||
} => {
|
||||
self.queued_events
|
||||
.push_back(ConnectionHandlerEvent::OutboundSubstreamRequest {
|
||||
protocol: SubstreamProtocol::new(
|
||||
outbound_stop::Upgrade {
|
||||
relay_peer_id,
|
||||
max_circuit_duration: self.config.max_circuit_duration,
|
||||
max_circuit_bytes: self.config.max_circuit_bytes,
|
||||
},
|
||||
OutboundOpenInfo {
|
||||
circuit_id,
|
||||
inbound_circuit_req,
|
||||
src_peer_id,
|
||||
src_connection_id,
|
||||
},
|
||||
),
|
||||
});
|
||||
}
|
||||
In::DenyCircuitReq {
|
||||
circuit_id,
|
||||
inbound_circuit_req,
|
||||
status,
|
||||
} => {
|
||||
let dst_peer_id = inbound_circuit_req.dst();
|
||||
self.circuit_deny_futures.push(
|
||||
inbound_circuit_req
|
||||
.deny(status)
|
||||
.map(move |result| (circuit_id, dst_peer_id, result))
|
||||
.boxed(),
|
||||
);
|
||||
}
|
||||
In::AcceptAndDriveCircuit {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
inbound_circuit_req,
|
||||
dst_handler_notifier,
|
||||
dst_stream,
|
||||
dst_pending_data,
|
||||
} => {
|
||||
self.circuit_accept_futures.push(
|
||||
inbound_circuit_req
|
||||
.accept()
|
||||
.map_ok(move |(src_stream, src_pending_data)| CircuitParts {
|
||||
circuit_id,
|
||||
src_stream,
|
||||
src_pending_data,
|
||||
dst_peer_id,
|
||||
dst_handler_notifier,
|
||||
dst_stream,
|
||||
dst_pending_data,
|
||||
})
|
||||
.map_err(move |e| (circuit_id, dst_peer_id, e))
|
||||
.boxed(),
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn connection_keep_alive(&self) -> KeepAlive {
|
||||
self.keep_alive
|
||||
}
|
||||
|
||||
fn poll(
|
||||
&mut self,
|
||||
cx: &mut Context<'_>,
|
||||
) -> Poll<
|
||||
ConnectionHandlerEvent<
|
||||
Self::OutboundProtocol,
|
||||
Self::OutboundOpenInfo,
|
||||
Self::OutEvent,
|
||||
Self::Error,
|
||||
>,
|
||||
> {
|
||||
// Check for a pending (fatal) error.
|
||||
if let Some(err) = self.pending_error.take() {
|
||||
// The handler will not be polled again by the `Swarm`.
|
||||
return Poll::Ready(ConnectionHandlerEvent::Close(err));
|
||||
}
|
||||
|
||||
// Return queued events.
|
||||
if let Some(event) = self.queued_events.pop_front() {
|
||||
return Poll::Ready(event);
|
||||
}
|
||||
|
||||
// Progress existing circuits.
|
||||
if let Poll::Ready(Some((circuit_id, dst_peer_id, result))) =
|
||||
self.circuits.poll_next_unpin(cx)
|
||||
{
|
||||
match result {
|
||||
Ok(()) => {
|
||||
return Poll::Ready(ConnectionHandlerEvent::Custom(Event::CircuitClosed {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
error: None,
|
||||
}))
|
||||
}
|
||||
Err(e) => {
|
||||
return Poll::Ready(ConnectionHandlerEvent::Custom(Event::CircuitClosed {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
error: Some(e),
|
||||
}))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Deny new circuits.
|
||||
if let Poll::Ready(Some((circuit_id, dst_peer_id, result))) =
|
||||
self.circuit_deny_futures.poll_next_unpin(cx)
|
||||
{
|
||||
match result {
|
||||
Ok(()) => {
|
||||
return Poll::Ready(ConnectionHandlerEvent::Custom(Event::CircuitReqDenied {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
}));
|
||||
}
|
||||
Err(error) => {
|
||||
return Poll::Ready(ConnectionHandlerEvent::Custom(
|
||||
Event::CircuitReqDenyFailed {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
error,
|
||||
},
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Accept new circuits.
|
||||
if let Poll::Ready(Some(result)) = self.circuit_accept_futures.poll_next_unpin(cx) {
|
||||
match result {
|
||||
Ok(parts) => {
|
||||
let CircuitParts {
|
||||
circuit_id,
|
||||
mut src_stream,
|
||||
src_pending_data,
|
||||
dst_peer_id,
|
||||
dst_handler_notifier,
|
||||
mut dst_stream,
|
||||
dst_pending_data,
|
||||
} = parts;
|
||||
let max_circuit_duration = self.config.max_circuit_duration;
|
||||
let max_circuit_bytes = self.config.max_circuit_bytes;
|
||||
|
||||
let circuit = async move {
|
||||
let (result_1, result_2) = futures::future::join(
|
||||
src_stream.write_all(&dst_pending_data),
|
||||
dst_stream.write_all(&src_pending_data),
|
||||
)
|
||||
.await;
|
||||
result_1?;
|
||||
result_2?;
|
||||
|
||||
CopyFuture::new(
|
||||
src_stream,
|
||||
dst_stream,
|
||||
max_circuit_duration,
|
||||
max_circuit_bytes,
|
||||
)
|
||||
.await?;
|
||||
|
||||
// Inform destination handler that the stream to the destination is dropped.
|
||||
drop(dst_handler_notifier);
|
||||
Ok(())
|
||||
}
|
||||
.map(move |r| (circuit_id, dst_peer_id, r))
|
||||
.boxed();
|
||||
|
||||
self.circuits.push(circuit);
|
||||
|
||||
return Poll::Ready(ConnectionHandlerEvent::Custom(
|
||||
Event::CircuitReqAccepted {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
},
|
||||
));
|
||||
}
|
||||
Err((circuit_id, dst_peer_id, error)) => {
|
||||
return Poll::Ready(ConnectionHandlerEvent::Custom(
|
||||
Event::CircuitReqAcceptFailed {
|
||||
circuit_id,
|
||||
dst_peer_id,
|
||||
error,
|
||||
},
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Check active reservation.
|
||||
if let Some(Poll::Ready(())) = self
|
||||
.active_reservation
|
||||
.as_mut()
|
||||
.map(|fut| fut.poll_unpin(cx))
|
||||
{
|
||||
self.active_reservation = None;
|
||||
return Poll::Ready(ConnectionHandlerEvent::Custom(
|
||||
Event::ReservationTimedOut {},
|
||||
));
|
||||
}
|
||||
|
||||
// Progress reservation request.
|
||||
match self.reservation_request_future.as_mut() {
|
||||
Some(ReservationRequestFuture::Accepting(fut)) => {
|
||||
if let Poll::Ready(result) = fut.poll_unpin(cx) {
|
||||
self.reservation_request_future = None;
|
||||
|
||||
match result {
|
||||
Ok(()) => {
|
||||
let renewed = self
|
||||
.active_reservation
|
||||
.replace(Delay::new(self.config.reservation_duration))
|
||||
.is_some();
|
||||
return Poll::Ready(ConnectionHandlerEvent::Custom(
|
||||
Event::ReservationReqAccepted { renewed },
|
||||
));
|
||||
}
|
||||
Err(error) => {
|
||||
return Poll::Ready(ConnectionHandlerEvent::Custom(
|
||||
Event::ReservationReqAcceptFailed { error },
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Some(ReservationRequestFuture::Denying(fut)) => {
|
||||
if let Poll::Ready(result) = fut.poll_unpin(cx) {
|
||||
self.reservation_request_future = None;
|
||||
|
||||
match result {
|
||||
Ok(()) => {
|
||||
return Poll::Ready(ConnectionHandlerEvent::Custom(
|
||||
Event::ReservationReqDenied {},
|
||||
))
|
||||
}
|
||||
Err(error) => {
|
||||
return Poll::Ready(ConnectionHandlerEvent::Custom(
|
||||
Event::ReservationReqDenyFailed { error },
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
None => {}
|
||||
}
|
||||
|
||||
// Check lend out substreams.
|
||||
while let Poll::Ready(Some(Err(Canceled))) =
|
||||
self.alive_lend_out_substreams.poll_next_unpin(cx)
|
||||
{}
|
||||
|
||||
// Check keep alive status.
|
||||
if self.reservation_request_future.is_none()
|
||||
&& self.circuit_accept_futures.is_empty()
|
||||
&& self.circuit_deny_futures.is_empty()
|
||||
&& self.alive_lend_out_substreams.is_empty()
|
||||
&& self.circuits.is_empty()
|
||||
&& self.active_reservation.is_none()
|
||||
{
|
||||
match self.keep_alive {
|
||||
KeepAlive::Yes => {
|
||||
self.keep_alive = KeepAlive::Until(Instant::now() + Duration::from_secs(10));
|
||||
}
|
||||
KeepAlive::Until(_) => {}
|
||||
KeepAlive::No => panic!("Handler never sets KeepAlive::No."),
|
||||
}
|
||||
} else {
|
||||
self.keep_alive = KeepAlive::Yes;
|
||||
}
|
||||
|
||||
Poll::Pending
|
||||
}
|
||||
|
||||
fn on_connection_event(
|
||||
&mut self,
|
||||
event: ConnectionEvent<
|
||||
Self::InboundProtocol,
|
||||
Self::OutboundProtocol,
|
||||
Self::InboundOpenInfo,
|
||||
Self::OutboundOpenInfo,
|
||||
>,
|
||||
) {
|
||||
match event {
|
||||
ConnectionEvent::FullyNegotiatedInbound(fully_negotiated_inbound) => {
|
||||
self.on_fully_negotiated_inbound(fully_negotiated_inbound)
|
||||
}
|
||||
ConnectionEvent::FullyNegotiatedOutbound(fully_negotiated_outbound) => {
|
||||
self.on_fully_negotiated_outbound(fully_negotiated_outbound)
|
||||
}
|
||||
ConnectionEvent::ListenUpgradeError(listen_upgrade_error) => {
|
||||
self.on_listen_upgrade_error(listen_upgrade_error)
|
||||
}
|
||||
ConnectionEvent::DialUpgradeError(dial_upgrade_error) => {
|
||||
self.on_dial_upgrade_error(dial_upgrade_error)
|
||||
}
|
||||
ConnectionEvent::AddressChange(_) => {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub struct OutboundOpenInfo {
|
||||
circuit_id: CircuitId,
|
||||
inbound_circuit_req: inbound_hop::CircuitReq,
|
||||
src_peer_id: PeerId,
|
||||
src_connection_id: ConnectionId,
|
||||
}
|
||||
|
||||
pub struct CircuitParts {
|
||||
circuit_id: CircuitId,
|
||||
src_stream: NegotiatedSubstream,
|
||||
src_pending_data: Bytes,
|
||||
dst_peer_id: PeerId,
|
||||
dst_handler_notifier: oneshot::Sender<()>,
|
||||
dst_stream: NegotiatedSubstream,
|
||||
dst_pending_data: Bytes,
|
||||
}
|
Reference in New Issue
Block a user