Gossipsub

Struct Gossipsub 

Source
pub struct Gossipsub<D: DataTransform = IdentityTransform, F: TopicSubscriptionFilter = AllowAllSubscriptionFilter> { /* private fields */ }
Expand description

Network behaviour that handles the gossipsub protocol.

NOTE: Initialisation requires a MessageAuthenticity and GossipsubConfig instance. If message signing is disabled, the ValidationMode in the config should be adjusted to an appropriate level to accept unsigned messages.

The DataTransform trait allows applications to optionally add extra encoding/decoding functionality to the underlying messages. This is intended for custom compression algorithms.

The TopicSubscriptionFilter allows applications to implement specific filters on topics to prevent unwanted messages being propagated and evaluated.

Implementations§

Source§

impl<D, F> Gossipsub<D, F>

Source

pub fn new( privacy: MessageAuthenticity, config: GossipsubConfig, ) -> Result<Self, &'static str>

Creates a Gossipsub struct given a set of parameters specified via a GossipsubConfig. This has no subscription filter and uses no compression.

Source§

impl<D, F> Gossipsub<D, F>

Source

pub fn new_with_subscription_filter( privacy: MessageAuthenticity, config: GossipsubConfig, subscription_filter: F, ) -> Result<Self, &'static str>

Creates a Gossipsub struct given a set of parameters specified via a GossipsubConfig and a custom subscription filter.

Source§

impl<D, F> Gossipsub<D, F>

Source

pub fn new_with_transform( privacy: MessageAuthenticity, config: GossipsubConfig, data_transform: D, ) -> Result<Self, &'static str>

Creates a Gossipsub struct given a set of parameters specified via a GossipsubConfig and a custom data transform.

Source§

impl<D, F> Gossipsub<D, F>

Source

pub fn new_with_subscription_filter_and_transform( privacy: MessageAuthenticity, config: GossipsubConfig, subscription_filter: F, data_transform: D, ) -> Result<Self, &'static str>

Creates a Gossipsub struct given a set of parameters specified via a GossipsubConfig and a custom subscription filter and data transform.

Source§

impl<D, F> Gossipsub<D, F>

Source

pub fn topics(&self) -> impl Iterator<Item = &TopicHash>

Lists the hashes of the topics we are currently subscribed to.

Source

pub fn mesh_peers( &self, topic_hash: &TopicHash, ) -> impl Iterator<Item = &PeerId>

Lists all mesh peers for a certain topic hash.

Source

pub fn all_mesh_peers(&self) -> impl Iterator<Item = &PeerId>

Lists all mesh peers for all topics.

Source

pub fn all_peers(&self) -> impl Iterator<Item = (&PeerId, Vec<&TopicHash>)>

Lists all known peers and their associated subscribed topics.

Source

pub fn peer_protocol(&self) -> impl Iterator<Item = (&PeerId, &PeerKind)>

Lists all known peers and their associated protocol.

Source

pub fn peer_score(&self, peer_id: &PeerId) -> Option<f64>

Returns the gossipsub score for a given peer, if one exists.

Source

pub fn subscribe<H: Hasher>( &mut self, topic: &Topic<H>, ) -> Result<bool, SubscriptionError>

Subscribe to a topic.

Returns [Ok(true)] if the subscription worked. Returns [Ok(false)] if we were already subscribed.

Source

pub fn unsubscribe<H: Hasher>( &mut self, topic: &Topic<H>, ) -> Result<bool, PublishError>

Unsubscribes from a topic.

Returns [Ok(true)] if we were subscribed to this topic.

Source

pub fn publish<H: Hasher>( &mut self, topic: Topic<H>, data: impl Into<Vec<u8>>, ) -> Result<MessageId, PublishError>

Publishes a message with multiple topics to the network.

Source

pub fn report_message_validation_result( &mut self, msg_id: &MessageId, propagation_source: &PeerId, acceptance: MessageAcceptance, ) -> Result<bool, PublishError>

This function should be called when GossipsubConfig::validate_messages() is true after the message got validated by the caller. Messages are stored in the [‘Memcache’] and validation is expected to be fast enough that the messages should still exist in the cache. There are three possible validation outcomes and the outcome is given in acceptance.

If acceptance = MessageAcceptance::Accept the message will get propagated to the network. The propagation_source parameter indicates who the message was received by and will not be forwarded back to that peer.

If acceptance = MessageAcceptance::Reject the message will be deleted from the memcache and the P₄ penalty will be applied to the propagation_source. If acceptance = MessageAcceptance::Ignore the message will be deleted from the memcache but no P₄ penalty will be applied.

This function will return true if the message was found in the cache and false if was not in the cache anymore.

This should only be called once per message.

Source

pub fn add_explicit_peer(&mut self, peer_id: &PeerId)

Adds a new peer to the list of explicitly connected peers.

Source

pub fn remove_explicit_peer(&mut self, peer_id: &PeerId)

This removes the peer from explicitly connected peers, note that this does not disconnect the peer.

Source

pub fn blacklist_peer(&mut self, peer_id: &PeerId, duration: Duration)

Blacklists a peer. All messages from this peer will be rejected and any message that was created by this peer will be rejected.

Source

pub fn remove_blacklisted_peer(&mut self, peer_id: &PeerId)

Removes a peer from the blacklist if it has previously been blacklisted.

Source

pub fn with_peer_score( &mut self, params: PeerScoreParams, threshold: PeerScoreThresholds, ) -> Result<(), String>

