2012-09-12 17:22:16 +00:00
|
|
|
{- git-annex SHA backends
|
2011-03-01 20:50:53 +00:00
|
|
|
-
|
2012-07-04 13:08:20 +00:00
|
|
|
- Copyright 2011,2012 Joey Hess <joey@kitenet.net>
|
2011-03-01 20:50:53 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2011-03-02 17:47:45 +00:00
|
|
|
module Backend.SHA (backends) where
|
2011-03-01 20:50:53 +00:00
|
|
|
|
2011-10-05 20:02:51 +00:00
|
|
|
import Common.Annex
|
2011-03-01 20:50:53 +00:00
|
|
|
import qualified Annex
|
2011-06-02 01:56:04 +00:00
|
|
|
import Types.Backend
|
|
|
|
import Types.Key
|
2012-06-20 20:07:14 +00:00
|
|
|
import Types.KeySource
|
2012-07-04 13:08:20 +00:00
|
|
|
|
2011-08-20 20:11:42 +00:00
|
|
|
import qualified Build.SysConfig as SysConfig
|
2012-07-04 13:08:20 +00:00
|
|
|
import Data.Digest.Pure.SHA
|
|
|
|
import qualified Data.ByteString.Lazy as L
|
2011-03-01 20:50:53 +00:00
|
|
|
|
|
|
|
type SHASize = Int
|
2011-05-16 15:46:34 +00:00
|
|
|
|
2012-09-12 17:22:16 +00:00
|
|
|
{- Order is slightly significant; want SHA256 first, and more general
|
|
|
|
- sizes earlier. -}
|
2011-05-16 15:46:34 +00:00
|
|
|
sizes :: [Int]
|
2011-11-04 19:21:45 +00:00
|
|
|
sizes = [256, 1, 512, 224, 384]
|
2011-05-16 15:46:34 +00:00
|
|
|
|
2012-09-12 17:22:16 +00:00
|
|
|
{- The SHA256E backend is the default. -}
|
2011-12-31 08:11:39 +00:00
|
|
|
backends :: [Backend]
|
2012-09-12 17:22:16 +00:00
|
|
|
backends = catMaybes $ map genBackendE sizes ++ map genBackend sizes
|
2011-03-02 17:47:45 +00:00
|
|
|
|
2011-12-31 08:11:39 +00:00
|
|
|
genBackend :: SHASize -> Maybe Backend
|
2012-07-04 13:08:20 +00:00
|
|
|
genBackend size = Just $ Backend
|
|
|
|
{ name = shaName size
|
|
|
|
, getKey = keyValue size
|
|
|
|
, fsckKey = Just $ checkKeyChecksum size
|
|
|
|
}
|
2011-04-08 00:08:11 +00:00
|
|
|
|
2011-12-31 08:11:39 +00:00
|
|
|
genBackendE :: SHASize -> Maybe Backend
|
2012-07-04 13:08:20 +00:00
|
|
|
genBackendE size = do
|
|
|
|
b <- genBackend size
|
|
|
|
return $ b
|
|
|
|
{ name = shaNameE size
|
|
|
|
, getKey = keyValueE size
|
|
|
|
}
|
2011-05-16 15:46:34 +00:00
|
|
|
|
2011-03-01 20:50:53 +00:00
|
|
|
shaName :: SHASize -> String
|
|
|
|
shaName size = "SHA" ++ show size
|
|
|
|
|
2011-05-16 15:46:34 +00:00
|
|
|
shaNameE :: SHASize -> String
|
|
|
|
shaNameE size = shaName size ++ "E"
|
|
|
|
|
2012-07-04 17:04:01 +00:00
|
|
|
shaN :: SHASize -> FilePath -> Integer -> Annex String
|
|
|
|
shaN shasize file filesize = do
|
2011-07-19 18:07:23 +00:00
|
|
|
showAction "checksum"
|
2012-07-04 17:04:01 +00:00
|
|
|
case shaCommand shasize filesize of
|
2012-07-04 13:08:20 +00:00
|
|
|
Left sha -> liftIO $ sha <$> L.readFile file
|
2012-07-18 19:30:26 +00:00
|
|
|
Right command -> liftIO $ parse command . lines <$>
|
2012-07-19 04:57:40 +00:00
|
|
|
readProcess command (toCommand [File file])
|
2011-03-01 20:50:53 +00:00
|
|
|
where
|
2012-07-18 19:30:26 +00:00
|
|
|
parse command [] = bad command
|
|
|
|
parse command (l:_)
|
|
|
|
| null sha = bad command
|
|
|
|
| otherwise = sha
|
|
|
|
where
|
|
|
|
sha = fst $ separate (== ' ') l
|
|
|
|
bad command = error $ command ++ " parse error"
|
2011-03-01 20:50:53 +00:00
|
|
|
|
2012-07-04 17:04:01 +00:00
|
|
|
shaCommand :: SHASize -> Integer -> Either (L.ByteString -> String) String
|
|
|
|
shaCommand shasize filesize
|
|
|
|
| shasize == 1 = use SysConfig.sha1 sha1
|
|
|
|
| shasize == 256 = use SysConfig.sha256 sha256
|
|
|
|
| shasize == 224 = use SysConfig.sha224 sha224
|
|
|
|
| shasize == 384 = use SysConfig.sha384 sha384
|
|
|
|
| shasize == 512 = use SysConfig.sha512 sha512
|
|
|
|
| otherwise = error $ "bad sha size " ++ show shasize
|
|
|
|
where
|
|
|
|
use Nothing sha = Left $ showDigest . sha
|
|
|
|
use (Just c) sha
|
|
|
|
-- use builtin, but slower sha for small files
|
|
|
|
-- benchmarking indicates it's faster up to
|
|
|
|
-- and slightly beyond 50 kb files
|
|
|
|
| filesize < 51200 = use Nothing sha
|
|
|
|
| otherwise = Right c
|
|
|
|
|
2011-03-16 01:34:13 +00:00
|
|
|
{- A key is a checksum of its contents. -}
|
2012-06-05 23:51:03 +00:00
|
|
|
keyValue :: SHASize -> KeySource -> Annex (Maybe Key)
|
2012-07-04 17:04:01 +00:00
|
|
|
keyValue shasize source = do
|
2012-06-05 23:51:03 +00:00
|
|
|
let file = contentLocation source
|
2011-03-16 01:34:13 +00:00
|
|
|
stat <- liftIO $ getFileStatus file
|
2012-07-04 17:04:01 +00:00
|
|
|
let filesize = fromIntegral $ fileSize stat
|
|
|
|
s <- shaN shasize file filesize
|
2011-05-16 15:46:34 +00:00
|
|
|
return $ Just $ stubKey
|
|
|
|
{ keyName = s
|
2012-07-04 17:04:01 +00:00
|
|
|
, keyBackendName = shaName shasize
|
|
|
|
, keySize = Just filesize
|
2011-05-16 15:46:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{- Extension preserving keys. -}
|
2012-06-05 23:51:03 +00:00
|
|
|
keyValueE :: SHASize -> KeySource -> Annex (Maybe Key)
|
|
|
|
keyValueE size source = keyValue size source >>= maybe (return Nothing) addE
|
2011-05-16 15:46:34 +00:00
|
|
|
where
|
|
|
|
addE k = return $ Just $ k
|
2012-07-05 22:24:02 +00:00
|
|
|
{ keyName = keyName k ++ selectExtension (keyFilename source)
|
2011-05-16 15:46:34 +00:00
|
|
|
, keyBackendName = shaNameE size
|
|
|
|
}
|
2012-07-05 22:24:02 +00:00
|
|
|
|
|
|
|
selectExtension :: FilePath -> String
|
2012-07-06 23:22:56 +00:00
|
|
|
selectExtension f
|
|
|
|
| null es = ""
|
|
|
|
| otherwise = join "." ("":es)
|
2012-07-05 22:24:02 +00:00
|
|
|
where
|
2012-07-06 23:22:56 +00:00
|
|
|
es = filter (not . null) $ reverse $
|
|
|
|
take 2 $ takeWhile shortenough $
|
|
|
|
reverse $ split "." $ takeExtensions f
|
2012-07-05 22:24:02 +00:00
|
|
|
shortenough e
|
|
|
|
| '\n' `elem` e = False -- newline in extension?!
|
|
|
|
| otherwise = length e <= 4 -- long enough for "jpeg"
|
2011-03-01 20:50:53 +00:00
|
|
|
|
2011-08-06 16:50:20 +00:00
|
|
|
{- A key's checksum is checked during fsck. -}
|
2012-01-19 19:24:05 +00:00
|
|
|
checkKeyChecksum :: SHASize -> Key -> FilePath -> Annex Bool
|
|
|
|
checkKeyChecksum size key file = do
|
2011-03-22 21:41:06 +00:00
|
|
|
fast <- Annex.getState Annex.fast
|
2012-07-04 17:04:01 +00:00
|
|
|
mstat <- liftIO $ catchMaybeIO $ getFileStatus file
|
|
|
|
case (mstat, fast) of
|
|
|
|
(Just stat, False) -> do
|
|
|
|
let filesize = fromIntegral $ fileSize stat
|
|
|
|
check <$> shaN size file filesize
|
|
|
|
_ -> return True
|
2011-10-11 18:43:45 +00:00
|
|
|
where
|
|
|
|
check s
|
2012-08-24 16:16:17 +00:00
|
|
|
| s == dropExtensions (keyName key) = True
|
2012-01-19 19:24:05 +00:00
|
|
|
| otherwise = False
|