2010-08-04 07:26:39 +00:00
|
|
|
|
|
|
|
import binascii
|
|
|
|
import time
|
|
|
|
now = time.time
|
2011-06-29 22:22:04 +00:00
|
|
|
from zope.interface import implements
|
2007-12-04 04:37:54 +00:00
|
|
|
from twisted.internet import defer
|
2008-10-29 00:56:18 +00:00
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
from allmydata import uri
|
2011-08-02 02:09:05 +00:00
|
|
|
from twisted.internet.interfaces import IConsumer
|
2011-08-07 00:45:14 +00:00
|
|
|
from allmydata.interfaces import IImmutableFileNode, IUploadResults
|
|
|
|
from allmydata.util import consumer
|
2010-08-04 07:26:39 +00:00
|
|
|
from allmydata.check_results import CheckResults, CheckAndRepairResults
|
|
|
|
from allmydata.util.dictutil import DictOfSets
|
|
|
|
from pycryptopp.cipher.aes import AES
|
2008-10-29 00:56:18 +00:00
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
# local imports
|
|
|
|
from allmydata.immutable.checker import Checker
|
|
|
|
from allmydata.immutable.repairer import Repairer
|
2011-06-29 22:22:04 +00:00
|
|
|
from allmydata.immutable.downloader.node import DownloadNode, \
|
|
|
|
IDownloadStatusHandlingConsumer
|
2010-08-04 07:26:39 +00:00
|
|
|
from allmydata.immutable.downloader.status import DownloadStatus
|
|
|
|
|
|
|
|
class CiphertextFileNode:
|
|
|
|
def __init__(self, verifycap, storage_broker, secret_holder,
|
2010-08-09 22:49:09 +00:00
|
|
|
terminator, history):
|
2010-08-04 07:26:39 +00:00
|
|
|
assert isinstance(verifycap, uri.CHKFileVerifierURI)
|
|
|
|
self._verifycap = verifycap
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
self._storage_broker = storage_broker
|
|
|
|
self._secret_holder = secret_holder
|
2010-08-04 07:28:08 +00:00
|
|
|
self._terminator = terminator
|
|
|
|
self._history = history
|
2010-08-09 22:49:09 +00:00
|
|
|
self._download_status = None
|
2010-08-04 07:28:08 +00:00
|
|
|
self._node = None # created lazily, on read()
|
|
|
|
|
|
|
|
def _maybe_create_download_node(self):
|
2010-08-09 22:49:09 +00:00
|
|
|
if not self._download_status:
|
|
|
|
ds = DownloadStatus(self._verifycap.storage_index,
|
|
|
|
self._verifycap.size)
|
|
|
|
if self._history:
|
|
|
|
self._history.add_download(ds)
|
|
|
|
self._download_status = ds
|
2010-08-04 07:28:08 +00:00
|
|
|
if self._node is None:
|
|
|
|
self._node = DownloadNode(self._verifycap, self._storage_broker,
|
|
|
|
self._secret_holder,
|
|
|
|
self._terminator,
|
|
|
|
self._history, self._download_status)
|
2010-08-04 07:26:39 +00:00
|
|
|
|
2010-08-09 22:49:09 +00:00
|
|
|
def read(self, consumer, offset=0, size=None):
|
2010-08-04 07:26:39 +00:00
|
|
|
"""I am the main entry point, from which FileNode.read() can get
|
|
|
|
data. I feed the consumer with the desired range of ciphertext. I
|
|
|
|
return a Deferred that fires (with the consumer) when the read is
|
|
|
|
finished."""
|
2010-08-04 07:28:08 +00:00
|
|
|
self._maybe_create_download_node()
|
2011-06-29 22:22:04 +00:00
|
|
|
return self._node.read(consumer, offset, size)
|
2010-08-04 07:26:39 +00:00
|
|
|
|
|
|
|
def get_segment(self, segnum):
|
|
|
|
"""Begin downloading a segment. I return a tuple (d, c): 'd' is a
|
|
|
|
Deferred that fires with (offset,data) when the desired segment is
|
|
|
|
available, and c is an object on which c.cancel() can be called to
|
|
|
|
disavow interest in the segment (after which 'd' will never fire).
|
|
|
|
|
|
|
|
You probably need to know the segment size before calling this,
|
|
|
|
unless you want the first few bytes of the file. If you ask for a
|
|
|
|
segment number which turns out to be too large, the Deferred will
|
|
|
|
errback with BadSegmentNumberError.
|
|
|
|
|
|
|
|
The Deferred fires with the offset of the first byte of the data
|
|
|
|
segment, so that you can call get_segment() before knowing the
|
|
|
|
segment size, and still know which data you received.
|
|
|
|
"""
|
2010-08-04 07:28:08 +00:00
|
|
|
self._maybe_create_download_node()
|
2010-08-04 07:26:39 +00:00
|
|
|
return self._node.get_segment(segnum)
|
|
|
|
|
|
|
|
def get_segment_size(self):
|
|
|
|
# return a Deferred that fires with the file's real segment size
|
2010-08-04 07:28:08 +00:00
|
|
|
self._maybe_create_download_node()
|
2010-08-04 07:26:39 +00:00
|
|
|
return self._node.get_segsize()
|
2008-09-23 18:52:49 +00:00
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
def get_storage_index(self):
|
|
|
|
return self._verifycap.storage_index
|
2008-12-08 19:44:11 +00:00
|
|
|
def get_verify_cap(self):
|
2010-08-04 07:26:39 +00:00
|
|
|
return self._verifycap
|
|
|
|
def get_size(self):
|
|
|
|
return self._verifycap.size
|
2009-01-23 04:38:36 +00:00
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
def raise_error(self):
|
|
|
|
pass
|
2009-11-11 22:25:42 +00:00
|
|
|
|
2008-08-12 23:14:07 +00:00
|
|
|
|
2009-02-18 02:32:43 +00:00
|
|
|
def check_and_repair(self, monitor, verify=False, add_lease=False):
|
2012-05-15 04:53:49 +00:00
|
|
|
c = Checker(verifycap=self._verifycap,
|
|
|
|
servers=self._storage_broker.get_connected_servers(),
|
|
|
|
verify=verify, add_lease=add_lease,
|
|
|
|
secret_holder=self._secret_holder,
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
monitor=monitor)
|
2009-01-06 01:28:18 +00:00
|
|
|
d = c.start()
|
2012-05-15 04:53:49 +00:00
|
|
|
d.addCallback(self._maybe_repair, monitor)
|
|
|
|
return d
|
|
|
|
|
|
|
|
def _maybe_repair(self, cr, monitor):
|
|
|
|
crr = CheckAndRepairResults(self._verifycap.storage_index)
|
|
|
|
crr.pre_repair_results = cr
|
|
|
|
if cr.is_healthy():
|
|
|
|
crr.post_repair_results = cr
|
|
|
|
return defer.succeed(crr)
|
|
|
|
|
|
|
|
crr.repair_attempted = True
|
|
|
|
crr.repair_successful = False # until proven successful
|
|
|
|
def _repair_error(f):
|
|
|
|
# as with mutable repair, I'm not sure if I want to pass
|
|
|
|
# through a failure or not. TODO
|
|
|
|
crr.repair_successful = False
|
|
|
|
crr.repair_failure = f
|
|
|
|
return f
|
|
|
|
r = Repairer(self, storage_broker=self._storage_broker,
|
|
|
|
secret_holder=self._secret_holder,
|
|
|
|
monitor=monitor)
|
|
|
|
d = r.start()
|
|
|
|
d.addCallbacks(self._gather_repair_results, _repair_error,
|
|
|
|
callbackArgs=(cr, crr,))
|
2008-09-09 23:34:49 +00:00
|
|
|
return d
|
2008-09-07 19:44:56 +00:00
|
|
|
|
2012-05-15 04:53:49 +00:00
|
|
|
def _gather_repair_results(self, ur, cr, crr):
|
|
|
|
assert IUploadResults.providedBy(ur), ur
|
|
|
|
# clone the cr (check results) to form the basis of the
|
|
|
|
# prr (post-repair results)
|
|
|
|
|
2012-05-25 07:13:23 +00:00
|
|
|
verifycap = self._verifycap
|
2012-05-25 19:58:18 +00:00
|
|
|
servers_responding = set(cr.get_servers_responding())
|
2012-05-25 07:13:48 +00:00
|
|
|
sm = DictOfSets()
|
|
|
|
assert isinstance(cr.get_sharemap(), DictOfSets)
|
2012-05-25 19:58:02 +00:00
|
|
|
for shnum, servers in cr.get_sharemap().items():
|
2012-05-25 19:56:03 +00:00
|
|
|
for server in servers:
|
|
|
|
sm.add(shnum, server)
|
2012-05-15 04:53:49 +00:00
|
|
|
for shnum, servers in ur.get_sharemap().items():
|
2012-05-25 19:56:03 +00:00
|
|
|
for server in servers:
|
|
|
|
sm.add(shnum, server)
|
2012-05-25 19:56:20 +00:00
|
|
|
servers_responding.add(server)
|
2012-05-15 04:53:49 +00:00
|
|
|
servers_responding = sorted(servers_responding)
|
2012-05-25 07:13:23 +00:00
|
|
|
|
2012-05-25 07:13:48 +00:00
|
|
|
good_hosts = len(reduce(set.union, sm.values(), set()))
|
2012-05-15 04:53:49 +00:00
|
|
|
is_healthy = bool(len(sm) >= verifycap.total_shares)
|
|
|
|
is_recoverable = bool(len(sm) >= verifycap.needed_shares)
|
2012-05-25 07:14:46 +00:00
|
|
|
needs_rebalancing = bool(len(sm) >= verifycap.total_shares)
|
2012-05-25 19:29:10 +00:00
|
|
|
prr = CheckResults(cr.get_uri(), cr.get_storage_index(),
|
2012-05-25 07:14:46 +00:00
|
|
|
healthy=is_healthy, recoverable=is_recoverable,
|
|
|
|
needs_rebalancing=needs_rebalancing,
|
|
|
|
count_shares_needed=verifycap.needed_shares,
|
|
|
|
count_shares_expected=verifycap.total_shares,
|
|
|
|
count_shares_good=len(sm),
|
|
|
|
count_good_share_hosts=good_hosts,
|
|
|
|
count_recoverable_versions=int(is_recoverable),
|
|
|
|
count_unrecoverable_versions=int(not is_recoverable),
|
|
|
|
servers_responding=list(servers_responding),
|
|
|
|
sharemap=sm,
|
|
|
|
count_wrong_shares=0, # no such thing as wrong, for immutable
|
2012-05-25 19:58:28 +00:00
|
|
|
list_corrupt_shares=cr.get_corrupt_shares(),
|
2012-05-25 07:14:46 +00:00
|
|
|
count_corrupt_shares=len(cr.get_corrupt_shares()),
|
2012-05-25 19:58:28 +00:00
|
|
|
list_incompatible_shares=cr.get_incompatible_shares(),
|
2012-05-25 07:14:46 +00:00
|
|
|
count_incompatible_shares=len(cr.get_incompatible_shares()),
|
|
|
|
summary="",
|
|
|
|
report=[],
|
|
|
|
share_problems=[],
|
|
|
|
servermap=None)
|
2012-05-15 04:53:49 +00:00
|
|
|
crr.repair_successful = is_healthy
|
|
|
|
crr.post_repair_results = prr
|
|
|
|
return crr
|
|
|
|
|
2009-02-18 02:32:43 +00:00
|
|
|
def check(self, monitor, verify=False, add_lease=False):
|
2010-08-04 07:26:39 +00:00
|
|
|
verifycap = self._verifycap
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
sb = self._storage_broker
|
2011-02-21 01:58:04 +00:00
|
|
|
servers = sb.get_connected_servers()
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
sh = self._secret_holder
|
2009-06-21 23:51:19 +00:00
|
|
|
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
v = Checker(verifycap=verifycap, servers=servers,
|
|
|
|
verify=verify, add_lease=add_lease, secret_holder=sh,
|
|
|
|
monitor=monitor)
|
2009-01-06 01:28:18 +00:00
|
|
|
return v.start()
|
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
class DecryptingConsumer:
|
|
|
|
"""I sit between a CiphertextDownloader (which acts as a Producer) and
|
|
|
|
the real Consumer, decrypting everything that passes by. The real
|
|
|
|
Consumer sees the real Producer, but the Producer sees us instead of the
|
|
|
|
real consumer."""
|
2010-08-09 22:49:09 +00:00
|
|
|
implements(IConsumer, IDownloadStatusHandlingConsumer)
|
2010-08-04 07:26:39 +00:00
|
|
|
|
2010-08-09 22:49:09 +00:00
|
|
|
def __init__(self, consumer, readkey, offset):
|
2010-08-04 07:26:39 +00:00
|
|
|
self._consumer = consumer
|
2011-06-29 22:22:04 +00:00
|
|
|
self._read_ev = None
|
2011-11-01 06:18:21 +00:00
|
|
|
self._download_status = None
|
2010-08-04 07:26:39 +00:00
|
|
|
# TODO: pycryptopp CTR-mode needs random-access operations: I want
|
|
|
|
# either a=AES(readkey, offset) or better yet both of:
|
|
|
|
# a=AES(readkey, offset=0)
|
|
|
|
# a.process(ciphertext, offset=xyz)
|
|
|
|
# For now, we fake it with the existing iv= argument.
|
|
|
|
offset_big = offset // 16
|
|
|
|
offset_small = offset % 16
|
|
|
|
iv = binascii.unhexlify("%032x" % offset_big)
|
|
|
|
self._decryptor = AES(readkey, iv=iv)
|
|
|
|
self._decryptor.process("\x00"*offset_small)
|
|
|
|
|
2010-08-09 22:49:09 +00:00
|
|
|
def set_download_status_read_event(self, read_ev):
|
2011-06-29 22:22:04 +00:00
|
|
|
self._read_ev = read_ev
|
2011-11-01 06:18:21 +00:00
|
|
|
def set_download_status(self, ds):
|
|
|
|
self._download_status = ds
|
2010-08-09 22:49:09 +00:00
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
def registerProducer(self, producer, streaming):
|
|
|
|
# this passes through, so the real consumer can flow-control the real
|
|
|
|
# producer. Therefore we don't need to provide any IPushProducer
|
|
|
|
# methods. We implement all the IConsumer methods as pass-throughs,
|
|
|
|
# and only intercept write() to perform decryption.
|
|
|
|
self._consumer.registerProducer(producer, streaming)
|
|
|
|
def unregisterProducer(self):
|
|
|
|
self._consumer.unregisterProducer()
|
|
|
|
def write(self, ciphertext):
|
|
|
|
started = now()
|
|
|
|
plaintext = self._decryptor.process(ciphertext)
|
2011-06-29 22:22:04 +00:00
|
|
|
if self._read_ev:
|
2010-08-09 22:49:09 +00:00
|
|
|
elapsed = now() - started
|
2011-06-29 22:22:04 +00:00
|
|
|
self._read_ev.update(0, elapsed, 0)
|
2011-11-01 06:18:21 +00:00
|
|
|
if self._download_status:
|
|
|
|
self._download_status.add_misc_event("AES", started, now())
|
2010-08-04 07:26:39 +00:00
|
|
|
self._consumer.write(plaintext)
|
|
|
|
|
|
|
|
class ImmutableFileNode:
|
|
|
|
implements(IImmutableFileNode)
|
|
|
|
|
|
|
|
# I wrap a CiphertextFileNode with a decryption key
|
|
|
|
def __init__(self, filecap, storage_broker, secret_holder, terminator,
|
|
|
|
history):
|
|
|
|
assert isinstance(filecap, uri.CHKFileURI)
|
|
|
|
verifycap = filecap.get_verify_cap()
|
|
|
|
self._cnode = CiphertextFileNode(verifycap, storage_broker,
|
2010-08-09 22:49:09 +00:00
|
|
|
secret_holder, terminator, history)
|
2010-08-04 07:26:39 +00:00
|
|
|
assert isinstance(filecap, uri.CHKFileURI)
|
|
|
|
self.u = filecap
|
|
|
|
self._readkey = filecap.key
|
|
|
|
|
|
|
|
# TODO: I'm not sure about this.. what's the use case for node==node? If
|
|
|
|
# we keep it here, we should also put this on CiphertextFileNode
|
|
|
|
def __hash__(self):
|
|
|
|
return self.u.__hash__()
|
|
|
|
def __eq__(self, other):
|
|
|
|
if isinstance(other, ImmutableFileNode):
|
|
|
|
return self.u.__eq__(other.u)
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
def __ne__(self, other):
|
|
|
|
if isinstance(other, ImmutableFileNode):
|
|
|
|
return self.u.__eq__(other.u)
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
2008-10-28 20:41:04 +00:00
|
|
|
def read(self, consumer, offset=0, size=None):
|
2010-08-09 22:49:09 +00:00
|
|
|
decryptor = DecryptingConsumer(consumer, self._readkey, offset)
|
|
|
|
d = self._cnode.read(decryptor, offset, size)
|
2010-08-04 07:26:39 +00:00
|
|
|
d.addCallback(lambda dc: consumer)
|
2008-10-28 20:41:04 +00:00
|
|
|
return d
|
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
def raise_error(self):
|
2008-10-06 19:52:36 +00:00
|
|
|
pass
|
2007-12-04 04:37:54 +00:00
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
def get_write_uri(self):
|
|
|
|
return None
|
2008-10-28 20:41:04 +00:00
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
def get_readonly_uri(self):
|
|
|
|
return self.get_uri()
|
2007-12-04 04:37:54 +00:00
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
def get_uri(self):
|
|
|
|
return self.u.to_string()
|
2009-11-11 22:25:42 +00:00
|
|
|
def get_cap(self):
|
|
|
|
return self.u
|
|
|
|
def get_readcap(self):
|
2010-08-04 07:26:39 +00:00
|
|
|
return self.u.get_readonly()
|
2008-12-08 19:44:11 +00:00
|
|
|
def get_verify_cap(self):
|
2010-08-04 07:26:39 +00:00
|
|
|
return self.u.get_verify_cap()
|
2009-01-23 04:38:36 +00:00
|
|
|
def get_repair_cap(self):
|
2010-08-04 07:26:39 +00:00
|
|
|
# CHK files can be repaired with just the verifycap
|
|
|
|
return self.u.get_verify_cap()
|
2009-11-11 22:25:42 +00:00
|
|
|
|
2008-08-12 23:14:07 +00:00
|
|
|
def get_storage_index(self):
|
2010-08-04 07:26:39 +00:00
|
|
|
return self.u.get_storage_index()
|
2008-08-12 23:14:07 +00:00
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
def get_size(self):
|
|
|
|
return self.u.get_size()
|
|
|
|
def get_current_size(self):
|
|
|
|
return defer.succeed(self.get_size())
|
2007-12-04 04:37:54 +00:00
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
def is_mutable(self):
|
|
|
|
return False
|
2008-09-09 23:34:49 +00:00
|
|
|
|
2010-08-04 07:26:39 +00:00
|
|
|
def is_readonly(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def is_unknown(self):
|
|
|
|
return False
|
|
|
|
|
|
|
|
def is_allowed_in_immutable_directory(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def check_and_repair(self, monitor, verify=False, add_lease=False):
|
|
|
|
return self._cnode.check_and_repair(monitor, verify, add_lease)
|
|
|
|
def check(self, monitor, verify=False, add_lease=False):
|
|
|
|
return self._cnode.check(monitor, verify, add_lease)
|
2011-08-02 02:09:05 +00:00
|
|
|
|
|
|
|
def get_best_readable_version(self):
|
|
|
|
"""
|
|
|
|
Return an IReadable of the best version of this file. Since
|
|
|
|
immutable files can have only one version, we just return the
|
|
|
|
current filenode.
|
|
|
|
"""
|
|
|
|
return defer.succeed(self)
|
|
|
|
|
|
|
|
|
|
|
|
def download_best_version(self):
|
|
|
|
"""
|
|
|
|
Download the best version of this file, returning its contents
|
|
|
|
as a bytestring. Since there is only one version of an immutable
|
|
|
|
file, we download and return the contents of this file.
|
|
|
|
"""
|
|
|
|
d = consumer.download_to_data(self)
|
|
|
|
return d
|
|
|
|
|
|
|
|
# for an immutable file, download_to_data (specified in IReadable)
|
|
|
|
# is the same as download_best_version (specified in IFileNode). For
|
|
|
|
# mutable files, the difference is more meaningful, since they can
|
|
|
|
# have multiple versions.
|
|
|
|
download_to_data = download_best_version
|
|
|
|
|
|
|
|
|
|
|
|
# get_size() (IReadable), get_current_size() (IFilesystemNode), and
|
|
|
|
# get_size_of_best_version(IFileNode) are all the same for immutable
|
|
|
|
# files.
|
|
|
|
get_size_of_best_version = get_current_size
|