mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-26 16:21:39 +00:00
Previously, we would erroneously always go into the `WaitingUser` (now called `WaitingBehaviour`) state after receiving a message on an inbound stream. However, the `AddProvider` message does not warrant a "response" from the behaviour. Thus, any incoming `AddProvider` message would result in a stale substream that would eventually be dropped as soon as more than 32 inbound streams have been opened. With this patch, we inline the message handling into the upper match block and perform the correct state transition upon each message. For `AddProvider`, we go back into `WaitingMessage` because the spec mandates that we need to be ready to receive more messages on an inbound stream. Fixes #3048.
1181 lines
44 KiB
Rust
1181 lines
44 KiB
Rust
// Copyright 2018 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.
|
|
|
|
use crate::protocol::{
|
|
KadInStreamSink, KadOutStreamSink, KadPeer, KadRequestMsg, KadResponseMsg,
|
|
KademliaProtocolConfig,
|
|
};
|
|
use crate::record::{self, Record};
|
|
use futures::prelude::*;
|
|
use futures::stream::SelectAll;
|
|
use instant::Instant;
|
|
use libp2p_core::{either::EitherOutput, upgrade, ConnectedPoint, PeerId};
|
|
use libp2p_swarm::handler::{
|
|
ConnectionEvent, DialUpgradeError, FullyNegotiatedInbound, FullyNegotiatedOutbound,
|
|
};
|
|
use libp2p_swarm::{
|
|
ConnectionHandler, ConnectionHandlerEvent, ConnectionHandlerUpgrErr, IntoConnectionHandler,
|
|
KeepAlive, NegotiatedSubstream, SubstreamProtocol,
|
|
};
|
|
use log::trace;
|
|
use std::task::Waker;
|
|
use std::{
|
|
error, fmt, io, marker::PhantomData, pin::Pin, task::Context, task::Poll, time::Duration,
|
|
};
|
|
|
|
const MAX_NUM_INBOUND_SUBSTREAMS: usize = 32;
|
|
|
|
/// A prototype from which [`KademliaHandler`]s can be constructed.
|
|
pub struct KademliaHandlerProto<T> {
|
|
config: KademliaHandlerConfig,
|
|
_type: PhantomData<T>,
|
|
}
|
|
|
|
impl<T> KademliaHandlerProto<T> {
|
|
pub fn new(config: KademliaHandlerConfig) -> Self {
|
|
KademliaHandlerProto {
|
|
config,
|
|
_type: PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<T: Clone + fmt::Debug + Send + 'static + Unpin> IntoConnectionHandler
|
|
for KademliaHandlerProto<T>
|
|
{
|
|
type Handler = KademliaHandler<T>;
|
|
|
|
fn into_handler(self, remote_peer_id: &PeerId, endpoint: &ConnectedPoint) -> Self::Handler {
|
|
KademliaHandler::new(self.config, endpoint.clone(), *remote_peer_id)
|
|
}
|
|
|
|
fn inbound_protocol(&self) -> <Self::Handler as ConnectionHandler>::InboundProtocol {
|
|
if self.config.allow_listening {
|
|
upgrade::EitherUpgrade::A(self.config.protocol_config.clone())
|
|
} else {
|
|
upgrade::EitherUpgrade::B(upgrade::DeniedUpgrade)
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Protocol handler that manages substreams for the Kademlia protocol
|
|
/// on a single connection with a peer.
|
|
///
|
|
/// The handler will automatically open a Kademlia substream with the remote for each request we
|
|
/// make.
|
|
///
|
|
/// It also handles requests made by the remote.
|
|
pub struct KademliaHandler<TUserData> {
|
|
/// Configuration for the Kademlia protocol.
|
|
config: KademliaHandlerConfig,
|
|
|
|
/// Next unique ID of a connection.
|
|
next_connec_unique_id: UniqueConnecId,
|
|
|
|
/// List of active outbound substreams with the state they are in.
|
|
outbound_substreams: SelectAll<OutboundSubstreamState<TUserData>>,
|
|
|
|
/// List of active inbound substreams with the state they are in.
|
|
inbound_substreams: SelectAll<InboundSubstreamState<TUserData>>,
|
|
|
|
/// Until when to keep the connection alive.
|
|
keep_alive: KeepAlive,
|
|
|
|
/// The connected endpoint of the connection that the handler
|
|
/// is associated with.
|
|
endpoint: ConnectedPoint,
|
|
|
|
/// The [`PeerId`] of the remote.
|
|
remote_peer_id: PeerId,
|
|
|
|
/// The current state of protocol confirmation.
|
|
protocol_status: ProtocolStatus,
|
|
}
|
|
|
|
/// The states of protocol confirmation that a connection
|
|
/// handler transitions through.
|
|
enum ProtocolStatus {
|
|
/// It is as yet unknown whether the remote supports the
|
|
/// configured protocol name.
|
|
Unconfirmed,
|
|
/// The configured protocol name has been confirmed by the remote
|
|
/// but has not yet been reported to the `Kademlia` behaviour.
|
|
Confirmed,
|
|
/// The configured protocol has been confirmed by the remote
|
|
/// and the confirmation reported to the `Kademlia` behaviour.
|
|
Reported,
|
|
}
|
|
|
|
/// Configuration of a [`KademliaHandler`].
|
|
#[derive(Debug, Clone)]
|
|
pub struct KademliaHandlerConfig {
|
|
/// Configuration of the wire protocol.
|
|
pub protocol_config: KademliaProtocolConfig,
|
|
|
|
/// If false, we deny incoming requests.
|
|
pub allow_listening: bool,
|
|
|
|
/// Time after which we close an idle connection.
|
|
pub idle_timeout: Duration,
|
|
}
|
|
|
|
/// State of an active outbound substream.
|
|
enum OutboundSubstreamState<TUserData> {
|
|
/// We haven't started opening the outgoing substream yet.
|
|
/// Contains the request we want to send, and the user data if we expect an answer.
|
|
PendingOpen(SubstreamProtocol<KademliaProtocolConfig, (KadRequestMsg, Option<TUserData>)>),
|
|
/// Waiting to send a message to the remote.
|
|
PendingSend(
|
|
KadOutStreamSink<NegotiatedSubstream>,
|
|
KadRequestMsg,
|
|
Option<TUserData>,
|
|
),
|
|
/// Waiting to flush the substream so that the data arrives to the remote.
|
|
PendingFlush(KadOutStreamSink<NegotiatedSubstream>, Option<TUserData>),
|
|
/// Waiting for an answer back from the remote.
|
|
// TODO: add timeout
|
|
WaitingAnswer(KadOutStreamSink<NegotiatedSubstream>, TUserData),
|
|
/// An error happened on the substream and we should report the error to the user.
|
|
ReportError(KademliaHandlerQueryErr, TUserData),
|
|
/// The substream is being closed.
|
|
Closing(KadOutStreamSink<NegotiatedSubstream>),
|
|
/// The substream is complete and will not perform any more work.
|
|
Done,
|
|
Poisoned,
|
|
}
|
|
|
|
/// State of an active inbound substream.
|
|
enum InboundSubstreamState<TUserData> {
|
|
/// Waiting for a request from the remote.
|
|
WaitingMessage {
|
|
/// Whether it is the first message to be awaited on this stream.
|
|
first: bool,
|
|
connection_id: UniqueConnecId,
|
|
substream: KadInStreamSink<NegotiatedSubstream>,
|
|
},
|
|
/// Waiting for the behaviour to send a [`KademliaHandlerIn`] event containing the response.
|
|
WaitingBehaviour(
|
|
UniqueConnecId,
|
|
KadInStreamSink<NegotiatedSubstream>,
|
|
Option<Waker>,
|
|
),
|
|
/// Waiting to send an answer back to the remote.
|
|
PendingSend(
|
|
UniqueConnecId,
|
|
KadInStreamSink<NegotiatedSubstream>,
|
|
KadResponseMsg,
|
|
),
|
|
/// Waiting to flush an answer back to the remote.
|
|
PendingFlush(UniqueConnecId, KadInStreamSink<NegotiatedSubstream>),
|
|
/// The substream is being closed.
|
|
Closing(KadInStreamSink<NegotiatedSubstream>),
|
|
/// The substream was cancelled in favor of a new one.
|
|
Cancelled,
|
|
|
|
Poisoned {
|
|
phantom: PhantomData<TUserData>,
|
|
},
|
|
}
|
|
|
|
impl<TUserData> InboundSubstreamState<TUserData> {
|
|
fn try_answer_with(
|
|
&mut self,
|
|
id: KademliaRequestId,
|
|
msg: KadResponseMsg,
|
|
) -> Result<(), KadResponseMsg> {
|
|
match std::mem::replace(
|
|
self,
|
|
InboundSubstreamState::Poisoned {
|
|
phantom: PhantomData,
|
|
},
|
|
) {
|
|
InboundSubstreamState::WaitingBehaviour(conn_id, substream, mut waker)
|
|
if conn_id == id.connec_unique_id =>
|
|
{
|
|
*self = InboundSubstreamState::PendingSend(conn_id, substream, msg);
|
|
|
|
if let Some(waker) = waker.take() {
|
|
waker.wake();
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
other => {
|
|
*self = other;
|
|
|
|
Err(msg)
|
|
}
|
|
}
|
|
}
|
|
|
|
fn close(&mut self) {
|
|
match std::mem::replace(
|
|
self,
|
|
InboundSubstreamState::Poisoned {
|
|
phantom: PhantomData,
|
|
},
|
|
) {
|
|
InboundSubstreamState::WaitingMessage { substream, .. }
|
|
| InboundSubstreamState::WaitingBehaviour(_, substream, _)
|
|
| InboundSubstreamState::PendingSend(_, substream, _)
|
|
| InboundSubstreamState::PendingFlush(_, substream)
|
|
| InboundSubstreamState::Closing(substream) => {
|
|
*self = InboundSubstreamState::Closing(substream);
|
|
}
|
|
InboundSubstreamState::Cancelled => {
|
|
*self = InboundSubstreamState::Cancelled;
|
|
}
|
|
InboundSubstreamState::Poisoned { .. } => unreachable!(),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Event produced by the Kademlia handler.
|
|
#[derive(Debug)]
|
|
pub enum KademliaHandlerEvent<TUserData> {
|
|
/// The configured protocol name has been confirmed by the peer through
|
|
/// a successfully negotiated substream.
|
|
///
|
|
/// This event is only emitted once by a handler upon the first
|
|
/// successfully negotiated inbound or outbound substream and
|
|
/// indicates that the connected peer participates in the Kademlia
|
|
/// overlay network identified by the configured protocol name.
|
|
ProtocolConfirmed { endpoint: ConnectedPoint },
|
|
|
|
/// Request for the list of nodes whose IDs are the closest to `key`. The number of nodes
|
|
/// returned is not specified, but should be around 20.
|
|
FindNodeReq {
|
|
/// The key for which to locate the closest nodes.
|
|
key: Vec<u8>,
|
|
/// Identifier of the request. Needs to be passed back when answering.
|
|
request_id: KademliaRequestId,
|
|
},
|
|
|
|
/// Response to an `KademliaHandlerIn::FindNodeReq`.
|
|
FindNodeRes {
|
|
/// Results of the request.
|
|
closer_peers: Vec<KadPeer>,
|
|
/// The user data passed to the `FindNodeReq`.
|
|
user_data: TUserData,
|
|
},
|
|
|
|
/// Same as `FindNodeReq`, but should also return the entries of the local providers list for
|
|
/// this key.
|
|
GetProvidersReq {
|
|
/// The key for which providers are requested.
|
|
key: record::Key,
|
|
/// Identifier of the request. Needs to be passed back when answering.
|
|
request_id: KademliaRequestId,
|
|
},
|
|
|
|
/// Response to an `KademliaHandlerIn::GetProvidersReq`.
|
|
GetProvidersRes {
|
|
/// Nodes closest to the key.
|
|
closer_peers: Vec<KadPeer>,
|
|
/// Known providers for this key.
|
|
provider_peers: Vec<KadPeer>,
|
|
/// The user data passed to the `GetProvidersReq`.
|
|
user_data: TUserData,
|
|
},
|
|
|
|
/// An error happened when performing a query.
|
|
QueryError {
|
|
/// The error that happened.
|
|
error: KademliaHandlerQueryErr,
|
|
/// The user data passed to the query.
|
|
user_data: TUserData,
|
|
},
|
|
|
|
/// The peer announced itself as a provider of a key.
|
|
AddProvider {
|
|
/// The key for which the peer is a provider of the associated value.
|
|
key: record::Key,
|
|
/// The peer that is the provider of the value for `key`.
|
|
provider: KadPeer,
|
|
},
|
|
|
|
/// Request to get a value from the dht records
|
|
GetRecord {
|
|
/// Key for which we should look in the dht
|
|
key: record::Key,
|
|
/// Identifier of the request. Needs to be passed back when answering.
|
|
request_id: KademliaRequestId,
|
|
},
|
|
|
|
/// Response to a `KademliaHandlerIn::GetRecord`.
|
|
GetRecordRes {
|
|
/// The result is present if the key has been found
|
|
record: Option<Record>,
|
|
/// Nodes closest to the key.
|
|
closer_peers: Vec<KadPeer>,
|
|
/// The user data passed to the `GetValue`.
|
|
user_data: TUserData,
|
|
},
|
|
|
|
/// Request to put a value in the dht records
|
|
PutRecord {
|
|
record: Record,
|
|
/// Identifier of the request. Needs to be passed back when answering.
|
|
request_id: KademliaRequestId,
|
|
},
|
|
|
|
/// Response to a request to store a record.
|
|
PutRecordRes {
|
|
/// The key of the stored record.
|
|
key: record::Key,
|
|
/// The value of the stored record.
|
|
value: Vec<u8>,
|
|
/// The user data passed to the `PutValue`.
|
|
user_data: TUserData,
|
|
},
|
|
}
|
|
|
|
/// Error that can happen when requesting an RPC query.
|
|
#[derive(Debug)]
|
|
pub enum KademliaHandlerQueryErr {
|
|
/// Error while trying to perform the query.
|
|
Upgrade(ConnectionHandlerUpgrErr<io::Error>),
|
|
/// Received an answer that doesn't correspond to the request.
|
|
UnexpectedMessage,
|
|
/// I/O error in the substream.
|
|
Io(io::Error),
|
|
}
|
|
|
|
impl fmt::Display for KademliaHandlerQueryErr {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
match self {
|
|
KademliaHandlerQueryErr::Upgrade(err) => {
|
|
write!(f, "Error while performing Kademlia query: {}", err)
|
|
}
|
|
KademliaHandlerQueryErr::UnexpectedMessage => {
|
|
write!(
|
|
f,
|
|
"Remote answered our Kademlia RPC query with the wrong message type"
|
|
)
|
|
}
|
|
KademliaHandlerQueryErr::Io(err) => {
|
|
write!(f, "I/O error during a Kademlia RPC query: {}", err)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl error::Error for KademliaHandlerQueryErr {
|
|
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
|
|
match self {
|
|
KademliaHandlerQueryErr::Upgrade(err) => Some(err),
|
|
KademliaHandlerQueryErr::UnexpectedMessage => None,
|
|
KademliaHandlerQueryErr::Io(err) => Some(err),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<ConnectionHandlerUpgrErr<io::Error>> for KademliaHandlerQueryErr {
|
|
fn from(err: ConnectionHandlerUpgrErr<io::Error>) -> Self {
|
|
KademliaHandlerQueryErr::Upgrade(err)
|
|
}
|
|
}
|
|
|
|
/// Event to send to the handler.
|
|
#[derive(Debug)]
|
|
pub enum KademliaHandlerIn<TUserData> {
|
|
/// Resets the (sub)stream associated with the given request ID,
|
|
/// thus signaling an error to the remote.
|
|
///
|
|
/// Explicitly resetting the (sub)stream associated with a request
|
|
/// can be used as an alternative to letting requests simply time
|
|
/// out on the remote peer, thus potentially avoiding some delay
|
|
/// for the query on the remote.
|
|
Reset(KademliaRequestId),
|
|
|
|
/// Request for the list of nodes whose IDs are the closest to `key`. The number of nodes
|
|
/// returned is not specified, but should be around 20.
|
|
FindNodeReq {
|
|
/// Identifier of the node.
|
|
key: Vec<u8>,
|
|
/// Custom user data. Passed back in the out event when the results arrive.
|
|
user_data: TUserData,
|
|
},
|
|
|
|
/// Response to a `FindNodeReq`.
|
|
FindNodeRes {
|
|
/// Results of the request.
|
|
closer_peers: Vec<KadPeer>,
|
|
/// Identifier of the request that was made by the remote.
|
|
///
|
|
/// It is a logic error to use an id of the handler of a different node.
|
|
request_id: KademliaRequestId,
|
|
},
|
|
|
|
/// Same as `FindNodeReq`, but should also return the entries of the local providers list for
|
|
/// this key.
|
|
GetProvidersReq {
|
|
/// Identifier being searched.
|
|
key: record::Key,
|
|
/// Custom user data. Passed back in the out event when the results arrive.
|
|
user_data: TUserData,
|
|
},
|
|
|
|
/// Response to a `GetProvidersReq`.
|
|
GetProvidersRes {
|
|
/// Nodes closest to the key.
|
|
closer_peers: Vec<KadPeer>,
|
|
/// Known providers for this key.
|
|
provider_peers: Vec<KadPeer>,
|
|
/// Identifier of the request that was made by the remote.
|
|
///
|
|
/// It is a logic error to use an id of the handler of a different node.
|
|
request_id: KademliaRequestId,
|
|
},
|
|
|
|
/// Indicates that this provider is known for this key.
|
|
///
|
|
/// The API of the handler doesn't expose any event that allows you to know whether this
|
|
/// succeeded.
|
|
AddProvider {
|
|
/// Key for which we should add providers.
|
|
key: record::Key,
|
|
/// Known provider for this key.
|
|
provider: KadPeer,
|
|
},
|
|
|
|
/// Request to retrieve a record from the DHT.
|
|
GetRecord {
|
|
/// The key of the record.
|
|
key: record::Key,
|
|
/// Custom data. Passed back in the out event when the results arrive.
|
|
user_data: TUserData,
|
|
},
|
|
|
|
/// Response to a `GetRecord` request.
|
|
GetRecordRes {
|
|
/// The value that might have been found in our storage.
|
|
record: Option<Record>,
|
|
/// Nodes that are closer to the key we were searching for.
|
|
closer_peers: Vec<KadPeer>,
|
|
/// Identifier of the request that was made by the remote.
|
|
request_id: KademliaRequestId,
|
|
},
|
|
|
|
/// Put a value into the dht records.
|
|
PutRecord {
|
|
record: Record,
|
|
/// Custom data. Passed back in the out event when the results arrive.
|
|
user_data: TUserData,
|
|
},
|
|
|
|
/// Response to a `PutRecord`.
|
|
PutRecordRes {
|
|
/// Key of the value that was put.
|
|
key: record::Key,
|
|
/// Value that was put.
|
|
value: Vec<u8>,
|
|
/// Identifier of the request that was made by the remote.
|
|
request_id: KademliaRequestId,
|
|
},
|
|
}
|
|
|
|
/// Unique identifier for a request. Must be passed back in order to answer a request from
|
|
/// the remote.
|
|
#[derive(Debug, PartialEq, Eq, Copy, Clone)]
|
|
pub struct KademliaRequestId {
|
|
/// Unique identifier for an incoming connection.
|
|
connec_unique_id: UniqueConnecId,
|
|
}
|
|
|
|
/// Unique identifier for a connection.
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
|
struct UniqueConnecId(u64);
|
|
|
|
impl<TUserData> KademliaHandler<TUserData>
|
|
where
|
|
TUserData: Clone + fmt::Debug + Send + 'static + Unpin,
|
|
{
|
|
/// Create a [`KademliaHandler`] using the given configuration.
|
|
pub fn new(
|
|
config: KademliaHandlerConfig,
|
|
endpoint: ConnectedPoint,
|
|
remote_peer_id: PeerId,
|
|
) -> Self {
|
|
let keep_alive = KeepAlive::Until(Instant::now() + config.idle_timeout);
|
|
|
|
KademliaHandler {
|
|
config,
|
|
endpoint,
|
|
remote_peer_id,
|
|
next_connec_unique_id: UniqueConnecId(0),
|
|
inbound_substreams: Default::default(),
|
|
outbound_substreams: Default::default(),
|
|
keep_alive,
|
|
protocol_status: ProtocolStatus::Unconfirmed,
|
|
}
|
|
}
|
|
|
|
fn on_fully_negotiated_outbound(
|
|
&mut self,
|
|
FullyNegotiatedOutbound {
|
|
protocol,
|
|
info: (msg, user_data),
|
|
}: FullyNegotiatedOutbound<
|
|
<Self as ConnectionHandler>::OutboundProtocol,
|
|
<Self as ConnectionHandler>::OutboundOpenInfo,
|
|
>,
|
|
) {
|
|
self.outbound_substreams
|
|
.push(OutboundSubstreamState::PendingSend(
|
|
protocol, msg, user_data,
|
|
));
|
|
if let ProtocolStatus::Unconfirmed = self.protocol_status {
|
|
// Upon the first successfully negotiated substream, we know that the
|
|
// remote is configured with the same protocol name and we want
|
|
// the behaviour to add this peer to the routing table, if possible.
|
|
self.protocol_status = ProtocolStatus::Confirmed;
|
|
}
|
|
}
|
|
|
|
fn on_fully_negotiated_inbound(
|
|
&mut self,
|
|
FullyNegotiatedInbound { protocol, .. }: FullyNegotiatedInbound<
|
|
<Self as ConnectionHandler>::InboundProtocol,
|
|
<Self as ConnectionHandler>::InboundOpenInfo,
|
|
>,
|
|
) {
|
|
// If `self.allow_listening` is false, then we produced a `DeniedUpgrade` and `protocol`
|
|
// is a `Void`.
|
|
let protocol = match protocol {
|
|
EitherOutput::First(p) => p,
|
|
EitherOutput::Second(p) => void::unreachable(p),
|
|
};
|
|
|
|
if let ProtocolStatus::Unconfirmed = self.protocol_status {
|
|
// Upon the first successfully negotiated substream, we know that the
|
|
// remote is configured with the same protocol name and we want
|
|
// the behaviour to add this peer to the routing table, if possible.
|
|
self.protocol_status = ProtocolStatus::Confirmed;
|
|
}
|
|
|
|
if self.inbound_substreams.len() == MAX_NUM_INBOUND_SUBSTREAMS {
|
|
if let Some(s) = self.inbound_substreams.iter_mut().find(|s| {
|
|
matches!(
|
|
s,
|
|
// An inbound substream waiting to be reused.
|
|
InboundSubstreamState::WaitingMessage { first: false, .. }
|
|
)
|
|
}) {
|
|
*s = InboundSubstreamState::Cancelled;
|
|
log::warn!(
|
|
"New inbound substream to {:?} exceeds inbound substream limit. \
|
|
Removed older substream waiting to be reused.",
|
|
self.remote_peer_id,
|
|
)
|
|
} else {
|
|
log::warn!(
|
|
"New inbound substream to {:?} exceeds inbound substream limit. \
|
|
No older substream waiting to be reused. Dropping new substream.",
|
|
self.remote_peer_id,
|
|
);
|
|
return;
|
|
}
|
|
}
|
|
|
|
debug_assert!(self.config.allow_listening);
|
|
let connec_unique_id = self.next_connec_unique_id;
|
|
self.next_connec_unique_id.0 += 1;
|
|
self.inbound_substreams
|
|
.push(InboundSubstreamState::WaitingMessage {
|
|
first: true,
|
|
connection_id: connec_unique_id,
|
|
substream: protocol,
|
|
});
|
|
}
|
|
|
|
fn on_dial_upgrade_error(
|
|
&mut self,
|
|
DialUpgradeError {
|
|
info: (_, user_data),
|
|
error,
|
|
..
|
|
}: DialUpgradeError<
|
|
<Self as ConnectionHandler>::OutboundOpenInfo,
|
|
<Self as ConnectionHandler>::OutboundProtocol,
|
|
>,
|
|
) {
|
|
// TODO: cache the fact that the remote doesn't support kademlia at all, so that we don't
|
|
// continue trying
|
|
if let Some(user_data) = user_data {
|
|
self.outbound_substreams
|
|
.push(OutboundSubstreamState::ReportError(error.into(), user_data));
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<TUserData> ConnectionHandler for KademliaHandler<TUserData>
|
|
where
|
|
TUserData: Clone + fmt::Debug + Send + 'static + Unpin,
|
|
{
|
|
type InEvent = KademliaHandlerIn<TUserData>;
|
|
type OutEvent = KademliaHandlerEvent<TUserData>;
|
|
type Error = io::Error; // TODO: better error type?
|
|
type InboundProtocol = upgrade::EitherUpgrade<KademliaProtocolConfig, upgrade::DeniedUpgrade>;
|
|
type OutboundProtocol = KademliaProtocolConfig;
|
|
// Message of the request to send to the remote, and user data if we expect an answer.
|
|
type OutboundOpenInfo = (KadRequestMsg, Option<TUserData>);
|
|
type InboundOpenInfo = ();
|
|
|
|
fn listen_protocol(&self) -> SubstreamProtocol<Self::InboundProtocol, Self::InboundOpenInfo> {
|
|
if self.config.allow_listening {
|
|
SubstreamProtocol::new(self.config.protocol_config.clone(), ())
|
|
.map_upgrade(upgrade::EitherUpgrade::A)
|
|
} else {
|
|
SubstreamProtocol::new(upgrade::EitherUpgrade::B(upgrade::DeniedUpgrade), ())
|
|
}
|
|
}
|
|
|
|
fn on_behaviour_event(&mut self, message: KademliaHandlerIn<TUserData>) {
|
|
match message {
|
|
KademliaHandlerIn::Reset(request_id) => {
|
|
if let Some(state) = self
|
|
.inbound_substreams
|
|
.iter_mut()
|
|
.find(|state| match state {
|
|
InboundSubstreamState::WaitingBehaviour(conn_id, _, _) => {
|
|
conn_id == &request_id.connec_unique_id
|
|
}
|
|
_ => false,
|
|
})
|
|
{
|
|
state.close();
|
|
}
|
|
}
|
|
KademliaHandlerIn::FindNodeReq { key, user_data } => {
|
|
let msg = KadRequestMsg::FindNode { key };
|
|
self.outbound_substreams
|
|
.push(OutboundSubstreamState::PendingOpen(SubstreamProtocol::new(
|
|
self.config.protocol_config.clone(),
|
|
(msg, Some(user_data)),
|
|
)));
|
|
}
|
|
KademliaHandlerIn::FindNodeRes {
|
|
closer_peers,
|
|
request_id,
|
|
} => self.answer_pending_request(request_id, KadResponseMsg::FindNode { closer_peers }),
|
|
KademliaHandlerIn::GetProvidersReq { key, user_data } => {
|
|
let msg = KadRequestMsg::GetProviders { key };
|
|
self.outbound_substreams
|
|
.push(OutboundSubstreamState::PendingOpen(SubstreamProtocol::new(
|
|
self.config.protocol_config.clone(),
|
|
(msg, Some(user_data)),
|
|
)));
|
|
}
|
|
KademliaHandlerIn::GetProvidersRes {
|
|
closer_peers,
|
|
provider_peers,
|
|
request_id,
|
|
} => self.answer_pending_request(
|
|
request_id,
|
|
KadResponseMsg::GetProviders {
|
|
closer_peers,
|
|
provider_peers,
|
|
},
|
|
),
|
|
KademliaHandlerIn::AddProvider { key, provider } => {
|
|
let msg = KadRequestMsg::AddProvider { key, provider };
|
|
self.outbound_substreams
|
|
.push(OutboundSubstreamState::PendingOpen(SubstreamProtocol::new(
|
|
self.config.protocol_config.clone(),
|
|
(msg, None),
|
|
)));
|
|
}
|
|
KademliaHandlerIn::GetRecord { key, user_data } => {
|
|
let msg = KadRequestMsg::GetValue { key };
|
|
self.outbound_substreams
|
|
.push(OutboundSubstreamState::PendingOpen(SubstreamProtocol::new(
|
|
self.config.protocol_config.clone(),
|
|
(msg, Some(user_data)),
|
|
)));
|
|
}
|
|
KademliaHandlerIn::PutRecord { record, user_data } => {
|
|
let msg = KadRequestMsg::PutValue { record };
|
|
self.outbound_substreams
|
|
.push(OutboundSubstreamState::PendingOpen(SubstreamProtocol::new(
|
|
self.config.protocol_config.clone(),
|
|
(msg, Some(user_data)),
|
|
)));
|
|
}
|
|
KademliaHandlerIn::GetRecordRes {
|
|
record,
|
|
closer_peers,
|
|
request_id,
|
|
} => {
|
|
self.answer_pending_request(
|
|
request_id,
|
|
KadResponseMsg::GetValue {
|
|
record,
|
|
closer_peers,
|
|
},
|
|
);
|
|
}
|
|
KademliaHandlerIn::PutRecordRes {
|
|
key,
|
|
request_id,
|
|
value,
|
|
} => {
|
|
self.answer_pending_request(request_id, KadResponseMsg::PutValue { key, value });
|
|
}
|
|
}
|
|
}
|
|
|
|
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,
|
|
>,
|
|
> {
|
|
if let ProtocolStatus::Confirmed = self.protocol_status {
|
|
self.protocol_status = ProtocolStatus::Reported;
|
|
return Poll::Ready(ConnectionHandlerEvent::Custom(
|
|
KademliaHandlerEvent::ProtocolConfirmed {
|
|
endpoint: self.endpoint.clone(),
|
|
},
|
|
));
|
|
}
|
|
|
|
if let Poll::Ready(Some(event)) = self.outbound_substreams.poll_next_unpin(cx) {
|
|
return Poll::Ready(event);
|
|
}
|
|
|
|
if let Poll::Ready(Some(event)) = self.inbound_substreams.poll_next_unpin(cx) {
|
|
return Poll::Ready(event);
|
|
}
|
|
|
|
if self.outbound_substreams.is_empty() && self.inbound_substreams.is_empty() {
|
|
// We destroyed all substreams in this function.
|
|
self.keep_alive = KeepAlive::Until(Instant::now() + self.config.idle_timeout);
|
|
} 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::FullyNegotiatedOutbound(fully_negotiated_outbound) => {
|
|
self.on_fully_negotiated_outbound(fully_negotiated_outbound)
|
|
}
|
|
ConnectionEvent::FullyNegotiatedInbound(fully_negotiated_inbound) => {
|
|
self.on_fully_negotiated_inbound(fully_negotiated_inbound)
|
|
}
|
|
ConnectionEvent::DialUpgradeError(dial_upgrade_error) => {
|
|
self.on_dial_upgrade_error(dial_upgrade_error)
|
|
}
|
|
ConnectionEvent::AddressChange(_) | ConnectionEvent::ListenUpgradeError(_) => {}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<TUserData> KademliaHandler<TUserData>
|
|
where
|
|
TUserData: 'static + Clone + Send + Unpin + fmt::Debug,
|
|
{
|
|
fn answer_pending_request(&mut self, request_id: KademliaRequestId, mut msg: KadResponseMsg) {
|
|
for state in self.inbound_substreams.iter_mut() {
|
|
match state.try_answer_with(request_id, msg) {
|
|
Ok(()) => return,
|
|
Err(m) => {
|
|
msg = m;
|
|
}
|
|
}
|
|
}
|
|
|
|
debug_assert!(false, "Cannot find inbound substream for {request_id:?}")
|
|
}
|
|
}
|
|
|
|
impl Default for KademliaHandlerConfig {
|
|
fn default() -> Self {
|
|
KademliaHandlerConfig {
|
|
protocol_config: Default::default(),
|
|
allow_listening: true,
|
|
idle_timeout: Duration::from_secs(10),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<TUserData> Stream for OutboundSubstreamState<TUserData>
|
|
where
|
|
TUserData: Unpin,
|
|
{
|
|
type Item = ConnectionHandlerEvent<
|
|
KademliaProtocolConfig,
|
|
(KadRequestMsg, Option<TUserData>),
|
|
KademliaHandlerEvent<TUserData>,
|
|
io::Error,
|
|
>;
|
|
|
|
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
|
|
let this = self.get_mut();
|
|
|
|
loop {
|
|
match std::mem::replace(this, OutboundSubstreamState::Poisoned) {
|
|
OutboundSubstreamState::PendingOpen(protocol) => {
|
|
*this = OutboundSubstreamState::Done;
|
|
return Poll::Ready(Some(ConnectionHandlerEvent::OutboundSubstreamRequest {
|
|
protocol,
|
|
}));
|
|
}
|
|
OutboundSubstreamState::PendingSend(mut substream, msg, user_data) => {
|
|
match substream.poll_ready_unpin(cx) {
|
|
Poll::Ready(Ok(())) => match substream.start_send_unpin(msg) {
|
|
Ok(()) => {
|
|
*this = OutboundSubstreamState::PendingFlush(substream, user_data);
|
|
}
|
|
Err(error) => {
|
|
*this = OutboundSubstreamState::Done;
|
|
let event = user_data.map(|user_data| {
|
|
ConnectionHandlerEvent::Custom(
|
|
KademliaHandlerEvent::QueryError {
|
|
error: KademliaHandlerQueryErr::Io(error),
|
|
user_data,
|
|
},
|
|
)
|
|
});
|
|
|
|
return Poll::Ready(event);
|
|
}
|
|
},
|
|
Poll::Pending => {
|
|
*this = OutboundSubstreamState::PendingSend(substream, msg, user_data);
|
|
return Poll::Pending;
|
|
}
|
|
Poll::Ready(Err(error)) => {
|
|
*this = OutboundSubstreamState::Done;
|
|
let event = user_data.map(|user_data| {
|
|
ConnectionHandlerEvent::Custom(KademliaHandlerEvent::QueryError {
|
|
error: KademliaHandlerQueryErr::Io(error),
|
|
user_data,
|
|
})
|
|
});
|
|
|
|
return Poll::Ready(event);
|
|
}
|
|
}
|
|
}
|
|
OutboundSubstreamState::PendingFlush(mut substream, user_data) => {
|
|
match substream.poll_flush_unpin(cx) {
|
|
Poll::Ready(Ok(())) => {
|
|
if let Some(user_data) = user_data {
|
|
*this = OutboundSubstreamState::WaitingAnswer(substream, user_data);
|
|
} else {
|
|
*this = OutboundSubstreamState::Closing(substream);
|
|
}
|
|
}
|
|
Poll::Pending => {
|
|
*this = OutboundSubstreamState::PendingFlush(substream, user_data);
|
|
return Poll::Pending;
|
|
}
|
|
Poll::Ready(Err(error)) => {
|
|
*this = OutboundSubstreamState::Done;
|
|
let event = user_data.map(|user_data| {
|
|
ConnectionHandlerEvent::Custom(KademliaHandlerEvent::QueryError {
|
|
error: KademliaHandlerQueryErr::Io(error),
|
|
user_data,
|
|
})
|
|
});
|
|
|
|
return Poll::Ready(event);
|
|
}
|
|
}
|
|
}
|
|
OutboundSubstreamState::WaitingAnswer(mut substream, user_data) => {
|
|
match substream.poll_next_unpin(cx) {
|
|
Poll::Ready(Some(Ok(msg))) => {
|
|
*this = OutboundSubstreamState::Closing(substream);
|
|
let event = process_kad_response(msg, user_data);
|
|
|
|
return Poll::Ready(Some(ConnectionHandlerEvent::Custom(event)));
|
|
}
|
|
Poll::Pending => {
|
|
*this = OutboundSubstreamState::WaitingAnswer(substream, user_data);
|
|
return Poll::Pending;
|
|
}
|
|
Poll::Ready(Some(Err(error))) => {
|
|
*this = OutboundSubstreamState::Done;
|
|
let event = KademliaHandlerEvent::QueryError {
|
|
error: KademliaHandlerQueryErr::Io(error),
|
|
user_data,
|
|
};
|
|
|
|
return Poll::Ready(Some(ConnectionHandlerEvent::Custom(event)));
|
|
}
|
|
Poll::Ready(None) => {
|
|
*this = OutboundSubstreamState::Done;
|
|
let event = KademliaHandlerEvent::QueryError {
|
|
error: KademliaHandlerQueryErr::Io(
|
|
io::ErrorKind::UnexpectedEof.into(),
|
|
),
|
|
user_data,
|
|
};
|
|
|
|
return Poll::Ready(Some(ConnectionHandlerEvent::Custom(event)));
|
|
}
|
|
}
|
|
}
|
|
OutboundSubstreamState::ReportError(error, user_data) => {
|
|
*this = OutboundSubstreamState::Done;
|
|
let event = KademliaHandlerEvent::QueryError { error, user_data };
|
|
|
|
return Poll::Ready(Some(ConnectionHandlerEvent::Custom(event)));
|
|
}
|
|
OutboundSubstreamState::Closing(mut stream) => match stream.poll_close_unpin(cx) {
|
|
Poll::Ready(Ok(())) | Poll::Ready(Err(_)) => return Poll::Ready(None),
|
|
Poll::Pending => {
|
|
*this = OutboundSubstreamState::Closing(stream);
|
|
return Poll::Pending;
|
|
}
|
|
},
|
|
OutboundSubstreamState::Done => {
|
|
*this = OutboundSubstreamState::Done;
|
|
return Poll::Ready(None);
|
|
}
|
|
OutboundSubstreamState::Poisoned => unreachable!(),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<TUserData> Stream for InboundSubstreamState<TUserData>
|
|
where
|
|
TUserData: Unpin,
|
|
{
|
|
type Item = ConnectionHandlerEvent<
|
|
KademliaProtocolConfig,
|
|
(KadRequestMsg, Option<TUserData>),
|
|
KademliaHandlerEvent<TUserData>,
|
|
io::Error,
|
|
>;
|
|
|
|
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
|
|
let this = self.get_mut();
|
|
|
|
loop {
|
|
match std::mem::replace(
|
|
this,
|
|
Self::Poisoned {
|
|
phantom: PhantomData,
|
|
},
|
|
) {
|
|
InboundSubstreamState::WaitingMessage {
|
|
first,
|
|
connection_id,
|
|
mut substream,
|
|
} => match substream.poll_next_unpin(cx) {
|
|
Poll::Ready(Some(Ok(KadRequestMsg::Ping))) => {
|
|
log::warn!("Kademlia PING messages are unsupported");
|
|
|
|
*this = InboundSubstreamState::Closing(substream);
|
|
}
|
|
Poll::Ready(Some(Ok(KadRequestMsg::FindNode { key }))) => {
|
|
*this =
|
|
InboundSubstreamState::WaitingBehaviour(connection_id, substream, None);
|
|
return Poll::Ready(Some(ConnectionHandlerEvent::Custom(
|
|
KademliaHandlerEvent::FindNodeReq {
|
|
key,
|
|
request_id: KademliaRequestId {
|
|
connec_unique_id: connection_id,
|
|
},
|
|
},
|
|
)));
|
|
}
|
|
Poll::Ready(Some(Ok(KadRequestMsg::GetProviders { key }))) => {
|
|
*this =
|
|
InboundSubstreamState::WaitingBehaviour(connection_id, substream, None);
|
|
return Poll::Ready(Some(ConnectionHandlerEvent::Custom(
|
|
KademliaHandlerEvent::GetProvidersReq {
|
|
key,
|
|
request_id: KademliaRequestId {
|
|
connec_unique_id: connection_id,
|
|
},
|
|
},
|
|
)));
|
|
}
|
|
Poll::Ready(Some(Ok(KadRequestMsg::AddProvider { key, provider }))) => {
|
|
*this = InboundSubstreamState::WaitingMessage {
|
|
first: false,
|
|
connection_id,
|
|
substream,
|
|
};
|
|
return Poll::Ready(Some(ConnectionHandlerEvent::Custom(
|
|
KademliaHandlerEvent::AddProvider { key, provider },
|
|
)));
|
|
}
|
|
Poll::Ready(Some(Ok(KadRequestMsg::GetValue { key }))) => {
|
|
*this =
|
|
InboundSubstreamState::WaitingBehaviour(connection_id, substream, None);
|
|
return Poll::Ready(Some(ConnectionHandlerEvent::Custom(
|
|
KademliaHandlerEvent::GetRecord {
|
|
key,
|
|
request_id: KademliaRequestId {
|
|
connec_unique_id: connection_id,
|
|
},
|
|
},
|
|
)));
|
|
}
|
|
Poll::Ready(Some(Ok(KadRequestMsg::PutValue { record }))) => {
|
|
*this =
|
|
InboundSubstreamState::WaitingBehaviour(connection_id, substream, None);
|
|
return Poll::Ready(Some(ConnectionHandlerEvent::Custom(
|
|
KademliaHandlerEvent::PutRecord {
|
|
record,
|
|
request_id: KademliaRequestId {
|
|
connec_unique_id: connection_id,
|
|
},
|
|
},
|
|
)));
|
|
}
|
|
Poll::Pending => {
|
|
*this = InboundSubstreamState::WaitingMessage {
|
|
first,
|
|
connection_id,
|
|
substream,
|
|
};
|
|
return Poll::Pending;
|
|
}
|
|
Poll::Ready(None) => {
|
|
return Poll::Ready(None);
|
|
}
|
|
Poll::Ready(Some(Err(e))) => {
|
|
trace!("Inbound substream error: {:?}", e);
|
|
return Poll::Ready(None);
|
|
}
|
|
},
|
|
InboundSubstreamState::WaitingBehaviour(id, substream, _) => {
|
|
*this = InboundSubstreamState::WaitingBehaviour(
|
|
id,
|
|
substream,
|
|
Some(cx.waker().clone()),
|
|
);
|
|
|
|
return Poll::Pending;
|
|
}
|
|
InboundSubstreamState::PendingSend(id, mut substream, msg) => {
|
|
match substream.poll_ready_unpin(cx) {
|
|
Poll::Ready(Ok(())) => match substream.start_send_unpin(msg) {
|
|
Ok(()) => {
|
|
*this = InboundSubstreamState::PendingFlush(id, substream);
|
|
}
|
|
Err(_) => return Poll::Ready(None),
|
|
},
|
|
Poll::Pending => {
|
|
*this = InboundSubstreamState::PendingSend(id, substream, msg);
|
|
return Poll::Pending;
|
|
}
|
|
Poll::Ready(Err(_)) => return Poll::Ready(None),
|
|
}
|
|
}
|
|
InboundSubstreamState::PendingFlush(id, mut substream) => {
|
|
match substream.poll_flush_unpin(cx) {
|
|
Poll::Ready(Ok(())) => {
|
|
*this = InboundSubstreamState::WaitingMessage {
|
|
first: false,
|
|
connection_id: id,
|
|
substream,
|
|
};
|
|
}
|
|
Poll::Pending => {
|
|
*this = InboundSubstreamState::PendingFlush(id, substream);
|
|
return Poll::Pending;
|
|
}
|
|
Poll::Ready(Err(_)) => return Poll::Ready(None),
|
|
}
|
|
}
|
|
InboundSubstreamState::Closing(mut stream) => match stream.poll_close_unpin(cx) {
|
|
Poll::Ready(Ok(())) | Poll::Ready(Err(_)) => return Poll::Ready(None),
|
|
Poll::Pending => {
|
|
*this = InboundSubstreamState::Closing(stream);
|
|
return Poll::Pending;
|
|
}
|
|
},
|
|
InboundSubstreamState::Poisoned { .. } => unreachable!(),
|
|
InboundSubstreamState::Cancelled => return Poll::Ready(None),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Process a Kademlia message that's supposed to be a response to one of our requests.
|
|
fn process_kad_response<TUserData>(
|
|
event: KadResponseMsg,
|
|
user_data: TUserData,
|
|
) -> KademliaHandlerEvent<TUserData> {
|
|
// TODO: must check that the response corresponds to the request
|
|
match event {
|
|
KadResponseMsg::Pong => {
|
|
// We never send out pings.
|
|
KademliaHandlerEvent::QueryError {
|
|
error: KademliaHandlerQueryErr::UnexpectedMessage,
|
|
user_data,
|
|
}
|
|
}
|
|
KadResponseMsg::FindNode { closer_peers } => KademliaHandlerEvent::FindNodeRes {
|
|
closer_peers,
|
|
user_data,
|
|
},
|
|
KadResponseMsg::GetProviders {
|
|
closer_peers,
|
|
provider_peers,
|
|
} => KademliaHandlerEvent::GetProvidersRes {
|
|
closer_peers,
|
|
provider_peers,
|
|
user_data,
|
|
},
|
|
KadResponseMsg::GetValue {
|
|
record,
|
|
closer_peers,
|
|
} => KademliaHandlerEvent::GetRecordRes {
|
|
record,
|
|
closer_peers,
|
|
user_data,
|
|
},
|
|
KadResponseMsg::PutValue { key, value, .. } => KademliaHandlerEvent::PutRecordRes {
|
|
key,
|
|
value,
|
|
user_data,
|
|
},
|
|
}
|
|
}
|