]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commit
download: refactor handling of URI Extension Block and crypttext hash tree, simplify...
authorZooko O'Whielacronx <zooko@zooko.com>
Fri, 5 Dec 2008 15:17:54 +0000 (08:17 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Fri, 5 Dec 2008 15:17:54 +0000 (08:17 -0700)
commitb315619d6b3e5f20015213eb2941205f6abbb0e2
tree972d399c0e72935d184fab4f702b0c9184565319
parenta0b5b5ab2be6772615f44f199807010fd96378a2
download: refactor handling of URI Extension Block and crypttext hash tree, simplify things

Refactor into a class the logic of asking each server in turn until one of them gives an answer
that validates.  It is called ValidatedThingObtainer.

Refactor the downloading and verification of the URI Extension Block into a class named
ValidatedExtendedURIProxy.

The new logic of validating UEBs is minimalist: it doesn't require the UEB to contain any
unncessary information, but of course it still accepts such information for backwards
compatibility (so that this new download code is able to download files uploaded with old, and
for that matter with current, upload code).

The new logic of validating UEBs follows the practice of doing all validation up front.  This
practice advises one to isolate the validation of incoming data into one place, so that all of
the rest of the code can assume only valid data.

If any redundant information is present in the UEB+URI, the new code cross-checks and asserts
that it is all fully consistent.  This closes some issues where the uploader could have
uploaded inconsistent redundant data, which would probably have caused the old downloader to
simply reject that download after getting a Python exception, but perhaps could have caused
greater harm to the old downloader.

I removed the notion of selecting an erasure codec from codec.py based on the string that was
passed in the UEB.  Currently "crs" is the only such string that works, so
"_assert(codec_name == 'crs')" is simpler and more explicit.  This is also in keeping with the
"validate up front" strategy -- now if someone sets a different string than "crs" in their UEB,
the downloader will reject the download in the "validate this UEB" function instead of in a
separate "select the codec instance" function.

I removed the code to check plaintext hashes and plaintext Merkle Trees.  Uploaders do not
produce this information any more (since it potentially exposes confidential information about
the file), and the unit tests for it were disabled.  The downloader before this patch would
check that plaintext hash or plaintext merkle tree if they were present, but not complain if
they were absent.  The new downloader in this patch complains if they are present and doesn't
check them.  (We might in the future re-introduce such hashes over the plaintext, but encrypt
the hashes which are stored in the UEB to preserve confidentiality.  This would be a double-
check on the correctness of our own source code -- the current Merkle Tree over the ciphertext
is already sufficient to guarantee the integrity of the download unless there is a bug in our
Merkle Tree or AES implementation.)

This patch increases the lines-of-code count by 8 (from 17,770 to 17,778), and reduces the
uncovered-by-tests lines-of-code count by 24 (from 1408 to 1384).  Those numbers would be more
meaningful if we omitted src/allmydata/util/ from the test-coverage statistics.
13 files changed:
src/allmydata/codec.py
src/allmydata/dirnode.py
src/allmydata/hashtree.py
src/allmydata/immutable/checker.py
src/allmydata/immutable/download.py
src/allmydata/immutable/encode.py
src/allmydata/immutable/filenode.py
src/allmydata/interfaces.py
src/allmydata/mutable/retrieve.py
src/allmydata/test/test_codec.py
src/allmydata/test/test_encode.py
src/allmydata/test/test_system.py
src/allmydata/web/directory.py