mirror of
https://github.com/libp2p/go-libp2p-core.git
synced 2025-01-14 02:20:06 +08:00
e4c76cf7cd
* add resource manager interfaces * add scope accessors to streams and conns * add ResourceManager accessor to the Network interface * allow initially unattached streams. * introduce service scopes, canonicalize ownership interface through setters * make system scope explicit * make memory stat an int64 * make the system scope a generic resource scope, introduce the DMZ * fix typo Co-authored-by: Marten Seemann <martenseemann@gmail.com> * fix typo Co-authored-by: Marten Seemann <martenseemann@gmail.com> * rename DMZ to transient scope, remove OpenConnection from PeerScope * remove ncopy param from GrowBuffer * remove protocols from OpenStream The stream is unnegotiated state until the actual protocol has been determined. * document nil receiver contract, fix protocol scope protocol accessor method * remove nil receiver contract requirement * flesh out stat struct * turn resource manager scope accessors into viewers * interface refiniments 1. Introduce transactions in all scopes 2. Limit the view of stream/connection scope for users, to avoid the Done footgun 3. Move OpenStream to the resource manager * add Buffer interface * fix typo Co-authored-by: Marten Seemann <martenseemann@gmail.com> * fix typo Co-authored-by: Marten Seemann <martenseemann@gmail.com> * fix typo Co-authored-by: Marten Seemann <martenseemann@gmail.com> * rename user scopes to plain names, management scopes as such * rename BeginTxn to BeginTransaction * RIP Buffers * make ErrResourceLimitExceeded a temporary error; move rcmgr errors with the other errors. * unexport TemporaryError * null resource manager stub * unexport the null stubs, make entry point a variable * don't rely on typed nils but instead use actual null object instances So that we don't confuse the hell out of everyone! * add Scope to the CapableConn interface * rename ConnectionScope to ConnScope for consistency * fix typo * rename ConnectionManagementScope to ConnManagementScope * add the ConnManagementScope to Upgrader.Upgrade * fix argument name * godocs for ResourceManager * introduce MemoryStatus indicator in ReserveMemory * use uint8 for MemoryStatus Co-authored-by: Marten Seemann <martenseemann@gmail.com> * rework reservation interface to pass priority instead of returning memory status so that we don't have to undo reservations if there is too much pressure. * improve comment * fix typo * export the NullScope * Stream.SetProtocol can return an error It needs to attach the protocol to the protocol scope, which may fail. * merge the mux package into network * pass the PeerScope to Multiplexer.NetConn * Update network/rcmgr.go Co-authored-by: raulk <raul@protocol.ai> * Update network/rcmgr.go Co-authored-by: raulk <raul@protocol.ai> * Update network/rcmgr.go Co-authored-by: raulk <raul@protocol.ai> * Update network/rcmgr.go Co-authored-by: Adin Schmahmann <adin.schmahmann@gmail.com> * remove reference to deprecated mux.MuxedConn * rename transaction to span * indicate bytes in ReserveMemory * break ResourceManager View methods into Viewer interface. * add experimental interface warning Co-authored-by: Marten Seemann <martenseemann@gmail.com> Co-authored-by: raulk <raul@protocol.ai> Co-authored-by: Adin Schmahmann <adin.schmahmann@gmail.com>
187 lines
5.7 KiB
Go
187 lines
5.7 KiB
Go
// Package network provides core networking abstractions for libp2p.
|
|
//
|
|
// The network package provides the high-level Network interface for interacting
|
|
// with other libp2p peers, which is the primary public API for initiating and
|
|
// accepting connections to remote peers.
|
|
package network
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"time"
|
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
"github.com/libp2p/go-libp2p-core/peerstore"
|
|
|
|
ma "github.com/multiformats/go-multiaddr"
|
|
)
|
|
|
|
// MessageSizeMax is a soft (recommended) maximum for network messages.
|
|
// One can write more, as the interface is a stream. But it is useful
|
|
// to bunch it up into multiple read/writes when the whole message is
|
|
// a single, large serialized object.
|
|
const MessageSizeMax = 1 << 22 // 4 MB
|
|
|
|
// Direction represents which peer in a stream initiated a connection.
|
|
type Direction int
|
|
|
|
const (
|
|
// DirUnknown is the default direction.
|
|
DirUnknown Direction = iota
|
|
// DirInbound is for when the remote peer initiated a connection.
|
|
DirInbound
|
|
// DirOutbound is for when the local peer initiated a connection.
|
|
DirOutbound
|
|
)
|
|
|
|
func (d Direction) String() string {
|
|
str := [...]string{"Unknown", "Inbound", "Outbound"}
|
|
if d < 0 || int(d) >= len(str) {
|
|
return "(unrecognized)"
|
|
}
|
|
return str[d]
|
|
}
|
|
|
|
// Connectedness signals the capacity for a connection with a given node.
|
|
// It is used to signal to services and other peers whether a node is reachable.
|
|
type Connectedness int
|
|
|
|
const (
|
|
// NotConnected means no connection to peer, and no extra information (default)
|
|
NotConnected Connectedness = iota
|
|
|
|
// Connected means has an open, live connection to peer
|
|
Connected
|
|
|
|
// CanConnect means recently connected to peer, terminated gracefully
|
|
CanConnect
|
|
|
|
// CannotConnect means recently attempted connecting but failed to connect.
|
|
// (should signal "made effort, failed")
|
|
CannotConnect
|
|
)
|
|
|
|
func (c Connectedness) String() string {
|
|
str := [...]string{"NotConnected", "Connected", "CanConnect", "CannotConnect"}
|
|
if c < 0 || int(c) >= len(str) {
|
|
return "(unrecognized)"
|
|
}
|
|
return str[c]
|
|
}
|
|
|
|
// Reachability indicates how reachable a node is.
|
|
type Reachability int
|
|
|
|
const (
|
|
// ReachabilityUnknown indicates that the reachability status of the
|
|
// node is unknown.
|
|
ReachabilityUnknown Reachability = iota
|
|
|
|
// ReachabilityPublic indicates that the node is reachable from the
|
|
// public internet.
|
|
ReachabilityPublic
|
|
|
|
// ReachabilityPrivate indicates that the node is not reachable from the
|
|
// public internet.
|
|
//
|
|
// NOTE: This node may _still_ be reachable via relays.
|
|
ReachabilityPrivate
|
|
)
|
|
|
|
func (r Reachability) String() string {
|
|
str := [...]string{"Unknown", "Public", "Private"}
|
|
if r < 0 || int(r) >= len(str) {
|
|
return "(unrecognized)"
|
|
}
|
|
return str[r]
|
|
}
|
|
|
|
// ConnStats stores metadata pertaining to a given Conn.
|
|
type ConnStats struct {
|
|
Stats
|
|
// NumStreams is the number of streams on the connection.
|
|
NumStreams int
|
|
}
|
|
|
|
// Stats stores metadata pertaining to a given Stream / Conn.
|
|
type Stats struct {
|
|
// Direction specifies whether this is an inbound or an outbound connection.
|
|
Direction Direction
|
|
// Opened is the timestamp when this connection was opened.
|
|
Opened time.Time
|
|
// Transient indicates that this connection is transient and may be closed soon.
|
|
Transient bool
|
|
// Extra stores additional metadata about this connection.
|
|
Extra map[interface{}]interface{}
|
|
}
|
|
|
|
// StreamHandler is the type of function used to listen for
|
|
// streams opened by the remote side.
|
|
type StreamHandler func(Stream)
|
|
|
|
// Network is the interface used to connect to the outside world.
|
|
// It dials and listens for connections. it uses a Swarm to pool
|
|
// connections (see swarm pkg, and peerstream.Swarm). Connections
|
|
// are encrypted with a TLS-like protocol.
|
|
type Network interface {
|
|
Dialer
|
|
io.Closer
|
|
|
|
// SetStreamHandler sets the handler for new streams opened by the
|
|
// remote side. This operation is threadsafe.
|
|
SetStreamHandler(StreamHandler)
|
|
|
|
// NewStream returns a new stream to given peer p.
|
|
// If there is no connection to p, attempts to create one.
|
|
NewStream(context.Context, peer.ID) (Stream, error)
|
|
|
|
// Listen tells the network to start listening on given multiaddrs.
|
|
Listen(...ma.Multiaddr) error
|
|
|
|
// ListenAddresses returns a list of addresses at which this network listens.
|
|
ListenAddresses() []ma.Multiaddr
|
|
|
|
// InterfaceListenAddresses returns a list of addresses at which this network
|
|
// listens. It expands "any interface" addresses (/ip4/0.0.0.0, /ip6/::) to
|
|
// use the known local interfaces.
|
|
InterfaceListenAddresses() ([]ma.Multiaddr, error)
|
|
|
|
// ResourceManager returns the ResourceManager associated with this network
|
|
ResourceManager() ResourceManager
|
|
}
|
|
|
|
// Dialer represents a service that can dial out to peers
|
|
// (this is usually just a Network, but other services may not need the whole
|
|
// stack, and thus it becomes easier to mock)
|
|
type Dialer interface {
|
|
// Peerstore returns the internal peerstore
|
|
// This is useful to tell the dialer about a new address for a peer.
|
|
// Or use one of the public keys found out over the network.
|
|
Peerstore() peerstore.Peerstore
|
|
|
|
// LocalPeer returns the local peer associated with this network
|
|
LocalPeer() peer.ID
|
|
|
|
// DialPeer establishes a connection to a given peer
|
|
DialPeer(context.Context, peer.ID) (Conn, error)
|
|
|
|
// ClosePeer closes the connection to a given peer
|
|
ClosePeer(peer.ID) error
|
|
|
|
// Connectedness returns a state signaling connection capabilities
|
|
Connectedness(peer.ID) Connectedness
|
|
|
|
// Peers returns the peers connected
|
|
Peers() []peer.ID
|
|
|
|
// Conns returns the connections in this Netowrk
|
|
Conns() []Conn
|
|
|
|
// ConnsToPeer returns the connections in this Netowrk for given peer.
|
|
ConnsToPeer(p peer.ID) []Conn
|
|
|
|
// Notify/StopNotify register and unregister a notifiee for signals
|
|
Notify(Notifiee)
|
|
StopNotify(Notifiee)
|
|
}
|