ouroboros-network-framework
Safe HaskellNone
LanguageHaskell2010

Ouroboros.Network.ConnectionManager.Types

Description

Connection manager core types.

Connection manager is responsible for managing uni- and bi-directional connections and threads which are running network applications using 'network-mux'. In particular it is responsible for:

  • opening new connection / reusing connections (for bidirectional connections) and exposes a method to register inbound connections;
  • run connection handler, i.e. ConnectionHandler, which runs handshake negotiation, notifies connection manager on the results and starts the multiplexer;
  • error handling for connection threads;
  • keeping track of handshake negotiation: whether a unidirectional or duplex connection was negotiated;
  • tracking state of each connection;
  • keep inbound connections under limits.

Connection manager is designed to work for any Mode, though the most useful ones are ResponderMode and InitiatorResponderMode:

  • InitiatorResponderMode - useful for node-to-node applications, which needs to create outbound connections as well as accept inbound ones;
  • ResponderMode - useful for server side of node-to-client; it allows us to share the same server between node-to-client and node-to-node;
  • InitiatorMode - could be used on client side of node-to-client applications.

The calls acquireOutboundConnection and includeInboundConnection return once a connection has been negotiated. The returned handle contains all the information that is needed to start and monitor mini-protocols through the mux interface.

For inbound connections, the connection manager will pass handle (also after negotiation).

┌────────────────────────┐
│                        │        ┏━━━━━━━━━━━━━━━━┓
│   ConnectionHandler    │        ┃                ┃
│                        ┝━━━━━━━▶┃     handle     ┃
│  inbound / outbound    │        ┃                ┃
│         ┃              │        ┗━━┳━━━━━━━━━━━━━┛
└─────────╂──────────────┘           ┃
          ┃                          ┃
          ▼                          ┃
   ┏━━━━━━━━━━━━━━━━━┓               ┃
   ┃ Control Channel ┃               ┃
   ┗━━━━━━┳━━━━━━━━━━┛               ┃
          ┃                          ┃
          ┃                          ┃
          ▼                          ┃
┌────────────────────────┐           ┃
│                        │           ┃
│         Server         │◀━━━━━━━━━━┛
│                        │
└────────────────────────┘

Termination procedure as well as connection state machine is not described in this haddock, see associated specification.

The handle is used in `ouroboros-network` package to construct PeerStateActions which allow for the outbound governor to

Synopsis

Connection manager core types

Connection Types

data AddressType Source #

Connection manager supports IPv4 and IPv6 addresses.

Constructors

IPv4Address 
IPv6Address 

Instances

Instances details
Show AddressType Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

data Provenance Source #

Each connection is is either initiated locally (outbound) or by a remote peer (inbound).

Constructors

Inbound

An inbound connection: one that was initiated by a remote peer.

Outbound

An outbound connection: one that was initiated by us.

data DataFlow Source #

Each connection negotiates if it is uni- or bi-directional. DataFlow is a life time property of a connection, once negotiated it never changes.

NOTE: This type is isomorphic to DiffusionMode for `node-to-node` connections (see ntnDataFlow), but it isn't for `node-to-client` connections (see `Ouroboros.Network.Diffusion.P2P.ntcDataFlow).

Constructors

Unidirectional 
Duplex 

data ConnectionType Source #

Either unnegotiated or negotiated unidirectional or duplex connections. This is not a static property of a connection. It is used by PrunePolicy.

Note: the order matters, it can be used by a PickPolicy, e.g. simplePickPolicy.

Constructors

UnnegotiatedConn !Provenance

An unnegotiated connection.

InboundIdleConn !DataFlow

An inbound idle connection.

OutboundIdleConn !DataFlow

An outbound idle connection.

NegotiatedConn !Provenance !DataFlow

A negotiated connection, which is used in only one direction indicated by Provenance. The connection could itself negotiated either Duplex or Unidirectional data flow.

DuplexConn

A connection which is running in full duplex mode.

Connection Handler

ConnectionHandler provides monadic action which runs handshake negotiation and starts the multiplexer. It's the component which has access to underlying socket. There's one-to-one correspondence between sockets and threads that run the handler.

ConnectionHandlerFn
is the type of callback executed for each connection. All arguments are provided by the connection manager.
ConnectionHandler
is a newtype wrapper which provides inbound / outbound handlers depending on Mode.

newtype MaskedAction (m :: Type -> Type) a Source #

Handler action is started with asynchronous exceptions masked; this allows to install exception handlers in an async-safe way.

Constructors

