aboutsummaryrefslogtreecommitdiff
path: root/debian/changelog
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-03-09 19:26:02 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-03-09 20:03:51 -0400
commitbca3fd65b9cd3c2224144349505ddda20361b59e (patch)
treed846b257afccf262a8f8223834af8a67c11bf5c8 /debian/changelog
parentd6e77595ba45762b3c2dfdcd47a2d6b5b70154ae (diff)
fix key directory hash calculation code
Fix Key directory hash calculation code to behave as it did before version 3.20120227 when a key contains non-ascii. The hash directories for a given Key are based on its md5sum. Prior to ghc 7.4, Keys contained raw, undecoded bytes, so the md5sum was taken of each byte in turn. With the ghc 7.4 filename encoding change, keys contains decoded unicode characters (possibly with surrigates for undecodable bytes). This changes the result of the md5sum, since the md5sum used is pure haskell and supports unicode. And that won't do, as git-annex will start looking in a different hash directory for the content of a key. The surrigates are particularly bad, since that's essentially a ghc implementation detail, so could change again at any time. Also, changing the locale changes how the bytes are decoded, which can also change the md5sum. Symptoms would include things like: * git annex fsck would complain that no copies existed of a file, despite its symlink pointing to the content that was locally present * git annex fix would change the symlink to use the wrong hash directory. Only WORM backend is likely to have been affected, since only it tends to include much filename data (SHA1E could in theory also be affected). I have not tried to support the hash directories used by git-annex versions 3.20120227 to 3.20120308, so things added with those versions with WORM will require manual fixups. Sorry for the inconvenience!
Diffstat (limited to 'debian/changelog')
-rw-r--r--debian/changelog8
1 files changed, 8 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index 97cf38348..a7eb55272 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+git-annex (3.20120231) UNRELEASED; urgency=low
+
+ * Fix key directory hash calculation code to behave as it did before
+ version 3.20120227 when a key contains non-ascii characters (only
+ WORM backend is likely to have been affected).
+
+ -- Joey Hess <joeyh@debian.org> Fri, 09 Mar 2012 19:19:44 -0400
+
git-annex (3.20120230) unstable; urgency=low
* "here" can be used to refer to the current repository,