87e2ae2014
=== Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
102 lines
3.4 KiB
Haskell
102 lines
3.4 KiB
Haskell
{- git-annex VURL backend -- like URL, but with hash-based verification
|
|
- of transfers between git-annex repositories.
|
|
-
|
|
- Copyright 2024 Joey Hess <id@joeyh.name>
|
|
-
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
|
-}
|
|
|
|
module Backend.VURL (
|
|
backends,
|
|
) where
|
|
|
|
import Annex.Common
|
|
import Types.Key
|
|
import Types.Backend
|
|
import Logs.EquivilantKeys
|
|
import Backend.Variety
|
|
import Backend.Hash (descChecksum)
|
|
import Utility.Hash
|
|
import Backend.VURL.Utilities
|
|
|
|
backends :: [Backend]
|
|
backends = [backendVURL]
|
|
|
|
backendVURL :: Backend
|
|
backendVURL = Backend
|
|
{ backendVariety = VURLKey
|
|
, genKey = Nothing
|
|
, verifyKeyContent = Just $ \k f -> do
|
|
equivkeys k >>= \case
|
|
-- Normally there will always be an key
|
|
-- recorded when a VURL's content is available,
|
|
-- because downloading the content from the web in
|
|
-- the first place records one.
|
|
[] -> return False
|
|
eks -> do
|
|
let check ek = getbackend ek >>= \case
|
|
Nothing -> pure False
|
|
Just b -> case verifyKeyContent b of
|
|
Just verify -> verify ek f
|
|
Nothing -> pure False
|
|
anyM check eks
|
|
, verifyKeyContentIncrementally = Just $ \k -> do
|
|
-- Run incremental verifiers for each equivalent key together,
|
|
-- and see if any of them succeed.
|
|
eks <- equivkeys k
|
|
let get = \ek -> getbackend ek >>= \case
|
|
Nothing -> pure Nothing
|
|
Just b -> case verifyKeyContentIncrementally b of
|
|
Nothing -> pure Nothing
|
|
Just va -> Just <$> va ek
|
|
l <- catMaybes <$> forM eks get
|
|
return $ IncrementalVerifier
|
|
{ updateIncrementalVerifier = \s ->
|
|
forM_ l $ flip updateIncrementalVerifier s
|
|
-- If there are no equivalent keys recorded somehow,
|
|
-- or if none of them support incremental verification,
|
|
-- this will return Nothing, which indicates that
|
|
-- incremental verification was not able to be
|
|
-- performed.
|
|
, finalizeIncrementalVerifier = do
|
|
r <- forM l finalizeIncrementalVerifier
|
|
return $ case catMaybes r of
|
|
[] -> Nothing
|
|
r' -> Just (or r')
|
|
, unableIncrementalVerifier =
|
|
forM_ l unableIncrementalVerifier
|
|
, positionIncrementalVerifier =
|
|
getM positionIncrementalVerifier l
|
|
, descIncrementalVerifier = descChecksum
|
|
}
|
|
, canUpgradeKey = Nothing
|
|
, fastMigrate = Just migrateFromVURLToURL
|
|
-- Even if a hash is recorded on initial download from the web and
|
|
-- is used to verify every subsequent transfer including other
|
|
-- downloads from the web, in a split-brain situation there
|
|
-- can be more than one hash and different versions of the content.
|
|
-- So the content is not stable.
|
|
, isStableKey = const False
|
|
-- Not all keys using this backend are necessarily
|
|
-- cryptographically secure.
|
|
, isCryptographicallySecure = False
|
|
-- A key is secure when all recorded equivalent keys are.
|
|
-- If there are none recorded yet, it's secure because when
|
|
-- downloaded, an equivalent key that is cryptographically secure
|
|
-- will be constructed then.
|
|
, isCryptographicallySecureKey = \k ->
|
|
equivkeys k >>= \case
|
|
[] -> return True
|
|
l -> do
|
|
let check ek = getbackend ek >>= \case
|
|
Nothing -> pure False
|
|
Just b -> isCryptographicallySecureKey b ek
|
|
allM check l
|
|
}
|
|
where
|
|
equivkeys k = filter allowedequiv <$> getEquivilantKeys k
|
|
-- Don't allow using VURL keys as equivalent keys, because that
|
|
-- could let a crafted git-annex branch cause an infinite loop.
|
|
allowedequiv ek = fromKey keyVariety ek /= VURLKey
|
|
varietymap = makeVarietyMap regularBackendList
|
|
getbackend ek = maybeLookupBackendVarietyMap (fromKey keyVariety ek) varietymap
|