2018-11-13 14:46:57 +01:00
|
|
|
// 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.
|
|
|
|
|
2019-01-22 14:45:03 +01:00
|
|
|
use crate::protocol::{FloodsubConfig, FloodsubMessage, FloodsubRpc, FloodsubSubscription, FloodsubSubscriptionAction};
|
2019-01-21 10:33:51 +00:00
|
|
|
use crate::topic::{Topic, TopicHash};
|
2018-11-13 14:46:57 +01:00
|
|
|
use cuckoofilter::CuckooFilter;
|
2019-01-26 23:57:53 +01:00
|
|
|
use fnv::FnvHashSet;
|
2018-11-13 14:46:57 +01:00
|
|
|
use futures::prelude::*;
|
2018-12-01 13:34:57 +01:00
|
|
|
use libp2p_core::swarm::{ConnectedPoint, NetworkBehaviour, NetworkBehaviourAction, PollParameters};
|
2019-01-26 23:57:53 +01:00
|
|
|
use libp2p_core::{protocols_handler::ProtocolsHandler, protocols_handler::OneShotHandler, Multiaddr, PeerId};
|
2018-11-15 18:03:09 +01:00
|
|
|
use rand;
|
2018-11-13 14:46:57 +01:00
|
|
|
use smallvec::SmallVec;
|
|
|
|
use std::{collections::VecDeque, iter, marker::PhantomData};
|
|
|
|
use std::collections::hash_map::{DefaultHasher, HashMap};
|
|
|
|
use tokio_io::{AsyncRead, AsyncWrite};
|
|
|
|
|
|
|
|
/// Network behaviour that automatically identifies nodes periodically, and returns information
|
|
|
|
/// about them.
|
2018-12-05 17:04:25 +01:00
|
|
|
pub struct Floodsub<TSubstream> {
|
2018-11-14 14:07:54 +01:00
|
|
|
/// Events that need to be yielded to the outside when polling.
|
2019-01-07 13:42:47 +01:00
|
|
|
events: VecDeque<NetworkBehaviourAction<FloodsubRpc, FloodsubEvent>>,
|
2018-11-13 14:46:57 +01:00
|
|
|
|
|
|
|
/// Peer id of the local node. Used for the source of the messages that we publish.
|
|
|
|
local_peer_id: PeerId,
|
|
|
|
|
2019-01-26 23:57:53 +01:00
|
|
|
/// List of peers to send messages to.
|
|
|
|
target_peers: FnvHashSet<PeerId>,
|
|
|
|
|
2018-11-13 14:46:57 +01:00
|
|
|
/// List of peers the network is connected to, and the topics that they're subscribed to.
|
|
|
|
// TODO: filter out peers that don't support floodsub, so that we avoid hammering them with
|
2018-12-04 09:32:51 +00:00
|
|
|
// opened substreams
|
2018-11-13 14:46:57 +01:00
|
|
|
connected_peers: HashMap<PeerId, SmallVec<[TopicHash; 8]>>,
|
|
|
|
|
2018-11-14 14:07:54 +01:00
|
|
|
// List of topics we're subscribed to. Necessary to filter out messages that we receive
|
|
|
|
// erroneously.
|
2018-11-13 14:46:57 +01:00
|
|
|
subscribed_topics: SmallVec<[Topic; 16]>,
|
|
|
|
|
|
|
|
// We keep track of the messages we received (in the format `hash(source ID, seq_no)`) so that
|
|
|
|
// we don't dispatch the same message twice if we receive it twice on the network.
|
|
|
|
received: CuckooFilter<DefaultHasher>,
|
|
|
|
|
|
|
|
/// Marker to pin the generics.
|
|
|
|
marker: PhantomData<TSubstream>,
|
|
|
|
}
|
|
|
|
|
2018-12-05 17:04:25 +01:00
|
|
|
impl<TSubstream> Floodsub<TSubstream> {
|
|
|
|
/// Creates a `Floodsub`.
|
2018-11-13 14:46:57 +01:00
|
|
|
pub fn new(local_peer_id: PeerId) -> Self {
|
2018-12-05 17:04:25 +01:00
|
|
|
Floodsub {
|
2018-11-13 14:46:57 +01:00
|
|
|
events: VecDeque::new(),
|
|
|
|
local_peer_id,
|
2019-01-26 23:57:53 +01:00
|
|
|
target_peers: FnvHashSet::default(),
|
2018-11-13 14:46:57 +01:00
|
|
|
connected_peers: HashMap::new(),
|
|
|
|
subscribed_topics: SmallVec::new(),
|
|
|
|
received: CuckooFilter::new(),
|
|
|
|
marker: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
2019-01-26 23:57:53 +01:00
|
|
|
|
|
|
|
/// Add a node to the list of nodes to propagate messages to.
|
|
|
|
#[inline]
|
|
|
|
pub fn add_node_to_partial_view(&mut self, peer_id: PeerId) {
|
|
|
|
// Send our topics to this node if we're already connected to it.
|
|
|
|
if self.connected_peers.contains_key(&peer_id) {
|
|
|
|
for topic in self.subscribed_topics.iter() {
|
|
|
|
self.events.push_back(NetworkBehaviourAction::SendEvent {
|
|
|
|
peer_id: peer_id.clone(),
|
|
|
|
event: FloodsubRpc {
|
|
|
|
messages: Vec::new(),
|
|
|
|
subscriptions: vec![FloodsubSubscription {
|
|
|
|
topic: topic.hash().clone(),
|
|
|
|
action: FloodsubSubscriptionAction::Subscribe,
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.target_peers.insert(peer_id.clone()) {
|
|
|
|
self.events.push_back(NetworkBehaviourAction::DialPeer { peer_id });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Remove a node from the list of nodes to propagate messages to.
|
|
|
|
#[inline]
|
|
|
|
pub fn remove_node_from_partial_view(&mut self, peer_id: &PeerId) {
|
|
|
|
self.target_peers.remove(&peer_id);
|
|
|
|
}
|
2018-11-13 14:46:57 +01:00
|
|
|
}
|
|
|
|
|
2018-12-05 17:04:25 +01:00
|
|
|
impl<TSubstream> Floodsub<TSubstream> {
|
2018-11-13 14:46:57 +01:00
|
|
|
/// Subscribes to a topic.
|
|
|
|
///
|
|
|
|
/// Returns true if the subscription worked. Returns false if we were already subscribed.
|
|
|
|
pub fn subscribe(&mut self, topic: Topic) -> bool {
|
|
|
|
if self.subscribed_topics.iter().any(|t| t.hash() == topic.hash()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for peer in self.connected_peers.keys() {
|
2018-11-16 12:59:57 +01:00
|
|
|
self.events.push_back(NetworkBehaviourAction::SendEvent {
|
2018-11-13 14:46:57 +01:00
|
|
|
peer_id: peer.clone(),
|
|
|
|
event: FloodsubRpc {
|
|
|
|
messages: Vec::new(),
|
|
|
|
subscriptions: vec![FloodsubSubscription {
|
|
|
|
topic: topic.hash().clone(),
|
|
|
|
action: FloodsubSubscriptionAction::Subscribe,
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
self.subscribed_topics.push(topic);
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Unsubscribes from a topic.
|
|
|
|
///
|
2018-11-14 14:07:54 +01:00
|
|
|
/// Note that this only requires a `TopicHash` and not a full `Topic`.
|
|
|
|
///
|
2018-11-13 14:46:57 +01:00
|
|
|
/// Returns true if we were subscribed to this topic.
|
|
|
|
pub fn unsubscribe(&mut self, topic: impl AsRef<TopicHash>) -> bool {
|
|
|
|
let topic = topic.as_ref();
|
|
|
|
let pos = match self.subscribed_topics.iter().position(|t| t.hash() == topic) {
|
|
|
|
Some(pos) => pos,
|
|
|
|
None => return false
|
|
|
|
};
|
|
|
|
|
|
|
|
self.subscribed_topics.remove(pos);
|
|
|
|
|
|
|
|
for peer in self.connected_peers.keys() {
|
2018-11-16 12:59:57 +01:00
|
|
|
self.events.push_back(NetworkBehaviourAction::SendEvent {
|
2018-11-13 14:46:57 +01:00
|
|
|
peer_id: peer.clone(),
|
|
|
|
event: FloodsubRpc {
|
|
|
|
messages: Vec::new(),
|
|
|
|
subscriptions: vec![FloodsubSubscription {
|
|
|
|
topic: topic.clone(),
|
|
|
|
action: FloodsubSubscriptionAction::Unsubscribe,
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Publishes a message to the network.
|
|
|
|
///
|
|
|
|
/// > **Note**: Doesn't do anything if we're not subscribed to the topic.
|
|
|
|
pub fn publish(&mut self, topic: impl Into<TopicHash>, data: impl Into<Vec<u8>>) {
|
|
|
|
self.publish_many(iter::once(topic), data)
|
|
|
|
}
|
|
|
|
|
2018-11-14 14:07:54 +01:00
|
|
|
/// Publishes a message with multiple topics to the network.
|
2018-11-13 14:46:57 +01:00
|
|
|
///
|
|
|
|
/// > **Note**: Doesn't do anything if we're not subscribed to any of the topics.
|
|
|
|
pub fn publish_many(&mut self, topic: impl IntoIterator<Item = impl Into<TopicHash>>, data: impl Into<Vec<u8>>) {
|
|
|
|
let message = FloodsubMessage {
|
|
|
|
source: self.local_peer_id.clone(),
|
|
|
|
data: data.into(),
|
2018-11-15 18:03:09 +01:00
|
|
|
// If the sequence numbers are predictable, then an attacker could flood the network
|
|
|
|
// with packets with the predetermined sequence numbers and absorb our legitimate
|
|
|
|
// messages. We therefore use a random number.
|
|
|
|
sequence_number: rand::random::<[u8; 20]>().to_vec(),
|
2018-11-13 14:46:57 +01:00
|
|
|
topics: topic.into_iter().map(|t| t.into().clone()).collect(),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Don't publish the message if we're not subscribed ourselves to any of the topics.
|
|
|
|
if !self.subscribed_topics.iter().any(|t| message.topics.iter().any(|u| t.hash() == u)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self.received.add(&message);
|
|
|
|
|
|
|
|
// Send to peers we know are subscribed to the topic.
|
|
|
|
for (peer_id, sub_topic) in self.connected_peers.iter() {
|
|
|
|
if !sub_topic.iter().any(|t| message.topics.iter().any(|u| t == u)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-11-16 12:59:57 +01:00
|
|
|
self.events.push_back(NetworkBehaviourAction::SendEvent {
|
2018-11-13 14:46:57 +01:00
|
|
|
peer_id: peer_id.clone(),
|
|
|
|
event: FloodsubRpc {
|
|
|
|
subscriptions: Vec::new(),
|
|
|
|
messages: vec![message.clone()],
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-26 23:57:53 +01:00
|
|
|
impl<TSubstream> NetworkBehaviour for Floodsub<TSubstream>
|
2018-11-13 14:46:57 +01:00
|
|
|
where
|
2018-11-15 19:00:57 +01:00
|
|
|
TSubstream: AsyncRead + AsyncWrite,
|
2018-11-13 14:46:57 +01:00
|
|
|
{
|
2019-01-22 14:45:03 +01:00
|
|
|
type ProtocolsHandler = OneShotHandler<TSubstream, FloodsubConfig, FloodsubRpc, InnerMessage>;
|
2019-01-07 13:42:47 +01:00
|
|
|
type OutEvent = FloodsubEvent;
|
2018-11-13 14:46:57 +01:00
|
|
|
|
|
|
|
fn new_handler(&mut self) -> Self::ProtocolsHandler {
|
2019-01-22 14:45:03 +01:00
|
|
|
Default::default()
|
2018-11-13 14:46:57 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 14:55:39 +01:00
|
|
|
fn addresses_of_peer(&mut self, _: &PeerId) -> Vec<Multiaddr> {
|
2019-01-26 23:57:53 +01:00
|
|
|
Vec::new()
|
|
|
|
}
|
|
|
|
|
2018-11-13 14:46:57 +01:00
|
|
|
fn inject_connected(&mut self, id: PeerId, _: ConnectedPoint) {
|
|
|
|
// We need to send our subscriptions to the newly-connected node.
|
2019-01-26 23:57:53 +01:00
|
|
|
if self.target_peers.contains(&id) {
|
|
|
|
for topic in self.subscribed_topics.iter() {
|
|
|
|
self.events.push_back(NetworkBehaviourAction::SendEvent {
|
|
|
|
peer_id: id.clone(),
|
|
|
|
event: FloodsubRpc {
|
|
|
|
messages: Vec::new(),
|
|
|
|
subscriptions: vec![FloodsubSubscription {
|
|
|
|
topic: topic.hash().clone(),
|
|
|
|
action: FloodsubSubscriptionAction::Subscribe,
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
2018-11-13 14:46:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
self.connected_peers.insert(id.clone(), SmallVec::new());
|
|
|
|
}
|
|
|
|
|
|
|
|
fn inject_disconnected(&mut self, id: &PeerId, _: ConnectedPoint) {
|
|
|
|
let was_in = self.connected_peers.remove(id);
|
|
|
|
debug_assert!(was_in.is_some());
|
2019-01-26 23:57:53 +01:00
|
|
|
|
|
|
|
// We can be disconnected by the remote in case of inactivity for example, so we always
|
|
|
|
// try to reconnect.
|
|
|
|
if self.target_peers.contains(id) {
|
|
|
|
self.events.push_back(NetworkBehaviourAction::DialPeer { peer_id: id.clone() });
|
|
|
|
}
|
2018-11-13 14:46:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn inject_node_event(
|
|
|
|
&mut self,
|
|
|
|
propagation_source: PeerId,
|
2019-01-22 14:45:03 +01:00
|
|
|
event: InnerMessage,
|
2018-11-13 14:46:57 +01:00
|
|
|
) {
|
2019-01-22 14:45:03 +01:00
|
|
|
// We ignore successful sends event.
|
|
|
|
let event = match event {
|
|
|
|
InnerMessage::Rx(event) => event,
|
|
|
|
InnerMessage::Sent => return,
|
|
|
|
};
|
|
|
|
|
2018-11-14 22:03:00 +01:00
|
|
|
// Update connected peers topics
|
|
|
|
for subscription in event.subscriptions {
|
2019-01-21 10:33:51 +00:00
|
|
|
let remote_peer_topics = self.connected_peers
|
2018-11-14 22:03:00 +01:00
|
|
|
.get_mut(&propagation_source)
|
2018-11-29 15:38:52 +00:00
|
|
|
.expect("connected_peers is kept in sync with the peers we are connected to; we are guaranteed to only receive events from connected peers; QED");
|
2018-11-14 22:03:00 +01:00
|
|
|
match subscription.action {
|
|
|
|
FloodsubSubscriptionAction::Subscribe => {
|
|
|
|
if !remote_peer_topics.contains(&subscription.topic) {
|
2019-01-07 13:42:47 +01:00
|
|
|
remote_peer_topics.push(subscription.topic.clone());
|
2018-11-14 22:03:00 +01:00
|
|
|
}
|
2019-01-07 13:42:47 +01:00
|
|
|
self.events.push_back(NetworkBehaviourAction::GenerateEvent(FloodsubEvent::Subscribed {
|
|
|
|
peer_id: propagation_source.clone(),
|
|
|
|
topic: subscription.topic,
|
|
|
|
}));
|
2018-11-14 22:03:00 +01:00
|
|
|
}
|
|
|
|
FloodsubSubscriptionAction::Unsubscribe => {
|
|
|
|
if let Some(pos) = remote_peer_topics.iter().position(|t| t == &subscription.topic ) {
|
|
|
|
remote_peer_topics.remove(pos);
|
|
|
|
}
|
2019-01-07 13:42:47 +01:00
|
|
|
self.events.push_back(NetworkBehaviourAction::GenerateEvent(FloodsubEvent::Unsubscribed {
|
|
|
|
peer_id: propagation_source.clone(),
|
|
|
|
topic: subscription.topic,
|
|
|
|
}));
|
2018-11-14 22:03:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-13 14:46:57 +01:00
|
|
|
// List of messages we're going to propagate on the network.
|
|
|
|
let mut rpcs_to_dispatch: Vec<(PeerId, FloodsubRpc)> = Vec::new();
|
|
|
|
|
|
|
|
for message in event.messages {
|
|
|
|
// Use `self.received` to skip the messages that we have already received in the past.
|
|
|
|
// Note that this can false positive.
|
|
|
|
if !self.received.test_and_add(&message) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the message to be dispatched to the user.
|
|
|
|
if self.subscribed_topics.iter().any(|t| message.topics.iter().any(|u| t.hash() == u)) {
|
2019-01-07 13:42:47 +01:00
|
|
|
let event = FloodsubEvent::Message(message.clone());
|
|
|
|
self.events.push_back(NetworkBehaviourAction::GenerateEvent(event));
|
2018-11-13 14:46:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Propagate the message to everyone else who is subscribed to any of the topics.
|
2018-11-14 14:07:54 +01:00
|
|
|
for (peer_id, subscr_topics) in self.connected_peers.iter() {
|
2018-11-13 14:46:57 +01:00
|
|
|
if peer_id == &propagation_source {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-11-14 14:07:54 +01:00
|
|
|
if !subscr_topics.iter().any(|t| message.topics.iter().any(|u| t == u)) {
|
2018-11-13 14:46:57 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(pos) = rpcs_to_dispatch.iter().position(|(p, _)| p == peer_id) {
|
|
|
|
rpcs_to_dispatch[pos].1.messages.push(message.clone());
|
|
|
|
} else {
|
|
|
|
rpcs_to_dispatch.push((peer_id.clone(), FloodsubRpc {
|
|
|
|
subscriptions: Vec::new(),
|
|
|
|
messages: vec![message.clone()],
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (peer_id, rpc) in rpcs_to_dispatch {
|
2018-11-16 12:59:57 +01:00
|
|
|
self.events.push_back(NetworkBehaviourAction::SendEvent {
|
2018-11-13 14:46:57 +01:00
|
|
|
peer_id,
|
|
|
|
event: rpc,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn poll(
|
|
|
|
&mut self,
|
2019-02-11 14:58:15 +01:00
|
|
|
_: &mut PollParameters<'_>,
|
2018-11-13 14:46:57 +01:00
|
|
|
) -> Async<
|
2018-11-16 12:59:57 +01:00
|
|
|
NetworkBehaviourAction<
|
2018-11-13 14:46:57 +01:00
|
|
|
<Self::ProtocolsHandler as ProtocolsHandler>::InEvent,
|
|
|
|
Self::OutEvent,
|
|
|
|
>,
|
|
|
|
> {
|
|
|
|
if let Some(event) = self.events.pop_front() {
|
|
|
|
return Async::Ready(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
Async::NotReady
|
|
|
|
}
|
|
|
|
}
|
2019-01-07 13:42:47 +01:00
|
|
|
|
2019-01-22 14:45:03 +01:00
|
|
|
/// Transmission between the `OneShotHandler` and the `FloodsubHandler`.
|
|
|
|
pub enum InnerMessage {
|
|
|
|
/// We received an RPC from a remote.
|
|
|
|
Rx(FloodsubRpc),
|
|
|
|
/// We successfully sent an RPC request.
|
|
|
|
Sent,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<FloodsubRpc> for InnerMessage {
|
|
|
|
#[inline]
|
|
|
|
fn from(rpc: FloodsubRpc) -> InnerMessage {
|
|
|
|
InnerMessage::Rx(rpc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<()> for InnerMessage {
|
|
|
|
#[inline]
|
|
|
|
fn from(_: ()) -> InnerMessage {
|
|
|
|
InnerMessage::Sent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-07 13:42:47 +01:00
|
|
|
/// Event that can happen on the floodsub behaviour.
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum FloodsubEvent {
|
|
|
|
/// A message has been received.
|
|
|
|
Message(FloodsubMessage),
|
|
|
|
|
|
|
|
/// A remote subscribed to a topic.
|
|
|
|
Subscribed {
|
|
|
|
/// Remote that has subscribed.
|
|
|
|
peer_id: PeerId,
|
|
|
|
/// The topic it has subscribed to.
|
|
|
|
topic: TopicHash,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// A remote unsubscribed from a topic.
|
|
|
|
Unsubscribed {
|
|
|
|
/// Remote that has unsubscribed.
|
|
|
|
peer_id: PeerId,
|
|
|
|
/// The topic it has subscribed from.
|
|
|
|
topic: TopicHash,
|
|
|
|
},
|
|
|
|
}
|