hs-tls/core/Tests/Connection.hs

124 lines
4.6 KiB
Haskell
Raw Normal View History

module Tests.Connection
2012-03-28 07:06:13 +00:00
( newPairContext
, arbitraryPairParams
, setPairParamsSessionManager
2012-03-28 07:06:13 +00:00
, setPairParamsSessionResuming
) where
import Test.QuickCheck
import Tests.Certificate
import Tests.PubKey
import Tests.PipeChan
import Network.TLS
import qualified Crypto.Random.AESCtr as RNG
import qualified Data.ByteString as B
debug = False
blockCipher :: Cipher
blockCipher = Cipher
2012-03-28 07:06:13 +00:00
{ cipherID = 0xff12
, cipherName = "rsa-id-const"
, cipherBulk = Bulk
{ bulkName = "id"
, bulkKeySize = 16
, bulkIVSize = 16
, bulkBlockSize = 16
, bulkF = BulkBlockF (\_ _ m -> m) (\_ _ m -> m)
}
, cipherHash = Hash
{ hashName = "const-hash"
, hashSize = 16
, hashF = (\_ -> B.replicate 16 1)
}
, cipherKeyExchange = CipherKeyExchange_RSA
, cipherMinVer = Nothing
}
streamCipher = blockCipher
2012-03-28 07:06:13 +00:00
{ cipherID = 0xff13
, cipherBulk = Bulk
{ bulkName = "stream"
, bulkKeySize = 16
, bulkIVSize = 0
, bulkBlockSize = 0
, bulkF = BulkStreamF (\k -> k) (\i m -> (m,i)) (\i m -> (m,i))
}
}
nullCipher = blockCipher
2012-03-28 07:06:13 +00:00
{ cipherID = 0xff14
, cipherBulk = Bulk
{ bulkName = "null"
, bulkKeySize = 0
, bulkIVSize = 0
, bulkBlockSize = 0
, bulkF = BulkNoneF
}
}
supportedCiphers :: [Cipher]
supportedCiphers = [blockCipher,streamCipher,nullCipher]
supportedVersions :: [Version]
supportedVersions = [SSL3,TLS10,TLS11,TLS12]
arbitraryPairParams = do
2012-03-28 07:06:13 +00:00
let (pubKey, privKey) = getGlobalRSAPair
servCert <- arbitraryX509WithPublicKey pubKey
allowedVersions <- arbitraryVersions
connectVersion <- elements supportedVersions `suchThat` (\c -> c `elem` allowedVersions)
serverCiphers <- arbitraryCiphers
clientCiphers <- oneof [arbitraryCiphers] `suchThat` (\cs -> or [x `elem` serverCiphers | x <- cs])
secNeg <- arbitrary
let serverState = defaultParamsServer
{ pAllowedVersions = allowedVersions
, pCiphers = serverCiphers
, pCertificates = [(servCert, Just $ PrivRSA privKey)]
, pUseSecureRenegotiation = secNeg
, pLogging = logging "server: "
}
let clientState = defaultParamsClient
{ pConnectVersion = connectVersion
, pAllowedVersions = allowedVersions
, pCiphers = clientCiphers
, pUseSecureRenegotiation = secNeg
, pLogging = logging "client: "
}
return (clientState, serverState)
where
logging pre = if debug
then defaultLogging
{ loggingPacketSent = putStrLn . ((pre ++ ">> ") ++)
, loggingPacketRecv = putStrLn . ((pre ++ "<< ") ++) }
else defaultLogging
arbitraryVersions :: Gen [Version]
arbitraryVersions = resize (length supportedVersions + 1) $ listOf1 (elements supportedVersions)
arbitraryCiphers = resize (length supportedCiphers + 1) $ listOf1 (elements supportedCiphers)
setPairParamsSessionManager :: SessionManager s => s -> (Params, Params) -> (Params, Params)
setPairParamsSessionManager manager (clientState, serverState) = (nc,ns)
2012-03-28 07:06:13 +00:00
where
nc = setSessionManager manager clientState
ns = setSessionManager manager serverState
setPairParamsSessionResuming sessionStuff (clientState, serverState) = (nc,serverState)
2012-03-28 07:06:13 +00:00
where
nc = updateClientParams (\cparams -> cparams { clientWantSessionResume = Just sessionStuff }) clientState
newPairContext pipe (cParams, sParams) = do
2012-03-28 07:06:13 +00:00
let noFlush = return ()
2012-03-28 07:08:33 +00:00
let noClose = return ()
2012-03-28 07:06:13 +00:00
cRNG <- RNG.makeSystem
sRNG <- RNG.makeSystem
2012-03-28 07:08:33 +00:00
let cBackend = Backend noFlush noClose (writePipeA pipe) (readPipeA pipe)
let sBackend = Backend noFlush noClose (writePipeB pipe) (readPipeB pipe)
2012-03-28 07:06:13 +00:00
cCtx' <- contextNew cBackend cParams cRNG
sCtx' <- contextNew sBackend sParams sRNG
2012-03-28 07:06:13 +00:00
return (cCtx', sCtx')