warp-3.4.2: Network/Wai/Handler/Warp/Request.hs
{-# LANGUAGE CPP #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -fno-warn-deprecations #-}
module Network.Wai.Handler.Warp.Request (
FirstRequest(..),
recvRequest,
headerLines,
pauseTimeoutKey,
getFileInfoKey,
#ifdef MIN_VERSION_crypton_x509
getClientCertificateKey,
#endif
NoKeepAliveRequest (..),
) where
import qualified Control.Concurrent as Conc (yield)
import Data.Array ((!))
import qualified Data.ByteString as S
import qualified Data.ByteString.Unsafe as SU
import qualified Data.CaseInsensitive as CI
import qualified Data.IORef as I
import Data.Typeable (Typeable)
import qualified Data.Vault.Lazy as Vault
import Data.Word8 (_cr, _lf)
#ifdef MIN_VERSION_crypton_x509
import Data.X509
#endif
import UnliftIO (Exception, throwIO)
import qualified Network.HTTP.Types as H
import Network.Socket (SockAddr)
import Network.Wai
import Network.Wai.Handler.Warp.Types
import Network.Wai.Internal
import System.IO.Unsafe (unsafePerformIO)
import qualified System.TimeManager as Timeout
import Prelude hiding (lines)
import Network.Wai.Handler.Warp.Conduit
import Network.Wai.Handler.Warp.FileInfoCache
import Network.Wai.Handler.Warp.Header
import Network.Wai.Handler.Warp.Imports hiding (readInt)
import Network.Wai.Handler.Warp.ReadInt
import Network.Wai.Handler.Warp.RequestHeader
import Network.Wai.Handler.Warp.Settings (
Settings,
settingsMaxTotalHeaderLength,
settingsNoParsePath,
)
----------------------------------------------------------------
-- | first request on this connection?
data FirstRequest = FirstRequest | SubsequentRequest
-- | Receiving a HTTP request from 'Connection' and parsing its header
-- to create 'Request'.
recvRequest
:: FirstRequest
-> Settings
-> Connection
-> InternalInfo
-> Timeout.Handle
-> SockAddr
-- ^ Peer's address.
-> Source
-- ^ Where HTTP request comes from.
-> Transport
-> IO
( Request
, Maybe (I.IORef Int)
, IndexedHeader
, IO ByteString
)
-- ^
-- 'Request' passed to 'Application',
-- how many bytes remain to be consumed, if known
-- 'IndexedHeader' of HTTP request for internal use,
-- Body producing action used for flushing the request body
recvRequest firstRequest settings conn ii th addr src transport = do
hdrlines <- headerLines (settingsMaxTotalHeaderLength settings) firstRequest src
(method, unparsedPath, path, query, httpversion, hdr) <-
parseHeaderLines hdrlines
let idxhdr = indexRequestHeader hdr
expect = idxhdr ! fromEnum ReqExpect
handle100Continue = handleExpect conn httpversion expect
(rbody, remainingRef, bodyLength) <- bodyAndSource src idxhdr
-- body producing function which will produce '100-continue', if needed
rbody' <- timeoutBody remainingRef th rbody handle100Continue
-- body producing function which will never produce 100-continue
rbodyFlush <- timeoutBody remainingRef th rbody (return ())
let rawPath = if settingsNoParsePath settings then unparsedPath else path
vaultValue =
Vault.insert pauseTimeoutKey (Timeout.pause th)
. Vault.insert getFileInfoKey (getFileInfo ii)
#ifdef MIN_VERSION_crypton_x509
. Vault.insert getClientCertificateKey (getTransportClientCertificate transport)
#endif
$ Vault.empty
req =
Request
{ requestMethod = method
, httpVersion = httpversion
, pathInfo = H.decodePathSegments path
, rawPathInfo = rawPath
, rawQueryString = query
, queryString = H.parseQuery query
, requestHeaders = hdr
, isSecure = isTransportSecure transport
, remoteHost = addr
, requestBody = rbody'
, vault = vaultValue
, requestBodyLength = bodyLength
, requestHeaderHost = idxhdr ! fromEnum ReqHost
, requestHeaderRange = idxhdr ! fromEnum ReqRange
, requestHeaderReferer = idxhdr ! fromEnum ReqReferer
, requestHeaderUserAgent = idxhdr ! fromEnum ReqUserAgent
}
return (req, remainingRef, idxhdr, rbodyFlush)
----------------------------------------------------------------
headerLines :: Int -> FirstRequest -> Source -> IO [ByteString]
headerLines maxTotalHeaderLength firstRequest src = do
bs <- readSource src
if S.null bs
then -- When we're working on a keep-alive connection and trying to
-- get the second or later request, we don't want to treat the
-- lack of data as a real exception. See the http1 function in
-- the Run module for more details.
case firstRequest of
FirstRequest -> throwIO ConnectionClosedByPeer
SubsequentRequest -> throwIO NoKeepAliveRequest
else push maxTotalHeaderLength src (THStatus 0 0 id id) bs
data NoKeepAliveRequest = NoKeepAliveRequest
deriving (Show, Typeable)
instance Exception NoKeepAliveRequest
----------------------------------------------------------------
handleExpect
:: Connection
-> H.HttpVersion
-> Maybe HeaderValue
-> IO ()
handleExpect conn ver (Just "100-continue") = do
connSendAll conn continue
Conc.yield
where
continue
| ver == H.http11 = "HTTP/1.1 100 Continue\r\n\r\n"
| otherwise = "HTTP/1.0 100 Continue\r\n\r\n"
handleExpect _ _ _ = return ()
----------------------------------------------------------------
bodyAndSource
:: Source
-> IndexedHeader
-> IO
( IO ByteString
, Maybe (I.IORef Int)
, RequestBodyLength
)
bodyAndSource src idxhdr
| chunked = do
csrc <- mkCSource src
return (readCSource csrc, Nothing, ChunkedBody)
| otherwise = do
let len = toLength $ idxhdr ! fromEnum ReqContentLength
bodyLen = KnownLength $ fromIntegral len
isrc@(ISource _ remaining) <- mkISource src len
return (readISource isrc, Just remaining, bodyLen)
where
chunked = isChunked $ idxhdr ! fromEnum ReqTransferEncoding
toLength :: Maybe HeaderValue -> Int
toLength Nothing = 0
toLength (Just bs) = readInt bs
isChunked :: Maybe HeaderValue -> Bool
isChunked (Just bs) = CI.foldCase bs == "chunked"
isChunked _ = False
----------------------------------------------------------------
timeoutBody
:: Maybe (I.IORef Int)
-- ^ remaining
-> Timeout.Handle
-> IO ByteString
-> IO ()
-> IO (IO ByteString)
timeoutBody remainingRef timeoutHandle rbody handle100Continue = do
isFirstRef <- I.newIORef True
let checkEmpty =
case remainingRef of
Nothing -> return . S.null
Just ref -> \bs ->
if S.null bs
then return True
else do
x <- I.readIORef ref
return $! x <= 0
return $ do
isFirst <- I.readIORef isFirstRef
when isFirst $ do
-- Only check if we need to produce the 100 Continue status
-- when asking for the first chunk of the body
handle100Continue
-- Timeout handling was paused after receiving the full request
-- headers. Now we need to resume it to avoid a slowloris
-- attack during request body sending.
Timeout.resume timeoutHandle
I.writeIORef isFirstRef False
bs <- rbody
-- As soon as we finish receiving the request body, whether
-- because the application is not interested in more bytes, or
-- because there is no more data available, pause the timeout
-- handler again.
isEmpty <- checkEmpty bs
when isEmpty (Timeout.pause timeoutHandle)
return bs
----------------------------------------------------------------
type BSEndo = S.ByteString -> S.ByteString
type BSEndoList = [ByteString] -> [ByteString]
data THStatus
= THStatus
Int -- running total byte count (excluding current header chunk)
Int -- current header chunk byte count
BSEndoList -- previously parsed lines
BSEndo -- bytestrings to be prepended
----------------------------------------------------------------
{- FIXME
close :: Sink ByteString IO a
close = throwIO IncompleteHeaders
-}
-- | Assumes the 'ByteString' is never 'S.null'
push :: Int -> Source -> THStatus -> ByteString -> IO [ByteString]
push maxTotalHeaderLength src (THStatus totalLen chunkLen reqLines prepend) bs
-- Newline found at index 'ix'
| Just ix <- S.elemIndex _lf bs = do
-- Too many bytes
when (currentTotal > maxTotalHeaderLength) $ throwIO OverLargeHeader
newlineFound ix
-- No newline found
| otherwise = do
-- Early easy abort
when (currentTotal + bsLen > maxTotalHeaderLength) $ throwIO OverLargeHeader
withNewChunk noNewlineFound
where
bsLen = S.length bs
currentTotal = totalLen + chunkLen
{-# INLINE withNewChunk #-}
withNewChunk :: (S.ByteString -> IO a) -> IO a
withNewChunk f = do
newChunk <- readSource' src
when (S.null newChunk) $ throwIO IncompleteHeaders
f newChunk
{-# INLINE noNewlineFound #-}
noNewlineFound newChunk
-- The chunk split the CRLF in half
| SU.unsafeLast bs == _cr && S.head newChunk == _lf =
let bs' = SU.unsafeDrop 1 newChunk
in if bsLen == 1 && chunkLen == 0
-- first part is only CRLF, we're done
then do
when (not $ S.null bs') $ leftoverSource src bs'
pure $ reqLines []
else do
rest <- if S.null bs'
-- new chunk is only LF, we need more to check for multiline
then withNewChunk pure
else pure bs'
let status = addLine (bsLen + 1) (SU.unsafeTake (bsLen - 1) bs)
push maxTotalHeaderLength src status rest
-- chunk and keep going
| otherwise = do
let newChunkTotal = chunkLen + bsLen
newPrepend = prepend . (bs <>)
status = THStatus totalLen newChunkTotal reqLines newPrepend
push maxTotalHeaderLength src status newChunk
{-# INLINE newlineFound #-}
newlineFound ix
-- Is end of headers
| chunkLen == 0 && startsWithLF = do
let rest = SU.unsafeDrop end bs
when (not $ S.null rest) $ leftoverSource src rest
pure $ reqLines []
| otherwise = do
-- LF is on last byte
let p = ix - 1
chunk =
if ix > 0 && SU.unsafeIndex bs p == _cr then p else ix
status = addLine end (SU.unsafeTake chunk bs)
continue = push maxTotalHeaderLength src status
if end == bsLen
then withNewChunk continue
else continue $ SU.unsafeDrop end bs
where
end = ix + 1
startsWithLF =
case ix of
0 -> True
1 -> SU.unsafeHead bs == _cr
_ -> False
-- addLine: take the current chunk and, if there's nothing to prepend,
-- add straight to 'reqLines', otherwise first prepend then add.
{-# INLINE addLine #-}
addLine len chunk =
let newTotal = currentTotal + len
newLine =
if chunkLen == 0 then chunk else prepend chunk
in THStatus newTotal 0 (reqLines . (newLine:)) id
{- HLint ignore push "Use unless" -}
pauseTimeoutKey :: Vault.Key (IO ())
pauseTimeoutKey = unsafePerformIO Vault.newKey
{-# NOINLINE pauseTimeoutKey #-}
getFileInfoKey :: Vault.Key (FilePath -> IO FileInfo)
getFileInfoKey = unsafePerformIO Vault.newKey
{-# NOINLINE getFileInfoKey #-}
#ifdef MIN_VERSION_crypton_x509
getClientCertificateKey :: Vault.Key (Maybe CertificateChain)
getClientCertificateKey = unsafePerformIO Vault.newKey
{-# NOINLINE getClientCertificateKey #-}
#endif