Skip to content

Commit

Permalink
connection-manager: ConnectionHandler
Browse files Browse the repository at this point in the history
ConnectionHandler needs `MiniProtocolBundle` before the connection
manager starts.  This type only contains static information about
mini-protocols.  This will force us to use two connection managers: one
for node-to-node connections and another one for node-to-client
connections. This is ok as these resources are indepenedent.
  • Loading branch information
coot committed Jan 28, 2021
1 parent 9567a1c commit d54ffd8
Show file tree
Hide file tree
Showing 5 changed files with 502 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ouroboros-network-framework/ouroboros-network-framework.cabal
Expand Up @@ -42,8 +42,10 @@ library
Ouroboros.Network.Protocol.Limits

Ouroboros.Network.ConnectionId
Ouroboros.Network.ConnectionHandler
Ouroboros.Network.ConnectionManager.Types
Ouroboros.Network.ConnectionManager.Core
Ouroboros.Network.RethrowPolicy
Ouroboros.Network.Server.ConnectionTable
Ouroboros.Network.Server.Socket
Ouroboros.Network.Server.RateLimiting
Expand Down
383 changes: 383 additions & 0 deletions ouroboros-network-framework/src/Ouroboros/Network/ConnectionHandler.hs
@@ -0,0 +1,383 @@
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE ExistentialQuantification #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE KindSignatures #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE TypeApplications #-}

-- | Implementation of 'ConnectionHandler'
--
-- While connection manager responsibility is to keep track of resources:
-- sockets and threads running connection and their state changes (including
-- changes imposed by 'ConnectionHandler', e.g. weather a uni- or duplex- data
-- flow was negotiated), the responsibility of 'ConnectionHandler' is to:
--
-- * run handshake protocol on the underlying bearer
-- * start mux
--
-- 'ConnectionHandler' is run on each inbound or outbound connection and returns
-- 'Handle'. Upon successful handshake negotiation it returns all the
-- necessary information to run mini-protocols. Note that it is not responsible
-- for running them: that's what a server does or p2p-governor by means of
-- 'PeerStateActions'.
--
module Ouroboros.Network.ConnectionHandler
( Handle (..)
, HandleError (..)
, classifyHandleError
, MuxConnectionHandler
, makeConnectionHandler
, MuxConnectionManager
-- * tracing
, ConnectionHandlerTrace (..)
) where

import Control.Exception (SomeAsyncException)
import Control.Monad.Class.MonadAsync
import Control.Monad.Class.MonadFork
import Control.Monad.Class.MonadSTM.Strict
import Control.Monad.Class.MonadThrow hiding (handle)
import Control.Monad.Class.MonadTime
import Control.Monad.Class.MonadTimer
import Control.Tracer (Tracer, contramap, traceWith)

import Data.ByteString.Lazy (ByteString)
import Data.Typeable (Typeable)

import Network.Mux hiding (miniProtocolNum)

import Ouroboros.Network.Mux
import Ouroboros.Network.MuxMode
import Ouroboros.Network.Protocol.Handshake
import Ouroboros.Network.ConnectionId (ConnectionId (..))
import Ouroboros.Network.RethrowPolicy
import Ouroboros.Network.ConnectionManager.Types

-- | We place an upper limit of `30s` on the time we wait on receiving an SDU.
-- There is no upper bound on the time we wait when waiting for a new SDU.
-- This makes it possible for mini-protocols to use timeouts that are larger
-- than 30s or wait forever. `30s` for receiving an SDU corresponds to
-- a minimum speed limit of 17kbps.
--
-- ( 8 -- mux header length
-- + 0xffff -- maximum SDU payload
-- )
-- * 8
-- = 524_344 -- maximum bits in an SDU
--
-- 524_344 / 30 / 1024 = 17kbps
--
sduTimeout :: DiffTime
sduTimeout = 30


-- | For handshake, we put a limit of `10s` for sending or receiving a single
-- `MuxSDU`.
--
sduHandshakeTimeout :: DiffTime
sduHandshakeTimeout = 10


-- | States of the connection handler thread.
--
-- * 'MuxRunning' - successful Handshake, mux started
-- * 'HandleHandshakeClientError'
-- - the connection handler thread was running client side
-- of the handshake negotiation, which failed with
-- a 'HandshakeException'
-- * 'HandleHandshakeServerError'
-- - the connection handler thread was running server side of the
-- handshake protocol, which fail with 'HandshakeException'
-- * 'HandleError'
-- - the multiplexer thrown 'MuxError'.
--
data Handle (muxMode :: MuxMode) peerAddr bytes m a b =
Handle {
hMux :: !(Mux muxMode m),
hMuxBundle :: !(MuxBundle muxMode bytes m a b),
hControlMessage :: !(Bundle (StrictTVar m ControlMessage)),
hCompatMode :: !Bool
-- ^ compatibility mode for `NodeToNodeV_5` and earlier version.
}


data HandleError (muxMode :: MuxMode) versionNumber where
HandleHandshakeClientError
:: HasInitiator muxMode ~ True
=> !(HandshakeException (HandshakeClientProtocolError versionNumber))
-> HandleError muxMode versionNumber