MaskedAction 

Fields

type ConnectionHandlerFn handlerTrace socket peerAddr handle handleError version (m :: Type -> Type) = socket -> PromiseWriter m (Either handleError (HandshakeConnectionResult handle version)) -> Tracer m handlerTrace -> ConnectionId peerAddr -> (DiffTime -> socket -> m (Bearer m)) -> MaskedAction m () Source #

MaskedAction which is executed by thread designated for a given connection.

PromiseWriter allows to notify the ConnectionManager about the result of handshake negotiation.

Note: PromiseWriter could be replaced with an stm action which is accessing the TVar which holds state of the connection.

newtype ConnectionHandler (muxMode :: Mode) handlerTrace socket peerAddr handle handleError version (m :: Type -> Type) Source #

Connection handler action. It is index by muxMode :: Mode. There's one ConnectionHandlerFn per provenance, possibly limited by muxMode.

Constructors

ConnectionHandler 

Fields

data Inactive Source #

Boolean like type

Instances

Instances details
Show Inactive Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Eq Inactive Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

data ExceptionInHandler where Source #

Exception which where caught in the connection thread and were re-thrown in the main thread by the rethrowPolicy.

Constructors

ExceptionInHandler :: forall peerAddr. (Typeable peerAddr, Show peerAddr) => !peerAddr -> !SomeException -> ExceptionInHandler 

data HandleErrorType Source #

Data type used to classify handleErrors.

Constructors

HandshakeFailure

Handshake negotiation failed. This is not a protocol error.

HandshakeProtocolViolation

Handshake protocol error. This should include timeout errors or any IO errors.

data HandshakeConnectionResult handle version Source #

Constructors

HandshakeConnectionQuery

Handshake saw a query.

HandshakeConnectionResult handle version

Handshake resulted in a connection and version.

Prune Policy

type PrunePolicy peerAddr = StdGen -> Map peerAddr ConnectionType -> Int -> Set peerAddr Source #

PrunePolicy allows to pick a select peers from which we will disconnect (we use TCP reset). The chosen connections will be terminated by the connection manger once it detects that there are too many inbound connections.

simplePrunePolicy :: Ord peerAddr => PrunePolicy peerAddr Source #

The simplest PrunePolicy, it should only be used for tests.

Connection Manager

Connection Manager Arguments

data ConnectionManager (muxMode :: Mode) socket peerAddr handle handleError (m :: Type -> Type) Source #

ConnectionManager.

We identify resources (e.g. Socket or HANDLE) by their address. It is enough for us to use just the remote address rather than connection identifier, since we need one connection towards that peer, even if we are connected through multiple local addresses. It is safe to share a connection manager with multiple listening sockets.

Constructors

ConnectionManager 

Fields

API

data Connected peerAddr handle handleError Source #

Constructors

Connected !(ConnectionId peerAddr) !DataFlow !handle

We are connected and mux is running.

Disconnected !(ConnectionId peerAddr) !(Maybe handleError)

There was an error during handshake negotiation.

Implementation detail: we return Maybe handleError, rather than handleError. In case of an existing inbound connection, the implementation of acquireOutboundConnection is awaiting on handshake through the connection state. The TerminatingState or TerminatedState are not only used for handshake errors, but also for normal termination, hence the Maybe. We could await on update from the handshake instead, but this would introduce a race between inbound / outbound threads.

data OperationResult a Source #

Custom either type for result of various methods.

Instances

Instances details
Functor OperationResult Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Methods

fmap :: (a -> b) -> OperationResult a -> OperationResult b #

(<$) :: a -> OperationResult b -> OperationResult a #

Show a => Show (OperationResult a) Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

data DemotedToColdRemoteTr Source #

Return value of releaseInboundConnection to inform the caller about the transition.

Constructors

CommitTr

Commit^{dataFlow} transition from InboundIdleState dataFlow.

KeepTr

Either DemotedToCold^{Remote} transition from DuplexState, or a level triggered Awake^{Duplex}_{Local} transition. In both cases the server must keep the responder side of all protocols ready.

type AcquireOutboundConnection peerAddr handle handleError (m :: Type -> Type) = peerAddr -> m (Connected peerAddr handle handleError) Source #

type IncludeInboundConnection socket peerAddr handle handleError (m :: Type -> Type) Source #

Arguments

 = Word32

inbound connections hard limit. NOTE: Check TODO over at includeInboundConnectionImpl definition.

-> socket 
-> peerAddr 
-> m (Connected peerAddr handle handleError) 

