2011-03-30 18:56:31 +00:00
|
|
|
|
{- A "remote" that is just a filesystem directory.
|
2011-03-30 17:18:46 +00:00
|
|
|
|
-
|
2012-03-03 22:05:55 +00:00
|
|
|
|
- Copyright 2011-2012 Joey Hess <joey@kitenet.net>
|
2011-03-30 17:18:46 +00:00
|
|
|
|
-
|
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
|
-}
|
|
|
|
|
|
2013-05-11 20:03:00 +00:00
|
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
|
2011-03-30 17:18:46 +00:00
|
|
|
|
module Remote.Directory (remote) where
|
|
|
|
|
|
2012-06-20 17:13:40 +00:00
|
|
|
|
import qualified Data.ByteString.Lazy as L
|
|
|
|
|
import qualified Data.ByteString as S
|
2011-03-30 17:18:46 +00:00
|
|
|
|
import qualified Data.Map as M
|
2012-04-20 20:24:44 +00:00
|
|
|
|
import qualified Control.Exception as E
|
2012-11-19 02:49:07 +00:00
|
|
|
|
import Data.Int
|
2011-03-30 17:18:46 +00:00
|
|
|
|
|
2011-10-05 20:02:51 +00:00
|
|
|
|
import Common.Annex
|
2011-06-02 01:56:04 +00:00
|
|
|
|
import Types.Remote
|
2011-06-30 17:16:57 +00:00
|
|
|
|
import qualified Git
|
2013-03-13 20:16:01 +00:00
|
|
|
|
import Config.Cost
|
2011-03-30 18:32:08 +00:00
|
|
|
|
import Config
|
2011-09-23 22:13:24 +00:00
|
|
|
|
import Utility.FileMode
|
2011-08-17 00:49:54 +00:00
|
|
|
|
import Remote.Helper.Special
|
|
|
|
|
import Remote.Helper.Encryptable
|
2012-11-16 21:58:08 +00:00
|
|
|
|
import Remote.Helper.Chunked
|
2011-04-16 22:22:52 +00:00
|
|
|
|
import Crypto
|
2012-04-20 20:24:44 +00:00
|
|
|
|
import Annex.Content
|
2013-03-28 21:03:04 +00:00
|
|
|
|
import Utility.Metered
|
2011-03-30 17:18:46 +00:00
|
|
|
|
|
2011-12-31 08:11:39 +00:00
|
|
|
|
remote :: RemoteType
|
2011-03-30 17:18:46 +00:00
|
|
|
|
remote = RemoteType {
|
|
|
|
|
typename = "directory",
|
2011-03-30 18:00:54 +00:00
|
|
|
|
enumerate = findSpecialRemotes "directory",
|
2011-03-30 17:18:46 +00:00
|
|
|
|
generate = gen,
|
2011-03-30 18:00:54 +00:00
|
|
|
|
setup = directorySetup
|
2011-03-30 17:18:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-01 17:52:47 +00:00
|
|
|
|
gen :: Git.Repo -> UUID -> RemoteConfig -> RemoteGitConfig -> Annex Remote
|
|
|
|
|
gen r u c gc = do
|
|
|
|
|
cst <- remoteCost gc cheapRemoteCost
|
2012-03-03 22:05:55 +00:00
|
|
|
|
let chunksize = chunkSize c
|
2011-04-17 04:40:23 +00:00
|
|
|
|
return $ encryptableRemote c
|
2013-09-01 18:12:00 +00:00
|
|
|
|
(storeEncrypted dir (getGpgEncParams (c,gc)) chunksize)
|
2012-03-03 22:05:55 +00:00
|
|
|
|
(retrieveEncrypted dir chunksize)
|
2011-04-17 01:41:14 +00:00
|
|
|
|
Remote {
|
|
|
|
|
uuid = u,
|
|
|
|
|
cost = cst,
|
|
|
|
|
name = Git.repoDescribe r,
|
2012-12-13 04:45:27 +00:00
|
|
|
|
storeKey = store dir chunksize,
|
2012-03-03 22:05:55 +00:00
|
|
|
|
retrieveKeyFile = retrieve dir chunksize,
|
|
|
|
|
retrieveKeyFileCheap = retrieveCheap dir chunksize,
|
2012-11-19 17:18:23 +00:00
|
|
|
|
removeKey = remove dir,
|
2012-03-03 22:05:55 +00:00
|
|
|
|
hasKey = checkPresent dir chunksize,
|
2011-04-17 01:41:14 +00:00
|
|
|
|
hasKeyCheap = True,
|
2012-02-14 07:49:48 +00:00
|
|
|
|
whereisKey = Nothing,
|
2012-11-30 04:55:59 +00:00
|
|
|
|
config = M.empty,
|
2011-12-31 07:27:37 +00:00
|
|
|
|
repo = r,
|
2013-01-01 17:52:47 +00:00
|
|
|
|
gitconfig = gc,
|
2012-08-26 18:26:43 +00:00
|
|
|
|
localpath = Just dir,
|
2012-08-26 19:39:02 +00:00
|
|
|
|
readonly = False,
|
2013-03-15 23:16:13 +00:00
|
|
|
|
globallyAvailable = False,
|
2011-12-31 07:27:37 +00:00
|
|
|
|
remotetype = remote
|
2011-04-17 01:41:14 +00:00
|
|
|
|
}
|
2013-01-01 17:52:47 +00:00
|
|
|
|
where
|
|
|
|
|
dir = fromMaybe (error "missing directory") $ remoteAnnexDirectory gc
|
2012-03-03 22:05:55 +00:00
|
|
|
|
|
2011-04-15 19:09:36 +00:00
|
|
|
|
directorySetup :: UUID -> RemoteConfig -> Annex RemoteConfig
|
2011-03-30 18:00:54 +00:00
|
|
|
|
directorySetup u c = do
|
2011-03-30 17:18:46 +00:00
|
|
|
|
-- verify configuration is sane
|
2011-07-15 16:47:14 +00:00
|
|
|
|
let dir = fromMaybe (error "Specify directory=") $
|
2011-05-15 06:49:43 +00:00
|
|
|
|
M.lookup "directory" c
|
2013-05-06 21:15:36 +00:00
|
|
|
|
absdir <- liftIO $ absPath dir
|
|
|
|
|
liftIO $ unlessM (doesDirectoryExist absdir) $
|
|
|
|
|
error $ "Directory does not exist: " ++ absdir
|
2011-04-16 20:29:28 +00:00
|
|
|
|
c' <- encryptionSetup c
|
2011-03-30 17:18:46 +00:00
|
|
|
|
|
2011-03-30 18:32:08 +00:00
|
|
|
|
-- The directory is stored in git config, not in this remote's
|
|
|
|
|
-- persistant state, so it can vary between hosts.
|
2013-05-06 21:15:36 +00:00
|
|
|
|
gitConfigSpecialRemote u c' "directory" absdir
|
2011-04-16 20:29:28 +00:00
|
|
|
|
return $ M.delete "directory" c'
|
2011-03-30 17:18:46 +00:00
|
|
|
|
|
2012-11-19 17:18:23 +00:00
|
|
|
|
{- Locations to try to access a given Key in the Directory.
|
|
|
|
|
- We try more than since we used to write to different hash directories. -}
|
2011-11-22 22:20:55 +00:00
|
|
|
|
locations :: FilePath -> Key -> [FilePath]
|
2011-12-02 18:56:48 +00:00
|
|
|
|
locations d k = map (d </>) (keyPaths k)
|
2011-03-30 17:18:46 +00:00
|
|
|
|
|
2012-11-19 17:18:23 +00:00
|
|
|
|
{- Directory where the file(s) for a key are stored. -}
|
|
|
|
|
storeDir :: FilePath -> Key -> FilePath
|
|
|
|
|
storeDir d k = addTrailingPathSeparator $ d </> hashDirLower k </> keyFile k
|
|
|
|
|
|
|
|
|
|
{- Where we store temporary data for a key as it's being uploaded. -}
|
|
|
|
|
tmpDir :: FilePath -> Key -> FilePath
|
|
|
|
|
tmpDir d k = addTrailingPathSeparator $ d </> "tmp" </> keyFile k
|
|
|
|
|
|
2012-03-03 22:05:55 +00:00
|
|
|
|
withCheckedFiles :: (FilePath -> IO Bool) -> ChunkSize -> FilePath -> Key -> ([FilePath] -> IO Bool) -> IO Bool
|
|
|
|
|
withCheckedFiles _ _ [] _ _ = return False
|
|
|
|
|
withCheckedFiles check Nothing d k a = go $ locations d k
|
2012-11-11 04:51:07 +00:00
|
|
|
|
where
|
|
|
|
|
go [] = return False
|
|
|
|
|
go (f:fs) = ifM (check f) ( a [f] , go fs )
|
2012-03-03 22:05:55 +00:00
|
|
|
|
withCheckedFiles check (Just _) d k a = go $ locations d k
|
2012-11-11 04:51:07 +00:00
|
|
|
|
where
|
|
|
|
|
go [] = return False
|
|
|
|
|
go (f:fs) = do
|
2012-11-16 21:58:08 +00:00
|
|
|
|
let chunkcount = f ++ chunkCount
|
2012-11-11 04:51:07 +00:00
|
|
|
|
ifM (check chunkcount)
|
|
|
|
|
( do
|
2012-11-17 03:16:18 +00:00
|
|
|
|
chunks <- listChunks f <$> readFile chunkcount
|
2012-11-11 04:51:07 +00:00
|
|
|
|
ifM (all id <$> mapM check chunks)
|
|
|
|
|
( a chunks , return False )
|
|
|
|
|
, go fs
|
|
|
|
|
)
|
2011-11-22 22:20:55 +00:00
|
|
|
|
|
2012-03-03 22:05:55 +00:00
|
|
|
|
withStoredFiles :: ChunkSize -> FilePath -> Key -> ([FilePath] -> IO Bool) -> IO Bool
|
|
|
|
|
withStoredFiles = withCheckedFiles doesFileExist
|
2011-11-22 22:20:55 +00:00
|
|
|
|
|
2012-09-21 18:50:14 +00:00
|
|
|
|
store :: FilePath -> ChunkSize -> Key -> AssociatedFile -> MeterUpdate -> Annex Bool
|
2013-01-09 22:42:29 +00:00
|
|
|
|
store d chunksize k _f p = sendAnnex k (void $ remove d k) $ \src ->
|
2012-09-21 18:54:24 +00:00
|
|
|
|
metered (Just p) k $ \meterupdate ->
|
2013-07-20 20:30:49 +00:00
|
|
|
|
storeHelper d chunksize k k $ \dests ->
|
2012-03-03 22:05:55 +00:00
|
|
|
|
case chunksize of
|
|
|
|
|
Nothing -> do
|
|
|
|
|
let dest = Prelude.head dests
|
2012-03-04 07:17:03 +00:00
|
|
|
|
meteredWriteFile meterupdate dest
|
|
|
|
|
=<< L.readFile src
|
2012-03-03 22:05:55 +00:00
|
|
|
|
return [dest]
|
2012-03-04 07:17:03 +00:00
|
|
|
|
Just _ ->
|
|
|
|
|
storeSplit meterupdate chunksize dests
|
|
|
|
|
=<< L.readFile src
|
2012-03-03 22:05:55 +00:00
|
|
|
|
|
2013-09-01 18:12:00 +00:00
|
|
|
|
storeEncrypted :: FilePath -> [CommandParam] -> ChunkSize -> (Cipher, Key) -> Key -> MeterUpdate -> Annex Bool
|
2013-03-11 01:33:13 +00:00
|
|
|
|
storeEncrypted d gpgOpts chunksize (cipher, enck) k p = sendAnnex k (void $ remove d enck) $ \src ->
|
2012-09-21 18:54:24 +00:00
|
|
|
|
metered (Just p) k $ \meterupdate ->
|
2013-07-20 20:30:49 +00:00
|
|
|
|
storeHelper d chunksize enck k $ \dests ->
|
2013-03-11 01:33:13 +00:00
|
|
|
|
encrypt gpgOpts cipher (feedFile src) $ readBytes $ \b ->
|
2012-03-04 07:17:03 +00:00
|
|
|
|
case chunksize of
|
|
|
|
|
Nothing -> do
|
|
|
|
|
let dest = Prelude.head dests
|
2012-11-18 19:27:44 +00:00
|
|
|
|
meteredWriteFile meterupdate dest b
|
2012-03-04 07:17:03 +00:00
|
|
|
|
return [dest]
|
2012-11-18 19:27:44 +00:00
|
|
|
|
Just _ -> storeSplit meterupdate chunksize dests b
|
2012-03-04 07:17:03 +00:00
|
|
|
|
|
|
|
|
|
{- Splits a ByteString into chunks and writes to dests, obeying configured
|
|
|
|
|
- chunk size (not to be confused with the L.ByteString chunk size).
|
2012-03-03 22:05:55 +00:00
|
|
|
|
- Note: Must always write at least one file, even for empty ByteString. -}
|
2012-03-04 07:17:03 +00:00
|
|
|
|
storeSplit :: MeterUpdate -> ChunkSize -> [FilePath] -> L.ByteString -> IO [FilePath]
|
|
|
|
|
storeSplit _ Nothing _ _ = error "bad storeSplit call"
|
|
|
|
|
storeSplit _ _ [] _ = error "bad storeSplit call"
|
|
|
|
|
storeSplit meterupdate (Just chunksize) alldests@(firstdest:_) b
|
|
|
|
|
| L.null b = do
|
2012-03-03 22:05:55 +00:00
|
|
|
|
-- must always write at least one file, even for empty
|
2012-03-04 07:17:03 +00:00
|
|
|
|
L.writeFile firstdest b
|
2012-03-03 22:05:55 +00:00
|
|
|
|
return [firstdest]
|
2012-03-04 07:17:03 +00:00
|
|
|
|
| otherwise = storeSplit' meterupdate chunksize alldests (L.toChunks b) []
|
|
|
|
|
storeSplit' :: MeterUpdate -> Int64 -> [FilePath] -> [S.ByteString] -> [FilePath] -> IO [FilePath]
|
|
|
|
|
storeSplit' _ _ [] _ _ = error "ran out of dests"
|
|
|
|
|
storeSplit' _ _ _ [] c = return $ reverse c
|
|
|
|
|
storeSplit' meterupdate chunksize (d:dests) bs c = do
|
2013-03-28 21:03:04 +00:00
|
|
|
|
bs' <- E.bracket (openFile d WriteMode) hClose $
|
|
|
|
|
feed zeroBytesProcessed chunksize bs
|
2012-03-04 07:17:03 +00:00
|
|
|
|
storeSplit' meterupdate chunksize dests bs' (d:c)
|
2012-11-11 04:51:07 +00:00
|
|
|
|
where
|
2013-03-28 21:03:04 +00:00
|
|
|
|
feed _ _ [] _ = return []
|
|
|
|
|
feed bytes sz (l:ls) h = do
|
|
|
|
|
let len = S.length l
|
|
|
|
|
let s = fromIntegral len
|
2012-11-19 17:30:58 +00:00
|
|
|
|
if s <= sz || sz == chunksize
|
2012-11-11 04:51:07 +00:00
|
|
|
|
then do
|
|
|
|
|
S.hPut h l
|
2013-03-28 21:03:04 +00:00
|
|
|
|
let bytes' = addBytesProcessed bytes len
|
|
|
|
|
meterupdate bytes'
|
|
|
|
|
feed bytes' (sz - s) ls h
|
2012-11-11 04:51:07 +00:00
|
|
|
|
else return (l:ls)
|
2012-03-04 07:17:03 +00:00
|
|
|
|
|
2013-07-20 20:30:49 +00:00
|
|
|
|
storeHelper :: FilePath -> ChunkSize -> Key -> Key -> ([FilePath] -> IO [FilePath]) -> Annex Bool
|
|
|
|
|
storeHelper d chunksize key origkey storer = check <&&> go
|
2012-11-11 04:51:07 +00:00
|
|
|
|
where
|
2012-11-19 17:18:23 +00:00
|
|
|
|
tmpdir = tmpDir d key
|
|
|
|
|
destdir = storeDir d key
|
2013-07-20 20:30:49 +00:00
|
|
|
|
{- An encrypted key does not have a known size,
|
|
|
|
|
- so check that the size of the original key is available as free
|
|
|
|
|
- space. -}
|
2012-11-19 17:18:23 +00:00
|
|
|
|
check = do
|
|
|
|
|
liftIO $ createDirectoryIfMissing True tmpdir
|
2013-07-20 20:30:49 +00:00
|
|
|
|
checkDiskSpace (Just tmpdir) origkey 0
|
2012-11-19 17:18:23 +00:00
|
|
|
|
go = liftIO $ catchBoolIO $
|
|
|
|
|
storeChunks key tmpdir destdir chunksize storer recorder finalizer
|
|
|
|
|
finalizer tmp dest = do
|
|
|
|
|
void $ tryIO $ allowWrite dest -- may already exist
|
|
|
|
|
void $ tryIO $ removeDirectoryRecursive dest -- or not exist
|
|
|
|
|
createDirectoryIfMissing True (parentDir dest)
|
|
|
|
|
renameDirectory tmp dest
|
2013-02-14 18:10:36 +00:00
|
|
|
|
-- may fail on some filesystems
|
|
|
|
|
void $ tryIO $ do
|
|
|
|
|
mapM_ preventWrite =<< dirContents dest
|
|
|
|
|
preventWrite dest
|
2012-11-16 21:58:08 +00:00
|
|
|
|
recorder f s = do
|
|
|
|
|
void $ tryIO $ allowWrite f
|
|
|
|
|
writeFile f s
|
2013-02-14 18:10:36 +00:00
|
|
|
|
void $ tryIO $ preventWrite f
|
2012-03-03 22:05:55 +00:00
|
|
|
|
|
2013-04-11 21:15:45 +00:00
|
|
|
|
retrieve :: FilePath -> ChunkSize -> Key -> AssociatedFile -> FilePath -> MeterUpdate -> Annex Bool
|
|
|
|
|
retrieve d chunksize k _ f p = metered (Just p) k $ \meterupdate ->
|
2012-03-04 07:25:41 +00:00
|
|
|
|
liftIO $ withStoredFiles chunksize d k $ \files ->
|
|
|
|
|
catchBoolIO $ do
|
2012-11-18 22:27:53 +00:00
|
|
|
|
meteredWriteFileChunks meterupdate f files $ L.readFile
|
2012-03-03 22:05:55 +00:00
|
|
|
|
return True
|
2011-04-17 01:41:14 +00:00
|
|
|
|
|
2013-04-11 21:15:45 +00:00
|
|
|
|
retrieveEncrypted :: FilePath -> ChunkSize -> (Cipher, Key) -> Key -> FilePath -> MeterUpdate -> Annex Bool
|
|
|
|
|
retrieveEncrypted d chunksize (cipher, enck) k f p = metered (Just p) k $ \meterupdate ->
|
2012-03-04 07:36:39 +00:00
|
|
|
|
liftIO $ withStoredFiles chunksize d enck $ \files ->
|
|
|
|
|
catchBoolIO $ do
|
2012-11-18 19:27:44 +00:00
|
|
|
|
decrypt cipher (feeder files) $
|
|
|
|
|
readBytes $ meteredWriteFile meterupdate f
|
2012-03-04 07:36:39 +00:00
|
|
|
|
return True
|
2012-11-18 19:27:44 +00:00
|
|
|
|
where
|
|
|
|
|
feeder files h = forM_ files $ \file -> L.hPut h =<< L.readFile file
|
2011-03-30 17:18:46 +00:00
|
|
|
|
|
2012-03-03 22:05:55 +00:00
|
|
|
|
retrieveCheap :: FilePath -> ChunkSize -> Key -> FilePath -> Annex Bool
|
|
|
|
|
retrieveCheap _ (Just _) _ _ = return False -- no cheap retrieval for chunks
|
2013-08-02 16:27:32 +00:00
|
|
|
|
#ifndef mingw32_HOST_OS
|
2012-03-03 22:05:55 +00:00
|
|
|
|
retrieveCheap d _ k f = liftIO $ withStoredFiles Nothing d k go
|
2012-11-11 04:51:07 +00:00
|
|
|
|
where
|
|
|
|
|
go [file] = catchBoolIO $ createSymbolicLink file f >> return True
|
|
|
|
|
go _files = return False
|
2013-05-11 20:03:00 +00:00
|
|
|
|
#else
|
|
|
|
|
retrieveCheap _ _ _ _ = return False
|
|
|
|
|
#endif
|
2012-03-03 22:05:55 +00:00
|
|
|
|
|
2012-11-19 17:18:23 +00:00
|
|
|
|
remove :: FilePath -> Key -> Annex Bool
|
2013-02-14 18:10:36 +00:00
|
|
|
|
remove d k = liftIO $ do
|
|
|
|
|
void $ tryIO $ allowWrite dir
|
2013-08-04 17:39:31 +00:00
|
|
|
|
#ifdef mingw32_HOST_OS
|
|
|
|
|
{- Windows needs the files inside the directory to be writable
|
|
|
|
|
- before it can delete them. -}
|
|
|
|
|
void $ tryIO $ mapM_ allowWrite =<< dirContents dir
|
|
|
|
|
#endif
|
2013-02-14 18:10:36 +00:00
|
|
|
|
catchBoolIO $ do
|
|
|
|
|
removeDirectoryRecursive dir
|
|
|
|
|
return True
|
2012-11-11 04:51:07 +00:00
|
|
|
|
where
|
2012-11-19 17:18:23 +00:00
|
|
|
|
dir = storeDir d k
|
2011-03-30 17:18:46 +00:00
|
|
|
|
|
2012-03-03 22:05:55 +00:00
|
|
|
|
checkPresent :: FilePath -> ChunkSize -> Key -> Annex (Either String Bool)
|
|
|
|
|
checkPresent d chunksize k = liftIO $ catchMsgIO $ withStoredFiles chunksize d k $
|
|
|
|
|
const $ return True -- withStoredFiles checked that it exists
|