HandleHandshakeServerError
:: HasResponder muxMode ~ True
=> !(HandshakeException (RefuseReason versionNumber))
-> HandleError muxMode versionNumber

HandleError
:: !SomeException
-> HandleError muxMode versionNumber

instance Show versionNumber
=> Show (HandleError muxMode versionNumber) where
show (HandleHandshakeServerError err) = "HandleHandshakeServerError " ++ show err
show (HandleHandshakeClientError err) = "HandleHandshakeClientError " ++ show err
show (HandleError err) = "HandleError " ++ show err


classifyHandleError :: HandleError muxMode versionNumber
-> HandleErrorType
classifyHandleError (HandleHandshakeClientError (HandshakeProtocolLimit _)) =
HandshakeProtocolViolation
-- TODO: 'HandshakeProtocolError' is not a protocol error! It is just
-- a negotiation failure. It should be renamed.
classifyHandleError (HandleHandshakeClientError (HandshakeProtocolError _)) =
HandshakeFailure
classifyHandleError (HandleHandshakeServerError (HandshakeProtocolLimit _)) =
HandshakeProtocolViolation
classifyHandleError (HandleHandshakeServerError (HandshakeProtocolError _)) =
HandshakeFailure
-- any other exception, e.g. MuxError \/ IOError, codec errors, etc.
classifyHandleError (HandleError _) =
HandshakeProtocolViolation


-- | Type of 'ConnectionHandler' implemented in this module.
--
type MuxConnectionHandler muxMode peerAddr versionNumber versionData bytes m a b =
ConnectionHandler muxMode
(ConnectionHandlerTrace versionNumber versionData)
peerAddr
(Handle muxMode peerAddr bytes m a b)
(HandleError muxMode versionNumber)
(versionNumber, versionData)
m

-- | Type alias for 'ConnectionManager' using 'Handle'.
--
type MuxConnectionManager muxMode socket peerAddr versionNumber bytes m a b =
ConnectionManager muxMode socket peerAddr
(Handle muxMode peerAddr bytes m a b)
(HandleError muxMode versionNumber)
m

-- | To be used as `makeConnectionHandler` field of 'ConnectionManagerArguments'.
--
-- Note: We need to pass `MiniProtocolBundle` what forces us to have two
-- different `ConnectionManager`s: one for `node-to-client` and another for
-- `node-to-node` connections. But this is ok, as these resources are
-- independent.
--
makeConnectionHandler
:: forall peerAddr muxMode versionNumber versionData m a b.
( MonadAsync m
, MonadCatch m
, MonadFork m
, MonadThrow (STM m)
, MonadTime m
, MonadTimer m
, MonadMask m
, Ord versionNumber
, Show peerAddr
, Typeable peerAddr
)
=> Tracer m (WithMuxBearer (ConnectionId peerAddr) MuxTrace)
-> SingMuxMode muxMode
-- ^ describe whether this is outbound or inbound connection, and bring
-- evidence that we can use mux with it.
-> MiniProtocolBundle muxMode
-> HandshakeArguments (ConnectionId peerAddr) versionNumber versionData m
(OuroborosBundle muxMode peerAddr ByteString m a b)
-> (versionNumber -> Bool)
-- ^ compatibility mode predicate
-> (ThreadId m, RethrowPolicy)
-- ^ 'ThreadId' and rethrow policy. Rethrow policy might throw an async
-- exception to that thread, when trying to terminate the process.
-> MuxConnectionHandler muxMode peerAddr versionNumber versionData ByteString m a b
makeConnectionHandler muxTracer singMuxMode
miniProtocolBundle
handshakeArguments
compatModePredicate
(mainThreadId, rethrowPolicy) =
ConnectionHandler {
connectionHandler =
case singMuxMode of
SingInitiatorMode ->
WithInitiatorMode outboundConnectionHandler
SingResponderMode ->
WithResponderMode inboundConnectionHandler
SingInitiatorResponderMode ->
WithInitiatorResponderMode outboundConnectionHandler
inboundConnectionHandler
}
where
outboundConnectionHandler
:: HasInitiator muxMode ~ True
=> ConnectionHandlerFn (ConnectionHandlerTrace versionNumber versionData)
peerAddr
(Handle muxMode peerAddr ByteString m a b)
(HandleError muxMode versionNumber)
(versionNumber, versionData)
m
outboundConnectionHandler
writer@PromiseWriter { writePromise }
tracer
connectionId@ConnectionId { remoteAddress }
muxBearer =
Action {
action = outboundAction,
errorHandler = exceptionHandling tracer writer remoteAddress OutboundError
}
where
outboundAction = do
hsResult <-
runHandshakeClient (muxBearer sduHandshakeTimeout)
connectionId
handshakeArguments
-- 'runHandshakeClient' only deals with protocol limit errors or
-- handshake negotiation failures, but not with 'IOException's or
-- 'MuxError's.
`catch` \(err :: SomeException) -> do
atomically $ writePromise (Left (HandleError err))
throwIO err
case hsResult of
Left !err -> do
atomically $ writePromise (Left (HandleHandshakeClientError err))
traceWith tracer (TrHandshakeClientError err)
Right (app, versionNumber, agreedOptions) -> do
traceWith tracer (TrHandshakeSuccess versionNumber agreedOptions)
controlMessageBundle
<- (\a b c -> Bundle (WithHot a) (WithWarm b) (WithEstablished c))
<$> newTVarIO Continue
<*> newTVarIO Continue
<*> newTVarIO Continue
let muxBundle
= mkMuxApplicationBundle
connectionId
(readTVar <$> controlMessageBundle)
app
mux <- newMux miniProtocolBundle
let !handle = Handle {
hMux = mux,
hMuxBundle = muxBundle,
hControlMessage = controlMessageBundle,
hCompatMode = compatModePredicate versionNumber
}
atomically $ writePromise (Right (handle, (versionNumber, agreedOptions)))
runMux (WithMuxBearer connectionId `contramap` muxTracer)
mux (muxBearer sduTimeout)