Activates the peer scoring system with the given parameters. This will reset all scores if there was already another peer scoring system activated. Returns an error if the params are not valid or if they got already set.

Source

pub fn with_peer_score_and_message_delivery_time_callback( &mut self, params: PeerScoreParams, threshold: PeerScoreThresholds, callback: Option<fn(&PeerId, &TopicHash, f64)>, ) -> Result<(), String>

Activates the peer scoring system with the given parameters and a message delivery time callback. Returns an error if the parameters got already set.

Source

pub fn set_topic_params<H: Hasher>( &mut self, topic: Topic<H>, params: TopicScoreParams, ) -> Result<(), &'static str>

Sets scoring parameters for a topic.

The Self::with_peer_score() must first be called to initialise peer scoring.

Source

pub fn set_application_score( &mut self, peer_id: &PeerId, new_score: f64, ) -> bool

Sets the application specific score for a peer. Returns true if scoring is active and the peer is connected or if the score of the peer is not yet expired, false otherwise.

Source

pub fn disconnect_peer(&mut self, peer_id: PeerId, ban: bool)

Trait Implementations§

Source§

impl<C: DataTransform, F: TopicSubscriptionFilter> Debug for Gossipsub<C, F>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<C, F> NetworkBehaviour for Gossipsub<C, F>
where C: Send + 'static + DataTransform, F: Send + 'static + TopicSubscriptionFilter,

Source§

type ProtocolsHandler = GossipsubHandler

Handler for all the protocols the network behaviour supports.
Source§

type OutEvent = GossipsubEvent

Event generated by the NetworkBehaviour and that the swarm will report back.
Source§

fn new_handler(&mut self) -> Self::ProtocolsHandler

Creates a new ProtocolsHandler for a connection with a peer. Read more
Source§

fn addresses_of_peer(&mut self, _: &PeerId) -> Vec<Multiaddr>

Addresses that this behaviour is aware of for this specific peer, and that may allow reaching the peer. Read more
Source§

fn inject_connected(&mut self, peer_id: &PeerId)

Indicate to the behaviour that we connected to the node with the given peer id. Read more
Source§

fn inject_disconnected(&mut self, peer_id: &PeerId)

Indicates to the behaviour that we disconnected from the node with the given peer id. Read more
Source§

fn inject_connection_established( &mut self, peer_id: &PeerId, _: &ConnectionId, endpoint: &ConnectedPoint, )

Informs the behaviour about a newly established connection to a peer.
Source§

fn inject_connection_closed( &mut self, peer: &PeerId, _: &ConnectionId, endpoint: &ConnectedPoint, )

Informs the behaviour about a closed connection to a peer. Read more
Source§

fn inject_address_change( &mut self, peer: &PeerId, _: &ConnectionId, endpoint_old: &ConnectedPoint, endpoint_new: &ConnectedPoint, )

Informs the behaviour that the ConnectedPoint of an existing connection has changed.
Source§

fn inject_event( &mut self, propagation_source: PeerId, _: ConnectionId, handler_event: HandlerEvent, )

Informs the behaviour about an event generated by the handler dedicated to the peer identified by peer_id. for the behaviour. Read more
Source§

fn poll( &mut self, cx: &mut Context<'_>, _: &mut impl PollParameters, ) -> Poll<NetworkBehaviourAction<<Self::ProtocolsHandler as ProtocolsHandler>::InEvent, Self::OutEvent>>

Polls for things that swarm should do. Read more
Source§

fn inject_addr_reach_failure( &mut self, _peer_id: Option<&PeerId>, _addr: &Multiaddr, _error: &dyn Error, )

Indicates to the behaviour that we tried to reach an address, but failed. Read more
Source§

fn inject_dial_failure(&mut self, _peer_id: &PeerId)

Indicates to the behaviour that we tried to dial all the addresses known for a node, but failed. Read more
Source§

fn inject_new_listen_addr(&mut self, _addr: &Multiaddr)

Indicates to the behaviour that we have started listening on a new multiaddr.
Source§

fn inject_expired_listen_addr(&mut self, _addr: &Multiaddr)

Indicates to the behaviour that a new multiaddr we were listening on has expired, which means that we are no longer listening in it.
Source§

fn inject_new_external_addr(&mut self, _addr: &Multiaddr)

Indicates to the behaviour that we have discovered a new external address for us.
Source§

fn inject_listener_error( &mut self, _id: ListenerId, _err: &(dyn Error + 'static), )

A listener experienced an error.
Source§

fn inject_listener_closed( &mut self, _id: ListenerId, _reason: Result<(), &Error>, )

A listener closed.

Auto Trait Implementations§

§

impl<D, F> Freeze for Gossipsub<D, F>
where F: Freeze, D: Freeze,

§

impl<D = IdentityTransform, F = AllowAllSubscriptionFilter> !RefUnwindSafe for Gossipsub<D, F>

§

impl<D, F> Send for Gossipsub<D, F>
where F: Send, D: Send,

§

impl<D, F> Sync for Gossipsub<D, F>
where F: Sync, D: Sync,

§

impl<D, F> Unpin for Gossipsub<D, F>
where F: Unpin, D: Unpin,

§

impl<D = IdentityTransform, F = AllowAllSubscriptionFilter> !UnwindSafe for Gossipsub<D, F>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> ErasedDestructor for T
where T: 'static,