summaryrefslogtreecommitdiff
path: root/Backend
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-07-30 17:49:11 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-07-30 19:18:29 -0400
commitfe0dcd5a298984d6cc8a5a28d7257a48acb58595 (patch)
tree899225013beb7d1d1be79c88aa6bbdad5ced8dc3 /Backend
parent1bb47eb93f81be71a0d1e4d67486de6ec651eb69 (diff)
Fix a few bugs involving filenames that are at or near the filesystem's maximum filename length limit.
Started with a problem when running addurl on a really long url, because the whole url is munged into the filename. Ended up doing a fairly extensive review for places where filenames could get too large, although it's hard to say I'm not missed any.. Backend.Url had a 128 character limit, which is fine when the limit is 255, but not if it's a lot shorter on some systems. So check the pathconf() limit. Note that this could result in fromUrl creating different keys for the same url, if run on systems with different limits. I don't see this is likely to cause any problems. That can already happen when using addurl --fast, or if the content of an url changes. Both Command.AddUrl and Backend.Url assumed that urls don't contain a lot of multi-byte unicode, and would fail to truncate an url that did properly. A few places use a filename as the template to make a temp file. While that's nice in that the temp file name can be easily related back to the original filename, it could lead to `git annex add` failing to add a filename that was at or close to the maximum length. Note that in Command.Add.lockdown, the template is still derived from the filename, just with enough space left to turn it into a temp file. This is an important optimisation, because the assistant may lock down a bunch of files all at once, and using the same template for all of them would cause openTempFile to iterate through the same set of names, looking for an unused temp file. I'm not very happy with the relatedTemplate hack, but it avoids that slowdown. Backend.WORM does not limit the filename stored in the key. I have not tried to change that; so git annex add will fail on really long filenames when using the WORM backend. It seems better to preserve the invariant that a WORM key always contains the complete filename, since the filename is the only unique material in the key, other than mtime and size. Since nobody has complained about add failing (I think I saw it once?) on WORM, probably it's ok, or nobody but me uses it. There may be compatability problems if using git annex addurl --fast or the WORM backend on a system with the 255 limit and then trying to use that repo in a system with a smaller limit. I have not tried to deal with those. This commit was sponsored by Alexander Brem. Thanks!
Diffstat (limited to 'Backend')
-rw-r--r--Backend/URL.hs26
1 files changed, 14 insertions, 12 deletions
diff --git a/Backend/URL.hs b/Backend/URL.hs
index 9e1652970..ace578a24 100644
--- a/Backend/URL.hs
+++ b/Backend/URL.hs
@@ -27,16 +27,18 @@ backend = Backend
, canUpgradeKey = Nothing
}
-fromUrl :: String -> Maybe Integer -> Key
-fromUrl url size = stubKey
- { keyName = key
- , keyBackendName = "URL"
- , keySize = size
+{- When it's not too long, use the full url as the key name.
+ - If the url is too long, it's truncated at half the filename length
+ - limit, and the md5 of the url is prepended to ensure a unique key. -}
+fromUrl :: String -> Maybe Integer -> Annex Key
+fromUrl url size = do
+ limit <- liftIO . fileNameLengthLimit =<< fromRepo gitAnnexDir
+ let truncurl = truncateFilePath (limit `div` 2) url
+ let key = if url == truncurl
+ then url
+ else truncurl ++ "-" ++ md5s (Str url)
+ return $ stubKey
+ { keyName = key
+ , keyBackendName = "URL"
+ , keySize = size
}
- where
- {- when it's not too long, use the url as the key name
- - 256 is the absolute filename max, but use a shorter
- - length because this is not the entire key filename. -}
- key
- | length url < 128 = url
- | otherwise = take 128 url ++ "-" ++ md5s (Str url)