1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
|
{-# LANGUAGE ExistentialQuantification #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
module Network.TLS.Context.Internal (
-- * Context configuration
ClientParams (..),
ServerParams (..),
defaultParamsClient,
SessionID,
SessionData (..),
MaxFragmentEnum (..),
Measurement (..),
-- * Context object and accessor
Context (..),
Hooks (..),
Limit (..),
Established (..),
PendingRecvAction (..),
RecordLayer (..),
Locks (..),
RoleParams (..),
ctxEOF,
ctxEstablished,
withLog,
ctxWithHooks,
contextModifyHooks,
setEOF,
setEstablished,
contextFlush,
contextClose,
contextSend,
contextRecv,
updateRecordLayer,
updateMeasure,
withMeasure,
withReadLock,
withWriteLock,
withStateLock,
withRWLock,
-- * information
Information (..),
contextGetInformation,
-- * Using context states
throwCore,
failOnEitherError,
usingState,
usingState_,
runTxRecordState,
runRxRecordState,
usingHState,
getHState,
saveHState,
restoreHState,
getStateRNG,
tls13orLater,
addCertRequest13,
getCertRequest13,
decideRecordVersion,
-- * Misc
HandshakeSync (..),
TLS13State (..),
defaultTLS13State,
getTLS13State,
modifyTLS13State,
CipherChoice (..),
makeCipherChoice,
-- * RecordLimit
setMyRecordLimit,
enableMyRecordLimit,
getMyRecordLimit,
checkMyRecordLimit,
setPeerRecordLimit,
enablePeerRecordLimit,
getPeerRecordLimit,
checkPeerRecordLimit,
newRecordLimitRef,
) where
import Control.Concurrent.MVar
import Control.Exception (throwIO)
import Control.Monad.State.Strict
import qualified Data.ByteString as B
import Data.IORef
import Data.Tuple
import Network.TLS.Backend
import Network.TLS.Cipher
import Network.TLS.Crypto
import Network.TLS.Extension
import Network.TLS.Handshake.Control
import Network.TLS.Handshake.State
import Network.TLS.Hooks
import Network.TLS.Imports
import Network.TLS.Measurement
import Network.TLS.Parameters
import Network.TLS.Record
import Network.TLS.Record.State
import Network.TLS.State
import Network.TLS.Struct
import Network.TLS.Struct13
import Network.TLS.Types
import Network.TLS.Util
-- | A TLS Context keep tls specific state, parameters and backend information.
data Context
= forall a.
Monoid a =>
Context
{ ctxBackend :: Backend
-- ^ return the backend object associated with this context
, ctxSupported :: Supported
, ctxShared :: Shared
, ctxTLSState :: MVar TLSState
, ctxMeasurement :: IORef Measurement
, ctxEOF_ :: IORef Bool
-- ^ has the handle EOFed or not.
, ctxEstablished_ :: IORef Established
-- ^ has the handshake been done and been successful.
, ctxTxRecordState :: MVar RecordState
-- ^ current TX record state
, ctxRxRecordState :: MVar RecordState
-- ^ current RX record state
, ctxHandshakeState :: MVar (Maybe HandshakeState)
-- ^ optional handshake state
, ctxRoleParams :: RoleParams
-- ^ hooks for this context
, ctxLocks :: Locks
, ctxKeyLogger :: String -> IO ()
, ctxHooks :: IORef Hooks
, -- TLS 1.3
ctxTLS13State :: IORef TLS13State
, ctxPendingRecvActions :: IORef [PendingRecvAction]
, ctxPendingSendAction :: IORef (Maybe (Context -> IO ()))
, ctxCertRequests :: IORef [Handshake13]
-- ^ pending post handshake authentication requests
, -- QUIC
ctxRecordLayer :: RecordLayer a
, ctxHandshakeSync :: HandshakeSync
, ctxQUICMode :: Bool
, -- Misc
ctxNeedEmptyPacket :: IORef Bool
-- ^ empty packet workaround for CBC guessability.
, ctxMyRecordLimit :: IORef RecordLimit
-- ^ maximum size of plaintext fragments, val + 1 is used for TLS 1.3
, ctxPeerRecordLimit :: IORef RecordLimit
-- ^ maximum size of plaintext fragments, val + 1 is used for TLS 1.3
}
data RecordLimit
= NoRecordLimit -- for QUIC
| RecordLimit
Int -- effective
(Maybe Int) -- pending
deriving (Eq, Show)
data RoleParams = RoleParams
{ doHandshake_ :: Context -> IO ()
, doHandshakeWith_ :: Context -> Handshake -> IO ()
, doRequestCertificate_ :: Context -> IO Bool
, doPostHandshakeAuthWith_ :: Context -> Handshake13 -> IO ()
}
data Locks = Locks
{ lockWrite :: MVar ()
-- ^ lock to use for writing data (including updating the state)
, lockRead :: MVar ()
-- ^ lock to use for reading data (including updating the state)
, lockState :: MVar ()
-- ^ lock used during read/write when receiving and sending packet.
-- it is usually nested in a write or read lock.
}
data CipherChoice = CipherChoice
{ cVersion :: Version
, cCipher :: Cipher
, cHash :: Hash
, cZero :: ByteString
}
deriving (Show)
makeCipherChoice :: Version -> Cipher -> CipherChoice
makeCipherChoice ver cipher = CipherChoice ver cipher h zero
where
h = cipherHash cipher
zero = B.replicate (hashDigestSize h) 0
data TLS13State = TLS13State
{ tls13stRecvNST :: Bool -- client
, tls13stSentClientCert :: Bool -- client
, tls13stRecvSF :: Bool -- client
, tls13stSentCF :: Bool -- client
, tls13stRecvCF :: Bool -- server
, tls13stPendingRecvData :: Maybe ByteString -- client
, tls13stPendingSentData :: [ByteString] -> [ByteString] -- client
, tls13stRTT :: Millisecond
, tls13st0RTT :: Bool -- client
, tls13st0RTTAccepted :: Bool -- client
, tls13stClientExtensions :: [ExtensionRaw] -- client
, tls13stChoice :: ~CipherChoice -- client
, tls13stHsKey :: Maybe (SecretTriple HandshakeSecret) -- client
-- Actuall session id for TLS 1.2, random value for TLS 1.3
, tls13stSession :: Session
, tls13stSentExtensions :: [ExtensionID]
}
defaultTLS13State :: TLS13State
defaultTLS13State =
TLS13State
{ tls13stRecvNST = False
, tls13stSentClientCert = False
, tls13stRecvSF = False
, tls13stSentCF = False
, tls13stRecvCF = False
, tls13stPendingRecvData = Nothing
, tls13stPendingSentData = id
, tls13stRTT = 0
, tls13st0RTT = False
, tls13st0RTTAccepted = False
, tls13stClientExtensions = []
, tls13stChoice = undefined
, tls13stHsKey = Nothing
, tls13stSession = Session Nothing
, tls13stSentExtensions = []
}
getTLS13State :: Context -> IO TLS13State
getTLS13State Context{..} = readIORef ctxTLS13State
modifyTLS13State :: Context -> (TLS13State -> TLS13State) -> IO ()
modifyTLS13State Context{..} f = atomicModifyIORef' ctxTLS13State $ \st -> (f st, ())
data HandshakeSync
= HandshakeSync
(Context -> ClientState -> IO ())
(Context -> ServerState -> IO ())
{- FOURMOLU_DISABLE -}
data RecordLayer a = RecordLayer
{ -- Writing.hs
recordEncode12 :: Context -> Record Plaintext -> IO (Either TLSError a)
, recordEncode13 :: Context -> Record Plaintext -> IO (Either TLSError a)
, recordSendBytes :: Context -> a -> IO ()
, -- Reading.hs
recordRecv12 :: Context -> IO (Either TLSError (Record Plaintext))
, recordRecv13 :: Context -> IO (Either TLSError (Record Plaintext))
}
{- FOURMOLU_ENABLE -}
updateRecordLayer :: Monoid a => RecordLayer a -> Context -> Context
updateRecordLayer recordLayer Context{..} =
Context{ctxRecordLayer = recordLayer, ..}
data Established
= NotEstablished
| EarlyDataAllowed Int -- server: remaining 0-RTT bytes allowed
| EarlyDataNotAllowed Int -- sever: remaining 0-RTT packets allowed to skip
| EarlyDataSending
| Established
deriving (Eq, Show)
data PendingRecvAction
= -- | simple pending action. The first 'Bool' is necessity of alignment.
PendingRecvAction Bool (Handshake13 -> IO ())
| -- | pending action taking transcript hash up to preceding message
-- The first 'Bool' is necessity of alignment.
PendingRecvActionHash Bool (ByteString -> Handshake13 -> IO ())
updateMeasure :: Context -> (Measurement -> Measurement) -> IO ()
updateMeasure ctx = modifyIORef' (ctxMeasurement ctx)
withMeasure :: Context -> (Measurement -> IO a) -> IO a
withMeasure ctx f = readIORef (ctxMeasurement ctx) >>= f
-- | A shortcut for 'backendFlush . ctxBackend'.
contextFlush :: Context -> IO ()
contextFlush = backendFlush . ctxBackend
-- | A shortcut for 'backendClose . ctxBackend'.
contextClose :: Context -> IO ()
contextClose = backendClose . ctxBackend
-- | Information about the current context
contextGetInformation :: Context -> IO (Maybe Information)
contextGetInformation ctx = do
ver <- usingState_ ctx $ gets stVersion
hstate <- getHState ctx
let (ms, ems, cr, sr, hm13, grp) =
case hstate of
Just st ->
( hstMainSecret st
, hstExtendedMainSecret st
, Just (hstClientRandom st)
, hstServerRandom st
, if ver == Just TLS13 then Just (hstTLS13HandshakeMode st) else Nothing
, hstSupportedGroup st
)
Nothing -> (Nothing, False, Nothing, Nothing, Nothing, Nothing)
(cipher, comp) <-
readMVar (ctxRxRecordState ctx) <&> \st -> (stCipher st, stCompression st)
let accepted = case hstate of
Just st -> hstTLS13RTT0Status st == RTT0Accepted
Nothing -> False
tls12resumption <- usingState_ ctx getTLS12SessionResuming
case (ver, cipher) of
(Just v, Just c) ->
return $
Just $
Information
{ infoVersion = v
, infoCipher = c
, infoCompression = comp
, infoMainSecret = ms
, infoExtendedMainSecret = ems
, infoClientRandom = cr
, infoServerRandom = sr
, infoSupportedGroup = grp
, infoTLS12Resumption = tls12resumption
, infoTLS13HandshakeMode = hm13
, infoIsEarlyDataAccepted = accepted
}
_ -> return Nothing
contextSend :: Context -> ByteString -> IO ()
contextSend c b =
updateMeasure c (addBytesSent $ B.length b) >> (backendSend $ ctxBackend c) b
contextRecv :: Context -> Int -> IO ByteString
contextRecv c sz = updateMeasure c (addBytesReceived sz) >> (backendRecv $ ctxBackend c) sz
ctxEOF :: Context -> IO Bool
ctxEOF ctx = readIORef $ ctxEOF_ ctx
setEOF :: Context -> IO ()
setEOF ctx = writeIORef (ctxEOF_ ctx) True
ctxEstablished :: Context -> IO Established
ctxEstablished ctx = readIORef $ ctxEstablished_ ctx
ctxWithHooks :: Context -> (Hooks -> IO a) -> IO a
ctxWithHooks ctx f = readIORef (ctxHooks ctx) >>= f
contextModifyHooks :: Context -> (Hooks -> Hooks) -> IO ()
contextModifyHooks ctx = modifyIORef (ctxHooks ctx)
setEstablished :: Context -> Established -> IO ()
setEstablished ctx = writeIORef (ctxEstablished_ ctx)
withLog :: Context -> (Logging -> IO ()) -> IO ()
withLog ctx f = ctxWithHooks ctx (f . hookLogging)
throwCore :: MonadIO m => TLSError -> m a
throwCore = liftIO . throwIO . Uncontextualized
failOnEitherError :: MonadIO m => m (Either TLSError a) -> m a
failOnEitherError f = do
ret <- f
case ret of
Left err -> throwCore err
Right r -> return r
usingState :: Context -> TLSSt a -> IO (Either TLSError a)
usingState ctx f =
modifyMVar (ctxTLSState ctx) $ \st ->
let (a, newst) = runTLSState f st
in newst `seq` return (newst, a)
usingState_ :: Context -> TLSSt a -> IO a
usingState_ ctx f = failOnEitherError $ usingState ctx f
usingHState :: MonadIO m => Context -> HandshakeM a -> m a
usingHState ctx f = liftIO $ modifyMVar (ctxHandshakeState ctx) $ \case
Nothing -> liftIO $ throwIO MissingHandshake
Just st -> return $ swap (Just <$> runHandshake st f)
getHState :: MonadIO m => Context -> m (Maybe HandshakeState)
getHState ctx = liftIO $ readMVar (ctxHandshakeState ctx)
saveHState :: Context -> IO (Saved (Maybe HandshakeState))
saveHState ctx = saveMVar (ctxHandshakeState ctx)
restoreHState
:: Context
-> Saved (Maybe HandshakeState)
-> IO (Saved (Maybe HandshakeState))
restoreHState ctx = restoreMVar (ctxHandshakeState ctx)
decideRecordVersion :: Context -> IO (Version, Bool)
decideRecordVersion ctx = usingState_ ctx $ do
ver <- getVersionWithDefault (maximum $ supportedVersions $ ctxSupported ctx)
hrr <- getTLS13HRR
-- For TLS 1.3, ver' is only used in ClientHello.
-- The record version of the first ClientHello SHOULD be TLS 1.0.
-- The record version of the second ClientHello MUST be TLS 1.2.
let ver'
| ver >= TLS13 = if hrr then TLS12 else TLS10
| otherwise = ver
return (ver', ver >= TLS13)
runTxRecordState :: Context -> RecordM a -> IO (Either TLSError a)
runTxRecordState ctx f = do
(ver, tls13) <- decideRecordVersion ctx
let opt =
RecordOptions
{ recordVersion = ver
, recordTLS13 = tls13
}
modifyMVar (ctxTxRecordState ctx) $ \st ->
case runRecordM f opt st of
Left err -> return (st, Left err)
Right (a, newSt) -> return (newSt, Right a)
runRxRecordState :: Context -> RecordM a -> IO (Either TLSError a)
runRxRecordState ctx f = do
ver <-
usingState_
ctx
(getVersionWithDefault $ maximum $ supportedVersions $ ctxSupported ctx)
-- For 1.3, ver is just ignored. So, it is not necessary to convert ver.
let opt =
RecordOptions
{ recordVersion = ver
, recordTLS13 = ver >= TLS13
}
modifyMVar (ctxRxRecordState ctx) $ \st ->
case runRecordM f opt st of
Left err -> return (st, Left err)
Right (a, newSt) -> return (newSt, Right a)
getStateRNG :: Context -> Int -> IO ByteString
getStateRNG ctx n = usingState_ ctx $ genRandom n
withReadLock :: Context -> IO a -> IO a
withReadLock ctx f = withMVar (lockRead $ ctxLocks ctx) (const f)
withWriteLock :: Context -> IO a -> IO a
withWriteLock ctx f = withMVar (lockWrite $ ctxLocks ctx) (const f)
withRWLock :: Context -> IO a -> IO a
withRWLock ctx f = withReadLock ctx $ withWriteLock ctx f
withStateLock :: Context -> IO a -> IO a
withStateLock ctx f = withMVar (lockState $ ctxLocks ctx) (const f)
tls13orLater :: MonadIO m => Context -> m Bool
tls13orLater ctx = do
ev <- liftIO $ usingState ctx $ getVersionWithDefault TLS12
return $ case ev of
Left _ -> False
Right v -> v >= TLS13
addCertRequest13 :: Context -> Handshake13 -> IO ()
addCertRequest13 ctx certReq = modifyIORef (ctxCertRequests ctx) (certReq :)
getCertRequest13 :: Context -> CertReqContext -> IO (Maybe Handshake13)
getCertRequest13 ctx context = do
let ref = ctxCertRequests ctx
l <- readIORef ref
let (matched, others) = partition (\cr -> context == fromCertRequest13 cr) l
case matched of
[] -> return Nothing
(certReq : _) -> writeIORef ref others >> return (Just certReq)
where
fromCertRequest13 (CertRequest13 c _) = c
fromCertRequest13 _ = error "fromCertRequest13"
--------------------------------
setMyRecordLimit :: Context -> Maybe Int -> IO ()
setMyRecordLimit ctx msiz = modifyIORef (ctxMyRecordLimit ctx) change
where
change (RecordLimit n _) = RecordLimit n msiz
change x = x
enableMyRecordLimit :: Context -> IO ()
enableMyRecordLimit ctx = modifyIORef (ctxMyRecordLimit ctx) change
where
change (RecordLimit _ (Just n)) = RecordLimit n Nothing
change x = x
getMyRecordLimit :: Context -> IO (Maybe Int)
getMyRecordLimit ctx = change <$> readIORef (ctxMyRecordLimit ctx)
where
change NoRecordLimit = Nothing
change (RecordLimit n _) = Just n
checkMyRecordLimit :: Context -> IO Bool
checkMyRecordLimit ctx = chk <$> readIORef (ctxMyRecordLimit ctx)
where
chk NoRecordLimit = False
chk (RecordLimit _ mx) = isJust mx
--------------------------------
setPeerRecordLimit :: Context -> Maybe Int -> IO ()
setPeerRecordLimit ctx msiz = modifyIORef (ctxPeerRecordLimit ctx) change
where
change (RecordLimit n _) = RecordLimit n msiz
change x = x
enablePeerRecordLimit :: Context -> IO ()
enablePeerRecordLimit ctx = modifyIORef (ctxPeerRecordLimit ctx) change
where
change (RecordLimit _ (Just n)) = RecordLimit n Nothing
change x = x
getPeerRecordLimit :: Context -> IO (Maybe Int)
getPeerRecordLimit ctx = change <$> readIORef (ctxPeerRecordLimit ctx)
where
change NoRecordLimit = Nothing
change (RecordLimit n _) = Just n
checkPeerRecordLimit :: Context -> IO Bool
checkPeerRecordLimit ctx = chk <$> readIORef (ctxPeerRecordLimit ctx)
where
chk NoRecordLimit = False
chk (RecordLimit _ mx) = isJust mx
newRecordLimitRef :: Maybe Int -> IO (IORef RecordLimit)
newRecordLimitRef Nothing = newIORef NoRecordLimit
newRecordLimitRef (Just n) = newIORef $ RecordLimit n Nothing
|