Outbound side

acquireOutboundConnection :: forall (muxMode :: Mode) socket peerAddr handle handleError m. HasInitiator muxMode ~ 'True => ConnectionManager muxMode socket peerAddr handle handleError m -> AcquireOutboundConnection peerAddr handle handleError m Source #

Include outbound connection into ConnectionManager.

This executes:

  • \(Reserve\) to \(Negotiated^{*}_{Outbound}\) transitions
  • \(PromotedToWarm^{Duplex}_{Local}\) transition
  • \(Awake^{Duplex}_{Local}\) transition

promotedToWarmRemote :: forall (muxMode :: Mode) socket peerAddr handle handleError m. HasResponder muxMode ~ 'True => ConnectionManager muxMode socket peerAddr handle handleError m -> peerAddr -> m (OperationResult AbstractState) Source #

Notify the ConnectionManager that a remote end promoted us to a warm peer.

This executes either:

  • \(PromotedToWarm^{Duplex}_{Remote}\) transition,
  • \(Awake^{*}_{Remote}\) transition

from the specification.

demotedToColdRemote :: forall (muxMode :: Mode) socket peerAddr handle handleError m. HasResponder muxMode ~ 'True => ConnectionManager muxMode socket peerAddr handle handleError m -> peerAddr -> m (OperationResult AbstractState) Source #

Notify the ConnectionManager that a remote end demoted us to a /cold peer/.

This executes:

  • \(DemotedToCold^{*}_{Remote}\) transition.

This method is idempotent.

releaseOutboundConnection Source #

Arguments

:: forall (muxMode :: Mode) socket peerAddr handle handleError m. HasInitiator muxMode ~ 'True 
=> ConnectionManager muxMode socket peerAddr handle handleError m 
-> peerAddr 
-> m (OperationResult AbstractState)

reports the from-state.

Release outbound connection.

This executes:

  • \(DemotedToCold^{*}_{Local}\) transitions

Inbound side

includeInboundConnection :: forall (muxMode :: Mode) socket peerAddr handle handleError m. HasResponder muxMode ~ 'True => ConnectionManager muxMode socket peerAddr handle handleError m -> IncludeInboundConnection socket peerAddr handle handleError m Source #

Include an inbound connection into ConnectionManager. This executes:

  • \(Reserve\) to \(Negotiated^{*}_{Outbound}\) transitions
  • \(PromotedToWarm^{Duplex}_{Local}\) transition
  • \(Awake^{Duplex}_{Local}\) transition

releaseInboundConnection :: forall (muxMode :: Mode) socket peerAddr handle handleError m. HasResponder muxMode ~ 'True => ConnectionManager muxMode socket peerAddr handle handleError m -> peerAddr -> m (OperationResult DemotedToColdRemoteTr) Source #

Release outbound connection. Returns if the operation was successful.

This executes:

  • \(Commit*{*}\) transition
  • \(TimeoutExpired\) transition

numberOfConnections :: forall (muxMode :: Mode) socket peerAddr handle handleError (m :: Type -> Type). HasResponder muxMode ~ 'True => ConnectionManager muxMode socket peerAddr handle handleError m -> STM m Int Source #

Number of connections tracked by the server.

Private API

data OutboundConnectionManager (muxMode :: Mode) socket peerAddr handle handleError (m :: Type -> Type) where Source #

Outbound connection manager API.

Constructors

OutboundConnectionManager 

Fields

data InboundConnectionManager (muxMode :: Mode) socket peerAddr handle handleError (m :: Type -> Type) where Source #

Inbound connection manager API. For a server implementation we also need to know how many connections are now managed by the connection manager.

This type is an internal detail of ConnectionManager

Constructors

InboundConnectionManager 

Fields

Exceptions

data ConnectionManagerError peerAddr Source #

Exceptions used by ConnectionManager.

Constructors

ConnectionExists !Provenance !peerAddr !CallStack

A connection manager was asked for an outbound connection and there either exists a connection used in outbound direction or a reservation for an outbound connection.

ForbiddenConnection !(ConnectionId peerAddr) !CallStack

Connection manager was asked for an outbound connection which turned out to be unidirectional inbound, and thus it cannot be re-used..

ImpossibleConnection !(ConnectionId peerAddr) !CallStack

Connections that would be forbidden by the kernel (TCP semantics).

ConnectionTerminating !(ConnectionId peerAddr) !CallStack

Connection is now terminating.

ConnectionTerminated !peerAddr !CallStack

Connection has terminated.

