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
|
-----------------------------------------------------------------------------
-- |
-- Module : Network.FastCGI
-- Copyright : (c) Bjorn Bringert 2004-2005, (c) Lemmih 2006
-- License : BSD-style (see the file libraries/network/LICENSE)
--
-- Maintainer : lemmih@gmail.com
-- Stability : experimental
-- Portability : non-portable (uses FFI)
--
-- Interface for FastCGI <http://fastcgi.com/>, using the fcgiapp API.
--
-----------------------------------------------------------------------------
module Network.FastCGI
(
-- * Single-threaded interface
runFastCGIorCGI
, runOneFastCGIorCGI
, runFastCGI
, runOneFastCGI
-- * Concurrent interface
, runFastCGIConcurrent
, runFastCGIConcurrent'
-- * Re-export
, module Network.CGI
) where
import Control.Concurrent ( forkOS )
import Control.Concurrent.MVar
import Control.Concurrent.QSem
import Control.Exception
import Control.Monad ( liftM )
import Data.Word (Word8)
import Foreign ( Ptr, castPtr, nullPtr, peekArray0
, alloca, mallocBytes, free, throwIfNeg_)
import Foreign.C ( CInt, CString, CStringLen
, peekCString )
import Foreign.Storable ( Storable (..) )
import System.IO.Unsafe (unsafeInterleaveIO,unsafePerformIO)
import Network.CGI
import Network.CGI.Monad (runCGIT)
import Network.CGI.Protocol (runCGIEnvFPS)
import qualified Data.ByteString as BS
import qualified Data.ByteString.Lazy.Char8 as Lazy
#if __GLASGOW_HASKELL__ >= 608
import qualified Data.ByteString.Internal as BSB
import qualified Data.ByteString.Unsafe as BSB
#else
import qualified Data.ByteString.Base as BSB
#endif
-- For debugging
import Control.Concurrent ( myThreadId )
import Prelude hiding ( log, catch )
import System.IO ( hPutStrLn, stderr )
#include <fcgiapp.h>
------------------------------------------------------------------------
data FCGX_Stream
type StreamPtr = Ptr FCGX_Stream
type Environ = Ptr CString
------------------------------------------------------------------------
foreign import ccall unsafe "fcgiapp.h FCGX_IsCGI" fcgx_isCGI
:: IO CInt
foreign import ccall unsafe "fcgiapp.h FCGX_GetStr" fcgx_getStr
:: CString -> CInt -> StreamPtr -> IO CInt
foreign import ccall unsafe "fcgiapp.h FCGX_PutStr" fcgx_putStr
:: CString -> CInt -> StreamPtr -> IO CInt
foreign import ccall safe "fcgiapp.h FCGX_Accept" fcgx_accept
:: Ptr StreamPtr -> Ptr StreamPtr -> Ptr StreamPtr -> Ptr Environ -> IO CInt
foreign import ccall unsafe "fcgiapp.h FCGX_Finish" fcgx_finish
:: IO ()
------------------------------------------------------------------------
-- | Handle a single CGI request, or FastCGI requests in an infinite loop.
-- This function only returns normally if it was a CGI request.
-- This lets you use the same program
-- as either a FastCGI or CGI program, depending on what the server
-- treats it as.
runFastCGIorCGI :: CGI CGIResult -> IO ()
runFastCGIorCGI f = do fcgi <- runOneFastCGIorCGI f
if fcgi then runFastCGIorCGI f
else return ()
-- | Handle a single FastCGI or CGI request. This lets you use the same program
-- as either a FastCGI or CGI program, depending on what the server
-- treats it as.
runOneFastCGIorCGI :: CGI CGIResult
-> IO Bool -- ^ True if it was a FastCGI request,
-- False if CGI.
runOneFastCGIorCGI f =
do x <- fcgx_isCGI
if x /= 0 then runCGI f >> return False
else runOneFastCGI f >> return True
-- | Handle FastCGI requests in an infinite loop.
runFastCGI :: CGI CGIResult -> IO ()
runFastCGI f = runOneFastCGI f >> runFastCGI f
-- | Handle a single FastCGI request.
runOneFastCGI :: CGI CGIResult -> IO ()
runOneFastCGI f = do
alloca (\inp ->
alloca (\outp ->
alloca (\errp ->
alloca (\envp ->
oneRequest f inp outp errp envp))))
oneRequest :: CGI CGIResult
-> Ptr StreamPtr
-> Ptr StreamPtr
-> Ptr StreamPtr
-> Ptr Environ
-> IO ()
oneRequest f inp outp errp envp =
do
testReturn "FCGX_Accept" $ fcgx_accept inp outp errp envp
ins <- peek inp
outs <- peek outp
errs <- peek errp
env <- peek envp
handleRequest f ins outs errs env
fcgx_finish
handleRequest :: CGI CGIResult
-> StreamPtr
-> StreamPtr
-> StreamPtr
-> Environ
-> IO ()
handleRequest f ins outs _errs env =
do
vars <- environToTable env
input <- sRead ins
output' <- runCGIEnvFPS vars input (runCGIT f)
sPutStr outs output'
data FCGX_Request
foreign import ccall unsafe "fcgiapp.h FCGX_Init" fcgx_init
:: IO CInt
foreign import ccall unsafe "fcgiapp.h FCGX_InitRequest" fcgx_initrequest
:: Ptr FCGX_Request -> CInt -> CInt -> IO CInt
foreign import ccall safe "fcgiapp.h FCGX_Accept_r" fcgx_accept_r
:: Ptr FCGX_Request -> IO CInt
foreign import ccall unsafe "fcgiapp.h FCGX_Finish_r" fcgx_finish_r
:: Ptr FCGX_Request -> IO ()
-- | Like 'Network.CGI.runCGI', but uses the FastCGI interface
-- and forks off a new thread (using 'forkOS') for every request.
runFastCGIConcurrent :: Int -- ^ Max number of concurrent threads.
-> CGI CGIResult -> IO ()
runFastCGIConcurrent = runFastCGIConcurrent' forkOS
runFastCGIConcurrent' :: (IO () -> IO a) -- ^ How to fork a request.
-> Int -- ^ Max number of concurrent threads.
-> CGI CGIResult -> IO ()
runFastCGIConcurrent' fork m f
= do qsem <- newQSem m
testReturn "FCGX_Init" $ fcgx_init
let loop = do waitQSem qsem
reqp <- acceptRequest
_ <- fork (oneRequestMT f reqp
`finally`
(finishRequest reqp >> signalQSem qsem))
loop
loop `catch` \(e::IOException) -> log (show e)
oneRequestMT :: CGI CGIResult -> Ptr FCGX_Request -> IO ()
oneRequestMT f r = do
env <- peekEnvp r
vars <- environToTable env
ins <- peekIn r
input <- sRead ins
output' <- runCGIEnvFPS vars input (runCGIT f)
outs <- peekOut r
sPutStr outs output'
--
-- * FCGX_Reqest struct
--
acceptRequest :: IO (Ptr FCGX_Request)
acceptRequest = do
reqp <- mallocBytes (#size FCGX_Request)
initAndAccept reqp
return reqp
where initAndAccept reqp = do
testReturn "FCGX_InitRequest" $ fcgx_initrequest reqp 0 0
testReturn "FCGX_Accept_r" $ fcgx_accept_r reqp
finishRequest :: Ptr FCGX_Request -> IO ()
finishRequest reqp = do
fcgx_finish_r reqp
free reqp
peekIn, peekOut, _peekErr :: Ptr FCGX_Request -> IO (Ptr FCGX_Stream)
peekIn = (#peek FCGX_Request, in)
peekOut = (#peek FCGX_Request, out)
_peekErr = (#peek FCGX_Request, err)
peekEnvp :: Ptr FCGX_Request -> IO Environ
peekEnvp = (#peek FCGX_Request, envp)
--
-- * Stream IO
--
sPutStr :: StreamPtr -> Lazy.ByteString -> IO ()
sPutStr h str =
mapM_ (flip BSB.unsafeUseAsCStringLen (fcgxPutCStringLen h))
(Lazy.toChunks str)
`catch` \(_ :: IOException) -> return ()
fcgxPutCStringLen :: StreamPtr -> CStringLen -> IO ()
fcgxPutCStringLen h (cs,len) =
testReturn "FCGX_PutStr" $ fcgx_putStr cs (fromIntegral len) h
sRead :: StreamPtr -> IO Lazy.ByteString
sRead h = buildByteString (fcgxGetBuf h) 4096
fcgxGetBuf :: StreamPtr -> Ptr a -> Int -> IO Int
fcgxGetBuf h p c =
liftM fromIntegral $ fcgx_getStr (castPtr p) (fromIntegral c) h
--
-- * ByteString utilities
--
-- | Data.ByteString.Lazy.hGetContentsN generalized to arbitrary
-- reading functions.
buildByteString :: (Ptr Word8 -> Int -> IO Int) -> Int -> IO Lazy.ByteString
buildByteString f k = lazyRead >>= return . Lazy.fromChunks
where
lazyRead = unsafeInterleaveIO $ do
ps <- BSB.createAndTrim k $ \p -> f p k
case BS.length ps of
0 -> return []
n | n < k -> return [ps]
_ -> do pss <- lazyRead
return (ps : pss)
--
-- * Utilities
--
testReturn :: String -> IO CInt -> IO ()
testReturn e = throwIfNeg_ (\n -> e ++ " failed with error code: "++ show n)
environToTable :: Environ -> IO [(String,String)]
environToTable arr =
do css <- peekArray0 nullPtr arr
ss <- mapM peekCString css
return $ map (splitBy '=') ss
-- | Split a list at the first occurence of a marker.
-- Do not include the marker in any of the resulting lists.
-- If the marker does not occur in the list, the entire
-- input with be in the first list.
splitBy :: Eq a => a -> [a] -> ([a],[a])
splitBy x xs = (y, drop 1 z)
where (y,z) = break (==x) xs
--
-- * Debugging
--
{-# NOINLINE logMutex #-}
logMutex :: MVar ()
logMutex = unsafePerformIO (newMVar ())
log :: String -> IO ()
log msg = do
t <- myThreadId
withMVar logMutex (const $ hPutStrLn stderr (show t ++ ": " ++ msg))
|