2011-04-28 00:06:07 +00:00
|
|
|
|
{- A remote that is only accessible by rsync.
|
|
|
|
|
-
|
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
|
-
|
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
|
-}
|
|
|
|
|
|
|
|
|
|
module Remote.Rsync (remote) where
|
|
|
|
|
|
|
|
|
|
import qualified Data.ByteString.Lazy.Char8 as L
|
|
|
|
|
import Control.Exception.Extensible (IOException)
|
|
|
|
|
import qualified Data.Map as M
|
2011-05-17 07:10:13 +00:00
|
|
|
|
import Control.Monad.State (liftIO)
|
2011-04-28 00:06:07 +00:00
|
|
|
|
import System.FilePath
|
|
|
|
|
import System.Directory
|
|
|
|
|
import System.Posix.Files
|
|
|
|
|
import System.Posix.Process
|
2011-07-15 16:47:14 +00:00
|
|
|
|
import Data.Maybe
|
2011-04-28 00:06:07 +00:00
|
|
|
|
|
|
|
|
|
import Types
|
2011-06-02 01:56:04 +00:00
|
|
|
|
import Types.Remote
|
2011-06-30 17:16:57 +00:00
|
|
|
|
import qualified Git
|
2011-04-28 00:06:07 +00:00
|
|
|
|
import qualified Annex
|
|
|
|
|
import UUID
|
|
|
|
|
import Locations
|
|
|
|
|
import Config
|
|
|
|
|
import Content
|
|
|
|
|
import Utility
|
2011-08-22 20:14:12 +00:00
|
|
|
|
import Utility.Conditional
|
2011-08-17 00:49:54 +00:00
|
|
|
|
import Remote.Helper.Special
|
|
|
|
|
import Remote.Helper.Encryptable
|
2011-04-28 00:06:07 +00:00
|
|
|
|
import Crypto
|
|
|
|
|
import Messages
|
2011-07-06 00:24:10 +00:00
|
|
|
|
import Utility.RsyncFile
|
2011-08-22 20:14:12 +00:00
|
|
|
|
import Utility.SafeCommand
|
|
|
|
|
import Utility.Path
|
2011-04-28 00:06:07 +00:00
|
|
|
|
|
|
|
|
|
type RsyncUrl = String
|
|
|
|
|
|
|
|
|
|
data RsyncOpts = RsyncOpts {
|
|
|
|
|
rsyncUrl :: RsyncUrl,
|
|
|
|
|
rsyncOptions :: [CommandParam]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
remote :: RemoteType Annex
|
|
|
|
|
remote = RemoteType {
|
|
|
|
|
typename = "rsync",
|
|
|
|
|
enumerate = findSpecialRemotes "rsyncurl",
|
|
|
|
|
generate = gen,
|
|
|
|
|
setup = rsyncSetup
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gen :: Git.Repo -> UUID -> Maybe RemoteConfig -> Annex (Remote Annex)
|
|
|
|
|
gen r u c = do
|
2011-04-28 00:30:43 +00:00
|
|
|
|
o <- genRsyncOpts r
|
2011-04-28 00:06:07 +00:00
|
|
|
|
cst <- remoteCost r expensiveRemoteCost
|
|
|
|
|
return $ encryptableRemote c
|
|
|
|
|
(storeEncrypted o)
|
|
|
|
|
(retrieveEncrypted o)
|
|
|
|
|
Remote {
|
|
|
|
|
uuid = u,
|
|
|
|
|
cost = cst,
|
|
|
|
|
name = Git.repoDescribe r,
|
|
|
|
|
storeKey = store o,
|
|
|
|
|
retrieveKeyFile = retrieve o,
|
|
|
|
|
removeKey = remove o,
|
|
|
|
|
hasKey = checkPresent r o,
|
2011-04-28 18:39:51 +00:00
|
|
|
|
hasKeyCheap = False,
|
2011-04-28 00:06:07 +00:00
|
|
|
|
config = Nothing
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-28 00:30:43 +00:00
|
|
|
|
genRsyncOpts :: Git.Repo -> Annex RsyncOpts
|
|
|
|
|
genRsyncOpts r = do
|
|
|
|
|
url <- getConfig r "rsyncurl" (error "missing rsyncurl")
|
|
|
|
|
opts <- getConfig r "rsync-options" ""
|
|
|
|
|
return $ RsyncOpts url $ map Param $ filter safe $ words opts
|
|
|
|
|
where
|
|
|
|
|
safe o
|
|
|
|
|
-- Don't allow user to pass --delete to rsync;
|
|
|
|
|
-- that could cause it to delete other keys
|
|
|
|
|
-- in the same hash bucket as a key it sends.
|
|
|
|
|
| o == "--delete" = False
|
|
|
|
|
| o == "--delete-excluded" = False
|
|
|
|
|
| otherwise = True
|
|
|
|
|
|
2011-04-28 00:06:07 +00:00
|
|
|
|
rsyncSetup :: UUID -> RemoteConfig -> Annex RemoteConfig
|
|
|
|
|
rsyncSetup u c = do
|
|
|
|
|
-- verify configuration is sane
|
2011-07-15 16:47:14 +00:00
|
|
|
|
let url = fromMaybe (error "Specify rsyncurl=") $
|
2011-05-15 06:49:43 +00:00
|
|
|
|
M.lookup "rsyncurl" c
|
2011-04-28 00:06:07 +00:00
|
|
|
|
c' <- encryptionSetup c
|
|
|
|
|
|
|
|
|
|
-- The rsyncurl is stored in git config, not only in this remote's
|
|
|
|
|
-- persistant state, so it can vary between hosts.
|
|
|
|
|
gitConfigSpecialRemote u c' "rsyncurl" url
|
|
|
|
|
return c'
|
|
|
|
|
|
|
|
|
|
rsyncKey :: RsyncOpts -> Key -> String
|
2011-07-29 13:28:21 +00:00
|
|
|
|
rsyncKey o k = rsyncUrl o </> hashDirMixed k </> shellEscape (f </> f)
|
2011-04-28 00:06:07 +00:00
|
|
|
|
where
|
|
|
|
|
f = keyFile k
|
|
|
|
|
|
2011-07-29 13:28:21 +00:00
|
|
|
|
rsyncKeyDir :: RsyncOpts -> Key -> String
|
|
|
|
|
rsyncKeyDir o k = rsyncUrl o </> hashDirMixed k </> shellEscape (keyFile k)
|
|
|
|
|
|
2011-04-28 00:06:07 +00:00
|
|
|
|
store :: RsyncOpts -> Key -> Annex Bool
|
|
|
|
|
store o k = do
|
|
|
|
|
g <- Annex.gitRepo
|
|
|
|
|
rsyncSend o k (gitAnnexLocation g k)
|
|
|
|
|
|
|
|
|
|
storeEncrypted :: RsyncOpts -> (Cipher, Key) -> Key -> Annex Bool
|
|
|
|
|
storeEncrypted o (cipher, enck) k = withTmp enck $ \tmp -> do
|
|
|
|
|
g <- Annex.gitRepo
|
|
|
|
|
let f = gitAnnexLocation g k
|
|
|
|
|
liftIO $ withEncryptedContent cipher (L.readFile f) $ \s -> L.writeFile tmp s
|
|
|
|
|
rsyncSend o enck tmp
|
|
|
|
|
|
|
|
|
|
retrieve :: RsyncOpts -> Key -> FilePath -> Annex Bool
|
|
|
|
|
retrieve o k f = rsyncRemote o
|
|
|
|
|
-- use inplace when retrieving to support resuming
|
|
|
|
|
[ Param "--inplace"
|
|
|
|
|
, Param $ rsyncKey o k
|
|
|
|
|
, Param f
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
retrieveEncrypted :: RsyncOpts -> (Cipher, Key) -> FilePath -> Annex Bool
|
|
|
|
|
retrieveEncrypted o (cipher, enck) f = withTmp enck $ \tmp -> do
|
|
|
|
|
res <- retrieve o enck tmp
|
|
|
|
|
if res
|
|
|
|
|
then liftIO $ catchBool $ do
|
|
|
|
|
withDecryptedContent cipher (L.readFile tmp) $ L.writeFile f
|
|
|
|
|
return True
|
|
|
|
|
else return res
|
|
|
|
|
|
|
|
|
|
remove :: RsyncOpts -> Key -> Annex Bool
|
|
|
|
|
remove o k = withRsyncScratchDir $ \tmp -> do
|
|
|
|
|
{- Send an empty directory to rysnc as the parent directory
|
|
|
|
|
- of the file to remove. -}
|
|
|
|
|
let dummy = tmp </> keyFile k
|
|
|
|
|
liftIO $ createDirectoryIfMissing True dummy
|
|
|
|
|
liftIO $ rsync $ rsyncOptions o ++
|
|
|
|
|
[ Params "--delete --recursive"
|
|
|
|
|
, partialParams
|
|
|
|
|
, Param $ addTrailingPathSeparator dummy
|
2011-07-29 13:28:21 +00:00
|
|
|
|
, Param $ rsyncKeyDir o k
|
2011-04-28 00:06:07 +00:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
checkPresent :: Git.Repo -> RsyncOpts -> Key -> Annex (Either IOException Bool)
|
|
|
|
|
checkPresent r o k = do
|
2011-07-19 18:07:23 +00:00
|
|
|
|
showAction $ "checking " ++ Git.repoDescribe r
|
2011-04-28 00:06:07 +00:00
|
|
|
|
-- note: Does not currently differnetiate between rsync failing
|
|
|
|
|
-- to connect, and the file not being present.
|
|
|
|
|
res <- liftIO $ boolSystem "sh" [Param "-c", Param cmd]
|
|
|
|
|
return $ Right res
|
|
|
|
|
where
|
2011-07-29 13:28:21 +00:00
|
|
|
|
cmd = "rsync --quiet " ++ shellEscape (rsyncKey o k) ++ " 2>/dev/null"
|
2011-04-28 00:06:07 +00:00
|
|
|
|
|
|
|
|
|
{- Rsync params to enable resumes of sending files safely,
|
|
|
|
|
- ensure that files are only moved into place once complete
|
|
|
|
|
-}
|
|
|
|
|
partialParams :: CommandParam
|
|
|
|
|
partialParams = Params "--no-inplace --partial --partial-dir=.rsync-partial"
|
|
|
|
|
|
|
|
|
|
{- Runs an action in an empty scratch directory that can be used to build
|
|
|
|
|
- up trees for rsync. -}
|
|
|
|
|
withRsyncScratchDir :: (FilePath -> Annex Bool) -> Annex Bool
|
|
|
|
|
withRsyncScratchDir a = do
|
|
|
|
|
g <- Annex.gitRepo
|
2011-07-15 16:47:14 +00:00
|
|
|
|
pid <- liftIO getProcessID
|
2011-04-28 00:06:07 +00:00
|
|
|
|
let tmp = gitAnnexTmpDir g </> "rsynctmp" </> show pid
|
|
|
|
|
nuke tmp
|
2011-07-15 16:47:14 +00:00
|
|
|
|
liftIO $ createDirectoryIfMissing True tmp
|
2011-04-28 00:06:07 +00:00
|
|
|
|
res <- a tmp
|
|
|
|
|
nuke tmp
|
|
|
|
|
return res
|
|
|
|
|
where
|
2011-05-17 07:10:13 +00:00
|
|
|
|
nuke d = liftIO $
|
2011-05-17 15:44:13 +00:00
|
|
|
|
doesDirectoryExist d >>? removeDirectoryRecursive d
|
2011-04-28 00:06:07 +00:00
|
|
|
|
|
|
|
|
|
rsyncRemote :: RsyncOpts -> [CommandParam] -> Annex Bool
|
|
|
|
|
rsyncRemote o params = do
|
2011-07-19 18:07:23 +00:00
|
|
|
|
showOutput -- make way for progress bar
|
2011-04-28 00:06:07 +00:00
|
|
|
|
res <- liftIO $ rsync $ rsyncOptions o ++ defaultParams ++ params
|
|
|
|
|
if res
|
|
|
|
|
then return res
|
|
|
|
|
else do
|
|
|
|
|
showLongNote "rsync failed -- run git annex again to resume file transfer"
|
|
|
|
|
return res
|
|
|
|
|
where
|
|
|
|
|
defaultParams = [Params "--progress"]
|
|
|
|
|
|
|
|
|
|
{- To send a single key is slightly tricky; need to build up a temporary
|
|
|
|
|
directory structure to pass to rsync so it can create the hash
|
|
|
|
|
directories. -}
|
|
|
|
|
rsyncSend :: RsyncOpts -> Key -> FilePath -> Annex Bool
|
|
|
|
|
rsyncSend o k src = withRsyncScratchDir $ \tmp -> do
|
|
|
|
|
let dest = tmp </> hashDirMixed k </> f </> f
|
2011-07-15 16:47:14 +00:00
|
|
|
|
liftIO $ createDirectoryIfMissing True $ parentDir dest
|
2011-04-28 00:06:07 +00:00
|
|
|
|
liftIO $ createLink src dest
|
2011-07-15 16:47:14 +00:00
|
|
|
|
rsyncRemote o
|
2011-04-28 00:06:07 +00:00
|
|
|
|
[ Param "--recursive"
|
|
|
|
|
, partialParams
|
|
|
|
|
-- tmp/ to send contents of tmp dir
|
|
|
|
|
, Param $ addTrailingPathSeparator tmp
|
|
|
|
|
, Param $ rsyncUrl o
|
|
|
|
|
]
|
|
|
|
|
where
|
|
|
|
|
f = keyFile k
|