hs-tls/Tests/Connection.hs

125 lines
4.6 KiB
Haskell
Raw Normal View History

module Tests.Connection
2012-03-28 07:06:13 +00:00
( newPairContext
, arbitraryPairParams
, setPairParamsSessionSaving
, setPairParamsSessionResuming
) where
import Test.QuickCheck
import Tests.Certificate
import Tests.PubKey
import Tests.PipeChan
import Network.TLS
import Network.TLS.Cipher
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)
setPairParamsSessionSaving f (clientState, serverState) = (nc,ns)
2012-03-28 07:06:13 +00:00
where
nc = clientState { onSessionEstablished = f }
ns = serverState { onSessionEstablished = f }
setPairParamsSessionResuming sessionStuff (clientState, serverState) = (nc,ns)
2012-03-28 07:06:13 +00:00
where
nc = clientState { sessionResumeWith = Just sessionStuff }
ns = serverState { onSessionResumption = \s ->
return $ if s == fst sessionStuff then Just (snd sessionStuff) else Nothing }
newPairContext pipe (cParams, sParams) = do
2012-03-28 07:06:13 +00:00
let noFlush = return ()
2012-03-28 07:06:13 +00:00
cRNG <- RNG.makeSystem
sRNG <- RNG.makeSystem
2012-03-28 07:06:13 +00:00
let cBackend = Backend noFlush (writePipeA pipe) (readPipeA pipe)
let sBackend = Backend noFlush (writePipeB pipe) (readPipeB pipe)
cCtx' <- contextNew cBackend cParams cRNG
sCtx' <- contextNew sBackend sParams sRNG
2012-03-28 07:06:13 +00:00
return (cCtx', sCtx')