ImpossibleState !peerAddr !CallStack

Connection manager in impossible state.

ForbiddenOperation !peerAddr !AbstractState !CallStack

A forbidden operation in the given connection state.

UnknownPeer !peerAddr !CallStack

A connection does not exists. Only thrown when an existing connection was expected.

Counters

data ConnectionManagerCounters Source #

Counters for tracing and analysis purposes

Constructors

ConnectionManagerCounters 

Fields

Instances

Instances details
Monoid ConnectionManagerCounters Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Semigroup ConnectionManagerCounters Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Show ConnectionManagerCounters Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Eq ConnectionManagerCounters Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Ord ConnectionManagerCounters Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Mux types

data WithMuxMode (mode :: Mode) a b where Source #

Constructors

WithInitiatorMode :: forall a b. a -> WithMuxMode 'InitiatorMode a b 
WithResponderMode :: forall b a. b -> WithMuxMode 'ResponderMode a b 
WithInitiatorResponderMode :: forall a b. a -> b -> WithMuxMode 'InitiatorResponderMode a b 

withInitiatorMode :: forall (mode :: Mode) a b. HasInitiator mode ~ 'True => WithMuxMode mode a b -> a Source #

withResponderMode :: forall (mode :: Mode) a b. HasResponder mode ~ 'True => WithMuxMode mode a b -> b Source #

Promise

Promise interface, backed by a StrictTMVar.

Making two separate interfaces: PromiseWriter and PromiseReader allows us to make a clear distinction between consumer and producers threads.

newtype PromiseReader (m :: Type -> Type) a Source #

Constructors

PromiseReader 

Fields

data PromiseWriter (m :: Type -> Type) a Source #

Constructors

PromiseWriter 

Fields

Tracing

data AssertionLocation peerAddr Source #

AssertionLocation contains constructors that situate the location of the tracing so one can be sure where the assertion came from as well as the all relevant information.

Instances

Instances details
Show peerAddr => Show (AssertionLocation peerAddr) Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Methods

showsPrec :: Int -> AssertionLocation peerAddr -> ShowS #

show :: AssertionLocation peerAddr -> String #

showList :: [AssertionLocation peerAddr] -> ShowS #

data MaybeUnknown state Source #

A custom version of Maybe type, which allows to explicitly represent connections which are not registered by the connection manager.

Constructors

Known !state

Known connection in state

Race !state

There is a possible race condition between connection finalizer and either inbound or outbound connection registration. If that happens we use Race constructor.

Unknown

Connection is is not known to the connection manager.

Instances

Instances details
Functor MaybeUnknown Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Methods

fmap :: (a -> b) -> MaybeUnknown a -> MaybeUnknown b #

(<$) :: a -> MaybeUnknown b -> MaybeUnknown a #

Show state => Show (MaybeUnknown state) Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Methods

showsPrec :: Int -> MaybeUnknown state -> ShowS #

show :: MaybeUnknown state -> String #

showList :: [MaybeUnknown state] -> ShowS #

data Transition' state Source #

Constructors

Transition 

Fields

Instances

Instances details
Functor Transition' Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Methods

fmap :: (a -> b) -> Transition' a -> Transition' b #

(<$) :: a -> Transition' b -> Transition' a #

Show state => Show (Transition' state) Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Methods

showsPrec :: Int -> Transition' state -> ShowS #

show :: Transition' state -> String #

showList :: [Transition' state] -> ShowS #

Eq state => Eq (Transition' state) Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Methods

(==) :: Transition' state -> Transition' state -> Bool #

(/=) :: Transition' state -> Transition' state -> Bool #

mkTransition :: state -> state -> Transition state Source #

type TransitionTrace peerAddr state = TransitionTrace' peerAddr (MaybeUnknown state) Source #

data TransitionTrace' peerAddr state Source #

Constructors

TransitionTrace 

Fields

Instances

Instances details
Functor (TransitionTrace' peerAddr) Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Methods

fmap :: (a -> b) -> TransitionTrace' peerAddr a -> TransitionTrace' peerAddr b #

(<$) :: a -> TransitionTrace' peerAddr b -> TransitionTrace' peerAddr a #

(Show peerAddr, Show state) => Show (TransitionTrace' peerAddr state) Source # 
Instance details

Defined in Ouroboros.Network.ConnectionManager.Types

Methods

showsPrec :: Int -> TransitionTrace' peerAddr state -> ShowS #

show :: TransitionTrace' peerAddr state -> String #

showList :: [TransitionTrace' peerAddr state] -> ShowS #