{-# LANGUAGE CPP #-}
module Hackage.Security.Util.IO (
getFileSize
, handleDoesNotExist
, WithDirLockEvent(..)
, withDirLock
, timedIO
) where
import Control.Concurrent (threadDelay)
import Control.Exception
import Data.Time
import System.IO hiding (openTempFile, withFile)
import System.IO.Error
import Hackage.Security.Util.Path
#ifdef MIN_VERSION_lukko
import Lukko (FD, fileLockingSupported, fdOpen, fdClose, fdLock, fdUnlock, LockMode(ExclusiveLock))
#else
import GHC.IO.Handle.Lock (hLock, LockMode(ExclusiveLock), FileLockingNotSupported)
#if MIN_VERSION_base(4,11,0)
import GHC.IO.Handle.Lock (hUnlock)
#endif
#endif
getFileSize :: (Num a, FsRoot root) => Path root -> IO a
getFileSize fp = fromInteger <$> withFile fp ReadMode hFileSize
handleDoesNotExist :: IO a -> IO (Maybe a)
handleDoesNotExist act =
handle aux (Just <$> act)
where
aux e =
if isDoesNotExistError e
then return Nothing
else throwIO e
data WithDirLockEvent
= WithDirLockEventPre (Path Absolute)
| WithDirLockEventPost (Path Absolute)
| WithDirLockEventUnlock (Path Absolute)
withDirLock :: (WithDirLockEvent -> IO ()) -> Path Absolute -> IO a -> IO a
withDirLock logger dir
= bracket takeLock (\h -> releaseLock h >> logger (WithDirLockEventUnlock lock))
. const
where
lock :: Path Absolute
lock = dir </> fragment "hackage-security-lock"
lock' :: FilePath
lock' = toFilePath lock
me = "Hackage.Security.Util.IO.withDirLock: "
wrapLog :: IO a -> IO a
wrapLog op = do
logger (WithDirLockEventPre lock)
h <- op
logger (WithDirLockEventPost lock)
return h
#ifdef MIN_VERSION_lukko
takeLock :: IO FD
takeLock
| fileLockingSupported = do
h <- fdOpen lock'
wrapLog (fdLock h ExclusiveLock `onException` fdClose h)
return h
| otherwise = wrapLog takeDirLock
where
takeDirLock :: IO FD
takeDirLock = handle onCreateDirError $ do
createDirectory lock
return (undefined :: FD)
onCreateDirError :: IOError -> IO FD
onCreateDirError ioe
| isAlreadyExistsError ioe = threadDelay (1*1000*1000) >> takeDirLock
| otherwise = fail (me++"error creating directory lock: "++show ioe)
releaseLock h
| fileLockingSupported = do
fdUnlock h
fdClose h
| otherwise =
removeDirectory lock
#else
takeLock = do
h <- openFile lock' ReadWriteMode
wrapLog $ handle (fallbackToDirLock h) $ do
hLock h ExclusiveLock
return (Just h)
fallbackToDirLock :: Handle -> FileLockingNotSupported -> IO (Maybe Handle)
fallbackToDirLock h _ = takeDirLock >> return Nothing
where
takeDirLock :: IO ()
takeDirLock = do
hClose h
handle onIOError (removeFile lock)
handle onCreateDirError (createDirectory lock)
onCreateDirError :: IOError -> IO ()
onCreateDirError ioe
| isAlreadyExistsError ioe = threadDelay (1*1000*1000) >> takeDirLock
| otherwise = fail (me++"error creating directory lock: "++show ioe)
onIOError :: IOError -> IO ()
onIOError _ = hPutStrLn stderr
(me++"cannot remove lock file before directory lock fallback")
releaseLock (Just h) =
#if MIN_VERSION_base(4,11,0)
hUnlock h >>
#endif
hClose h
releaseLock Nothing = removeDirectory lock
#endif
timedIO :: String -> IO a -> IO a
timedIO label act = do
before <- getCurrentTime
result <- act
after <- getCurrentTime
hPutStrLn stderr $ label ++ ": " ++ show (after `diffUTCTime` before)
hFlush stderr
return result