Documentation
¶
Index ¶
- Constants
- Variables
- func MessageOriginatorPid(msg MessageP2P) string
- func MessageOriginatorSeq(msg MessageP2P) string
- func PeerIdToShortString(pid core.PeerID) string
- type ConnectedPeersInfo
- type ConnectionMonitorWrapper
- type ConnectionsWatcher
- type Debugger
- type DirectSender
- type Marshalizer
- type MessageP2P
- type MessageProcessor
- type Messenger
- type NetworkShardingCollector
- type NodeOperation
- type PeerCounts
- type PeerDenialEvaluator
- type PeerDiscoverer
- type PeerDiscoveryFactory
- type PeerShardResolver
- type PeerTopicNotifier
- type PeersRatingHandler
- type PreferredPeersHolderHandler
- type Reconnecter
- type Sharder
- type SignerVerifier
- type SyncTimer
Constants ¶
const ( // LocalHostListenAddrWithIp4AndTcp defines the local host listening ip v.4 address and TCP LocalHostListenAddrWithIp4AndTcp = "/ip4/127.0.0.1/tcp/%d" // ListsSharder is the variant that uses lists ListsSharder = "ListsSharder" // OneListSharder is the variant that is shard agnostic and uses one list OneListSharder = "OneListSharder" // NilListSharder is the variant that will not do connection trimming NilListSharder = "NilListSharder" // ConnectionWatcherTypePrint - new connection found will be printed in the log file ConnectionWatcherTypePrint = "print" // ConnectionWatcherTypeDisabled - no connection watching should be made ConnectionWatcherTypeDisabled = "disabled" // ConnectionWatcherTypeEmpty - not set, no connection watching should be made ConnectionWatcherTypeEmpty = "" // WrongP2PMessageBlacklistDuration represents the time to keep a peer id in the blacklist if it sends a message that // do not follow this protocol WrongP2PMessageBlacklistDuration = time.Second * 7200 )
Variables ¶
var ErrAlreadySeenMessage = errors.New("already seen this message")
ErrAlreadySeenMessage signals that the message has already been seen
var ErrChannelCanNotBeDeleted = errors.New("channel can not be deleted")
ErrChannelCanNotBeDeleted signals that a channel can not be deleted (might be the default channel)
var ErrChannelCanNotBeReAdded = errors.New("channel can not be re added")
ErrChannelCanNotBeReAdded signals that a channel can not be re added as it is the default channel
var ErrChannelDoesNotExist = errors.New("channel does not exist")
ErrChannelDoesNotExist signals that a requested channel does not exist
var ErrEmptyBufferToSend = errors.New("empty buffer to send")
ErrEmptyBufferToSend signals that an empty buffer was provided for sending to other peers
var ErrEndPortIsSmallerThanStartPort = errors.New("ending port value is smaller than the starting port value")
ErrEndPortIsSmallerThanStartPort signals that the ending port value is smaller than the starting port value
var ErrInvalidDurationProvided = errors.New("invalid time.Duration provided")
ErrInvalidDurationProvided signals that an invalid time.Duration has been provided
var ErrInvalidEndingPortValue = errors.New("invalid ending port value")
ErrInvalidEndingPortValue signals that an invalid ending port value has been provided
var ErrInvalidPortValue = errors.New("invalid port value")
ErrInvalidPortValue signals that an invalid port value has been provided
var ErrInvalidPortsRangeString = errors.New("invalid ports range string")
ErrInvalidPortsRangeString signals that an invalid ports range string has been provided
var ErrInvalidQUICAddress = errors.New("invalid QUIC address")
ErrInvalidQUICAddress signals that an invalid QUIC address was used
var ErrInvalidSeedersReconnectionInterval = errors.New("invalid seeders reconnection interval")
ErrInvalidSeedersReconnectionInterval signals that an invalid seeders reconnection interval error occurred
var ErrInvalidStartingPortValue = errors.New("invalid starting port value")
ErrInvalidStartingPortValue signals that an invalid starting port value has been provided
var ErrInvalidTCPAddress = errors.New("invalid TCP address")
ErrInvalidTCPAddress signals that an invalid TCP address was used
var ErrInvalidValue = errors.New("invalid value")
ErrInvalidValue signals that an invalid value has been provided
var ErrInvalidWSAddress = errors.New("invalid WebSocket address")
ErrInvalidWSAddress signals that an invalid WebSocket address was used
var ErrInvalidWebTransportAddress = errors.New("invalid WebTransport address")
ErrInvalidWebTransportAddress signals that an invalid WebTransport address was used
var ErrMessageProcessorAlreadyDefined = errors.New("message processor already defined")
ErrMessageProcessorAlreadyDefined signals that a message processor was already defined on the provided topic and identifier
var ErrMessageProcessorDoesNotExists = errors.New("message processor does not exists")
ErrMessageProcessorDoesNotExists signals that a message processor does not exist on the provided topic and identifier
var ErrMessageTooLarge = errors.New("buffer too large")
ErrMessageTooLarge signals that the message provided is too large
var ErrMessageTooNew = errors.New("message is too new")
ErrMessageTooNew signals that a message has a timestamp that is in the future relative to self
var ErrMessageTooOld = errors.New("message is too old")
ErrMessageTooOld signals that a message has a timestamp that is in the past relative to self
var ErrMessageUnmarshalError = errors.New("message unmarshal error")
ErrMessageUnmarshalError signals that an invalid message was received from a peer. There is no way to communicate with such a peer as it does not respect the protocol
var ErrNilCacher = errors.New("nil cacher")
ErrNilCacher signals that a nil cacher has been provided
var ErrNilConnectionsWatcher = errors.New("nil connections watcher")
ErrNilConnectionsWatcher signals that a nil connections watcher has been provided
var ErrNilContext = errors.New("nil context")
ErrNilContext signals that a nil context was provided
var ErrNilDirectSendMessageHandler = errors.New("nil direct sender message handler")
ErrNilDirectSendMessageHandler signals that the message handler for new message has not been wired
var ErrNilFetchPeersOnTopicHandler = errors.New("nil fetch peers on topic handler")
ErrNilFetchPeersOnTopicHandler signals that a nil handler was provided
var ErrNilHost = errors.New("nil host")
ErrNilHost signals that a nil host has been provided
var ErrNilMarshalizer = errors.New("nil marshalizer")
ErrNilMarshalizer signals that an operation has been attempted to or with a nil marshalizer implementation
var ErrNilMessage = errors.New("nil message")
ErrNilMessage signals that a nil message has been received
var ErrNilMockNet = errors.New("nil mocknet provided")
ErrNilMockNet signals that a nil mocknet was provided. Should occur only in testing!!!
var ErrNilP2PSigner = errors.New("nil p2p signer")
ErrNilP2PSigner signals that a nil p2p signer has been provided
var ErrNilP2pKeyGenerator = errors.New("nil p2p key generator")
ErrNilP2pKeyGenerator signals that a nil p2p key generator has been provided
var ErrNilP2pPrivateKey = errors.New("nil p2p private key")
ErrNilP2pPrivateKey signals that a nil p2p private key has been provided
var ErrNilP2pSingleSigner = errors.New("nil p2p single signer")
ErrNilP2pSingleSigner signals that a nil p2p single signer has been provided
var ErrNilPeerDenialEvaluator = errors.New("nil peer denial evaluator")
ErrNilPeerDenialEvaluator signals that a nil peer denial evaluator was provided
var ErrNilPeerShardResolver = errors.New("nil PeerShardResolver")
ErrNilPeerShardResolver signals that the peer shard resolver provided is nil
var ErrNilPeerTopicNotifier = errors.New("nil peer topic notifier")
ErrNilPeerTopicNotifier signals that a nil peer topic notifier have been provided
var ErrNilPeersRatingHandler = errors.New("nil peers rating handler")
ErrNilPeersRatingHandler signals that a nil peers rating handler has been provided
var ErrNilPreferredPeersHolder = errors.New("nil peers holder")
ErrNilPreferredPeersHolder signals that a nil preferred peers holder was provided
var ErrNilReconnecter = errors.New("nil reconnecter")
ErrNilReconnecter signals that a nil reconnecter has been provided
var ErrNilSharder = errors.New("nil sharder")
ErrNilSharder signals that the provided sharder is nil
var ErrNilSyncTimer = errors.New("nil sync timer")
ErrNilSyncTimer signals that a nil sync timer was provided
var ErrNilTopic = errors.New("nil topic")
ErrNilTopic signals that a nil topic has been provided
var ErrNilValidator = errors.New("no validator has been set for this topic")
ErrNilValidator signals that a validator hasn't been set for the required topic
var ErrNoFreePortInRange = errors.New("no free port in range")
ErrNoFreePortInRange signals that no free port was found from provided range
var ErrNoTransportsDefined = errors.New("no transports defined")
ErrNoTransportsDefined signals that no transports were defined
var ErrPeerDiscoveryProcessAlreadyStarted = errors.New("peer discovery is already turned on")
ErrPeerDiscoveryProcessAlreadyStarted signals that a peer discovery is already turned on
var ErrPeerNotDirectlyConnected = errors.New("peer is not directly connected")
ErrPeerNotDirectlyConnected signals that the peer is not directly connected to self
var ErrTooManyGoroutines = errors.New(" number of goroutines exceeded")
ErrTooManyGoroutines is raised when the number of goroutines has exceeded a threshold
var ErrUnsupportedFields = errors.New("unsupported fields")
ErrUnsupportedFields signals that unsupported fields are provided
var ErrUnsupportedMessageVersion = errors.New("unsupported message version")
ErrUnsupportedMessageVersion signals that an unsupported message version was detected
var ErrUnwantedPeer = errors.New("unwanted peer: will not initiate connection as it will get disconnected")
ErrUnwantedPeer signals that the provided peer has a longer kademlia distance in respect with the already connected peers and a connection to this peer will result in an immediate disconnection
var ErrWrongTypeAssertion = errors.New("wrong type assertion")
ErrWrongTypeAssertion signals that a wrong type assertion occurred
var ErrWrongTypeAssertions = errors.New("wrong type assertion")
ErrWrongTypeAssertions signals that a wrong type assertion occurred
Functions ¶
func MessageOriginatorPid ¶
func MessageOriginatorPid(msg MessageP2P) string
MessageOriginatorPid will output the message peer id in a pretty format If it can, it will display the last displayLastPidChars (12) characters from the pid
func MessageOriginatorSeq ¶
func MessageOriginatorSeq(msg MessageP2P) string
MessageOriginatorSeq will output the sequence number as hex
func PeerIdToShortString ¶
PeerIdToShortString trims the first displayLastPidChars characters of the provided peer ID after converting the peer ID to string using the Pretty functionality
Types ¶
type ConnectedPeersInfo ¶
type ConnectedPeersInfo struct {
SelfShardID uint32
UnknownPeers []string
Seeders []string
IntraShardValidators map[uint32][]string
IntraShardObservers map[uint32][]string
CrossShardValidators map[uint32][]string
CrossShardObservers map[uint32][]string
FullHistoryObservers map[uint32][]string
NumValidatorsOnShard map[uint32]int
NumObserversOnShard map[uint32]int
NumPreferredPeersOnShard map[uint32]int
NumIntraShardValidators int
NumIntraShardObservers int
NumCrossShardValidators int
NumCrossShardObservers int
NumFullHistoryObservers int
}
ConnectedPeersInfo represents the DTO structure used to output the metrics for connected peers
type ConnectionMonitorWrapper ¶
type ConnectionMonitorWrapper interface {
CheckConnectionsBlocking()
SetPeerDenialEvaluator(handler PeerDenialEvaluator) error
PeerDenialEvaluator() PeerDenialEvaluator
IsInterfaceNil() bool
}
ConnectionMonitorWrapper uses a connection monitor but checks if the peer is blacklisted or not TODO this should be removed after merging of the PeerShardResolver and BlacklistHandler
type ConnectionsWatcher ¶
type ConnectionsWatcher interface {
NewKnownConnection(pid core.PeerID, connection string)
Close() error
IsInterfaceNil() bool
}
ConnectionsWatcher represent an entity able to watch new connections
type Debugger ¶
type Debugger interface {
AddIncomingMessage(topic string, size uint64, isRejected bool)
AddOutgoingMessage(topic string, size uint64, isRejected bool)
Close() error
IsInterfaceNil() bool
}
Debugger represent a p2p debugger able to print p2p statistics (messages received/sent per topic)
type DirectSender ¶
type DirectSender interface {
NextSequenceNumber() []byte
Send(topic string, buff []byte, peer core.PeerID) error
IsInterfaceNil() bool
}
DirectSender defines a component that can send direct messages to connected peers
type Marshalizer ¶
type Marshalizer interface {
Marshal(obj interface{}) ([]byte, error)
Unmarshal(obj interface{}, buff []byte) error
IsInterfaceNil() bool
}
Marshalizer defines the 2 basic operations: serialize (marshal) and deserialize (unmarshal)
type MessageP2P ¶
type MessageP2P interface {
From() []byte
Data() []byte
Payload() []byte
SeqNo() []byte
Topic() string
Signature() []byte
Key() []byte
Peer() core.PeerID
Timestamp() int64
IsInterfaceNil() bool
}
MessageP2P defines what a p2p message can do (should return)
type MessageProcessor ¶
type MessageProcessor interface {
ProcessReceivedMessage(message MessageP2P, fromConnectedPeer core.PeerID) error
IsInterfaceNil() bool
}
MessageProcessor is the interface used to describe what a receive message processor should do All implementations that will be called from Messenger implementation will need to satisfy this interface If the function returns a non nil value, the received message will not be propagated to its connected peers
type Messenger ¶
type Messenger interface {
io.Closer
// ID is the Messenger's unique peer identifier across the network (a
// string). It is derived from the public key of the P2P credentials.
ID() core.PeerID
// Peers is the list of IDs of peers known to the Messenger.
Peers() []core.PeerID
// Addresses is the list of addresses that the Messenger is currently bound
// to and listening to.
Addresses() []string
// ConnectToPeer explicitly connect to a specific peer with a known address (note that the
// address contains the peer ID). This function is usually not called
// manually, because any underlying implementation of the Messenger interface
// should be keeping connections to peers open.
ConnectToPeer(address string) error
// IsConnected returns true if the Messenger are connected to a specific peer.
IsConnected(peerID core.PeerID) bool
// ConnectedPeers returns the list of IDs of the peers the Messenger is
// currently connected to.
ConnectedPeers() []core.PeerID
// ConnectedAddresses returns the list of addresses of the peers to which the
// Messenger is currently connected.
ConnectedAddresses() []string
// PeerAddresses returns the known addresses for the provided peer ID
PeerAddresses(pid core.PeerID) []string
// ConnectedPeersOnTopic returns the IDs of the peers to which the Messenger
// is currently connected, but filtered by a topic they are registered to.
ConnectedPeersOnTopic(topic string) []core.PeerID
// ConnectedFullHistoryPeersOnTopic returns the IDs of the full history peers to which the Messenger
// is currently connected, but filtered by a topic they are registered to.
ConnectedFullHistoryPeersOnTopic(topic string) []core.PeerID
// Bootstrap runs the initialization phase which includes peer discovery,
// setting up initial connections and self-announcement in the network.
Bootstrap() error
// CreateTopic defines a new topic for sending messages, and optionally
// creates a channel in the LoadBalancer for this topic (otherwise, the topic
// will use a default channel).
CreateTopic(name string, createChannelForTopic bool) error
// HasTopic returns true if the Messenger has declared interest in a topic
// and it is listening to messages referencing it.
HasTopic(name string) bool
// RegisterMessageProcessor adds the provided MessageProcessor to the list
// of handlers that are invoked whenever a message is received on the
// specified topic.
RegisterMessageProcessor(topic string, identifier string, handler MessageProcessor) error
// UnregisterAllMessageProcessors removes all the MessageProcessor set by the
// Messenger from the list of registered handlers for the messages on the
// given topic.
UnregisterAllMessageProcessors() error
// UnregisterMessageProcessor removes the MessageProcessor set by the
// Messenger from the list of registered handlers for the messages on the
// given topic.
UnregisterMessageProcessor(topic string, identifier string) error
// BroadcastOnChannelBlocking asynchronously waits until it can send a
// message on the channel, but once it is able to, it synchronously sends the
// message, blocking until sending is completed.
BroadcastOnChannelBlocking(channel string, topic string, buff []byte) error
// BroadcastOnChannel asynchronously sends a message on a given topic
// through a specified channel.
BroadcastOnChannel(channel string, topic string, buff []byte)
// BroadcastUsingPrivateKey tries to send a byte buffer onto a topic using the topic name as channel
BroadcastUsingPrivateKey(topic string, buff []byte, pid core.PeerID, skBytes []byte)
// Broadcast is a convenience function that calls BroadcastOnChannelBlocking,
// but implicitly sets the channel to be identical to the specified topic.
Broadcast(topic string, buff []byte)
// SendToConnectedPeer asynchronously sends a message to a peer directly,
// bypassing pubsub and topics. It opens a new connection with the given
// peer, but reuses a connection and a stream if possible.
SendToConnectedPeer(topic string, buff []byte, peerID core.PeerID) error
IsConnectedToTheNetwork() bool
ThresholdMinConnectedPeers() int
SetThresholdMinConnectedPeers(minConnectedPeers int) error
SetPeerShardResolver(peerShardResolver PeerShardResolver) error
SetPeerDenialEvaluator(handler PeerDenialEvaluator) error
GetConnectedPeersInfo() *ConnectedPeersInfo
UnjoinAllTopics() error
Port() int
WaitForConnections(maxWaitingTime time.Duration, minNumOfPeers uint32)
Sign(payload []byte) ([]byte, error)
Verify(payload []byte, pid core.PeerID, signature []byte) error
SignUsingPrivateKey(skBytes []byte, payload []byte) ([]byte, error)
AddPeerTopicNotifier(notifier PeerTopicNotifier) error
// IsInterfaceNil returns true if there is no value under the interface
IsInterfaceNil() bool
}
Messenger is the main struct used for communication with other peers
type NetworkShardingCollector ¶
type NetworkShardingCollector interface {
UpdatePeerIDInfo(pid core.PeerID, pk []byte, shardID uint32)
IsInterfaceNil() bool
}
NetworkShardingCollector defines the updating methods used by the network sharding component The interface assures that the collected data will be used by the p2p network sharding components
type NodeOperation ¶
type NodeOperation string
NodeOperation defines the p2p node operation
const FullArchiveMode NodeOperation = "full archive mode"
FullArchiveMode defines the node operation as a full archive mode
const NormalOperation NodeOperation = "normal operation"
NormalOperation defines the normal mode operation: either seeder, observer or validator
type PeerCounts ¶
PeerCounts represents the DTO structure used to output the count metrics for connected peers
type PeerDenialEvaluator ¶
type PeerDenialEvaluator interface {
IsDenied(pid core.PeerID) bool
UpsertPeerID(pid core.PeerID, duration time.Duration) error
IsInterfaceNil() bool
}
PeerDenialEvaluator defines the behavior of a component that is able to decide if a peer ID is black listed or not TODO merge this interface with the PeerShardResolver => P2PProtocolHandler ? TODO move antiflooding inside network messenger
type PeerDiscoverer ¶
PeerDiscoverer defines the behaviour of a peer discovery mechanism
type PeerDiscoveryFactory ¶
type PeerDiscoveryFactory interface {
CreatePeerDiscoverer() (PeerDiscoverer, error)
IsInterfaceNil() bool
}
PeerDiscoveryFactory defines the factory for peer discoverer implementation
type PeerShardResolver ¶
type PeerShardResolver interface {
GetPeerInfo(pid core.PeerID) core.P2PPeerInfo
IsInterfaceNil() bool
}
PeerShardResolver is able to resolve the link between the provided PeerID and the shardID
type PeerTopicNotifier ¶
type PeerTopicNotifier interface {
NewPeerFound(pid core.PeerID, topic string)
IsInterfaceNil() bool
}
PeerTopicNotifier represent an entity able to handle new notifications on a new peer on a topic
type PeersRatingHandler ¶
type PeersRatingHandler interface {
AddPeer(pid core.PeerID)
IncreaseRating(pid core.PeerID)
DecreaseRating(pid core.PeerID)
GetTopRatedPeersFromList(peers []core.PeerID, minNumOfPeersExpected int) []core.PeerID
IsInterfaceNil() bool
}
PeersRatingHandler represent an entity able to handle peers ratings
type PreferredPeersHolderHandler ¶
type PreferredPeersHolderHandler interface {
PutConnectionAddress(peerID core.PeerID, address string)
PutShardID(peerID core.PeerID, shardID uint32)
Get() map[uint32][]core.PeerID
Contains(peerID core.PeerID) bool
Remove(peerID core.PeerID)
Clear()
IsInterfaceNil() bool
}
PreferredPeersHolderHandler defines the behavior of a component able to handle preferred peers operations
type Reconnecter ¶
Reconnecter defines the behaviour of a network reconnection mechanism
type Sharder ¶
type Sharder interface {
SetSeeders(addresses []string)
IsSeeder(pid core.PeerID) bool
SetPeerShardResolver(psp PeerShardResolver) error
IsInterfaceNil() bool
}
Sharder defines the eviction computing process of unwanted peers