summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-06-12 14:02:31 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-06-12 14:02:31 -0400
commite0c49de4bd8fef08ed40d3e43c4f08949f47e6e9 (patch)
tree55f76f41b860ae8bc24b9034ca1954822acf962b /Command
parent871b79ceb7703c39a7e7eb3e043ac94c596bd1a3 (diff)
Direct mode: No longer temporarily remove write permission bit of files when adding them.
This write permission frobbing is very appropriate in indirect mode, since annexed objects are stored as immutably as can be managed. But not in direct mode, where files should be able to be modified at any time. There are already sufficient guards that there's no need to prevent a file being written to while it's being ingested, in direct mode. The inode cache will detect (most) types of modifications, and the add will fail. Then a re-add should be done. The assistant should get another inotify change event, and automatically add the new version of the file.
Diffstat (limited to 'Command')
-rw-r--r--Command/Add.hs25
1 files changed, 14 insertions, 11 deletions
diff --git a/Command/Add.hs b/Command/Add.hs
index 6a2261d1f..b4141d06f 100644
--- a/Command/Add.hs
+++ b/Command/Add.hs
@@ -79,16 +79,20 @@ start file = ifAnnexed file addpresent add
next $ next $ cleanup file key =<< inAnnex key
{- The file that's being added is locked down before a key is generated,
- - to prevent it from being modified in between. It's hard linked into a
- - temporary location (to prevent it being replaced with another file),
- - and its writable bits are removed. It could still be written to by a
- - process that already has it open for writing.
+ - to prevent it from being modified in between. This lock down is not
+ - perfect at best (and pretty weak at worst). For example, it does not
+ - guard against files that are already opened for write by another process.
+ - So a KeySource is returned. Its inodeCache can be used to detect any
+ - changes that might be made to the file after it was locked down.
-
- - On a crippled filesystem, no lock down is done; the file can be modified
- - at any time, and the no hard link is made.
+ - In indirect mode, the write bit is removed from the file as part of lock
+ - down to guard against further writes, and because objects in the annex
+ - have their write bit disabled anyway. This is not done in direct mode,
+ - because files there need to remain writable at all times.
-
- - On a filesystem without hard links, but not otherwise crippled,
- - no hard link is made, but the write bit is still removed.
+ - When possible, the file is hard linked to a temp directory. This guards
+ - against some changes, like deletion or overwrite of the file, and
+ - allows lsof checks to be done more efficiently when adding a lot of files.
-
- Lockdown can fail if a file gets deleted, and Nothing will be returned.
-}
@@ -98,8 +102,9 @@ lockDown file = ifM (crippledFileSystem)
, do
tmp <- fromRepo gitAnnexTmpDir
createAnnexDirectory tmp
+ unlessM (isDirect) $ liftIO $
+ void $ tryIO $ preventWrite file
liftIO $ catchMaybeIO $ do
- preventWrite file
(tmpfile, h) <- openTempFile tmp (takeFileName file)
hClose h
nukeFile tmpfile
@@ -162,8 +167,6 @@ ingest (Just source) = do
finishIngestDirect :: Key -> KeySource -> Annex ()
finishIngestDirect key source = do
void $ addAssociatedFile key $ keyFilename source
- unlessM crippledFileSystem $
- liftIO $ allowWrite $ keyFilename source
when (contentLocation source /= keyFilename source) $
liftIO $ nukeFile $ contentLocation source