inboundConnectionHandler
:: HasResponder muxMode ~ True
=> ConnectionHandlerFn (ConnectionHandlerTrace versionNumber versionData)
peerAddr
(Handle muxMode peerAddr ByteString m a b)
(HandleError muxMode versionNumber)
(versionNumber, versionData)
m
inboundConnectionHandler writer@PromiseWriter { writePromise }
tracer
connectionId@ConnectionId { remoteAddress }
muxBearer =
Action {
action = inboundAction,
errorHandler = exceptionHandling tracer writer remoteAddress InboundError
}
where
inboundAction = do
hsResult <-
runHandshakeServer (muxBearer sduHandshakeTimeout)
connectionId
handshakeArguments
-- 'runHandshakeServer' only deals with protocol limit errors or
-- handshake negotiation failures, but not with 'IOException's or
-- 'MuxError's.
`catch` \(err :: SomeException) -> do
atomically $ writePromise (Left (HandleError err))
throwIO err

case hsResult of
Left !err -> do
atomically $ writePromise (Left (HandleHandshakeServerError err))
traceWith tracer (TrHandshakeServerError err)
Right (app, versionNumber, agreedOptions) -> do
traceWith tracer (TrHandshakeSuccess versionNumber agreedOptions)
controlMessageBundle
<- (\a b c -> Bundle (WithHot a) (WithWarm b) (WithEstablished c))
<$> newTVarIO Continue
<*> newTVarIO Continue
<*> newTVarIO Continue
let muxBundle
= mkMuxApplicationBundle
connectionId
(readTVar <$> controlMessageBundle)
app
mux <- newMux miniProtocolBundle
let !handle = Handle {
hMux = mux,
hMuxBundle = muxBundle,
hControlMessage = controlMessageBundle,
hCompatMode = compatModePredicate versionNumber
}
atomically $ writePromise (Right (handle, (versionNumber, agreedOptions)))
runMux (WithMuxBearer connectionId `contramap` muxTracer)
mux (muxBearer sduTimeout)


-- minimal error handling, just to make adequate changes to
-- `muxPromiseVar`; Classification of errors is done by
-- 'withConnectionManager' when the connection handler thread is started..
exceptionHandling :: forall x.
Tracer m (ConnectionHandlerTrace versionNumber versionData)
-> PromiseWriter m
(Either (HandleError muxMode versionNumber)
( Handle muxMode peerAddr ByteString m a b
, (versionNumber, versionData) ))
-> peerAddr
-> ErrorContext
-> m x -> m x
exceptionHandling tracer writer remoteAddress errorContext io =
-- handle non-async exceptions
catchJust
(\e -> case fromException e :: Maybe SomeAsyncException of
Just _ -> Nothing
Nothing -> Just e)
io
(\e -> do
-- we use 'forcePromise', whent he exception handler runs we don't
-- know weather the promise is fullfiled or not.
atomically (forcePromise writer (Left (HandleError e)))
let errorCommand = runRethrowPolicy rethrowPolicy errorContext e
traceWith tracer (TrError errorCommand errorContext e)
case errorCommand of
ShutdownNode -> throwTo mainThreadId (ExceptionInHandler remoteAddress e)
>> throwIO e
ShutdownPeer -> throwIO e)



--
-- Tracing
--


-- | 'ConnectionHandlerTrace' is embedded into 'ConnectionManagerTrace' with
-- 'Ouroboros.Network.ConnectionManager.Types.ConnectionHandlerTrace'
-- constructor. It already includes 'ConnectionId' so we don't need to take
-- care of it here.
--
-- TODO: when 'Handshake' will get its own tracer, independent of 'Mux', it
-- should be embedded into 'ConnectionHandlerTrace'.
--
data ConnectionHandlerTrace versionNumber versionData =
TrHandshakeSuccess versionNumber versionData
| TrHandshakeClientError
!(HandshakeException (HandshakeClientProtocolError versionNumber))
| TrHandshakeServerError
!(HandshakeException (RefuseReason versionNumber))
| TrError !ErrorCommand !ErrorContext !SomeException
deriving Show

0 comments on commit d54ffd8

Please sign in to comment.