2006-12-02 02:17:50 +00:00
|
|
|
|
2015-11-12 23:16:28 +00:00
|
|
|
from zope.interface import Interface, Attribute
|
2009-05-22 00:38:23 +00:00
|
|
|
from foolscap.api import StringConstraint, ListOf, TupleOf, SetOf, DictOf, \
|
|
|
|
ChoiceOf, IntegerConstraint, Any, RemoteInterface, Referenceable
|
2006-12-02 02:17:50 +00:00
|
|
|
|
2007-03-30 03:19:52 +00:00
|
|
|
HASH_SIZE=32
|
2011-08-02 01:41:19 +00:00
|
|
|
SALT_SIZE=16
|
|
|
|
|
|
|
|
SDMF_VERSION=0
|
|
|
|
MDMF_VERSION=1
|
2007-03-30 03:19:52 +00:00
|
|
|
|
2007-04-04 22:59:36 +00:00
|
|
|
Hash = StringConstraint(maxLength=HASH_SIZE,
|
|
|
|
minLength=HASH_SIZE)# binary format 32-byte SHA256 hash
|
|
|
|
Nodeid = StringConstraint(maxLength=20,
|
|
|
|
minLength=20) # binary format 20-byte SHA1 hash
|
2007-05-22 21:08:30 +00:00
|
|
|
FURL = StringConstraint(1000)
|
2007-07-23 02:48:44 +00:00
|
|
|
StorageIndex = StringConstraint(16)
|
2007-04-27 01:08:29 +00:00
|
|
|
URI = StringConstraint(300) # kind of arbitrary
|
2007-12-18 20:15:08 +00:00
|
|
|
|
2008-10-09 19:13:57 +00:00
|
|
|
MAX_BUCKETS = 256 # per peer -- zfec offers at most 256 shares per file
|
2007-09-11 18:29:18 +00:00
|
|
|
|
2010-08-04 07:27:52 +00:00
|
|
|
DEFAULT_MAX_SEGMENT_SIZE = 128*1024
|
|
|
|
|
2008-04-12 05:51:54 +00:00
|
|
|
ShareData = StringConstraint(None)
|
2007-06-08 22:59:16 +00:00
|
|
|
URIExtensionData = StringConstraint(1000)
|
2008-03-11 17:50:31 +00:00
|
|
|
Number = IntegerConstraint(8) # 2**(8*8) == 16EiB ~= 18e18 ~= 18 exabytes
|
|
|
|
Offset = Number
|
2008-05-07 15:39:03 +00:00
|
|
|
ReadSize = int # the 'int' constraint is 2**31 == 2Gib -- large files are processed in not-so-large increments
|
2012-07-24 03:40:06 +00:00
|
|
|
WriteEnablerSecret = Hash # used to protect mutable share modifications
|
|
|
|
LeaseRenewSecret = Hash # used to protect lease renewal requests
|
|
|
|
LeaseCancelSecret = Hash # was used to protect lease cancellation requests
|
|
|
|
|
2007-08-28 00:28:51 +00:00
|
|
|
|
2006-12-02 02:17:50 +00:00
|
|
|
class RIBucketWriter(RemoteInterface):
|
2008-10-14 23:09:20 +00:00
|
|
|
""" Objects of this kind live on the server side. """
|
2008-03-11 17:50:31 +00:00
|
|
|
def write(offset=Offset, data=ShareData):
|
2007-07-13 21:04:49 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
def close():
|
|
|
|
"""
|
|
|
|
If the data that has been written is incomplete or inconsistent then
|
|
|
|
the server will throw the data away, else it will store it for future
|
|
|
|
retrieval.
|
|
|
|
"""
|
|
|
|
return None
|
|
|
|
|
2008-01-15 04:22:55 +00:00
|
|
|
def abort():
|
|
|
|
"""Abandon all the data that has been written.
|
|
|
|
"""
|
|
|
|
return None
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-07-13 21:04:49 +00:00
|
|
|
class RIBucketReader(RemoteInterface):
|
2008-03-11 17:50:31 +00:00
|
|
|
def read(offset=Offset, length=ReadSize):
|
2007-07-13 21:04:49 +00:00
|
|
|
return ShareData
|
|
|
|
|
2008-10-24 18:52:48 +00:00
|
|
|
def advise_corrupt_share(reason=str):
|
|
|
|
"""Clients who discover hash failures in shares that they have
|
|
|
|
downloaded from me will use this method to inform me about the
|
|
|
|
failures. I will record their concern so that my operator can
|
|
|
|
manually inspect the shares in question. I return None.
|
|
|
|
|
2012-07-24 03:37:07 +00:00
|
|
|
This is a wrapper around RIStorageServer.advise_corrupt_share()
|
|
|
|
that is tied to a specific share, and therefore does not need the
|
2008-10-24 18:52:48 +00:00
|
|
|
extra share-identifying arguments. Please see that method for full
|
|
|
|
documentation.
|
|
|
|
"""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-03-11 17:50:31 +00:00
|
|
|
TestVector = ListOf(TupleOf(Offset, ReadSize, str, str))
|
2007-10-31 02:47:36 +00:00
|
|
|
# elements are (offset, length, operator, specimen)
|
2007-11-06 03:17:14 +00:00
|
|
|
# operator is one of "lt, le, eq, ne, ge, gt"
|
2007-10-31 02:47:36 +00:00
|
|
|
# nop always passes and is used to fetch data while writing.
|
|
|
|
# you should use length==len(specimen) for everything except nop
|
2008-03-11 17:50:31 +00:00
|
|
|
DataVector = ListOf(TupleOf(Offset, ShareData))
|
2007-10-31 02:47:36 +00:00
|
|
|
# (offset, data). This limits us to 30 writes of 1MiB each per call
|
2007-11-06 03:17:14 +00:00
|
|
|
TestAndWriteVectorsForShares = DictOf(int,
|
|
|
|
TupleOf(TestVector,
|
|
|
|
DataVector,
|
2008-03-11 17:50:31 +00:00
|
|
|
ChoiceOf(None, Offset), # new_length
|
|
|
|
))
|
|
|
|
ReadVector = ListOf(TupleOf(Offset, ReadSize))
|
2007-11-06 03:17:14 +00:00
|
|
|
ReadData = ListOf(ShareData)
|
2007-10-31 02:47:36 +00:00
|
|
|
# returns data[offset:offset+length] for each element of TestVector
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-07-13 21:04:49 +00:00
|
|
|
class RIStorageServer(RemoteInterface):
|
2008-02-05 20:05:13 +00:00
|
|
|
__remote_name__ = "RIStorageServer.tahoe.allmydata.com"
|
|
|
|
|
2008-11-22 00:43:52 +00:00
|
|
|
def get_version():
|
2008-07-30 22:51:07 +00:00
|
|
|
"""
|
2008-11-22 00:43:52 +00:00
|
|
|
Return a dictionary of version information.
|
2008-02-05 20:05:13 +00:00
|
|
|
"""
|
2008-11-22 00:43:52 +00:00
|
|
|
return DictOf(str, Any())
|
2008-02-05 20:05:13 +00:00
|
|
|
|
2007-07-13 21:04:49 +00:00
|
|
|
def allocate_buckets(storage_index=StorageIndex,
|
2007-08-28 00:28:51 +00:00
|
|
|
renew_secret=LeaseRenewSecret,
|
|
|
|
cancel_secret=LeaseCancelSecret,
|
2007-07-13 21:04:49 +00:00
|
|
|
sharenums=SetOf(int, maxLength=MAX_BUCKETS),
|
2008-03-11 17:50:31 +00:00
|
|
|
allocated_size=Offset, canary=Referenceable):
|
2007-07-13 21:04:49 +00:00
|
|
|
"""
|
2007-08-28 00:28:51 +00:00
|
|
|
@param storage_index: the index of the bucket to be created or
|
|
|
|
increfed.
|
|
|
|
@param sharenums: these are the share numbers (probably between 0 and
|
|
|
|
99) that the sender is proposing to store on this
|
|
|
|
server.
|
|
|
|
@param renew_secret: This is the secret used to protect bucket refresh
|
|
|
|
This secret is generated by the client and
|
|
|
|
stored for later comparison by the server. Each
|
|
|
|
server is given a different secret.
|
2012-07-24 03:40:06 +00:00
|
|
|
@param cancel_secret: This no longer allows lease cancellation, but
|
|
|
|
must still be a unique value identifying the
|
|
|
|
lease. XXX stop relying on it to be unique.
|
2007-08-28 00:28:51 +00:00
|
|
|
@param canary: If the canary is lost before close(), the bucket is
|
|
|
|
deleted.
|
2007-07-13 21:04:49 +00:00
|
|
|
@return: tuple of (alreadygot, allocated), where alreadygot is what we
|
2009-02-16 21:58:16 +00:00
|
|
|
already have and allocated is what we hereby agree to accept.
|
|
|
|
New leases are added for shares in both lists.
|
2007-07-13 21:04:49 +00:00
|
|
|
"""
|
|
|
|
return TupleOf(SetOf(int, maxLength=MAX_BUCKETS),
|
|
|
|
DictOf(int, RIBucketWriter, maxKeys=MAX_BUCKETS))
|
2007-08-28 06:41:40 +00:00
|
|
|
|
2008-07-10 01:06:55 +00:00
|
|
|
def add_lease(storage_index=StorageIndex,
|
|
|
|
renew_secret=LeaseRenewSecret,
|
|
|
|
cancel_secret=LeaseCancelSecret):
|
|
|
|
"""
|
|
|
|
Add a new lease on the given bucket. If the renew_secret matches an
|
2009-02-17 20:48:09 +00:00
|
|
|
existing lease, that lease will be renewed instead. If there is no
|
2009-02-18 02:30:53 +00:00
|
|
|
bucket for the given storage_index, return silently. (note that in
|
|
|
|
tahoe-1.3.0 and earlier, IndexError was raised if there was no
|
|
|
|
bucket)
|
2008-07-10 01:06:55 +00:00
|
|
|
"""
|
2009-02-18 20:29:03 +00:00
|
|
|
return Any() # returns None now, but future versions might change
|
2008-07-10 01:06:55 +00:00
|
|
|
|
2007-08-28 06:41:40 +00:00
|
|
|
def renew_lease(storage_index=StorageIndex, renew_secret=LeaseRenewSecret):
|
|
|
|
"""
|
2009-02-17 20:48:09 +00:00
|
|
|
Renew the lease on a given bucket, resetting the timer to 31 days.
|
|
|
|
Some networks will use this, some will not. If there is no bucket for
|
|
|
|
the given storage_index, IndexError will be raised.
|
|
|
|
|
|
|
|
For mutable shares, if the given renew_secret does not match an
|
|
|
|
existing lease, IndexError will be raised with a note listing the
|
|
|
|
server-nodeids on the existing leases, so leases on migrated shares
|
2012-07-24 03:40:06 +00:00
|
|
|
can be renewed. For immutable shares, IndexError (without the note)
|
|
|
|
will be raised.
|
2007-08-28 06:41:40 +00:00
|
|
|
"""
|
2009-02-18 20:29:03 +00:00
|
|
|
return Any()
|
2007-08-28 06:41:40 +00:00
|
|
|
|
2007-07-13 21:04:49 +00:00
|
|
|
def get_buckets(storage_index=StorageIndex):
|
|
|
|
return DictOf(int, RIBucketReader, maxKeys=MAX_BUCKETS)
|
|
|
|
|
|
|
|
|
2007-11-06 03:17:14 +00:00
|
|
|
|
|
|
|
def slot_readv(storage_index=StorageIndex,
|
|
|
|
shares=ListOf(int), readv=ReadVector):
|
|
|
|
"""Read a vector from the numbered shares associated with the given
|
|
|
|
storage index. An empty shares list means to return data from all
|
|
|
|
known shares. Returns a dictionary with one key per share."""
|
2007-11-07 21:19:01 +00:00
|
|
|
return DictOf(int, ReadData) # shnum -> results
|
2007-11-06 03:17:14 +00:00
|
|
|
|
|
|
|
def slot_testv_and_readv_and_writev(storage_index=StorageIndex,
|
2008-07-10 01:06:55 +00:00
|
|
|
secrets=TupleOf(WriteEnablerSecret,
|
|
|
|
LeaseRenewSecret,
|
|
|
|
LeaseCancelSecret),
|
2007-11-06 03:17:14 +00:00
|
|
|
tw_vectors=TestAndWriteVectorsForShares,
|
|
|
|
r_vector=ReadVector,
|
|
|
|
):
|
2012-06-13 16:51:35 +00:00
|
|
|
"""
|
|
|
|
General-purpose test-read-and-set operation for mutable slots:
|
|
|
|
(1) For submitted shnums, compare the test vectors against extant
|
|
|
|
shares, or against an empty share for shnums that do not exist.
|
|
|
|
(2) Use the read vectors to extract "old data" from extant shares.
|
|
|
|
(3) If all tests in (1) passed, then apply the write vectors
|
|
|
|
(possibly creating new shares).
|
|
|
|
(4) Return whether the tests passed, and the "old data", which does
|
|
|
|
not include any modifications made by the writes.
|
|
|
|
|
|
|
|
The operation does not interleave with other operations on the same
|
|
|
|
shareset.
|
2007-11-06 03:17:14 +00:00
|
|
|
|
|
|
|
This method is, um, large. The goal is to allow clients to update all
|
|
|
|
the shares associated with a mutable file in a single round trip.
|
|
|
|
|
2007-10-31 02:47:36 +00:00
|
|
|
@param storage_index: the index of the bucket to be created or
|
|
|
|
increfed.
|
|
|
|
@param write_enabler: a secret that is stored along with the slot.
|
|
|
|
Writes are accepted from any caller who can
|
|
|
|
present the matching secret. A different secret
|
|
|
|
should be used for each slot*server pair.
|
|
|
|
@param renew_secret: This is the secret used to protect bucket refresh
|
|
|
|
This secret is generated by the client and
|
|
|
|
stored for later comparison by the server. Each
|
|
|
|
server is given a different secret.
|
2012-07-24 03:40:06 +00:00
|
|
|
@param cancel_secret: This no longer allows lease cancellation, but
|
|
|
|
must still be a unique value identifying the
|
|
|
|
lease. XXX stop relying on it to be unique.
|
2007-10-31 02:47:36 +00:00
|
|
|
|
2007-11-06 03:17:14 +00:00
|
|
|
The 'secrets' argument is a tuple of (write_enabler, renew_secret,
|
|
|
|
cancel_secret). The first is required to perform any write. The
|
|
|
|
latter two are used when allocating new shares. To simply acquire a
|
|
|
|
new lease on existing shares, use an empty testv and an empty writev.
|
|
|
|
|
|
|
|
Each share can have a separate test vector (i.e. a list of
|
|
|
|
comparisons to perform). If all vectors for all shares pass, then all
|
|
|
|
writes for all shares are recorded. Each comparison is a 4-tuple of
|
2012-06-13 16:51:35 +00:00
|
|
|
(offset, length, operator, specimen), which effectively does a
|
|
|
|
bool( (read(offset, length)) OPERATOR specimen ) and only performs
|
|
|
|
the write if all these evaluate to True. Basic test-and-set uses 'eq'.
|
2007-11-07 01:53:34 +00:00
|
|
|
Write-if-newer uses a seqnum and (offset, length, 'lt', specimen).
|
|
|
|
Write-if-same-or-newer uses 'le'.
|
|
|
|
|
|
|
|
Reads from the end of the container are truncated, and missing shares
|
|
|
|
behave like empty ones, so to assert that a share doesn't exist (for
|
|
|
|
use when creating a new share), use (0, 1, 'eq', '').
|
2007-11-06 03:17:14 +00:00
|
|
|
|
|
|
|
The write vector will be applied to the given share, expanding it if
|
|
|
|
necessary. A write vector applied to a share number that did not
|
2012-06-13 16:51:35 +00:00
|
|
|
exist previously will cause that share to be created. Write vectors
|
|
|
|
must not overlap (if they do, this will either cause an error or
|
|
|
|
apply them in an unspecified order). Duplicate write vectors, with
|
|
|
|
the same offset and data, are currently tolerated but are not
|
|
|
|
desirable.
|
2007-11-06 03:17:14 +00:00
|
|
|
|
2011-09-12 22:26:55 +00:00
|
|
|
In Tahoe-LAFS v1.8.3 or later (except 1.9.0a1), if you send a write
|
|
|
|
vector whose offset is beyond the end of the current data, the space
|
|
|
|
between the end of the current data and the beginning of the write
|
|
|
|
vector will be filled with zero bytes. In earlier versions the
|
|
|
|
contents of this space was unspecified (and might end up containing
|
2011-09-13 00:28:43 +00:00
|
|
|
secrets). Storage servers with the new zero-filling behavior will
|
|
|
|
advertise a true value for the 'fills-holes-with-zero-bytes' key
|
|
|
|
(under 'http://allmydata.org/tahoe/protocols/storage/v1') in their
|
|
|
|
version information.
|
2011-09-12 22:26:55 +00:00
|
|
|
|
|
|
|
Each write vector is accompanied by a 'new_length' argument, which
|
|
|
|
can be used to truncate the data. If new_length is not None and it is
|
|
|
|
less than the current size of the data (after applying all write
|
|
|
|
vectors), then the data will be truncated to new_length. If
|
|
|
|
new_length==0, the share will be deleted.
|
|
|
|
|
|
|
|
In Tahoe-LAFS v1.8.2 and earlier, new_length could also be used to
|
|
|
|
enlarge the file by sending a number larger than the size of the data
|
|
|
|
after applying all write vectors. That behavior was not used, and as
|
|
|
|
of Tahoe-LAFS v1.8.3 it no longer works and the new_length is ignored
|
|
|
|
in that case.
|
|
|
|
|
2011-09-13 00:28:43 +00:00
|
|
|
If a storage client knows that the server supports zero-filling, for
|
|
|
|
example from the 'fills-holes-with-zero-bytes' key in its version
|
|
|
|
information, it can extend the file efficiently by writing a single
|
|
|
|
zero byte just before the new end-of-file. Otherwise it must
|
|
|
|
explicitly write zeroes to all bytes between the old and new
|
|
|
|
end-of-file. In any case it should avoid sending new_length larger
|
|
|
|
than the size of the data after applying all write vectors.
|
2007-11-06 03:17:14 +00:00
|
|
|
|
|
|
|
The read vector is used to extract data from all known shares,
|
2012-06-13 16:51:35 +00:00
|
|
|
*before* any writes have been applied. The same read vector is used
|
|
|
|
for all shares. This captures the state that was tested by the test
|
|
|
|
vector, for extant shares.
|
2007-11-06 03:17:14 +00:00
|
|
|
|
|
|
|
This method returns two values: a boolean and a dict. The boolean is
|
|
|
|
True if the write vectors were applied, False if not. The dict is
|
|
|
|
keyed by share number, and each value contains a list of strings, one
|
|
|
|
for each element of the read vector.
|
2007-10-31 02:47:36 +00:00
|
|
|
|
2007-11-06 03:17:14 +00:00
|
|
|
If the write_enabler is wrong, this will raise BadWriteEnablerError.
|
2008-07-10 01:06:55 +00:00
|
|
|
To enable share migration (using update_write_enabler), the exception
|
|
|
|
will have the nodeid used for the old write enabler embedded in it,
|
|
|
|
in the following string::
|
2007-10-31 02:47:36 +00:00
|
|
|
|
2007-11-06 03:17:14 +00:00
|
|
|
The write enabler was recorded by nodeid '%s'.
|
2007-10-31 02:47:36 +00:00
|
|
|
|
2007-11-07 01:49:59 +00:00
|
|
|
Note that the nodeid here is encoded using the same base32 encoding
|
|
|
|
used by Foolscap and allmydata.util.idlib.nodeid_b2a().
|
2007-11-06 03:17:14 +00:00
|
|
|
"""
|
|
|
|
return TupleOf(bool, DictOf(int, ReadData))
|
2007-10-31 02:47:36 +00:00
|
|
|
|
2008-10-24 18:52:48 +00:00
|
|
|
def advise_corrupt_share(share_type=str, storage_index=StorageIndex,
|
|
|
|
shnum=int, reason=str):
|
|
|
|
"""Clients who discover hash failures in shares that they have
|
|
|
|
downloaded from me will use this method to inform me about the
|
|
|
|
failures. I will record their concern so that my operator can
|
|
|
|
manually inspect the shares in question. I return None.
|
|
|
|
|
|
|
|
'share_type' is either 'mutable' or 'immutable'. 'storage_index' is a
|
|
|
|
(binary) storage index string, and 'shnum' is the integer share
|
|
|
|
number. 'reason' is a human-readable explanation of the problem,
|
|
|
|
probably including some expected hash values and the computed ones
|
2012-07-24 03:37:07 +00:00
|
|
|
that did not match. Corruption advisories for mutable shares should
|
2008-10-24 18:52:48 +00:00
|
|
|
include a hash of the public key (the same value that appears in the
|
|
|
|
mutable-file verify-cap), since the current share format does not
|
|
|
|
store that on disk.
|
|
|
|
"""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-07-13 21:04:49 +00:00
|
|
|
class IStorageBucketWriter(Interface):
|
2008-10-14 23:09:20 +00:00
|
|
|
"""
|
|
|
|
Objects of this kind live on the client side.
|
|
|
|
"""
|
2012-07-24 03:34:46 +00:00
|
|
|
def put_block(segmentnum, data):
|
2007-07-25 02:43:21 +00:00
|
|
|
"""
|
2012-07-24 03:34:46 +00:00
|
|
|
@param segmentnum=int
|
|
|
|
@param data=ShareData: For most segments, this data will be 'blocksize'
|
|
|
|
bytes in length. The last segment might be shorter.
|
2007-07-25 02:43:21 +00:00
|
|
|
@return: a Deferred that fires (with None) when the operation completes
|
|
|
|
"""
|
|
|
|
|
2012-07-24 03:34:46 +00:00
|
|
|
def put_crypttext_hashes(hashes):
|
2007-07-25 02:43:21 +00:00
|
|
|
"""
|
2012-07-24 03:34:46 +00:00
|
|
|
@param hashes=ListOf(Hash)
|
2007-07-25 02:43:21 +00:00
|
|
|
@return: a Deferred that fires (with None) when the operation completes
|
|
|
|
"""
|
2007-06-07 02:40:20 +00:00
|
|
|
|
2012-07-24 03:34:46 +00:00
|
|
|
def put_block_hashes(blockhashes):
|
2007-07-25 02:43:21 +00:00
|
|
|
"""
|
2012-07-24 03:34:46 +00:00
|
|
|
@param blockhashes=ListOf(Hash)
|
2007-07-25 02:43:21 +00:00
|
|
|
@return: a Deferred that fires (with None) when the operation completes
|
|
|
|
"""
|
2007-11-01 22:22:57 +00:00
|
|
|
|
2012-07-24 03:34:46 +00:00
|
|
|
def put_share_hashes(sharehashes):
|
2007-07-25 02:43:21 +00:00
|
|
|
"""
|
2012-07-24 03:34:46 +00:00
|
|
|
@param sharehashes=ListOf(TupleOf(int, Hash))
|
2007-07-25 02:43:21 +00:00
|
|
|
@return: a Deferred that fires (with None) when the operation completes
|
|
|
|
"""
|
2007-03-30 03:19:52 +00:00
|
|
|
|
2012-07-24 03:34:46 +00:00
|
|
|
def put_uri_extension(data):
|
2007-06-08 22:59:16 +00:00
|
|
|
"""This block of data contains integrity-checking information (hashes
|
|
|
|
of plaintext, crypttext, and shares), as well as encoding parameters
|
|
|
|
that are necessary to recover the data. This is a serialized dict
|
|
|
|
mapping strings to other strings. The hash of this data is kept in
|
|
|
|
the URI and verified before any of the data is used. All buckets for
|
|
|
|
a given file contain identical copies of this data.
|
2007-06-08 23:17:54 +00:00
|
|
|
|
|
|
|
The serialization format is specified with the following pseudocode:
|
|
|
|
for k in sorted(dict.keys()):
|
|
|
|
assert re.match(r'^[a-zA-Z_\-]+$', k)
|
|
|
|
write(k + ':' + netstring(dict[k]))
|
2007-07-25 02:43:21 +00:00
|
|
|
|
2012-07-24 03:34:46 +00:00
|
|
|
@param data=URIExtensionData
|
2007-07-25 02:43:21 +00:00
|
|
|
@return: a Deferred that fires (with None) when the operation completes
|
2007-06-02 01:48:01 +00:00
|
|
|
"""
|
2007-07-25 02:43:21 +00:00
|
|
|
|
2006-12-02 02:17:50 +00:00
|
|
|
def close():
|
2007-07-25 02:43:21 +00:00
|
|
|
"""Finish writing and close the bucket. The share is not finalized
|
|
|
|
until this method is called: if the uploading client disconnects
|
|
|
|
before calling close(), the partially-written share will be
|
|
|
|
discarded.
|
|
|
|
|
|
|
|
@return: a Deferred that fires (with None) when the operation completes
|
|
|
|
"""
|
2007-07-13 21:04:49 +00:00
|
|
|
|
2006-12-02 02:17:50 +00:00
|
|
|
|
2012-07-24 03:34:46 +00:00
|
|
|
class IStorageBucketReader(Interface):
|
|
|
|
def get_block_data(blocknum, blocksize, size):
|
2007-03-30 23:50:50 +00:00
|
|
|
"""Most blocks will be the same size. The last block might be shorter
|
|
|
|
than the others.
|
2007-07-25 02:43:21 +00:00
|
|
|
|
2012-07-24 03:34:46 +00:00
|
|
|
@param blocknum=int
|
|
|
|
@param blocksize=int
|
|
|
|
@param size=int
|
2007-07-25 02:43:21 +00:00
|
|
|
@return: ShareData
|
2007-03-30 23:50:50 +00:00
|
|
|
"""
|
2007-06-07 07:15:41 +00:00
|
|
|
|
|
|
|
def get_crypttext_hashes():
|
2007-07-25 02:43:21 +00:00
|
|
|
"""
|
2008-10-09 19:13:57 +00:00
|
|
|
@return: ListOf(Hash)
|
2007-07-25 02:43:21 +00:00
|
|
|
"""
|
2007-06-07 07:15:41 +00:00
|
|
|
|
2012-07-24 03:34:46 +00:00
|
|
|
def get_block_hashes(at_least_these=()):
|
2007-07-25 02:43:21 +00:00
|
|
|
"""
|
2012-07-24 03:34:46 +00:00
|
|
|
@param at_least_these=SetOf(int)
|
2008-10-09 19:13:57 +00:00
|
|
|
@return: ListOf(Hash)
|
2007-07-25 02:43:21 +00:00
|
|
|
"""
|
|
|
|
|
2012-07-24 03:34:46 +00:00
|
|
|
def get_share_hashes():
|
2007-07-25 02:43:21 +00:00
|
|
|
"""
|
2008-10-09 19:13:57 +00:00
|
|
|
@return: ListOf(TupleOf(int, Hash))
|
2007-07-25 02:43:21 +00:00
|
|
|
"""
|
|
|
|
|
2007-06-08 22:59:16 +00:00
|
|
|
def get_uri_extension():
|
2007-07-25 02:43:21 +00:00
|
|
|
"""
|
|
|
|
@return: URIExtensionData
|
|
|
|
"""
|
2007-06-02 01:48:01 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2009-06-21 23:51:19 +00:00
|
|
|
class IStorageBroker(Interface):
|
2011-02-21 01:58:04 +00:00
|
|
|
def get_servers_for_psi(peer_selection_index):
|
2009-06-21 23:51:19 +00:00
|
|
|
"""
|
2011-02-21 01:58:04 +00:00
|
|
|
@return: list of IServer instances
|
2009-06-21 23:51:19 +00:00
|
|
|
"""
|
2011-02-21 01:58:04 +00:00
|
|
|
def get_connected_servers():
|
2009-06-21 23:51:19 +00:00
|
|
|
"""
|
2011-02-21 01:58:04 +00:00
|
|
|
@return: frozenset of connected IServer instances
|
|
|
|
"""
|
|
|
|
def get_known_servers():
|
|
|
|
"""
|
|
|
|
@return: frozenset of IServer instances
|
2009-06-21 23:51:19 +00:00
|
|
|
"""
|
|
|
|
def get_all_serverids():
|
|
|
|
"""
|
2009-06-23 02:10:47 +00:00
|
|
|
@return: frozenset of serverid strings
|
2009-06-21 23:51:19 +00:00
|
|
|
"""
|
|
|
|
def get_nickname_for_serverid(serverid):
|
|
|
|
"""
|
|
|
|
@return: unicode nickname, or None
|
|
|
|
"""
|
2006-12-03 00:25:57 +00:00
|
|
|
|
2009-06-23 02:10:47 +00:00
|
|
|
# methods moved from IntroducerClient, need review
|
|
|
|
def get_all_connections():
|
|
|
|
"""Return a frozenset of (nodeid, service_name, rref) tuples, one for
|
|
|
|
each active connection we've established to a remote service. This is
|
|
|
|
mostly useful for unit tests that need to wait until a certain number
|
|
|
|
of connections have been made."""
|
|
|
|
|
|
|
|
def get_all_connectors():
|
|
|
|
"""Return a dict that maps from (nodeid, service_name) to a
|
|
|
|
RemoteServiceConnector instance for all services that we are actively
|
|
|
|
trying to connect to. Each RemoteServiceConnector has the following
|
|
|
|
public attributes::
|
|
|
|
|
|
|
|
service_name: the type of service provided, like 'storage'
|
|
|
|
last_connect_time: when we last established a connection
|
|
|
|
last_loss_time: when we last lost a connection
|
|
|
|
|
|
|
|
version: the peer's version, from the most recent connection
|
|
|
|
oldest_supported: the peer's oldest supported version, same
|
|
|
|
|
|
|
|
rref: the RemoteReference, if connected, otherwise None
|
|
|
|
remote_host: the IAddress, if connected, otherwise None
|
|
|
|
|
|
|
|
This method is intended for monitoring interfaces, such as a web page
|
2012-07-24 03:37:07 +00:00
|
|
|
that describes connecting and connected peers.
|
2009-06-23 02:10:47 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def get_all_peerids():
|
|
|
|
"""Return a frozenset of all peerids to whom we have a connection (to
|
|
|
|
one or more services) established. Mostly useful for unit tests."""
|
|
|
|
|
|
|
|
def get_all_connections_for(service_name):
|
|
|
|
"""Return a frozenset of (nodeid, service_name, rref) tuples, one
|
|
|
|
for each active connection that provides the given SERVICE_NAME."""
|
|
|
|
|
|
|
|
def get_permuted_peers(service_name, key):
|
|
|
|
"""Returns an ordered list of (peerid, rref) tuples, selecting from
|
|
|
|
the connections that provide SERVICE_NAME, using a hash-based
|
|
|
|
permutation keyed by KEY. This randomizes the service list in a
|
|
|
|
repeatable way, to distribute load over many peers.
|
|
|
|
"""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:17:27 +00:00
|
|
|
class IDisplayableServer(Interface):
|
|
|
|
def get_nickname():
|
|
|
|
pass
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:17:27 +00:00
|
|
|
def get_name():
|
|
|
|
pass
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:17:27 +00:00
|
|
|
def get_longname():
|
|
|
|
pass
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:17:27 +00:00
|
|
|
class IServer(IDisplayableServer):
|
2012-04-04 18:13:59 +00:00
|
|
|
"""I live in the client, and represent a single server."""
|
2016-05-03 22:09:13 +00:00
|
|
|
def start_connecting(trigger_cb):
|
2012-04-04 18:13:59 +00:00
|
|
|
pass
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-04-04 18:13:59 +00:00
|
|
|
def get_rref():
|
2012-06-15 01:48:55 +00:00
|
|
|
"""Once a server is connected, I return a RemoteReference.
|
|
|
|
Before a server is connected for the first time, I return None.
|
|
|
|
|
|
|
|
Note that the rref I return will start producing DeadReferenceErrors
|
|
|
|
once the connection is lost.
|
|
|
|
"""
|
2012-04-04 18:13:59 +00:00
|
|
|
|
2007-07-09 06:27:46 +00:00
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
class IMutableSlotWriter(Interface):
|
|
|
|
"""
|
|
|
|
The interface for a writer around a mutable slot on a remote server.
|
|
|
|
"""
|
2012-07-24 03:39:24 +00:00
|
|
|
def set_checkstring(seqnum_or_checkstring, root_hash=None, salt=None):
|
2011-08-02 01:41:19 +00:00
|
|
|
"""
|
|
|
|
Set the checkstring that I will pass to the remote server when
|
|
|
|
writing.
|
|
|
|
|
|
|
|
@param checkstring A packed checkstring to use.
|
|
|
|
|
|
|
|
Note that implementations can differ in which semantics they
|
|
|
|
wish to support for set_checkstring -- they can, for example,
|
|
|
|
build the checkstring themselves from its constituents, or
|
|
|
|
some other thing.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_checkstring():
|
|
|
|
"""
|
|
|
|
Get the checkstring that I think currently exists on the remote
|
|
|
|
server.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def put_block(data, segnum, salt):
|
|
|
|
"""
|
|
|
|
Add a block and salt to the share.
|
|
|
|
"""
|
|
|
|
|
2011-10-10 19:46:42 +00:00
|
|
|
def put_encprivkey(encprivkey):
|
2011-08-02 01:41:19 +00:00
|
|
|
"""
|
|
|
|
Add the encrypted private key to the share.
|
|
|
|
"""
|
|
|
|
|
2012-07-24 03:34:46 +00:00
|
|
|
def put_blockhashes(blockhashes):
|
2011-08-02 01:41:19 +00:00
|
|
|
"""
|
2012-07-24 03:34:46 +00:00
|
|
|
@param blockhashes=list
|
2011-08-02 01:41:19 +00:00
|
|
|
Add the block hash tree to the share.
|
|
|
|
"""
|
|
|
|
|
2012-07-24 03:34:46 +00:00
|
|
|
def put_sharehashes(sharehashes):
|
2011-08-02 01:41:19 +00:00
|
|
|
"""
|
2012-07-24 03:34:46 +00:00
|
|
|
@param sharehashes=dict
|
2011-08-02 01:41:19 +00:00
|
|
|
Add the share hash chain to the share.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_signable():
|
|
|
|
"""
|
|
|
|
Return the part of the share that needs to be signed.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def put_signature(signature):
|
|
|
|
"""
|
|
|
|
Add the signature to the share.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def put_verification_key(verification_key):
|
|
|
|
"""
|
|
|
|
Add the verification key to the share.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def finish_publishing():
|
|
|
|
"""
|
|
|
|
Do anything necessary to finish writing the share to a remote
|
|
|
|
server. I require that no further publishing needs to take place
|
|
|
|
after this method has been called.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
class IURI(Interface):
|
|
|
|
def init_from_string(uri):
|
|
|
|
"""Accept a string (as created by my to_string() method) and populate
|
|
|
|
this instance with its data. I am not normally called directly,
|
|
|
|
please use the module-level uri.from_string() function to convert
|
|
|
|
arbitrary URI strings into IURI-providing instances."""
|
|
|
|
|
|
|
|
def is_readonly():
|
|
|
|
"""Return False if this URI be used to modify the data. Return True
|
|
|
|
if this URI cannot be used to modify the data."""
|
|
|
|
|
|
|
|
def is_mutable():
|
|
|
|
"""Return True if the data can be modified by *somebody* (perhaps
|
|
|
|
someone who has a more powerful URI than this one)."""
|
|
|
|
|
2010-01-27 07:03:09 +00:00
|
|
|
# TODO: rename to get_read_cap()
|
2007-07-21 22:40:36 +00:00
|
|
|
def get_readonly():
|
2012-07-24 03:37:07 +00:00
|
|
|
"""Return another IURI instance that represents a read-only form of
|
2007-07-21 22:40:36 +00:00
|
|
|
this one. If is_readonly() is True, this returns self."""
|
|
|
|
|
2008-12-08 19:44:11 +00:00
|
|
|
def get_verify_cap():
|
2007-10-15 23:16:39 +00:00
|
|
|
"""Return an instance that provides IVerifierURI, which can be used
|
|
|
|
to check on the availability of the file or directory, without
|
|
|
|
providing enough capabilities to actually read or modify the
|
|
|
|
contents. This may return None if the file does not need checking or
|
|
|
|
verification (e.g. LIT URIs).
|
|
|
|
"""
|
|
|
|
|
|
|
|
def to_string():
|
|
|
|
"""Return a string of printable ASCII characters, suitable for
|
|
|
|
passing into init_from_string."""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-12-19 15:39:24 +00:00
|
|
|
class IVerifierURI(Interface, IURI):
|
2007-10-15 23:16:39 +00:00
|
|
|
def init_from_string(uri):
|
|
|
|
"""Accept a string (as created by my to_string() method) and populate
|
|
|
|
this instance with its data. I am not normally called directly,
|
|
|
|
please use the module-level uri.from_string() function to convert
|
|
|
|
arbitrary URI strings into IURI-providing instances."""
|
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
def to_string():
|
|
|
|
"""Return a string of printable ASCII characters, suitable for
|
|
|
|
passing into init_from_string."""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
class IDirnodeURI(Interface):
|
2012-07-24 03:37:07 +00:00
|
|
|
"""I am a URI that represents a dirnode."""
|
|
|
|
|
2007-07-21 22:40:36 +00:00
|
|
|
|
|
|
|
class IFileURI(Interface):
|
2012-07-24 03:37:07 +00:00
|
|
|
"""I am a URI that represents a filenode."""
|
2007-07-21 22:40:36 +00:00
|
|
|
def get_size():
|
|
|
|
"""Return the length (in bytes) of the file that I represent."""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2009-01-07 19:24:51 +00:00
|
|
|
class IImmutableFileURI(IFileURI):
|
|
|
|
pass
|
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
class IMutableFileURI(Interface):
|
2011-10-10 19:48:42 +00:00
|
|
|
pass
|
2010-01-27 06:44:30 +00:00
|
|
|
|
2009-07-17 01:01:03 +00:00
|
|
|
class IDirectoryURI(Interface):
|
2007-11-01 22:15:29 +00:00
|
|
|
pass
|
2010-01-27 06:44:30 +00:00
|
|
|
|
2009-07-17 01:01:03 +00:00
|
|
|
class IReadonlyDirectoryURI(Interface):
|
2007-12-03 21:52:42 +00:00
|
|
|
pass
|
2007-11-01 22:15:29 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2010-01-27 06:44:30 +00:00
|
|
|
class CapConstraintError(Exception):
|
|
|
|
"""A constraint on a cap was violated."""
|
2007-07-21 22:40:36 +00:00
|
|
|
|
2010-01-27 06:44:30 +00:00
|
|
|
class MustBeDeepImmutableError(CapConstraintError):
|
|
|
|
"""Mutable children cannot be added to an immutable directory.
|
|
|
|
Also, caps obtained from an immutable directory can trigger this error
|
|
|
|
if they are later found to refer to a mutable object and then used."""
|
2009-07-15 06:45:10 +00:00
|
|
|
|
2010-01-27 06:44:30 +00:00
|
|
|
class MustBeReadonlyError(CapConstraintError):
|
|
|
|
"""Known write caps cannot be specified in a ro_uri field. Also,
|
|
|
|
caps obtained from a ro_uri field can trigger this error if they
|
|
|
|
are later found to be write caps and then used."""
|
|
|
|
|
|
|
|
class MustNotBeUnknownRWError(CapConstraintError):
|
|
|
|
"""Cannot add an unknown child cap specified in a rw_uri field."""
|
2009-11-18 07:09:00 +00:00
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
|
2015-11-12 23:16:28 +00:00
|
|
|
class IProgress(Interface):
|
|
|
|
"""
|
|
|
|
Remembers progress measured in arbitrary units. Users of these
|
|
|
|
instances must call ``set_progress_total`` at least once before
|
|
|
|
progress can be valid, and must use the same units for both
|
|
|
|
``set_progress_total`` and ``set_progress calls``.
|
|
|
|
|
|
|
|
See also:
|
|
|
|
:class:`allmydata.util.progress.PercentProgress`
|
|
|
|
"""
|
|
|
|
|
|
|
|
progress = Attribute(
|
|
|
|
"Current amount of progress (in percentage)"
|
|
|
|
)
|
|
|
|
|
|
|
|
def set_progress(self, value):
|
|
|
|
"""
|
|
|
|
Sets the current amount of progress.
|
|
|
|
|
|
|
|
Arbitrary units, but must match units used for
|
|
|
|
set_progress_total.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def set_progress_total(self, value):
|
|
|
|
"""
|
|
|
|
Sets the total amount of expected progress
|
|
|
|
|
|
|
|
Arbitrary units, but must be same units as used when calling
|
|
|
|
set_progress() on this instance)..
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
class IReadable(Interface):
|
|
|
|
"""I represent a readable object -- either an immutable file, or a
|
|
|
|
specific version of a mutable file.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def is_readonly():
|
|
|
|
"""Return True if this reference provides mutable access to the given
|
|
|
|
file or directory (i.e. if you can modify it), or False if not. Note
|
|
|
|
that even if this reference is read-only, someone else may hold a
|
|
|
|
read-write reference to it.
|
|
|
|
|
|
|
|
For an IReadable returned by get_best_readable_version(), this will
|
|
|
|
always return True, but for instances of subinterfaces such as
|
|
|
|
IMutableFileVersion, it may return False."""
|
|
|
|
|
|
|
|
def is_mutable():
|
|
|
|
"""Return True if this file or directory is mutable (by *somebody*,
|
|
|
|
not necessarily you), False if it is is immutable. Note that a file
|
|
|
|
might be mutable overall, but your reference to it might be
|
|
|
|
read-only. On the other hand, all references to an immutable file
|
|
|
|
will be read-only; there are no read-write references to an immutable
|
|
|
|
file."""
|
|
|
|
|
|
|
|
def get_storage_index():
|
|
|
|
"""Return the storage index of the file."""
|
|
|
|
|
|
|
|
def get_size():
|
|
|
|
"""Return the length (in bytes) of this readable object."""
|
|
|
|
|
2015-11-12 23:16:28 +00:00
|
|
|
def download_to_data(progress=None):
|
2011-08-02 01:41:19 +00:00
|
|
|
"""Download all of the file contents. I return a Deferred that fires
|
2015-11-12 23:16:28 +00:00
|
|
|
with the contents as a byte string.
|
|
|
|
|
|
|
|
:param progress: None or IProgress implementer
|
|
|
|
"""
|
2011-08-02 01:41:19 +00:00
|
|
|
|
|
|
|
def read(consumer, offset=0, size=None):
|
|
|
|
"""Download a portion (possibly all) of the file's contents, making
|
|
|
|
them available to the given IConsumer. Return a Deferred that fires
|
|
|
|
(with the consumer) when the consumer is unregistered (either because
|
|
|
|
the last byte has been given to it, or because the consumer threw an
|
|
|
|
exception during write(), possibly because it no longer wants to
|
|
|
|
receive data). The portion downloaded will start at 'offset' and
|
2015-07-28 20:01:15 +00:00
|
|
|
contain 'size' bytes (or the remainder of the file if size==None). It
|
|
|
|
is an error to read beyond the end of the file: callers must use
|
|
|
|
get_size() and clip any non-default offset= and size= parameters. It
|
|
|
|
is permissible to read zero bytes.
|
2011-08-02 01:41:19 +00:00
|
|
|
|
|
|
|
The consumer will be used in non-streaming mode: an IPullProducer
|
|
|
|
will be attached to it.
|
|
|
|
|
|
|
|
The consumer will not receive data right away: several network trips
|
|
|
|
must occur first. The order of events will be::
|
|
|
|
|
|
|
|
consumer.registerProducer(p, streaming)
|
|
|
|
(if streaming == False)::
|
|
|
|
consumer does p.resumeProducing()
|
|
|
|
consumer.write(data)
|
|
|
|
consumer does p.resumeProducing()
|
|
|
|
consumer.write(data).. (repeat until all data is written)
|
|
|
|
consumer.unregisterProducer()
|
|
|
|
deferred.callback(consumer)
|
|
|
|
|
|
|
|
If a download error occurs, or an exception is raised by
|
|
|
|
consumer.registerProducer() or consumer.write(), I will call
|
|
|
|
consumer.unregisterProducer() and then deliver the exception via
|
|
|
|
deferred.errback(). To cancel the download, the consumer should call
|
|
|
|
p.stopProducing(), which will result in an exception being delivered
|
|
|
|
via deferred.errback().
|
|
|
|
|
|
|
|
See src/allmydata/util/consumer.py for an example of a simple
|
|
|
|
download-to-memory consumer.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2011-08-27 18:33:57 +00:00
|
|
|
class IWriteable(Interface):
|
2011-08-02 01:41:19 +00:00
|
|
|
"""
|
|
|
|
I define methods that callers can use to update SDMF and MDMF
|
|
|
|
mutable files on a Tahoe-LAFS grid.
|
|
|
|
"""
|
|
|
|
# XXX: For the moment, we have only this. It is possible that we
|
|
|
|
# want to move overwrite() and modify() in here too.
|
|
|
|
def update(data, offset):
|
|
|
|
"""
|
|
|
|
I write the data from my data argument to the MDMF file,
|
|
|
|
starting at offset. I continue writing data until my data
|
|
|
|
argument is exhausted, appending data to the file as necessary.
|
|
|
|
"""
|
|
|
|
# assert IMutableUploadable.providedBy(data)
|
|
|
|
# to append data: offset=node.get_size_of_best_version()
|
|
|
|
# do we want to support compacting MDMF?
|
|
|
|
# for an MDMF file, this can be done with O(data.get_size())
|
|
|
|
# memory. For an SDMF file, any modification takes
|
|
|
|
# O(node.get_size_of_best_version()).
|
|
|
|
|
|
|
|
|
|
|
|
class IMutableFileVersion(IReadable):
|
|
|
|
"""I provide access to a particular version of a mutable file. The
|
|
|
|
access is read/write if I was obtained from a filenode derived from
|
|
|
|
a write cap, or read-only if the filenode was derived from a read cap.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_sequence_number():
|
|
|
|
"""Return the sequence number of this version."""
|
|
|
|
|
|
|
|
def get_servermap():
|
|
|
|
"""Return the IMutableFileServerMap instance that was used to create
|
|
|
|
this object.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_writekey():
|
|
|
|
"""Return this filenode's writekey, or None if the node does not have
|
|
|
|
write-capability. This may be used to assist with data structures
|
|
|
|
that need to make certain data available only to writers, such as the
|
|
|
|
read-write child caps in dirnodes. The recommended process is to have
|
|
|
|
reader-visible data be submitted to the filenode in the clear (where
|
|
|
|
it will be encrypted by the filenode using the readkey), but encrypt
|
|
|
|
writer-visible data using this writekey.
|
|
|
|
"""
|
|
|
|
|
2012-07-24 03:39:24 +00:00
|
|
|
def overwrite(new_contents):
|
2011-08-02 01:41:19 +00:00
|
|
|
"""Replace the contents of the mutable file, provided that no other
|
|
|
|
node has published (or is attempting to publish, concurrently) a
|
|
|
|
newer version of the file than this one.
|
|
|
|
|
|
|
|
I will avoid modifying any share that is different than the version
|
|
|
|
given by get_sequence_number(). However, if another node is writing
|
|
|
|
to the file at the same time as me, I may manage to update some shares
|
|
|
|
while they update others. If I see any evidence of this, I will signal
|
|
|
|
UncoordinatedWriteError, and the file will be left in an inconsistent
|
|
|
|
state (possibly the version you provided, possibly the old version,
|
|
|
|
possibly somebody else's version, and possibly a mix of shares from
|
|
|
|
all of these).
|
|
|
|
|
|
|
|
The recommended response to UncoordinatedWriteError is to either
|
|
|
|
return it to the caller (since they failed to coordinate their
|
|
|
|
writes), or to attempt some sort of recovery. It may be sufficient to
|
|
|
|
wait a random interval (with exponential backoff) and repeat your
|
|
|
|
operation. If I do not signal UncoordinatedWriteError, then I was
|
|
|
|
able to write the new version without incident.
|
|
|
|
|
|
|
|
I return a Deferred that fires (with a PublishStatus object) when the
|
|
|
|
update has completed.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def modify(modifier_cb):
|
|
|
|
"""Modify the contents of the file, by downloading this version,
|
|
|
|
applying the modifier function (or bound method), then uploading
|
|
|
|
the new version. This will succeed as long as no other node
|
|
|
|
publishes a version between the download and the upload.
|
|
|
|
I return a Deferred that fires (with a PublishStatus object) when
|
|
|
|
the update is complete.
|
|
|
|
|
|
|
|
The modifier callable will be given three arguments: a string (with
|
|
|
|
the old contents), a 'first_time' boolean, and a servermap. As with
|
|
|
|
download_to_data(), the old contents will be from this version,
|
|
|
|
but the modifier can use the servermap to make other decisions
|
|
|
|
(such as refusing to apply the delta if there are multiple parallel
|
|
|
|
versions, or if there is evidence of a newer unrecoverable version).
|
|
|
|
'first_time' will be True the first time the modifier is called,
|
|
|
|
and False on any subsequent calls.
|
|
|
|
|
|
|
|
The callable should return a string with the new contents. The
|
|
|
|
callable must be prepared to be called multiple times, and must
|
|
|
|
examine the input string to see if the change that it wants to make
|
|
|
|
is already present in the old version. If it does not need to make
|
|
|
|
any changes, it can either return None, or return its input string.
|
|
|
|
|
|
|
|
If the modifier raises an exception, it will be returned in the
|
|
|
|
errback.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2009-11-20 07:52:55 +00:00
|
|
|
# The hierarchy looks like this:
|
|
|
|
# IFilesystemNode
|
|
|
|
# IFileNode
|
|
|
|
# IMutableFileNode
|
|
|
|
# IImmutableFileNode
|
|
|
|
# IDirectoryNode
|
|
|
|
|
2007-12-03 21:52:42 +00:00
|
|
|
class IFilesystemNode(Interface):
|
2009-11-11 22:25:42 +00:00
|
|
|
def get_cap():
|
|
|
|
"""Return the strongest 'cap instance' associated with this node.
|
|
|
|
(writecap for writeable-mutable files/directories, readcap for
|
|
|
|
immutable or readonly-mutable files/directories). To convert this
|
|
|
|
into a string, call .to_string() on the result."""
|
|
|
|
|
|
|
|
def get_readcap():
|
|
|
|
"""Return a readonly cap instance for this node. For immutable or
|
|
|
|
readonly nodes, get_cap() and get_readcap() return the same thing."""
|
|
|
|
|
|
|
|
def get_repair_cap():
|
|
|
|
"""Return an IURI instance that can be used to repair the file, or
|
|
|
|
None if this node cannot be repaired (either because it is not
|
|
|
|
distributed, like a LIT file, or because the node does not represent
|
|
|
|
sufficient authority to create a repair-cap, like a read-only RSA
|
|
|
|
mutable file node [which cannot create the correct write-enablers]).
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_verify_cap():
|
|
|
|
"""Return an IVerifierURI instance that represents the
|
|
|
|
'verifiy/refresh capability' for this node. The holder of this
|
|
|
|
capability will be able to renew the lease for this node, protecting
|
|
|
|
it from garbage-collection. They will also be able to ask a server if
|
|
|
|
it holds a share for the file or directory.
|
|
|
|
"""
|
|
|
|
|
2007-12-03 21:52:42 +00:00
|
|
|
def get_uri():
|
2010-01-27 06:44:30 +00:00
|
|
|
"""Return the URI string corresponding to the strongest cap associated
|
|
|
|
with this node. If this node is read-only, the URI will only offer
|
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
|
|
|
read-only access. If this node is read-write, the URI will offer
|
|
|
|
read-write access.
|
2007-12-03 21:52:42 +00:00
|
|
|
|
|
|
|
If you have read-write access to a node and wish to share merely
|
|
|
|
read-only access with others, use get_readonly_uri().
|
|
|
|
"""
|
|
|
|
|
2011-08-24 15:59:28 +00:00
|
|
|
def get_write_uri():
|
2010-01-27 06:44:30 +00:00
|
|
|
"""Return the URI string that can be used by others to get write
|
|
|
|
access to this node, if it is writeable. If this is a read-only node,
|
|
|
|
return None."""
|
|
|
|
|
2007-12-03 21:52:42 +00:00
|
|
|
def get_readonly_uri():
|
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
|
|
|
"""Return the URI string that can be used by others to get read-only
|
|
|
|
access to this node. The result is a read-only URI, regardless of
|
|
|
|
whether this node is read-only or read-write.
|
2007-12-03 21:52:42 +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
|
|
|
If you have merely read-only access to this node, get_readonly_uri()
|
|
|
|
will return the same thing as get_uri().
|
2007-12-03 21:52:42 +00:00
|
|
|
"""
|
|
|
|
|
2008-08-12 23:14:07 +00:00
|
|
|
def get_storage_index():
|
|
|
|
"""Return a string with the (binary) storage index in use on this
|
|
|
|
download. This may be None if there is no storage index (i.e. LIT
|
2010-05-22 03:58:36 +00:00
|
|
|
files and directories)."""
|
2008-08-12 23:14:07 +00:00
|
|
|
|
2007-12-05 06:01:37 +00:00
|
|
|
def is_readonly():
|
|
|
|
"""Return True if this reference provides mutable access to the given
|
|
|
|
file or directory (i.e. if you can modify it), or False if not. Note
|
|
|
|
that even if this reference is read-only, someone else may hold a
|
|
|
|
read-write reference to it."""
|
|
|
|
|
|
|
|
def is_mutable():
|
|
|
|
"""Return True if this file or directory is mutable (by *somebody*,
|
|
|
|
not necessarily you), False if it is is immutable. Note that a file
|
|
|
|
might be mutable overall, but your reference to it might be
|
|
|
|
read-only. On the other hand, all references to an immutable file
|
|
|
|
will be read-only; there are no read-write references to an immutable
|
|
|
|
file.
|
|
|
|
"""
|
|
|
|
|
2010-01-27 06:44:30 +00:00
|
|
|
def is_unknown():
|
|
|
|
"""Return True if this is an unknown node."""
|
|
|
|
|
|
|
|
def is_allowed_in_immutable_directory():
|
|
|
|
"""Return True if this node is allowed as a child of a deep-immutable
|
|
|
|
directory. This is true if either the node is of a known-immutable type,
|
|
|
|
or it is unknown and read-only.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def raise_error():
|
|
|
|
"""Raise any error associated with this node."""
|
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
# XXX: These may not be appropriate outside the context of an IReadable.
|
2009-11-18 19:16:24 +00:00
|
|
|
def get_size():
|
|
|
|
"""Return the length (in bytes) of the data this node represents. For
|
|
|
|
directory nodes, I return the size of the backing store. I return
|
|
|
|
synchronously and do not consult the network, so for mutable objects,
|
|
|
|
I will return the most recently observed size for the object, or None
|
|
|
|
if I don't remember a size. Use get_current_size, which returns a
|
|
|
|
Deferred, if you want more up-to-date information."""
|
|
|
|
|
|
|
|
def get_current_size():
|
|
|
|
"""I return a Deferred that fires with the length (in bytes) of the
|
|
|
|
data this node represents.
|
|
|
|
"""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-12-03 21:52:42 +00:00
|
|
|
class IFileNode(IFilesystemNode):
|
2012-07-24 03:37:07 +00:00
|
|
|
"""I am a node that represents a file: a sequence of bytes. I am not a
|
2009-11-20 07:52:55 +00:00
|
|
|
container, like IDirectoryNode."""
|
2011-08-02 01:41:19 +00:00
|
|
|
def get_best_readable_version():
|
|
|
|
"""Return a Deferred that fires with an IReadable for the 'best'
|
|
|
|
available version of the file. The IReadable provides only read
|
|
|
|
access, even if this filenode was derived from a write cap.
|
2009-11-20 07:52:55 +00:00
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
For an immutable file, there is only one version. For a mutable
|
|
|
|
file, the 'best' version is the recoverable version with the
|
|
|
|
highest sequence number. If no uncoordinated writes have occurred,
|
|
|
|
and if enough shares are available, then this will be the most
|
|
|
|
recent version that has been uploaded. If no version is recoverable,
|
|
|
|
the Deferred will errback with an UnrecoverableFileError.
|
|
|
|
"""
|
2008-10-28 20:41:04 +00:00
|
|
|
|
2015-11-12 23:16:28 +00:00
|
|
|
def download_best_version(progress=None):
|
2011-08-02 01:41:19 +00:00
|
|
|
"""Download the contents of the version that would be returned
|
|
|
|
by get_best_readable_version(). This is equivalent to calling
|
|
|
|
download_to_data() on the IReadable given by that method.
|
2008-10-28 20:41:04 +00:00
|
|
|
|
2015-11-12 23:16:28 +00:00
|
|
|
progress is anything that implements IProgress
|
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
I return a Deferred that fires with a byte string when the file
|
|
|
|
has been fully downloaded. To support streaming download, use
|
|
|
|
the 'read' method of IReadable. If no version is recoverable,
|
|
|
|
the Deferred will errback with an UnrecoverableFileError.
|
|
|
|
"""
|
2008-10-28 20:41:04 +00:00
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
def get_size_of_best_version():
|
|
|
|
"""Find the size of the version that would be returned by
|
|
|
|
get_best_readable_version().
|
2008-10-28 20:41:04 +00:00
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
I return a Deferred that fires with an integer. If no version
|
|
|
|
is recoverable, the Deferred will errback with an
|
|
|
|
UnrecoverableFileError.
|
2008-10-28 20:41:04 +00:00
|
|
|
"""
|
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
|
|
|
|
class IImmutableFileNode(IFileNode, IReadable):
|
|
|
|
"""I am a node representing an immutable file. Immutable files have
|
|
|
|
only one version"""
|
|
|
|
|
|
|
|
|
2009-11-20 07:52:55 +00:00
|
|
|
class IMutableFileNode(IFileNode):
|
2008-04-18 00:51:38 +00:00
|
|
|
"""I provide access to a 'mutable file', which retains its identity
|
|
|
|
regardless of what contents are put in it.
|
|
|
|
|
|
|
|
The consistency-vs-availability problem means that there might be
|
|
|
|
multiple versions of a file present in the grid, some of which might be
|
|
|
|
unrecoverable (i.e. have fewer than 'k' shares). These versions are
|
|
|
|
loosely ordered: each has a sequence number and a hash, and any version
|
2012-07-24 03:37:07 +00:00
|
|
|
with seqnum=N was uploaded by a node that has seen at least one version
|
2008-04-18 00:51:38 +00:00
|
|
|
with seqnum=N-1.
|
|
|
|
|
|
|
|
The 'servermap' (an instance of IMutableFileServerMap) is used to
|
|
|
|
describe the versions that are known to be present in the grid, and which
|
|
|
|
servers are hosting their shares. It is used to represent the 'state of
|
|
|
|
the world', and is used for this purpose by my test-and-set operations.
|
|
|
|
Downloading the contents of the mutable file will also return a
|
|
|
|
servermap. Uploading a new version into the mutable file requires a
|
|
|
|
servermap as input, and the semantics of the replace operation is
|
|
|
|
'replace the file with my new version if it looks like nobody else has
|
|
|
|
changed the file since my previous download'. Because the file is
|
|
|
|
distributed, this is not a perfect test-and-set operation, but it will do
|
|
|
|
its best. If the replace process sees evidence of a simultaneous write,
|
|
|
|
it will signal an UncoordinatedWriteError, so that the caller can take
|
|
|
|
corrective action.
|
|
|
|
|
|
|
|
|
|
|
|
Most readers will want to use the 'best' current version of the file, and
|
|
|
|
should use my 'download_best_version()' method.
|
|
|
|
|
|
|
|
To unconditionally replace the file, callers should use overwrite(). This
|
|
|
|
is the mode that user-visible mutable files will probably use.
|
|
|
|
|
|
|
|
To apply some delta to the file, call modify() with a callable modifier
|
|
|
|
function that can apply the modification that you want to make. This is
|
|
|
|
the mode that dirnodes will use, since most directory modification
|
|
|
|
operations can be expressed in terms of deltas to the directory state.
|
|
|
|
|
|
|
|
|
|
|
|
Three methods are available for users who need to perform more complex
|
|
|
|
operations. The first is get_servermap(), which returns an up-to-date
|
|
|
|
servermap using a specified mode. The second is download_version(), which
|
|
|
|
downloads a specific version (not necessarily the 'best' one). The third
|
|
|
|
is 'upload', which accepts new contents and a servermap (which must have
|
|
|
|
been updated with MODE_WRITE). The upload method will attempt to apply
|
|
|
|
the new contents as long as no other node has modified the file since the
|
|
|
|
servermap was updated. This might be useful to a caller who wants to
|
|
|
|
merge multiple versions into a single new one.
|
|
|
|
|
|
|
|
Note that each time the servermap is updated, a specific 'mode' is used,
|
|
|
|
which determines how many peers are queried. To use a servermap for my
|
|
|
|
replace() method, that servermap must have been updated in MODE_WRITE.
|
|
|
|
These modes are defined in allmydata.mutable.common, and consist of
|
|
|
|
MODE_READ, MODE_WRITE, MODE_ANYTHING, and MODE_CHECK. Please look in
|
|
|
|
allmydata/mutable/servermap.py for details about the differences.
|
|
|
|
|
|
|
|
Mutable files are currently limited in size (about 3.5MB max) and can
|
|
|
|
only be retrieved and updated all-at-once, as a single big string. Future
|
|
|
|
versions of our mutable files will remove this restriction.
|
|
|
|
"""
|
2011-08-02 01:41:19 +00:00
|
|
|
def get_best_mutable_version():
|
|
|
|
"""Return a Deferred that fires with an IMutableFileVersion for
|
|
|
|
the 'best' available version of the file. The best version is
|
|
|
|
the recoverable version with the highest sequence number. If no
|
2008-04-18 00:51:38 +00:00
|
|
|
uncoordinated writes have occurred, and if enough shares are
|
2011-08-02 01:41:19 +00:00
|
|
|
available, then this will be the most recent version that has
|
|
|
|
been uploaded.
|
2008-08-13 02:02:52 +00:00
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
If no version is recoverable, the Deferred will errback with an
|
|
|
|
UnrecoverableFileError.
|
2008-08-13 02:02:52 +00:00
|
|
|
"""
|
|
|
|
|
2008-04-18 00:51:38 +00:00
|
|
|
def overwrite(new_contents):
|
|
|
|
"""Unconditionally replace the contents of the mutable file with new
|
|
|
|
ones. This simply chains get_servermap(MODE_WRITE) and upload(). This
|
|
|
|
is only appropriate to use when the new contents of the file are
|
|
|
|
completely unrelated to the old ones, and you do not care about other
|
|
|
|
clients' changes.
|
|
|
|
|
|
|
|
I return a Deferred that fires (with a PublishStatus object) when the
|
|
|
|
update has completed.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def modify(modifier_cb):
|
|
|
|
"""Modify the contents of the file, by downloading the current
|
|
|
|
version, applying the modifier function (or bound method), then
|
|
|
|
uploading the new version. I return a Deferred that fires (with a
|
|
|
|
PublishStatus object) when the update is complete.
|
|
|
|
|
2008-12-06 05:07:10 +00:00
|
|
|
The modifier callable will be given three arguments: a string (with
|
|
|
|
the old contents), a 'first_time' boolean, and a servermap. As with
|
|
|
|
download_best_version(), the old contents will be from the best
|
|
|
|
recoverable version, but the modifier can use the servermap to make
|
|
|
|
other decisions (such as refusing to apply the delta if there are
|
|
|
|
multiple parallel versions, or if there is evidence of a newer
|
|
|
|
unrecoverable version). 'first_time' will be True the first time the
|
|
|
|
modifier is called, and False on any subsequent calls.
|
2008-04-18 00:51:38 +00:00
|
|
|
|
|
|
|
The callable should return a string with the new contents. The
|
|
|
|
callable must be prepared to be called multiple times, and must
|
|
|
|
examine the input string to see if the change that it wants to make
|
|
|
|
is already present in the old version. If it does not need to make
|
|
|
|
any changes, it can either return None, or return its input string.
|
|
|
|
|
|
|
|
If the modifier raises an exception, it will be returned in the
|
|
|
|
errback.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_servermap(mode):
|
|
|
|
"""Return a Deferred that fires with an IMutableFileServerMap
|
|
|
|
instance, updated using the given mode.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def download_version(servermap, version):
|
|
|
|
"""Download a specific version of the file, using the servermap
|
|
|
|
as a guide to where the shares are located.
|
|
|
|
|
|
|
|
I return a Deferred that fires with the requested contents, or
|
2012-07-24 03:37:07 +00:00
|
|
|
errbacks with UnrecoverableFileError. Note that a servermap that was
|
2008-04-18 00:51:38 +00:00
|
|
|
updated with MODE_ANYTHING or MODE_READ may not know about shares for
|
|
|
|
all versions (those modes stop querying servers as soon as they can
|
|
|
|
fulfil their goals), so you may want to use MODE_CHECK (which checks
|
|
|
|
everything) to get increased visibility.
|
|
|
|
"""
|
|
|
|
|
2015-11-12 23:16:28 +00:00
|
|
|
def upload(new_contents, servermap, progress=None):
|
2008-04-18 00:51:38 +00:00
|
|
|
"""Replace the contents of the file with new ones. This requires a
|
|
|
|
servermap that was previously updated with MODE_WRITE.
|
|
|
|
|
|
|
|
I attempt to provide test-and-set semantics, in that I will avoid
|
|
|
|
modifying any share that is different than the version I saw in the
|
|
|
|
servermap. However, if another node is writing to the file at the
|
|
|
|
same time as me, I may manage to update some shares while they update
|
|
|
|
others. If I see any evidence of this, I will signal
|
|
|
|
UncoordinatedWriteError, and the file will be left in an inconsistent
|
2008-03-13 01:00:43 +00:00
|
|
|
state (possibly the version you provided, possibly the old version,
|
|
|
|
possibly somebody else's version, and possibly a mix of shares from
|
2008-04-18 00:51:38 +00:00
|
|
|
all of these).
|
|
|
|
|
|
|
|
The recommended response to UncoordinatedWriteError is to either
|
|
|
|
return it to the caller (since they failed to coordinate their
|
|
|
|
writes), or to attempt some sort of recovery. It may be sufficient to
|
|
|
|
wait a random interval (with exponential backoff) and repeat your
|
|
|
|
operation. If I do not signal UncoordinatedWriteError, then I was
|
|
|
|
able to write the new version without incident.
|
|
|
|
|
2015-11-12 23:16:28 +00:00
|
|
|
``progress`` is either None or an IProgress provider
|
|
|
|
|
2008-04-18 00:51:38 +00:00
|
|
|
I return a Deferred that fires (with a PublishStatus object) when the
|
|
|
|
publish has completed. I will update the servermap in-place with the
|
|
|
|
location of all new shares.
|
2007-11-01 22:15:29 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def get_writekey():
|
|
|
|
"""Return this filenode's writekey, or None if the node does not have
|
|
|
|
write-capability. This may be used to assist with data structures
|
|
|
|
that need to make certain data available only to writers, such as the
|
|
|
|
read-write child caps in dirnodes. The recommended process is to have
|
|
|
|
reader-visible data be submitted to the filenode in the clear (where
|
|
|
|
it will be encrypted by the filenode using the readkey), but encrypt
|
|
|
|
writer-visible data using this writekey.
|
|
|
|
"""
|
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
def get_version():
|
|
|
|
"""Returns the mutable file protocol version."""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-10-27 20:34:49 +00:00
|
|
|
class NotEnoughSharesError(Exception):
|
2009-11-23 01:24:05 +00:00
|
|
|
"""Download was unable to get enough shares"""
|
2009-06-25 02:17:07 +00:00
|
|
|
|
|
|
|
class NoSharesError(Exception):
|
2009-11-23 01:24:05 +00:00
|
|
|
"""Download was unable to get any shares at all."""
|
|
|
|
|
2011-09-04 02:59:06 +00:00
|
|
|
class DownloadStopped(Exception):
|
|
|
|
pass
|
|
|
|
|
2009-12-05 05:30:37 +00:00
|
|
|
class UploadUnhappinessError(Exception):
|
2009-11-23 01:24:05 +00:00
|
|
|
"""Upload was unable to satisfy 'servers_of_happiness'"""
|
2009-03-04 02:37:15 +00:00
|
|
|
|
|
|
|
class UnableToFetchCriticalDownloadDataError(Exception):
|
2012-07-24 03:37:07 +00:00
|
|
|
"""I was unable to fetch some piece of critical data that is supposed to
|
2009-03-04 02:37:15 +00:00
|
|
|
be identically present in all shares."""
|
|
|
|
|
|
|
|
class NoServersError(Exception):
|
|
|
|
"""Upload wasn't given any servers to work with, usually indicating a
|
|
|
|
network or Introducer problem."""
|
2008-10-27 20:34:49 +00:00
|
|
|
|
2008-05-16 23:09:47 +00:00
|
|
|
class ExistingChildError(Exception):
|
|
|
|
"""A directory node was asked to add or replace a child that already
|
|
|
|
exists, and overwrite= was set to False."""
|
|
|
|
|
2008-10-27 20:15:25 +00:00
|
|
|
class NoSuchChildError(Exception):
|
2012-07-24 03:37:07 +00:00
|
|
|
"""A directory node was asked to fetch a child that does not exist."""
|
2011-08-14 22:59:59 +00:00
|
|
|
def __str__(self):
|
|
|
|
# avoid UnicodeEncodeErrors when converting to str
|
|
|
|
return self.__repr__()
|
2008-10-27 20:15:25 +00:00
|
|
|
|
2010-05-27 19:45:29 +00:00
|
|
|
class ChildOfWrongTypeError(Exception):
|
|
|
|
"""An operation was attempted on a child of the wrong type (file or directory)."""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2009-11-20 07:52:55 +00:00
|
|
|
class IDirectoryNode(IFilesystemNode):
|
|
|
|
"""I represent a filesystem node that is a container, with a
|
|
|
|
name-to-child mapping, holding the tahoe equivalent of a directory. All
|
|
|
|
child names are unicode strings, and all children are some sort of
|
2010-05-28 17:19:22 +00:00
|
|
|
IFilesystemNode (a file, subdirectory, or unknown node).
|
2008-02-14 22:45:56 +00:00
|
|
|
"""
|
|
|
|
|
2007-06-25 20:23:51 +00:00
|
|
|
def get_uri():
|
2007-12-03 21:52:42 +00:00
|
|
|
"""
|
2007-06-27 02:41:20 +00:00
|
|
|
The dirnode ('1') URI returned by this method can be used in
|
|
|
|
set_uri() on a different directory ('2') to 'mount' a reference to
|
|
|
|
this directory ('1') under the other ('2'). This URI is just a
|
|
|
|
string, so it can be passed around through email or other out-of-band
|
|
|
|
protocol.
|
2007-06-25 20:23:51 +00:00
|
|
|
"""
|
|
|
|
|
2007-12-03 21:52:42 +00:00
|
|
|
def get_readonly_uri():
|
2007-06-25 20:23:51 +00:00
|
|
|
"""
|
2007-12-03 21:52:42 +00:00
|
|
|
The dirnode ('1') URI returned by this method can be used in
|
|
|
|
set_uri() on a different directory ('2') to 'mount' a reference to
|
|
|
|
this directory ('1') under the other ('2'). This URI is just a
|
|
|
|
string, so it can be passed around through email or other out-of-band
|
|
|
|
protocol.
|
2007-06-27 02:41:20 +00:00
|
|
|
"""
|
|
|
|
|
2007-06-15 07:37:32 +00:00
|
|
|
def list():
|
2007-06-25 20:23:51 +00:00
|
|
|
"""I return a Deferred that fires with a dictionary mapping child
|
2008-02-14 22:45:56 +00:00
|
|
|
name (a unicode string) to (node, metadata_dict) tuples, in which
|
2010-05-28 17:19:22 +00:00
|
|
|
'node' is an IFilesystemNode and 'metadata_dict' is a dictionary of
|
|
|
|
metadata."""
|
2007-06-15 07:37:32 +00:00
|
|
|
|
2007-08-15 20:22:01 +00:00
|
|
|
def has_child(name):
|
|
|
|
"""I return a Deferred that fires with a boolean, True if there
|
2008-02-14 22:45:56 +00:00
|
|
|
exists a child of the given name, False if not. The child name must
|
|
|
|
be a unicode string."""
|
2007-08-15 20:22:01 +00:00
|
|
|
|
2007-06-15 07:37:32 +00:00
|
|
|
def get(name):
|
2007-06-25 20:23:51 +00:00
|
|
|
"""I return a Deferred that fires with a specific named child node,
|
2010-05-28 17:19:22 +00:00
|
|
|
which is an IFilesystemNode. The child name must be a unicode string.
|
|
|
|
I raise NoSuchChildError if I do not have a child by that name."""
|
2007-06-25 20:23:51 +00:00
|
|
|
|
2008-02-09 01:43:47 +00:00
|
|
|
def get_metadata_for(name):
|
2010-05-28 17:19:22 +00:00
|
|
|
"""I return a Deferred that fires with the metadata dictionary for
|
|
|
|
a specific named child node. The child name must be a unicode string.
|
|
|
|
This metadata is stored in the *edge*, not in the child, so it is
|
|
|
|
attached to the parent dirnode rather than the child node.
|
|
|
|
I raise NoSuchChildError if I do not have a child by that name."""
|
2008-02-09 01:43:47 +00:00
|
|
|
|
|
|
|
def set_metadata_for(name, metadata):
|
|
|
|
"""I replace any existing metadata for the named child with the new
|
2008-02-14 22:45:56 +00:00
|
|
|
metadata. The child name must be a unicode string. This metadata is
|
|
|
|
stored in the *edge*, not in the child, so it is attached to the
|
2010-05-28 17:19:22 +00:00
|
|
|
parent dirnode rather than the child node. I return a Deferred
|
|
|
|
(that fires with this dirnode) when the operation is complete.
|
|
|
|
I raise NoSuchChildError if I do not have a child by that name."""
|
2008-02-09 01:43:47 +00:00
|
|
|
|
2007-07-07 02:38:37 +00:00
|
|
|
def get_child_at_path(path):
|
2009-11-20 07:52:55 +00:00
|
|
|
"""Transform a child path into an IFilesystemNode.
|
2007-07-07 02:38:37 +00:00
|
|
|
|
|
|
|
I perform a recursive series of 'get' operations to find the named
|
|
|
|
descendant node. I return a Deferred that fires with the node, or
|
2008-10-27 20:15:25 +00:00
|
|
|
errbacks with NoSuchChildError if the node could not be found.
|
2007-07-07 02:38:37 +00:00
|
|
|
|
|
|
|
The path can be either a single string (slash-separated) or a list of
|
2008-02-14 22:45:56 +00:00
|
|
|
path-name elements. All elements must be unicode strings.
|
2007-07-07 02:38:37 +00:00
|
|
|
"""
|
|
|
|
|
2008-10-03 00:52:03 +00:00
|
|
|
def get_child_and_metadata_at_path(path):
|
2009-11-20 07:52:55 +00:00
|
|
|
"""Transform a child path into an IFilesystemNode and metadata.
|
2008-10-03 00:52:03 +00:00
|
|
|
|
|
|
|
I am like get_child_at_path(), but my Deferred fires with a tuple of
|
|
|
|
(node, metadata). The metadata comes from the last edge. If the path
|
|
|
|
is empty, the metadata will be an empty dictionary.
|
|
|
|
"""
|
|
|
|
|
2009-10-12 23:51:26 +00:00
|
|
|
def set_uri(name, writecap, readcap=None, metadata=None, overwrite=True):
|
|
|
|
"""I add a child (by writecap+readcap) at the specific name. I return
|
|
|
|
a Deferred that fires when the operation finishes. If overwrite= is
|
|
|
|
True, I will replace any existing child of the same name, otherwise
|
|
|
|
an existing child will cause me to return ExistingChildError. The
|
|
|
|
child name must be a unicode string.
|
|
|
|
|
2010-05-28 17:19:22 +00:00
|
|
|
The child caps could be for a file, or for a directory. If you have
|
|
|
|
both the writecap and readcap, you should provide both arguments.
|
|
|
|
If you have only one cap and don't know whether it is read-only,
|
|
|
|
provide it as the writecap argument and leave the readcap as None.
|
|
|
|
If you have only one cap that is known to be read-only, provide it
|
|
|
|
as the readcap argument and leave the writecap as None.
|
2009-10-12 23:51:26 +00:00
|
|
|
The filecaps are typically obtained from an IFilesystemNode with
|
|
|
|
get_uri() and get_readonly_uri().
|
2007-06-15 07:37:32 +00:00
|
|
|
|
2008-02-09 01:43:47 +00:00
|
|
|
If metadata= is provided, I will use it as the metadata for the named
|
|
|
|
edge. This will replace any existing metadata. If metadata= is left
|
|
|
|
as the default value of None, I will set ['mtime'] to the current
|
|
|
|
time, and I will set ['ctime'] to the current time if there was not
|
|
|
|
already a child by this name present. This roughly matches the
|
2010-05-28 17:19:22 +00:00
|
|
|
ctime/mtime semantics of traditional filesystems. See the
|
|
|
|
"About the metadata" section of webapi.txt for futher information.
|
2008-02-09 01:43:47 +00:00
|
|
|
|
2007-06-25 20:23:51 +00:00
|
|
|
If this directory node is read-only, the Deferred will errback with a
|
2010-01-27 06:44:30 +00:00
|
|
|
NotWriteableError."""
|
2007-06-25 20:23:51 +00:00
|
|
|
|
2008-05-16 23:09:47 +00:00
|
|
|
def set_children(entries, overwrite=True):
|
2009-10-13 00:24:40 +00:00
|
|
|
"""Add multiple children (by writecap+readcap) to a directory node.
|
|
|
|
Takes a dictionary, with childname as keys and (writecap, readcap)
|
|
|
|
tuples (or (writecap, readcap, metadata) triples) as values. Returns
|
2009-10-13 01:50:26 +00:00
|
|
|
a Deferred that fires (with this dirnode) when the operation
|
|
|
|
finishes. This is equivalent to calling set_uri() multiple times, but
|
|
|
|
is much more efficient. All child names must be unicode strings.
|
2007-12-19 06:30:02 +00:00
|
|
|
"""
|
|
|
|
|
2008-05-16 23:09:47 +00:00
|
|
|
def set_node(name, child, metadata=None, overwrite=True):
|
2007-06-15 07:37:32 +00:00
|
|
|
"""I add a child at the specific name. I return a Deferred that fires
|
2007-06-25 20:23:51 +00:00
|
|
|
when the operation finishes. This Deferred will fire with the child
|
2007-08-17 00:03:19 +00:00
|
|
|
node that was just added. I will replace any existing child of the
|
2008-09-09 23:34:16 +00:00
|
|
|
same name. The child name must be a unicode string. The 'child'
|
2009-11-20 07:52:55 +00:00
|
|
|
instance must be an instance providing IFilesystemNode.
|
2007-06-25 20:23:51 +00:00
|
|
|
|
2008-02-09 01:43:47 +00:00
|
|
|
If metadata= is provided, I will use it as the metadata for the named
|
|
|
|
edge. This will replace any existing metadata. If metadata= is left
|
|
|
|
as the default value of None, I will set ['mtime'] to the current
|
|
|
|
time, and I will set ['ctime'] to the current time if there was not
|
|
|
|
already a child by this name present. This roughly matches the
|
2010-05-28 17:19:22 +00:00
|
|
|
ctime/mtime semantics of traditional filesystems. See the
|
|
|
|
"About the metadata" section of webapi.txt for futher information.
|
2008-02-09 01:43:47 +00:00
|
|
|
|
2007-06-25 20:23:51 +00:00
|
|
|
If this directory node is read-only, the Deferred will errback with a
|
2010-01-27 06:44:30 +00:00
|
|
|
NotWriteableError."""
|
2007-06-15 07:37:32 +00:00
|
|
|
|
2008-05-16 23:09:47 +00:00
|
|
|
def set_nodes(entries, overwrite=True):
|
2009-10-17 19:28:29 +00:00
|
|
|
"""Add multiple children to a directory node. Takes a dict mapping
|
|
|
|
unicode childname to (child_node, metdata) tuples. If metdata=None,
|
|
|
|
the original metadata is left unmodified. Returns a Deferred that
|
|
|
|
fires (with this dirnode) when the operation finishes. This is
|
|
|
|
equivalent to calling set_node() multiple times, but is much more
|
|
|
|
efficient."""
|
2007-12-19 06:30:02 +00:00
|
|
|
|
2015-11-12 23:16:28 +00:00
|
|
|
def add_file(name, uploadable, metadata=None, overwrite=True, progress=None):
|
2007-06-15 07:37:32 +00:00
|
|
|
"""I upload a file (using the given IUploadable), then attach the
|
2009-11-20 07:22:39 +00:00
|
|
|
resulting ImmutableFileNode to the directory at the given name. I set
|
|
|
|
metadata the same way as set_uri and set_node. The child name must be
|
|
|
|
a unicode string.
|
2008-02-09 01:43:47 +00:00
|
|
|
|
2015-11-12 23:16:28 +00:00
|
|
|
``progress`` either provides IProgress or is None
|
|
|
|
|
2008-02-09 01:43:47 +00:00
|
|
|
I return a Deferred that fires (with the IFileNode of the uploaded
|
|
|
|
file) when the operation completes."""
|
2007-06-15 07:37:32 +00:00
|
|
|
|
2010-05-27 19:45:29 +00:00
|
|
|
def delete(name, must_exist=True, must_be_directory=False, must_be_file=False):
|
2007-06-15 07:37:32 +00:00
|
|
|
"""I remove the child at the specific name. I return a Deferred that
|
2008-02-14 22:45:56 +00:00
|
|
|
fires when the operation finishes. The child name must be a unicode
|
2010-05-27 19:45:29 +00:00
|
|
|
string. If must_exist is True and I do not have a child by that name,
|
|
|
|
I raise NoSuchChildError. If must_be_directory is True and the child
|
|
|
|
is a file, or if must_be_file is True and the child is a directory,
|
|
|
|
I raise ChildOfWrongTypeError."""
|
2007-06-15 07:37:32 +00:00
|
|
|
|
2015-04-28 22:35:06 +00:00
|
|
|
def create_subdirectory(name, initial_children={}, overwrite=True,
|
|
|
|
mutable=True, mutable_version=None, metadata=None):
|
2009-10-13 02:15:20 +00:00
|
|
|
"""I create and attach a directory at the given name. The new
|
|
|
|
directory can be empty, or it can be populated with children
|
|
|
|
according to 'initial_children', which takes a dictionary in the same
|
2009-10-17 19:28:29 +00:00
|
|
|
format as set_nodes (i.e. mapping unicode child name to (childnode,
|
|
|
|
metadata) tuples). The child name must be a unicode string. I return
|
|
|
|
a Deferred that fires (with the new directory node) when the
|
2009-10-13 02:15:20 +00:00
|
|
|
operation finishes."""
|
2007-06-15 07:37:32 +00:00
|
|
|
|
2008-05-16 23:09:47 +00:00
|
|
|
def move_child_to(current_child_name, new_parent, new_child_name=None,
|
|
|
|
overwrite=True):
|
2007-06-15 07:37:32 +00:00
|
|
|
"""I take one of my children and move them to a new parent. The child
|
|
|
|
is referenced by name. On the new parent, the child will live under
|
2008-02-09 01:43:47 +00:00
|
|
|
'new_child_name', which defaults to 'current_child_name'. TODO: what
|
|
|
|
should we do about metadata? I return a Deferred that fires when the
|
2008-10-27 20:15:25 +00:00
|
|
|
operation finishes. The child name must be a unicode string. I raise
|
|
|
|
NoSuchChildError if I do not have a child by that name."""
|
2006-12-07 21:58:23 +00:00
|
|
|
|
2007-06-27 02:41:20 +00:00
|
|
|
def build_manifest():
|
2008-11-19 22:03:47 +00:00
|
|
|
"""I generate a table of everything reachable from this directory.
|
|
|
|
I also compute deep-stats as described below.
|
|
|
|
|
|
|
|
I return a Monitor. The Monitor's results will be a dictionary with
|
2008-11-24 21:40:46 +00:00
|
|
|
four elements:
|
2008-11-19 23:00:27 +00:00
|
|
|
|
|
|
|
res['manifest']: a list of (path, cap) tuples for all nodes
|
|
|
|
(directories and files) reachable from this one.
|
|
|
|
'path' will be a tuple of unicode strings. The
|
|
|
|
origin dirnode will be represented by an empty path
|
|
|
|
tuple.
|
2008-11-24 21:40:46 +00:00
|
|
|
res['verifycaps']: a list of (printable) verifycap strings, one for
|
|
|
|
each reachable non-LIT node. This is a set:
|
|
|
|
it will contain no duplicates.
|
2008-11-19 23:00:27 +00:00
|
|
|
res['storage-index']: a list of (base32) storage index strings,
|
2008-11-24 21:40:46 +00:00
|
|
|
one for each reachable non-LIT node. This is
|
|
|
|
a set: it will contain no duplicates.
|
2008-11-19 23:00:27 +00:00
|
|
|
res['stats']: a dictionary, the same that is generated by
|
|
|
|
start_deep_stats() below.
|
2008-11-19 22:03:47 +00:00
|
|
|
|
|
|
|
The Monitor will also have an .origin_si attribute with the (binary)
|
|
|
|
storage index of the starting point.
|
2008-10-22 00:03:07 +00:00
|
|
|
"""
|
2008-05-08 20:21:14 +00:00
|
|
|
|
2008-10-22 00:03:07 +00:00
|
|
|
def start_deep_stats():
|
|
|
|
"""Return a Monitor, examining all nodes (directories and files)
|
|
|
|
reachable from this one. The Monitor's results will be a dictionary
|
|
|
|
with the following keys::
|
2008-05-08 20:21:14 +00:00
|
|
|
|
|
|
|
count-immutable-files: count of how many CHK files are in the set
|
|
|
|
count-mutable-files: same, for mutable files (does not include
|
|
|
|
directories)
|
|
|
|
count-literal-files: same, for LIT files
|
|
|
|
count-files: sum of the above three
|
|
|
|
|
|
|
|
count-directories: count of directories
|
|
|
|
|
|
|
|
size-immutable-files: total bytes for all CHK files in the set
|
|
|
|
size-mutable-files (TODO): same, for current version of all mutable
|
|
|
|
files, does not include directories
|
|
|
|
size-literal-files: same, for LIT files
|
|
|
|
size-directories: size of mutable files used by directories
|
|
|
|
|
|
|
|
largest-directory: number of bytes in the largest directory
|
|
|
|
largest-directory-children: number of children in the largest
|
|
|
|
directory
|
|
|
|
largest-immutable-file: number of bytes in the largest CHK file
|
|
|
|
|
|
|
|
size-mutable-files is not yet implemented, because it would involve
|
|
|
|
even more queries than deep_stats does.
|
|
|
|
|
2008-10-22 00:03:07 +00:00
|
|
|
The Monitor will also have an .origin_si attribute with the (binary)
|
|
|
|
storage index of the starting point.
|
|
|
|
|
2008-05-08 20:21:14 +00:00
|
|
|
This operation will visit every directory node underneath this one,
|
|
|
|
and can take a long time to run. On a typical workstation with good
|
|
|
|
bandwidth, this can examine roughly 15 directories per second (and
|
|
|
|
takes several minutes of 100% CPU for ~1700 directories).
|
|
|
|
"""
|
2007-01-05 04:52:51 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-01-12 03:57:14 +00:00
|
|
|
class ICodecEncoder(Interface):
|
2007-01-16 04:22:22 +00:00
|
|
|
def set_params(data_size, required_shares, max_shares):
|
2007-01-05 04:52:51 +00:00
|
|
|
"""Set up the parameters of this encoder.
|
|
|
|
|
2007-03-28 02:05:09 +00:00
|
|
|
This prepares the encoder to perform an operation that converts a
|
|
|
|
single block of data into a number of shares, such that a future
|
|
|
|
ICodecDecoder can use a subset of these shares to recover the
|
|
|
|
original data. This operation is invoked by calling encode(). Once
|
|
|
|
the encoding parameters are set up, the encode operation can be
|
|
|
|
invoked multiple times.
|
|
|
|
|
|
|
|
set_params() prepares the encoder to accept blocks of input data that
|
|
|
|
are exactly 'data_size' bytes in length. The encoder will be prepared
|
|
|
|
to produce 'max_shares' shares for each encode() operation (although
|
|
|
|
see the 'desired_share_ids' to use less CPU). The encoding math will
|
|
|
|
be chosen such that the decoder can get by with as few as
|
|
|
|
'required_shares' of these shares and still reproduce the original
|
|
|
|
data. For example, set_params(1000, 5, 5) offers no redundancy at
|
|
|
|
all, whereas set_params(1000, 1, 10) provides 10x redundancy.
|
|
|
|
|
2007-03-28 03:14:45 +00:00
|
|
|
Numerical Restrictions: 'data_size' is required to be an integral
|
|
|
|
multiple of 'required_shares'. In general, the caller should choose
|
|
|
|
required_shares and max_shares based upon their reliability
|
|
|
|
requirements and the number of peers available (the total storage
|
|
|
|
space used is roughly equal to max_shares*data_size/required_shares),
|
|
|
|
then choose data_size to achieve the memory footprint desired (larger
|
|
|
|
data_size means more efficient operation, smaller data_size means
|
|
|
|
smaller memory footprint).
|
|
|
|
|
|
|
|
In addition, 'max_shares' must be equal to or greater than
|
|
|
|
'required_shares'. Of course, setting them to be equal causes
|
|
|
|
encode() to degenerate into a particularly slow form of the 'split'
|
|
|
|
utility.
|
|
|
|
|
2007-03-28 02:05:09 +00:00
|
|
|
See encode() for more details about how these parameters are used.
|
2007-03-28 03:14:45 +00:00
|
|
|
|
2007-03-28 02:05:09 +00:00
|
|
|
set_params() must be called before any other ICodecEncoder methods
|
|
|
|
may be invoked.
|
2007-01-05 04:52:51 +00:00
|
|
|
"""
|
|
|
|
|
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.
2008-12-05 15:17:54 +00:00
|
|
|
def get_params():
|
|
|
|
"""Return the 3-tuple of data_size, required_shares, max_shares"""
|
|
|
|
|
2007-01-05 04:52:51 +00:00
|
|
|
def get_encoder_type():
|
2007-01-17 04:29:59 +00:00
|
|
|
"""Return a short string that describes the type of this encoder.
|
2007-01-05 04:52:51 +00:00
|
|
|
|
2007-01-24 22:34:02 +00:00
|
|
|
There is required to be a global table of encoder classes. This method
|
|
|
|
returns an index into this table; the value at this index is an
|
|
|
|
encoder class, and this encoder is an instance of that class.
|
2007-01-05 04:52:51 +00:00
|
|
|
"""
|
|
|
|
|
2007-03-30 17:52:19 +00:00
|
|
|
def get_block_size():
|
|
|
|
"""Return the length of the shares that encode() will produce.
|
|
|
|
"""
|
|
|
|
|
2007-03-28 03:14:45 +00:00
|
|
|
def encode_proposal(data, desired_share_ids=None):
|
|
|
|
"""Encode some data.
|
|
|
|
|
|
|
|
'data' must be a string (or other buffer object), and len(data) must
|
|
|
|
be equal to the 'data_size' value passed earlier to set_params().
|
|
|
|
|
|
|
|
This will return a Deferred that will fire with two lists. The first
|
|
|
|
is a list of shares, each of which is a string (or other buffer
|
|
|
|
object) such that len(share) is the same as what get_share_size()
|
|
|
|
returned earlier. The second is a list of shareids, in which each is
|
|
|
|
an integer. The lengths of the two lists will always be equal to each
|
|
|
|
other. The user should take care to keep each share closely
|
|
|
|
associated with its shareid, as one is useless without the other.
|
|
|
|
|
|
|
|
The length of this output list will normally be the same as the value
|
|
|
|
provided to the 'max_shares' parameter of set_params(). This may be
|
|
|
|
different if 'desired_share_ids' is provided.
|
|
|
|
|
|
|
|
'desired_share_ids', if provided, is required to be a sequence of
|
|
|
|
ints, each of which is required to be >= 0 and < max_shares. If not
|
|
|
|
provided, encode() will produce 'max_shares' shares, as if
|
|
|
|
'desired_share_ids' were set to range(max_shares). You might use this
|
|
|
|
if you initially thought you were going to use 10 peers, started
|
|
|
|
encoding, and then two of the peers dropped out: you could use
|
|
|
|
desired_share_ids= to skip the work (both memory and CPU) of
|
2012-07-24 03:37:07 +00:00
|
|
|
producing shares for the peers that are no longer available.
|
2007-03-28 03:14:45 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
|
2007-01-24 22:34:02 +00:00
|
|
|
def encode(inshares, desired_share_ids=None):
|
2007-11-01 22:33:47 +00:00
|
|
|
"""Encode some data. This may be called multiple times. Each call is
|
2007-02-01 23:07:00 +00:00
|
|
|
independent.
|
2007-01-05 04:52:51 +00:00
|
|
|
|
2007-03-06 03:57:38 +00:00
|
|
|
inshares is a sequence of length required_shares, containing buffers
|
|
|
|
(i.e. strings), where each buffer contains the next contiguous
|
|
|
|
non-overlapping segment of the input data. Each buffer is required to
|
|
|
|
be the same length, and the sum of the lengths of the buffers is
|
|
|
|
required to be exactly the data_size promised by set_params(). (This
|
|
|
|
implies that the data has to be padded before being passed to
|
|
|
|
encode(), unless of course it already happens to be an even multiple
|
|
|
|
of required_shares in length.)
|
|
|
|
|
2010-10-15 06:02:02 +00:00
|
|
|
Note: the requirement to break up your data into
|
|
|
|
'required_shares' chunks of exactly the right length before
|
|
|
|
calling encode() is surprising from point of view of a user
|
|
|
|
who doesn't know how FEC works. It feels like an
|
|
|
|
implementation detail that has leaked outside the abstraction
|
|
|
|
barrier. Is there a use case in which the data to be encoded
|
|
|
|
might already be available in pre-segmented chunks, such that
|
|
|
|
it is faster or less work to make encode() take a list rather
|
|
|
|
than splitting a single string?
|
|
|
|
|
|
|
|
Yes, there is: suppose you are uploading a file with K=64,
|
|
|
|
N=128, segsize=262,144. Then each in-share will be of size
|
|
|
|
4096. If you use this .encode() API then your code could first
|
|
|
|
read each successive 4096-byte chunk from the file and store
|
|
|
|
each one in a Python string and store each such Python string
|
|
|
|
in a Python list. Then you could call .encode(), passing that
|
|
|
|
list as "inshares". The encoder would generate the other 64
|
|
|
|
"secondary shares" and return to you a new list containing
|
|
|
|
references to the same 64 Python strings that you passed in
|
|
|
|
(as the primary shares) plus references to the new 64 Python
|
|
|
|
strings.
|
|
|
|
|
|
|
|
(You could even imagine that your code could use readv() so
|
|
|
|
that the operating system can arrange to get all of those
|
|
|
|
bytes copied from the file into the Python list of Python
|
|
|
|
strings as efficiently as possible instead of having a loop
|
|
|
|
written in C or in Python to copy the next part of the file
|
|
|
|
into the next string.)
|
|
|
|
|
|
|
|
On the other hand if you instead use the .encode_proposal()
|
|
|
|
API (above), then your code can first read in all of the
|
|
|
|
262,144 bytes of the segment from the file into a Python
|
|
|
|
string, then call .encode_proposal() passing the segment data
|
|
|
|
as the "data" argument. The encoder would basically first
|
|
|
|
split the "data" argument into a list of 64 in-shares of 4096
|
|
|
|
byte each, and then do the same thing that .encode() does. So
|
|
|
|
this would result in a little bit more copying of data and a
|
|
|
|
little bit higher of a "maximum memory usage" during the
|
|
|
|
process, although it might or might not make a practical
|
|
|
|
difference for our current use cases.
|
|
|
|
|
|
|
|
Note that "inshares" is a strange name for the parameter if
|
|
|
|
you think of the parameter as being just for feeding in data
|
|
|
|
to the codec. It makes more sense if you think of the result
|
|
|
|
of this encoding as being the set of shares from inshares plus
|
|
|
|
an extra set of "secondary shares" (or "check shares"). It is
|
|
|
|
a surprising name! If the API is going to be surprising then
|
|
|
|
the name should be surprising. If we switch to
|
|
|
|
encode_proposal() above then we should also switch to an
|
|
|
|
unsurprising name.
|
2007-03-06 03:57:38 +00:00
|
|
|
|
|
|
|
'desired_share_ids', if provided, is required to be a sequence of
|
|
|
|
ints, each of which is required to be >= 0 and < max_shares. If not
|
|
|
|
provided, encode() will produce 'max_shares' shares, as if
|
2007-03-28 02:05:09 +00:00
|
|
|
'desired_share_ids' were set to range(max_shares). You might use this
|
|
|
|
if you initially thought you were going to use 10 peers, started
|
|
|
|
encoding, and then two of the peers dropped out: you could use
|
|
|
|
desired_share_ids= to skip the work (both memory and CPU) of
|
2012-07-24 03:37:07 +00:00
|
|
|
producing shares for the peers that are no longer available.
|
2007-01-24 22:34:02 +00:00
|
|
|
|
|
|
|
For each call, encode() will return a Deferred that fires with two
|
2007-02-01 23:07:00 +00:00
|
|
|
lists, one containing shares and the other containing the shareids.
|
2007-03-28 19:52:44 +00:00
|
|
|
The get_share_size() method can be used to determine the length of
|
|
|
|
the share strings returned by encode(). Each shareid is a small
|
|
|
|
integer, exactly as passed into 'desired_share_ids' (or
|
|
|
|
range(max_shares), if desired_share_ids was not provided).
|
|
|
|
|
2007-11-01 22:33:47 +00:00
|
|
|
The shares and their corresponding shareids are required to be kept
|
|
|
|
together during storage and retrieval. Specifically, the share data is
|
|
|
|
useless by itself: the decoder needs to be told which share is which
|
2007-02-01 23:07:00 +00:00
|
|
|
by providing it with both the shareid and the actual share data.
|
2007-01-05 04:52:51 +00:00
|
|
|
|
2007-03-28 19:52:44 +00:00
|
|
|
This function will allocate an amount of memory roughly equal to::
|
|
|
|
|
|
|
|
(max_shares - required_shares) * get_share_size()
|
2007-02-01 23:07:00 +00:00
|
|
|
|
2007-03-28 19:52:44 +00:00
|
|
|
When combined with the memory that the caller must allocate to
|
|
|
|
provide the input data, this leads to a memory footprint roughly
|
|
|
|
equal to the size of the resulting encoded shares (i.e. the expansion
|
|
|
|
factor times the size of the input segment).
|
2007-01-05 04:52:51 +00:00
|
|
|
"""
|
|
|
|
|
2007-03-28 03:14:45 +00:00
|
|
|
# rejected ideas:
|
|
|
|
#
|
|
|
|
# returning a list of (shareidN,shareN) tuples instead of a pair of
|
|
|
|
# lists (shareids..,shares..). Brian thought the tuples would
|
|
|
|
# encourage users to keep the share and shareid together throughout
|
|
|
|
# later processing, Zooko pointed out that the code to iterate
|
|
|
|
# through two lists is not really more complicated than using a list
|
|
|
|
# of tuples and there's also a performance improvement
|
|
|
|
#
|
|
|
|
# having 'data_size' not required to be an integral multiple of
|
|
|
|
# 'required_shares'. Doing this would require encode() to perform
|
|
|
|
# padding internally, and we'd prefer to have any padding be done
|
|
|
|
# explicitly by the caller. Yes, it is an abstraction leak, but
|
|
|
|
# hopefully not an onerous one.
|
|
|
|
|
|
|
|
|
2007-01-12 03:57:14 +00:00
|
|
|
class ICodecDecoder(Interface):
|
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.
2008-12-05 15:17:54 +00:00
|
|
|
def set_params(data_size, required_shares, max_shares):
|
2009-07-02 01:57:28 +00:00
|
|
|
"""Set the params. They have to be exactly the same ones that were
|
|
|
|
used for encoding."""
|
2007-01-05 04:52:51 +00:00
|
|
|
|
2007-03-30 17:52:19 +00:00
|
|
|
def get_needed_shares():
|
2007-01-16 04:22:22 +00:00
|
|
|
"""Return the number of shares needed to reconstruct the data.
|
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.
2008-12-05 15:17:54 +00:00
|
|
|
set_params() is required to be called before this."""
|
2007-01-16 04:22:22 +00:00
|
|
|
|
2007-01-24 22:34:02 +00:00
|
|
|
def decode(some_shares, their_shareids):
|
2007-01-05 04:52:51 +00:00
|
|
|
"""Decode a partial list of shares into data.
|
|
|
|
|
2007-02-01 23:07:00 +00:00
|
|
|
'some_shares' is required to be a sequence of buffers of sharedata, a
|
2007-01-24 22:34:02 +00:00
|
|
|
subset of the shares returned by ICodecEncode.encode(). Each share is
|
|
|
|
required to be of the same length. The i'th element of their_shareids
|
2007-02-01 23:07:00 +00:00
|
|
|
is required to be the shareid of the i'th buffer in some_shares.
|
2007-01-24 22:34:02 +00:00
|
|
|
|
2012-07-24 03:37:07 +00:00
|
|
|
This returns a Deferred that fires with a sequence of buffers. This
|
2007-01-24 22:34:02 +00:00
|
|
|
sequence will contain all of the segments of the original data, in
|
2007-03-28 02:05:09 +00:00
|
|
|
order. The sum of the lengths of all of the buffers will be the
|
2007-01-24 22:34:02 +00:00
|
|
|
'data_size' value passed into the original ICodecEncode.set_params()
|
2007-03-28 02:05:09 +00:00
|
|
|
call. To get back the single original input block of data, use
|
|
|
|
''.join(output_buffers), or you may wish to simply write them in
|
|
|
|
order to an output file.
|
|
|
|
|
|
|
|
Note that some of the elements in the result sequence may be
|
|
|
|
references to the elements of the some_shares input sequence. In
|
|
|
|
particular, this means that if those share objects are mutable (e.g.
|
|
|
|
arrays) and if they are changed, then both the input (the
|
|
|
|
'some_shares' parameter) and the output (the value given when the
|
|
|
|
deferred is triggered) will change.
|
2007-01-24 22:34:02 +00:00
|
|
|
|
|
|
|
The length of 'some_shares' is required to be exactly the value of
|
|
|
|
'required_shares' passed into the original ICodecEncode.set_params()
|
|
|
|
call.
|
2007-01-05 04:52:51 +00:00
|
|
|
"""
|
2007-01-21 22:01:34 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-03-28 18:24:53 +00:00
|
|
|
class IEncoder(Interface):
|
2007-07-24 02:31:53 +00:00
|
|
|
"""I take an object that provides IEncryptedUploadable, which provides
|
|
|
|
encrypted data, and a list of shareholders. I then encode, hash, and
|
|
|
|
deliver shares to those shareholders. I will compute all the necessary
|
|
|
|
Merkle hash trees that are necessary to validate the crypttext that
|
|
|
|
eventually comes back from the shareholders. I provide the URI Extension
|
|
|
|
Block Hash, and the encoding parameters, both of which must be included
|
|
|
|
in the URI.
|
2007-03-28 18:24:53 +00:00
|
|
|
|
|
|
|
I do not choose shareholders, that is left to the IUploader. I must be
|
|
|
|
given a dict of RemoteReferences to storage buckets that are ready and
|
|
|
|
willing to receive data.
|
|
|
|
"""
|
|
|
|
|
2007-07-24 02:31:53 +00:00
|
|
|
def set_size(size):
|
|
|
|
"""Specify the number of bytes that will be encoded. This must be
|
|
|
|
peformed before get_serialized_params() can be called.
|
2007-03-28 18:24:53 +00:00
|
|
|
"""
|
2007-07-24 02:31:53 +00:00
|
|
|
|
|
|
|
def set_encrypted_uploadable(u):
|
|
|
|
"""Provide a source of encrypted upload data. 'u' must implement
|
|
|
|
IEncryptedUploadable.
|
|
|
|
|
|
|
|
When this is called, the IEncryptedUploadable will be queried for its
|
|
|
|
length and the storage_index that should be used.
|
2007-03-30 18:53:03 +00:00
|
|
|
|
2007-07-24 02:31:53 +00:00
|
|
|
This returns a Deferred that fires with this Encoder instance.
|
|
|
|
|
|
|
|
This must be performed before start() can be called.
|
2007-03-30 18:53:03 +00:00
|
|
|
"""
|
|
|
|
|
2007-07-24 02:31:53 +00:00
|
|
|
def get_param(name):
|
|
|
|
"""Return an encoding parameter, by name.
|
|
|
|
|
|
|
|
'storage_index': return a string with the (16-byte truncated SHA-256
|
|
|
|
hash) storage index to which these shares should be
|
|
|
|
pushed.
|
|
|
|
|
|
|
|
'share_counts': return a tuple describing how many shares are used:
|
2009-11-16 22:24:59 +00:00
|
|
|
(needed_shares, servers_of_happiness, total_shares)
|
2007-07-24 02:31:53 +00:00
|
|
|
|
|
|
|
'num_segments': return an int with the number of segments that
|
|
|
|
will be encoded.
|
|
|
|
|
|
|
|
'segment_size': return an int with the size of each segment.
|
|
|
|
|
|
|
|
'block_size': return the size of the individual blocks that will
|
|
|
|
be delivered to a shareholder's put_block() method. By
|
|
|
|
knowing this, the shareholder will be able to keep all
|
|
|
|
blocks in a single file and still provide random access
|
|
|
|
when reading them. # TODO: can we avoid exposing this?
|
|
|
|
|
|
|
|
'share_size': an int with the size of the data that will be stored
|
|
|
|
on each shareholder. This is aggregate amount of data
|
|
|
|
that will be sent to the shareholder, summed over all
|
|
|
|
the put_block() calls I will ever make. It is useful to
|
|
|
|
determine this size before asking potential
|
|
|
|
shareholders whether they will grant a lease or not,
|
|
|
|
since their answers will depend upon how much space we
|
|
|
|
need. TODO: this might also include some amount of
|
|
|
|
overhead, like the size of all the hashes. We need to
|
|
|
|
decide whether this is useful or not.
|
|
|
|
|
|
|
|
'serialized_params': a string with a concise description of the
|
|
|
|
codec name and its parameters. This may be passed
|
|
|
|
into the IUploadable to let it make sure that
|
|
|
|
the same file encoded with different parameters
|
|
|
|
will result in different storage indexes.
|
|
|
|
|
|
|
|
Once this is called, set_size() and set_params() may not be called.
|
2007-03-28 18:24:53 +00:00
|
|
|
"""
|
|
|
|
|
2009-11-04 04:32:41 +00:00
|
|
|
def set_shareholders(shareholders, servermap):
|
2007-07-24 02:31:53 +00:00
|
|
|
"""Tell the encoder where to put the encoded shares. 'shareholders'
|
|
|
|
must be a dictionary that maps share number (an integer ranging from
|
2009-11-04 04:32:41 +00:00
|
|
|
0 to n-1) to an instance that provides IStorageBucketWriter.
|
|
|
|
'servermap' is a dictionary that maps share number (as defined above)
|
2010-05-14 00:49:17 +00:00
|
|
|
to a set of peerids. This must be performed before start() can be
|
|
|
|
called."""
|
2007-03-28 18:24:53 +00:00
|
|
|
|
|
|
|
def start():
|
2007-07-24 02:31:53 +00:00
|
|
|
"""Begin the encode/upload process. This involves reading encrypted
|
|
|
|
data from the IEncryptedUploadable, encoding it, uploading the shares
|
2007-03-28 18:24:53 +00:00
|
|
|
to the shareholders, then sending the hash trees.
|
|
|
|
|
2007-07-24 02:31:53 +00:00
|
|
|
set_encrypted_uploadable() and set_shareholders() must be called
|
|
|
|
before this can be invoked.
|
|
|
|
|
2009-07-02 01:57:28 +00:00
|
|
|
This returns a Deferred that fires with a verify cap when the upload
|
|
|
|
process is complete. The verifycap, plus the encryption key, is
|
|
|
|
sufficient to construct the read cap.
|
2007-03-28 18:24:53 +00:00
|
|
|
"""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-03-28 18:31:31 +00:00
|
|
|
class IDecoder(Interface):
|
|
|
|
"""I take a list of shareholders and some setup information, then
|
|
|
|
download, validate, decode, and decrypt data from them, writing the
|
|
|
|
results to an output file.
|
|
|
|
|
|
|
|
I do not locate the shareholders, that is left to the IDownloader. I must
|
|
|
|
be given a dict of RemoteReferences to storage buckets that are ready to
|
|
|
|
send data.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def setup(outfile):
|
|
|
|
"""I take a file-like object (providing write and close) to which all
|
|
|
|
the plaintext data will be written.
|
|
|
|
|
|
|
|
TODO: producer/consumer . Maybe write() should return a Deferred that
|
|
|
|
indicates when it will accept more data? But probably having the
|
|
|
|
IDecoder be a producer is easier to glue to IConsumer pieces.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def set_shareholders(shareholders):
|
|
|
|
"""I take a dictionary that maps share identifiers (small integers)
|
|
|
|
to RemoteReferences that provide RIBucketReader. This must be called
|
|
|
|
before start()."""
|
|
|
|
|
|
|
|
def start():
|
|
|
|
"""I start the download. This process involves retrieving data and
|
|
|
|
hash chains from the shareholders, using the hashes to validate the
|
|
|
|
data, decoding the shares into segments, decrypting the segments,
|
|
|
|
then writing the resulting plaintext to the output file.
|
|
|
|
|
|
|
|
I return a Deferred that will fire (with self) when the download is
|
|
|
|
complete.
|
|
|
|
"""
|
2007-03-28 18:24:53 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-01-21 22:01:34 +00:00
|
|
|
class IDownloadTarget(Interface):
|
2008-10-03 00:52:49 +00:00
|
|
|
# Note that if the IDownloadTarget is also an IConsumer, the downloader
|
2008-07-14 22:25:21 +00:00
|
|
|
# will register itself as a producer. This allows the target to invoke
|
|
|
|
# downloader.pauseProducing, resumeProducing, and stopProducing.
|
2007-07-03 22:09:00 +00:00
|
|
|
def open(size):
|
2007-07-03 20:47:37 +00:00
|
|
|
"""Called before any calls to write() or close(). If an error
|
|
|
|
occurs before any data is available, fail() may be called without
|
2007-07-03 22:09:00 +00:00
|
|
|
a previous call to open().
|
|
|
|
|
|
|
|
'size' is the length of the file being downloaded, in bytes."""
|
|
|
|
|
2007-01-21 22:01:34 +00:00
|
|
|
def write(data):
|
|
|
|
"""Output some data to the target."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-01-21 22:01:34 +00:00
|
|
|
def close():
|
|
|
|
"""Inform the target that there is no more data to be written."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-07-03 20:18:14 +00:00
|
|
|
def fail(why):
|
|
|
|
"""fail() is called to indicate that the download has failed. 'why'
|
|
|
|
is a Failure object indicating what went wrong. No further methods
|
|
|
|
will be invoked on the IDownloadTarget after fail()."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-01-21 22:01:34 +00:00
|
|
|
def register_canceller(cb):
|
2009-01-08 19:13:07 +00:00
|
|
|
"""The CiphertextDownloader uses this to register a no-argument function
|
2007-01-21 22:01:34 +00:00
|
|
|
that the target can call to cancel the download. Once this canceller
|
|
|
|
is invoked, no further calls to write() or close() will be made."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-07-07 02:39:47 +00:00
|
|
|
def finish():
|
2009-01-08 19:13:07 +00:00
|
|
|
"""When the CiphertextDownloader is done, this finish() function will be
|
2007-01-21 22:01:34 +00:00
|
|
|
called. Whatever it returns will be returned to the invoker of
|
|
|
|
Downloader.download.
|
|
|
|
"""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-01-21 22:01:34 +00:00
|
|
|
class IDownloader(Interface):
|
|
|
|
def download(uri, target):
|
|
|
|
"""Perform a CHK download, sending the data to the given target.
|
2007-07-03 20:18:14 +00:00
|
|
|
'target' must provide IDownloadTarget.
|
|
|
|
|
|
|
|
Returns a Deferred that fires (with the results of target.finish)
|
|
|
|
when the download is finished, or errbacks if something went wrong."""
|
2007-01-21 22:01:34 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-07-24 02:31:53 +00:00
|
|
|
class IEncryptedUploadable(Interface):
|
2008-02-12 22:36:05 +00:00
|
|
|
def set_upload_status(upload_status):
|
|
|
|
"""Provide an IUploadStatus object that should be filled with status
|
|
|
|
information. The IEncryptedUploadable is responsible for setting
|
|
|
|
key-determination progress ('chk'), size, storage_index, and
|
|
|
|
ciphertext-fetch progress. It may delegate some of this
|
|
|
|
responsibility to others, in particular to the IUploadable."""
|
|
|
|
|
2007-07-24 02:31:53 +00:00
|
|
|
def get_size():
|
|
|
|
"""This behaves just like IUploadable.get_size()."""
|
|
|
|
|
2008-01-16 10:03:35 +00:00
|
|
|
def get_all_encoding_parameters():
|
|
|
|
"""Return a Deferred that fires with a tuple of
|
|
|
|
(k,happy,n,segment_size). The segment_size will be used as-is, and
|
|
|
|
must match the following constraints: it must be a multiple of k, and
|
|
|
|
it shouldn't be unreasonably larger than the file size (if
|
|
|
|
segment_size is larger than filesize, the difference must be stored
|
|
|
|
as padding).
|
2007-07-24 02:31:53 +00:00
|
|
|
|
2008-02-07 01:39:03 +00:00
|
|
|
This usually passes through to the IUploadable method of the same
|
|
|
|
name.
|
|
|
|
|
2008-01-16 10:03:35 +00:00
|
|
|
The encoder strictly obeys the values returned by this method. To
|
|
|
|
make an upload use non-default encoding parameters, you must arrange
|
|
|
|
to control the values that this method returns.
|
2007-07-24 02:31:53 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def get_storage_index():
|
2008-01-16 10:03:35 +00:00
|
|
|
"""Return a Deferred that fires with a 16-byte storage index.
|
2007-07-24 02:31:53 +00:00
|
|
|
"""
|
|
|
|
|
2008-01-25 00:25:33 +00:00
|
|
|
def read_encrypted(length, hash_only):
|
2007-07-24 02:31:53 +00:00
|
|
|
"""This behaves just like IUploadable.read(), but returns crypttext
|
2008-01-25 00:25:33 +00:00
|
|
|
instead of plaintext. If hash_only is True, then this discards the
|
|
|
|
data (and returns an empty list); this improves efficiency when
|
|
|
|
resuming an interrupted upload (where we need to compute the
|
|
|
|
plaintext hashes, but don't need the redundant encrypted data)."""
|
2007-07-24 02:31:53 +00:00
|
|
|
|
|
|
|
def close():
|
|
|
|
"""Just like IUploadable.close()."""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-01-21 22:01:34 +00:00
|
|
|
class IUploadable(Interface):
|
2008-02-12 22:36:05 +00:00
|
|
|
def set_upload_status(upload_status):
|
|
|
|
"""Provide an IUploadStatus object that should be filled with status
|
|
|
|
information. The IUploadable is responsible for setting
|
|
|
|
key-determination progress ('chk')."""
|
|
|
|
|
2008-02-07 01:39:03 +00:00
|
|
|
def set_default_encoding_parameters(params):
|
|
|
|
"""Set the default encoding parameters, which must be a dict mapping
|
|
|
|
strings to ints. The meaningful keys are 'k', 'happy', 'n', and
|
|
|
|
'max_segment_size'. These might have an influence on the final
|
|
|
|
encoding parameters returned by get_all_encoding_parameters(), if the
|
|
|
|
Uploadable doesn't have more specific preferences.
|
|
|
|
|
|
|
|
This call is optional: if it is not used, the Uploadable will use
|
|
|
|
some built-in defaults. If used, this method must be called before
|
|
|
|
any other IUploadable methods to have any effect.
|
|
|
|
"""
|
|
|
|
|
2007-07-20 01:21:44 +00:00
|
|
|
def get_size():
|
|
|
|
"""Return a Deferred that will fire with the length of the data to be
|
|
|
|
uploaded, in bytes. This will be called before the data is actually
|
|
|
|
used, to compute encoding parameters.
|
|
|
|
"""
|
|
|
|
|
2008-02-07 01:39:03 +00:00
|
|
|
def get_all_encoding_parameters():
|
|
|
|
"""Return a Deferred that fires with a tuple of
|
|
|
|
(k,happy,n,segment_size). The segment_size will be used as-is, and
|
|
|
|
must match the following constraints: it must be a multiple of k, and
|
|
|
|
it shouldn't be unreasonably larger than the file size (if
|
|
|
|
segment_size is larger than filesize, the difference must be stored
|
|
|
|
as padding).
|
2007-07-24 02:31:53 +00:00
|
|
|
|
2008-02-07 01:39:03 +00:00
|
|
|
The relative values of k and n allow some IUploadables to request
|
|
|
|
better redundancy than others (in exchange for consuming more space
|
|
|
|
in the grid).
|
2007-07-24 02:31:53 +00:00
|
|
|
|
2008-02-07 01:39:03 +00:00
|
|
|
Larger values of segment_size reduce hash overhead, while smaller
|
|
|
|
values reduce memory footprint and cause data to be delivered in
|
|
|
|
smaller pieces (which may provide a smoother and more predictable
|
|
|
|
download experience).
|
2007-07-24 02:31:53 +00:00
|
|
|
|
2008-02-07 01:39:03 +00:00
|
|
|
The encoder strictly obeys the values returned by this method. To
|
|
|
|
make an upload use non-default encoding parameters, you must arrange
|
|
|
|
to control the values that this method returns. One way to influence
|
|
|
|
them may be to call set_encoding_parameters() before calling
|
|
|
|
get_all_encoding_parameters().
|
2007-07-24 02:31:53 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def get_encryption_key():
|
2007-07-20 01:21:44 +00:00
|
|
|
"""Return a Deferred that fires with a 16-byte AES key. This key will
|
|
|
|
be used to encrypt the data. The key will also be hashed to derive
|
2007-07-24 02:31:53 +00:00
|
|
|
the StorageIndex.
|
2007-07-20 01:21:44 +00:00
|
|
|
|
2012-07-24 03:37:07 +00:00
|
|
|
Uploadables that want to achieve convergence should hash their file
|
2007-07-24 02:31:53 +00:00
|
|
|
contents and the serialized_encoding_parameters to form the key
|
|
|
|
(which of course requires a full pass over the data). Uploadables can
|
|
|
|
use the upload.ConvergentUploadMixin class to achieve this
|
|
|
|
automatically.
|
2007-07-20 01:21:44 +00:00
|
|
|
|
2012-07-24 03:37:07 +00:00
|
|
|
Uploadables that do not care about convergence (or do not wish to
|
2007-07-20 01:21:44 +00:00
|
|
|
make multiple passes over the data) can simply return a
|
|
|
|
strongly-random 16 byte string.
|
2007-07-24 02:31:53 +00:00
|
|
|
|
|
|
|
get_encryption_key() may be called multiple times: the IUploadable is
|
|
|
|
required to return the same value each time.
|
2007-07-20 01:21:44 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def read(length):
|
|
|
|
"""Return a Deferred that fires with a list of strings (perhaps with
|
2012-07-24 03:37:07 +00:00
|
|
|
only a single element) that, when concatenated together, contain the
|
2007-07-20 01:21:44 +00:00
|
|
|
next 'length' bytes of data. If EOF is near, this may provide fewer
|
|
|
|
than 'length' bytes. The total number of bytes provided by read()
|
|
|
|
before it signals EOF must equal the size provided by get_size().
|
|
|
|
|
|
|
|
If the data must be acquired through multiple internal read
|
|
|
|
operations, returning a list instead of a single string may help to
|
2010-10-29 08:20:36 +00:00
|
|
|
reduce string copies. However, the length of the concatenated strings
|
|
|
|
must equal the amount of data requested, unless EOF is encountered.
|
|
|
|
Long reads, or short reads without EOF, are not allowed. read()
|
|
|
|
should return the same amount of data as a local disk file read, just
|
|
|
|
in a different shape and asynchronously.
|
2007-07-20 01:21:44 +00:00
|
|
|
|
|
|
|
'length' will typically be equal to (min(get_size(),1MB)/req_shares),
|
|
|
|
so a 10kB file means length=3kB, 100kB file means length=30kB,
|
|
|
|
and >=1MB file means length=300kB.
|
|
|
|
|
|
|
|
This method provides for a single full pass through the data. Later
|
|
|
|
use cases may desire multiple passes or access to only parts of the
|
|
|
|
data (such as a mutable file making small edits-in-place). This API
|
|
|
|
will be expanded once those use cases are better understood.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def close():
|
|
|
|
"""The upload is finished, and whatever filehandle was in use may be
|
|
|
|
closed."""
|
2007-01-21 22:01:34 +00:00
|
|
|
|
2011-08-02 01:41:19 +00:00
|
|
|
|
|
|
|
class IMutableUploadable(Interface):
|
|
|
|
"""
|
|
|
|
I represent content that is due to be uploaded to a mutable filecap.
|
|
|
|
"""
|
|
|
|
# This is somewhat simpler than the IUploadable interface above
|
|
|
|
# because mutable files do not need to be concerned with possibly
|
|
|
|
# generating a CHK, nor with per-file keys. It is a subset of the
|
|
|
|
# methods in IUploadable, though, so we could just as well implement
|
|
|
|
# the mutable uploadables as IUploadables that don't happen to use
|
|
|
|
# those methods (with the understanding that the unused methods will
|
|
|
|
# never be called on such objects)
|
|
|
|
def get_size():
|
|
|
|
"""
|
|
|
|
Returns a Deferred that fires with the size of the content held
|
|
|
|
by the uploadable.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def read(length):
|
|
|
|
"""
|
2012-07-24 03:37:07 +00:00
|
|
|
Returns a list of strings that, when concatenated, are the next
|
2011-08-02 01:41:19 +00:00
|
|
|
length bytes of the file, or fewer if there are fewer bytes
|
|
|
|
between the current location and the end of the file.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def close():
|
|
|
|
"""
|
|
|
|
The process that used the Uploadable is finished using it, so
|
|
|
|
the uploadable may be closed.
|
|
|
|
"""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-06 04:01:38 +00:00
|
|
|
class IUploadResults(Interface):
|
2012-05-22 04:14:28 +00:00
|
|
|
"""I am returned by immutable upload() methods and contain the results of
|
|
|
|
the upload.
|
2008-02-06 04:01:38 +00:00
|
|
|
|
2012-05-22 04:14:44 +00:00
|
|
|
Note that some of my methods return empty values (0 or an empty dict)
|
|
|
|
when called for non-distributed LIT files."""
|
2008-03-04 02:19:21 +00:00
|
|
|
|
2012-05-22 04:14:28 +00:00
|
|
|
def get_file_size():
|
|
|
|
"""Return the file size, in bytes."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:14:44 +00:00
|
|
|
def get_uri():
|
|
|
|
"""Return the (string) URI of the object uploaded, a CHK readcap."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:14:28 +00:00
|
|
|
def get_ciphertext_fetched():
|
|
|
|
"""Return the number of bytes fetched by the helpe for this upload,
|
|
|
|
or 0 if the helper did not need to fetch any bytes (or if there was
|
|
|
|
no helper)."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:14:28 +00:00
|
|
|
def get_preexisting_shares():
|
|
|
|
"""Return the number of shares that were already present in the grid."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:14:28 +00:00
|
|
|
def get_pushed_shares():
|
|
|
|
"""Return the number of shares that were uploaded."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:14:28 +00:00
|
|
|
def get_sharemap():
|
2012-05-22 04:18:37 +00:00
|
|
|
"""Return a dict mapping share identifier to set of IServer
|
|
|
|
instances. This indicates which servers were given which shares. For
|
2012-05-22 04:14:28 +00:00
|
|
|
immutable files, the shareid is an integer (the share number, from 0
|
|
|
|
to N-1). For mutable files, it is a string of the form
|
|
|
|
'seq%d-%s-sh%d', containing the sequence number, the roothash, and
|
|
|
|
the share number."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:14:28 +00:00
|
|
|
def get_servermap():
|
2012-05-22 04:18:37 +00:00
|
|
|
"""Return dict mapping IServer instance to a set of share numbers."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:14:28 +00:00
|
|
|
def get_timings():
|
|
|
|
"""Return dict of timing information, mapping name to seconds. All
|
|
|
|
times are floats:
|
|
|
|
total : total upload time, start to finish
|
|
|
|
storage_index : time to compute the storage index
|
|
|
|
peer_selection : time to decide which peers will be used
|
|
|
|
contacting_helper : initial helper query to upload/no-upload decision
|
|
|
|
helper_total : initial helper query to helper finished pushing
|
|
|
|
cumulative_fetch : helper waiting for ciphertext requests
|
|
|
|
total_fetch : helper start to last ciphertext response
|
|
|
|
cumulative_encoding : just time spent in zfec
|
|
|
|
cumulative_sending : just time spent waiting for storage servers
|
|
|
|
hashes_and_close : last segment push to shareholder close
|
|
|
|
total_encode_and_push : first encode to shareholder close
|
|
|
|
"""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:14:28 +00:00
|
|
|
def get_uri_extension_data():
|
|
|
|
"""Return the dict of UEB data created for this file."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-22 04:14:28 +00:00
|
|
|
def get_verifycapstr():
|
|
|
|
"""Return the (string) verify-cap URI for the uploaded object."""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-03-04 02:19:21 +00:00
|
|
|
class IDownloadResults(Interface):
|
|
|
|
"""I am created internally by download() methods. I contain a number of
|
2012-07-24 03:37:07 +00:00
|
|
|
public attributes that contain details about the download process.::
|
2008-03-04 02:19:21 +00:00
|
|
|
|
2008-03-04 03:09:32 +00:00
|
|
|
.file_size : the size of the file, in bytes
|
2008-03-04 03:53:45 +00:00
|
|
|
.servers_used : set of server peerids that were used during download
|
2008-03-04 03:30:35 +00:00
|
|
|
.server_problems : dict mapping server peerid to a problem string. Only
|
2009-07-02 01:57:28 +00:00
|
|
|
servers that had problems (bad hashes, disconnects)
|
|
|
|
are listed here.
|
2008-03-04 03:09:32 +00:00
|
|
|
.servermap : dict mapping server peerid to a set of share numbers. Only
|
|
|
|
servers that had any shares are listed here.
|
2008-03-04 02:19:21 +00:00
|
|
|
.timings : dict of timing information, mapping name to seconds (float)
|
|
|
|
peer_selection : time to ask servers about shares
|
|
|
|
servers_peer_selection : dict of peerid to DYHB-query time
|
|
|
|
uri_extension : time to fetch a copy of the URI extension block
|
|
|
|
hashtrees : time to fetch the hash trees
|
2008-03-04 03:09:32 +00:00
|
|
|
segments : time to fetch, decode, and deliver segments
|
|
|
|
cumulative_fetch : time spent waiting for storage servers
|
|
|
|
cumulative_decode : just time spent in zfec
|
|
|
|
cumulative_decrypt : just time spent in decryption
|
2008-03-04 02:19:21 +00:00
|
|
|
total : total download time, start to finish
|
2012-03-17 23:52:32 +00:00
|
|
|
fetch_per_server : dict of server to list of per-segment fetch times
|
2008-02-06 04:01:38 +00:00
|
|
|
"""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-01-21 22:01:34 +00:00
|
|
|
class IUploader(Interface):
|
2008-01-14 21:55:59 +00:00
|
|
|
def upload(uploadable):
|
2007-01-21 22:01:34 +00:00
|
|
|
"""Upload the file. 'uploadable' must impement IUploadable. This
|
2012-07-24 03:37:07 +00:00
|
|
|
returns a Deferred that fires with an IUploadResults instance, from
|
2008-02-06 04:01:38 +00:00
|
|
|
which the URI of the file can be obtained as results.uri ."""
|
2007-01-21 22:01:34 +00:00
|
|
|
|
2007-01-24 22:10:53 +00:00
|
|
|
|
2008-07-16 00:23:25 +00:00
|
|
|
class ICheckable(Interface):
|
2009-02-18 02:32:43 +00:00
|
|
|
def check(monitor, verify=False, add_lease=False):
|
2011-06-10 12:16:56 +00:00
|
|
|
"""Check up on my health, optionally repairing any problems.
|
2008-07-16 00:23:25 +00:00
|
|
|
|
|
|
|
This returns a Deferred that fires with an instance that provides
|
2009-01-06 20:37:03 +00:00
|
|
|
ICheckResults, or None if the object is non-distributed (i.e. LIT
|
2008-09-07 19:44:56 +00:00
|
|
|
files).
|
2008-07-16 00:23:25 +00:00
|
|
|
|
2008-10-22 08:38:18 +00:00
|
|
|
The monitor will be checked periodically to see if the operation has
|
|
|
|
been cancelled. If so, no new queries will be sent, and the Deferred
|
|
|
|
will fire (with a OperationCancelledError) immediately.
|
|
|
|
|
2008-07-16 00:23:25 +00:00
|
|
|
Filenodes and dirnodes (which provide IFilesystemNode) are also
|
|
|
|
checkable. Instances that represent verifier-caps will be checkable
|
|
|
|
but not downloadable. Some objects (like LIT files) do not actually
|
2008-09-07 19:44:56 +00:00
|
|
|
live in the grid, and their checkers return None (non-distributed
|
|
|
|
files are always healthy).
|
2008-07-16 00:23:25 +00:00
|
|
|
|
|
|
|
If verify=False, a relatively lightweight check will be performed: I
|
|
|
|
will ask all servers if they have a share for me, and I will believe
|
|
|
|
whatever they say. If there are at least N distinct shares on the
|
|
|
|
grid, my results will indicate r.is_healthy()==True. This requires a
|
|
|
|
roundtrip to each server, but does not transfer very much data, so
|
|
|
|
the network bandwidth is fairly low.
|
|
|
|
|
|
|
|
If verify=True, a more resource-intensive check will be performed:
|
|
|
|
every share will be downloaded, and the hashes will be validated on
|
|
|
|
every bit. I will ignore any shares that failed their hash checks. If
|
|
|
|
there are at least N distinct valid shares on the grid, my results
|
|
|
|
will indicate r.is_healthy()==True. This requires N/k times as much
|
|
|
|
download bandwidth (and server disk IO) as a regular download. If a
|
|
|
|
storage server is holding a corrupt share, or is experiencing memory
|
|
|
|
failures during retrieval, or is malicious or buggy, then
|
|
|
|
verification will detect the problem, but checking will not.
|
|
|
|
|
2009-02-18 02:32:43 +00:00
|
|
|
If add_lease=True, I will ensure that an up-to-date lease is present
|
|
|
|
on each share. The lease secrets will be derived from by node secret
|
|
|
|
(in BASEDIR/private/secret), so either I will add a new lease to the
|
|
|
|
share, or I will merely renew the lease that I already had. In a
|
|
|
|
future version of the storage-server protocol (once Accounting has
|
|
|
|
been implemented), there may be additional options here to define the
|
|
|
|
kind of lease that is obtained (which account number to claim, etc).
|
|
|
|
|
2008-07-16 00:23:25 +00:00
|
|
|
TODO: any problems seen during checking will be reported to the
|
2012-07-24 03:37:07 +00:00
|
|
|
health-manager.furl, a centralized object that is responsible for
|
2008-07-16 00:23:25 +00:00
|
|
|
figuring out why files are unhealthy so corrective action can be
|
|
|
|
taken.
|
|
|
|
"""
|
|
|
|
|
2009-02-18 02:32:43 +00:00
|
|
|
def check_and_repair(monitor, verify=False, add_lease=False):
|
2008-09-07 19:44:56 +00:00
|
|
|
"""Like check(), but if the file/directory is not healthy, attempt to
|
|
|
|
repair the damage.
|
|
|
|
|
2008-10-22 08:38:18 +00:00
|
|
|
Any non-healthy result will cause an immediate repair operation, to
|
|
|
|
generate and upload new shares. After repair, the file will be as
|
|
|
|
healthy as we can make it. Details about what sort of repair is done
|
|
|
|
will be put in the check-and-repair results. The Deferred will not
|
|
|
|
fire until the repair is complete.
|
|
|
|
|
2012-07-24 03:37:07 +00:00
|
|
|
This returns a Deferred that fires with an instance of
|
2008-09-25 17:16:53 +00:00
|
|
|
ICheckAndRepairResults."""
|
2008-09-07 19:44:56 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-09-10 20:44:58 +00:00
|
|
|
class IDeepCheckable(Interface):
|
2009-02-18 02:32:43 +00:00
|
|
|
def start_deep_check(verify=False, add_lease=False):
|
2008-07-17 01:20:57 +00:00
|
|
|
"""Check upon the health of me and everything I can reach.
|
|
|
|
|
2008-09-10 20:44:58 +00:00
|
|
|
This is a recursive form of check(), useable only on dirnodes.
|
2008-07-17 01:20:57 +00:00
|
|
|
|
2008-10-22 00:03:07 +00:00
|
|
|
I return a Monitor, with results that are an IDeepCheckResults
|
|
|
|
object.
|
2009-02-24 22:40:17 +00:00
|
|
|
|
|
|
|
TODO: If any of the directories I traverse are unrecoverable, the
|
|
|
|
Monitor will report failure. If any of the files I check upon are
|
|
|
|
unrecoverable, those problems will be reported in the
|
|
|
|
IDeepCheckResults as usual, and the Monitor will not report a
|
|
|
|
failure.
|
2008-07-17 01:20:57 +00:00
|
|
|
"""
|
|
|
|
|
2009-02-18 02:32:43 +00:00
|
|
|
def start_deep_check_and_repair(verify=False, add_lease=False):
|
2008-09-07 19:44:56 +00:00
|
|
|
"""Check upon the health of me and everything I can reach. Repair
|
|
|
|
anything that isn't healthy.
|
|
|
|
|
2008-09-10 20:44:58 +00:00
|
|
|
This is a recursive form of check_and_repair(), useable only on
|
|
|
|
dirnodes.
|
2008-09-07 19:44:56 +00:00
|
|
|
|
2008-10-22 00:03:07 +00:00
|
|
|
I return a Monitor, with results that are an
|
|
|
|
IDeepCheckAndRepairResults object.
|
2009-02-24 22:40:17 +00:00
|
|
|
|
|
|
|
TODO: If any of the directories I traverse are unrecoverable, the
|
|
|
|
Monitor will report failure. If any of the files I check upon are
|
|
|
|
unrecoverable, those problems will be reported in the
|
|
|
|
IDeepCheckResults as usual, and the Monitor will not report a
|
|
|
|
failure.
|
2008-09-07 19:44:56 +00:00
|
|
|
"""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2009-01-06 20:37:03 +00:00
|
|
|
class ICheckResults(Interface):
|
2008-09-07 19:44:56 +00:00
|
|
|
"""I contain the detailed results of a check/verify operation.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_storage_index():
|
|
|
|
"""Return a string with the (binary) storage index."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-09-07 19:44:56 +00:00
|
|
|
def get_storage_index_string():
|
|
|
|
"""Return a string with the (printable) abbreviated storage index."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-10-30 01:09:17 +00:00
|
|
|
def get_uri():
|
|
|
|
"""Return the (string) URI of the object that was checked."""
|
2008-09-07 19:44:56 +00:00
|
|
|
|
|
|
|
def is_healthy():
|
|
|
|
"""Return a boolean, True if the file/dir is fully healthy, False if
|
|
|
|
it is damaged in any way. Non-distributed LIT files always return
|
|
|
|
True."""
|
|
|
|
|
2008-11-07 05:35:47 +00:00
|
|
|
def is_recoverable():
|
|
|
|
"""Return a boolean, True if the file/dir can be recovered, False if
|
|
|
|
not. Unrecoverable files are obviously unhealthy. Non-distributed LIT
|
|
|
|
files always return True."""
|
|
|
|
|
2012-05-25 07:13:32 +00:00
|
|
|
# the following methods all return None for non-distributed LIT files
|
|
|
|
|
2014-03-20 16:13:57 +00:00
|
|
|
def get_happiness():
|
|
|
|
"""Return the happiness count of the file."""
|
|
|
|
|
2012-05-25 07:13:32 +00:00
|
|
|
def get_encoding_needed():
|
2014-03-20 16:13:57 +00:00
|
|
|
"""Return 'k', the number of shares required for recovery."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-25 07:13:32 +00:00
|
|
|
def get_encoding_expected():
|
2014-03-20 16:13:57 +00:00
|
|
|
"""Return 'N', the number of total shares generated."""
|
2012-05-25 07:13:32 +00:00
|
|
|
|
|
|
|
def get_share_counter_good():
|
|
|
|
"""Return the number of distinct good shares that were found. For
|
|
|
|
mutable files, this counts shares for the 'best' version."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2012-05-25 07:13:32 +00:00
|
|
|
def get_share_counter_wrong():
|
|
|
|
"""For mutable files, return the number of shares for versions other
|
|
|
|
than the 'best' one (which is defined as being the recoverable
|
|
|
|
version with the highest sequence number, then the highest roothash).
|
|
|
|
These are either leftover shares from an older version (perhaps on a
|
|
|
|
server that was offline when an update occurred), shares from an
|
|
|
|
unrecoverable newer version, or shares from an alternate current
|
|
|
|
version that results from an uncoordinated write collision. For a
|
|
|
|
healthy file, this will equal 0. For immutable files, this will
|
|
|
|
always equal 0."""
|
|
|
|
|
|
|
|
def get_corrupt_shares():
|
|
|
|
"""Return a list of 'share locators', one for each share that was
|
|
|
|
found to be corrupt (integrity failure). Each share locator is a list
|
2012-05-25 19:58:28 +00:00
|
|
|
of (IServer, storage_index, sharenum)."""
|
2012-05-25 07:13:32 +00:00
|
|
|
|
|
|
|
def get_incompatible_shares():
|
|
|
|
"""Return a list of 'share locators', one for each share that was
|
|
|
|
found to be of an unknown format. Each share locator is a list of
|
2012-05-25 19:58:28 +00:00
|
|
|
(IServer, storage_index, sharenum)."""
|
2012-05-25 07:13:32 +00:00
|
|
|
|
|
|
|
def get_servers_responding():
|
2012-07-24 03:37:07 +00:00
|
|
|
"""Return a list of IServer objects, one for each server that
|
2012-05-25 19:58:18 +00:00
|
|
|
responded to the share query (even if they said they didn't have
|
|
|
|
shares, and even if they said they did have shares but then didn't
|
|
|
|
send them when asked, or dropped the connection, or returned a
|
|
|
|
Failure, and even if they said they did have shares and sent
|
|
|
|
incorrect ones when asked)"""
|
2012-05-25 07:13:32 +00:00
|
|
|
|
|
|
|
def get_host_counter_good_shares():
|
|
|
|
"""Return the number of distinct storage servers with good shares. If
|
|
|
|
this number is less than get_share_counters()[good], then some shares
|
|
|
|
are doubled up, increasing the correlation of failures. This
|
|
|
|
indicates that one or more shares should be moved to an otherwise
|
|
|
|
unused server, if one is available.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_version_counter_recoverable():
|
|
|
|
"""Return the number of recoverable versions of the file. For a
|
|
|
|
healthy file, this will equal 1."""
|
|
|
|
|
|
|
|
def get_version_counter_unrecoverable():
|
|
|
|
"""Return the number of unrecoverable versions of the file. For a
|
|
|
|
healthy file, this will be 0."""
|
2008-09-07 19:44:56 +00:00
|
|
|
|
2012-05-25 07:13:32 +00:00
|
|
|
def get_sharemap():
|
2012-05-25 19:58:02 +00:00
|
|
|
"""Return a dict mapping share identifier to list of IServer objects.
|
|
|
|
This indicates which servers are holding which shares. For immutable
|
|
|
|
files, the shareid is an integer (the share number, from 0 to N-1).
|
|
|
|
For mutable files, it is a string of the form 'seq%d-%s-sh%d',
|
|
|
|
containing the sequence number, the roothash, and the share number."""
|
2008-09-07 19:44:56 +00:00
|
|
|
|
|
|
|
def get_summary():
|
|
|
|
"""Return a string with a brief (one-line) summary of the results."""
|
|
|
|
|
|
|
|
def get_report():
|
|
|
|
"""Return a list of strings with more detailed results."""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-09-07 19:44:56 +00:00
|
|
|
class ICheckAndRepairResults(Interface):
|
2008-07-16 00:23:25 +00:00
|
|
|
"""I contain the detailed results of a check/verify/repair operation.
|
|
|
|
|
|
|
|
The IFilesystemNode.check()/verify()/repair() methods all return
|
2008-09-07 19:44:56 +00:00
|
|
|
instances that provide ICheckAndRepairResults.
|
2008-07-16 00:23:25 +00:00
|
|
|
"""
|
2007-10-23 00:46:24 +00:00
|
|
|
|
2008-08-12 04:03:26 +00:00
|
|
|
def get_storage_index():
|
|
|
|
"""Return a string with the (binary) storage index."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-07-16 22:42:56 +00:00
|
|
|
def get_storage_index_string():
|
2008-08-12 04:03:26 +00:00
|
|
|
"""Return a string with the (printable) abbreviated storage index."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-09-07 19:44:56 +00:00
|
|
|
def get_repair_attempted():
|
2009-07-01 00:19:25 +00:00
|
|
|
"""Return a boolean, True if a repair was attempted. We might not
|
|
|
|
attempt to repair the file because it was healthy, or healthy enough
|
|
|
|
(i.e. some shares were missing but not enough to exceed some
|
|
|
|
threshold), or because we don't know how to repair this object."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-09-07 19:44:56 +00:00
|
|
|
def get_repair_successful():
|
|
|
|
"""Return a boolean, True if repair was attempted and the file/dir
|
2008-09-10 02:45:17 +00:00
|
|
|
was fully healthy afterwards. False if no repair was attempted or if
|
|
|
|
a repair attempt failed."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-09-07 19:44:56 +00:00
|
|
|
def get_pre_repair_results():
|
2009-01-06 20:37:03 +00:00
|
|
|
"""Return an ICheckResults instance that describes the state of the
|
2008-09-07 19:44:56 +00:00
|
|
|
file/dir before any repair was attempted."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-09-07 19:44:56 +00:00
|
|
|
def get_post_repair_results():
|
2009-01-06 20:37:03 +00:00
|
|
|
"""Return an ICheckResults instance that describes the state of the
|
2008-09-07 19:44:56 +00:00
|
|
|
file/dir after any repair was attempted. If no repair was attempted,
|
|
|
|
the pre-repair and post-repair results will be identical."""
|
2008-07-16 22:42:56 +00:00
|
|
|
|
2007-10-23 00:46:24 +00:00
|
|
|
|
2008-07-17 01:20:57 +00:00
|
|
|
class IDeepCheckResults(Interface):
|
|
|
|
"""I contain the results of a deep-check operation.
|
|
|
|
|
|
|
|
This is returned by a call to ICheckable.deep_check().
|
|
|
|
"""
|
|
|
|
|
2008-07-17 23:47:09 +00:00
|
|
|
def get_root_storage_index_string():
|
|
|
|
"""Return the storage index (abbreviated human-readable string) of
|
|
|
|
the first object checked."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-09-07 19:44:56 +00:00
|
|
|
def get_counters():
|
|
|
|
"""Return a dictionary with the following keys::
|
|
|
|
|
|
|
|
count-objects-checked: count of how many objects were checked
|
|
|
|
count-objects-healthy: how many of those objects were completely
|
|
|
|
healthy
|
|
|
|
count-objects-unhealthy: how many were damaged in some way
|
2008-11-07 05:35:47 +00:00
|
|
|
count-objects-unrecoverable: how many were unrecoverable
|
2008-09-07 19:44:56 +00:00
|
|
|
count-corrupt-shares: how many shares were found to have
|
|
|
|
corruption, summed over all objects
|
|
|
|
examined
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_corrupt_shares():
|
2012-05-25 19:58:28 +00:00
|
|
|
"""Return a set of (IServer, storage_index, sharenum) for all shares
|
|
|
|
that were found to be corrupt. storage_index is binary."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-09-07 19:44:56 +00:00
|
|
|
def get_all_results():
|
|
|
|
"""Return a dictionary mapping pathname (a tuple of strings, ready to
|
2009-01-06 20:37:03 +00:00
|
|
|
be slash-joined) to an ICheckResults instance, one for each object
|
2008-09-07 19:44:56 +00:00
|
|
|
that was checked."""
|
|
|
|
|
2008-10-23 23:00:31 +00:00
|
|
|
def get_results_for_storage_index(storage_index):
|
2009-01-06 20:37:03 +00:00
|
|
|
"""Retrive the ICheckResults instance for the given (binary)
|
2008-10-23 23:00:31 +00:00
|
|
|
storage index. Raises KeyError if there are no results for that
|
|
|
|
storage index."""
|
|
|
|
|
2008-09-10 08:45:04 +00:00
|
|
|
def get_stats():
|
|
|
|
"""Return a dictionary with the same keys as
|
|
|
|
IDirectoryNode.deep_stats()."""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-09-07 19:44:56 +00:00
|
|
|
class IDeepCheckAndRepairResults(Interface):
|
|
|
|
"""I contain the results of a deep-check-and-repair operation.
|
|
|
|
|
|
|
|
This is returned by a call to ICheckable.deep_check_and_repair().
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_root_storage_index_string():
|
|
|
|
"""Return the storage index (abbreviated human-readable string) of
|
|
|
|
the first object checked."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-09-07 19:44:56 +00:00
|
|
|
def get_counters():
|
|
|
|
"""Return a dictionary with the following keys::
|
|
|
|
|
|
|
|
count-objects-checked: count of how many objects were checked
|
|
|
|
count-objects-healthy-pre-repair: how many of those objects were
|
|
|
|
completely healthy (before any
|
|
|
|
repair)
|
|
|
|
count-objects-unhealthy-pre-repair: how many were damaged in
|
|
|
|
some way
|
2008-11-07 05:35:47 +00:00
|
|
|
count-objects-unrecoverable-pre-repair: how many were unrecoverable
|
2008-09-07 19:44:56 +00:00
|
|
|
count-objects-healthy-post-repair: how many of those objects were
|
|
|
|
completely healthy (after any
|
|
|
|
repair)
|
|
|
|
count-objects-unhealthy-post-repair: how many were damaged in
|
|
|
|
some way
|
2008-11-07 05:35:47 +00:00
|
|
|
count-objects-unrecoverable-post-repair: how many were
|
|
|
|
unrecoverable
|
2008-09-07 19:44:56 +00:00
|
|
|
count-repairs-attempted: repairs were attempted on this many
|
|
|
|
objects. The count-repairs- keys will
|
|
|
|
always be provided, however unless
|
|
|
|
repair=true is present, they will all
|
|
|
|
be zero.
|
|
|
|
count-repairs-successful: how many repairs resulted in healthy
|
|
|
|
objects
|
|
|
|
count-repairs-unsuccessful: how many repairs resulted did not
|
|
|
|
results in completely healthy objects
|
|
|
|
count-corrupt-shares-pre-repair: how many shares were found to
|
|
|
|
have corruption, summed over all
|
|
|
|
objects examined (before any
|
|
|
|
repair)
|
|
|
|
count-corrupt-shares-post-repair: how many shares were found to
|
|
|
|
have corruption, summed over all
|
|
|
|
objects examined (after any
|
|
|
|
repair)
|
|
|
|
"""
|
|
|
|
|
2008-09-10 08:45:04 +00:00
|
|
|
def get_stats():
|
|
|
|
"""Return a dictionary with the same keys as
|
|
|
|
IDirectoryNode.deep_stats()."""
|
|
|
|
|
2008-09-07 19:44:56 +00:00
|
|
|
def get_corrupt_shares():
|
2012-05-25 19:58:28 +00:00
|
|
|
"""Return a set of (IServer, storage_index, sharenum) for all shares
|
|
|
|
that were found to be corrupt before any repair was attempted.
|
|
|
|
storage_index is binary.
|
2008-09-07 19:44:56 +00:00
|
|
|
"""
|
|
|
|
def get_remaining_corrupt_shares():
|
2012-05-25 19:58:28 +00:00
|
|
|
"""Return a set of (IServer, storage_index, sharenum) for all shares
|
|
|
|
that were found to be corrupt after any repair was completed.
|
|
|
|
storage_index is binary. These are shares that need manual inspection
|
|
|
|
and probably deletion.
|
2008-09-07 19:44:56 +00:00
|
|
|
"""
|
2008-08-12 04:03:26 +00:00
|
|
|
def get_all_results():
|
2008-09-07 19:44:56 +00:00
|
|
|
"""Return a dictionary mapping pathname (a tuple of strings, ready to
|
|
|
|
be slash-joined) to an ICheckAndRepairResults instance, one for each
|
|
|
|
object that was checked."""
|
|
|
|
|
2009-01-13 01:56:19 +00:00
|
|
|
def get_results_for_storage_index(storage_index):
|
|
|
|
"""Retrive the ICheckAndRepairResults instance for the given (binary)
|
|
|
|
storage index. Raises KeyError if there are no results for that
|
|
|
|
storage index."""
|
|
|
|
|
2007-10-23 00:46:24 +00:00
|
|
|
|
2008-07-18 00:32:17 +00:00
|
|
|
class IRepairable(Interface):
|
2009-01-06 20:37:03 +00:00
|
|
|
def repair(check_results):
|
2008-07-18 00:32:17 +00:00
|
|
|
"""Attempt to repair the given object. Returns a Deferred that fires
|
|
|
|
with a IRepairResults object.
|
2008-07-18 04:09:23 +00:00
|
|
|
|
2009-01-06 20:37:03 +00:00
|
|
|
I must be called with an object that implements ICheckResults, as
|
2008-07-18 04:09:23 +00:00
|
|
|
proof that you have actually discovered a problem with this file. I
|
|
|
|
will use the data in the checker results to guide the repair process,
|
|
|
|
such as which servers provided bad data and should therefore be
|
2009-01-06 20:37:03 +00:00
|
|
|
avoided. The ICheckResults object is inside the
|
2008-09-07 19:44:56 +00:00
|
|
|
ICheckAndRepairResults object, which is returned by the
|
|
|
|
ICheckable.check() method::
|
|
|
|
|
|
|
|
d = filenode.check(repair=False)
|
|
|
|
def _got_results(check_and_repair_results):
|
|
|
|
check_results = check_and_repair_results.get_pre_repair_results()
|
|
|
|
return filenode.repair(check_results)
|
|
|
|
d.addCallback(_got_results)
|
|
|
|
return d
|
2008-07-18 00:32:17 +00:00
|
|
|
"""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-07-18 04:09:23 +00:00
|
|
|
class IRepairResults(Interface):
|
|
|
|
"""I contain the results of a repair operation."""
|
2012-07-24 03:32:56 +00:00
|
|
|
def get_successful():
|
2009-12-29 23:37:46 +00:00
|
|
|
"""Returns a boolean: True if the repair made the file healthy, False
|
|
|
|
if not. Repair failure generally indicates a file that has been
|
|
|
|
damaged beyond repair."""
|
2008-07-18 04:09:23 +00:00
|
|
|
|
2007-10-23 00:46:24 +00:00
|
|
|
|
2007-12-04 21:32:04 +00:00
|
|
|
class IClient(Interface):
|
2008-01-14 21:55:59 +00:00
|
|
|
def upload(uploadable):
|
2008-02-06 04:01:38 +00:00
|
|
|
"""Upload some data into a CHK, get back the UploadResults for it.
|
2007-12-04 21:32:04 +00:00
|
|
|
@param uploadable: something that implements IUploadable
|
2008-02-06 04:01:38 +00:00
|
|
|
@return: a Deferred that fires with the UploadResults instance.
|
|
|
|
To get the URI for this file, use results.uri .
|
2007-12-04 21:32:04 +00:00
|
|
|
"""
|
2007-12-07 01:36:58 +00:00
|
|
|
|
2008-01-14 21:55:59 +00:00
|
|
|
def create_mutable_file(contents=""):
|
2009-10-13 03:12:32 +00:00
|
|
|
"""Create a new mutable file (with initial) contents, get back the
|
2009-12-29 23:04:09 +00:00
|
|
|
new node instance.
|
2009-10-13 03:12:32 +00:00
|
|
|
|
|
|
|
@param contents: (bytestring, callable, or None): this provides the
|
|
|
|
initial contents of the mutable file. If 'contents' is a bytestring,
|
|
|
|
it will be used as-is. If 'contents' is a callable, it will be
|
|
|
|
invoked with the new MutableFileNode instance and is expected to
|
|
|
|
return a bytestring with the initial contents of the file (the
|
|
|
|
callable can use node.get_writekey() to decide how to encrypt the
|
|
|
|
initial contents, e.g. for a brand new dirnode with initial
|
|
|
|
children). contents=None is equivalent to an empty string. Using
|
|
|
|
content_maker= is more efficient than creating a mutable file and
|
|
|
|
setting its contents in two separate operations.
|
|
|
|
|
2009-12-29 23:04:09 +00:00
|
|
|
@return: a Deferred that fires with an IMutableFileNode instance.
|
2007-12-07 01:36:58 +00:00
|
|
|
"""
|
|
|
|
|
2009-10-12 22:45:06 +00:00
|
|
|
def create_dirnode(initial_children={}):
|
|
|
|
"""Create a new unattached dirnode, possibly with initial children.
|
|
|
|
|
|
|
|
@param initial_children: dict with keys that are unicode child names,
|
2009-10-17 19:28:29 +00:00
|
|
|
and values that are (childnode, metadata) tuples.
|
2009-10-12 22:45:06 +00:00
|
|
|
|
2007-12-04 21:32:04 +00:00
|
|
|
@return: a Deferred that fires with the new IDirectoryNode instance.
|
|
|
|
"""
|
2007-12-07 01:36:58 +00:00
|
|
|
|
2009-07-02 22:25:37 +00:00
|
|
|
def create_node_from_uri(uri, rouri):
|
2007-12-04 21:32:04 +00:00
|
|
|
"""Create a new IFilesystemNode instance from the uri, synchronously.
|
2009-07-02 22:25:37 +00:00
|
|
|
@param uri: a string or IURI-providing instance, or None. This could
|
|
|
|
be for a LiteralFileNode, a CHK file node, a mutable file
|
|
|
|
node, or a directory node
|
|
|
|
@param rouri: a string or IURI-providing instance, or None. If the
|
|
|
|
main uri is None, I will use the rouri instead. If I
|
|
|
|
recognize the format of the main uri, I will ignore the
|
|
|
|
rouri (because it can be derived from the writecap).
|
|
|
|
|
2009-07-02 01:57:28 +00:00
|
|
|
@return: an instance that provides IFilesystemNode (or more usefully
|
|
|
|
one of its subclasses). File-specifying URIs will result in
|
2009-11-20 07:52:55 +00:00
|
|
|
IFileNode-providing instances, like ImmutableFileNode,
|
|
|
|
LiteralFileNode, or MutableFileNode. Directory-specifying
|
|
|
|
URIs will result in IDirectoryNode-providing instances, like
|
|
|
|
DirectoryNode.
|
2007-12-04 21:32:04 +00:00
|
|
|
"""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2009-10-17 19:28:29 +00:00
|
|
|
class INodeMaker(Interface):
|
|
|
|
"""The NodeMaker is used to create IFilesystemNode instances. It can
|
|
|
|
accept a filecap/dircap string and return the node right away. It can
|
|
|
|
also create new nodes (i.e. upload a file, or create a mutable file)
|
|
|
|
asynchronously. Once you have one of these nodes, you can use other
|
|
|
|
methods to determine whether it is a file or directory, and to download
|
|
|
|
or modify its contents.
|
|
|
|
|
|
|
|
The NodeMaker encapsulates all the authorities that these
|
2009-11-20 07:52:55 +00:00
|
|
|
IFilesystemNodes require (like references to the StorageFarmBroker). Each
|
2009-10-17 19:28:29 +00:00
|
|
|
Tahoe process will typically have a single NodeMaker, but unit tests may
|
|
|
|
create simplified/mocked forms for testing purposes.
|
|
|
|
"""
|
2012-07-24 03:39:24 +00:00
|
|
|
|
|
|
|
def create_from_cap(writecap, readcap=None, deep_immutable=False, name=u"<unknown name>"):
|
2009-10-17 19:28:29 +00:00
|
|
|
"""I create an IFilesystemNode from the given writecap/readcap. I can
|
|
|
|
only provide nodes for existing file/directory objects: use my other
|
|
|
|
methods to create new objects. I return synchronously."""
|
|
|
|
|
|
|
|
def create_mutable_file(contents=None, keysize=None):
|
2012-07-24 03:37:07 +00:00
|
|
|
"""I create a new mutable file, and return a Deferred that will fire
|
2009-10-17 19:28:29 +00:00
|
|
|
with the IMutableFileNode instance when it is ready. If contents= is
|
|
|
|
provided (a bytestring), it will be used as the initial contents of
|
|
|
|
the new file, otherwise the file will contain zero bytes. keysize= is
|
|
|
|
for use by unit tests, to create mutable files that are smaller than
|
|
|
|
usual."""
|
|
|
|
|
|
|
|
def create_new_mutable_directory(initial_children={}):
|
2012-07-24 03:37:07 +00:00
|
|
|
"""I create a new mutable directory, and return a Deferred that will
|
2009-10-17 19:28:29 +00:00
|
|
|
fire with the IDirectoryNode instance when it is ready. If
|
|
|
|
initial_children= is provided (a dict mapping unicode child name to
|
|
|
|
(childnode, metadata_dict) tuples), the directory will be populated
|
|
|
|
with those children, otherwise it will be empty."""
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:39:45 +00:00
|
|
|
class IClientStatus(Interface):
|
2008-03-01 05:19:03 +00:00
|
|
|
def list_all_uploads():
|
2012-07-24 03:37:07 +00:00
|
|
|
"""Return a list of uploader objects, one for each upload that
|
2008-03-03 21:48:52 +00:00
|
|
|
currently has an object available (tracked with weakrefs). This is
|
|
|
|
intended for debugging purposes."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-03-03 21:48:52 +00:00
|
|
|
def list_active_uploads():
|
|
|
|
"""Return a list of active IUploadStatus objects."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-03-01 05:19:03 +00:00
|
|
|
def list_recent_uploads():
|
|
|
|
"""Return a list of IUploadStatus objects for the most recently
|
|
|
|
started uploads."""
|
|
|
|
|
|
|
|
def list_all_downloads():
|
2012-07-24 03:37:07 +00:00
|
|
|
"""Return a list of downloader objects, one for each download that
|
2008-03-03 21:48:52 +00:00
|
|
|
currently has an object available (tracked with weakrefs). This is
|
|
|
|
intended for debugging purposes."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-03-03 21:48:52 +00:00
|
|
|
def list_active_downloads():
|
|
|
|
"""Return a list of active IDownloadStatus objects."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-03-01 05:19:03 +00:00
|
|
|
def list_recent_downloads():
|
|
|
|
"""Return a list of IDownloadStatus objects for the most recently
|
|
|
|
started downloads."""
|
2008-02-12 22:39:45 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:36:05 +00:00
|
|
|
class IUploadStatus(Interface):
|
2008-03-05 01:50:44 +00:00
|
|
|
def get_started():
|
|
|
|
"""Return a timestamp (float with seconds since epoch) indicating
|
|
|
|
when the operation was started."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:36:05 +00:00
|
|
|
def get_storage_index():
|
|
|
|
"""Return a string with the (binary) storage index in use on this
|
|
|
|
upload. Returns None if the storage index has not yet been
|
|
|
|
calculated."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:36:05 +00:00
|
|
|
def get_size():
|
|
|
|
"""Return an integer with the number of bytes that will eventually
|
|
|
|
be uploaded for this file. Returns None if the size is not yet known.
|
|
|
|
"""
|
|
|
|
def using_helper():
|
|
|
|
"""Return True if this upload is using a Helper, False if not."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:36:05 +00:00
|
|
|
def get_status():
|
|
|
|
"""Return a string describing the current state of the upload
|
|
|
|
process."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:36:05 +00:00
|
|
|
def get_progress():
|
|
|
|
"""Returns a tuple of floats, (chk, ciphertext, encode_and_push),
|
|
|
|
each from 0.0 to 1.0 . 'chk' describes how much progress has been
|
|
|
|
made towards hashing the file to determine a CHK encryption key: if
|
|
|
|
non-convergent encryption is in use, this will be trivial, otherwise
|
|
|
|
the whole file must be hashed. 'ciphertext' describes how much of the
|
|
|
|
ciphertext has been pushed to the helper, and is '1.0' for non-helper
|
|
|
|
uploads. 'encode_and_push' describes how much of the encode-and-push
|
|
|
|
process has finished: for helper uploads this is dependent upon the
|
|
|
|
helper providing progress reports. It might be reasonable to add all
|
|
|
|
three numbers and report the sum to the user."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-26 22:35:28 +00:00
|
|
|
def get_active():
|
|
|
|
"""Return True if the upload is currently active, False if not."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-03-03 21:48:52 +00:00
|
|
|
def get_results():
|
|
|
|
"""Return an instance of UploadResults (which contains timing and
|
|
|
|
sharemap information). Might return None if the upload is not yet
|
|
|
|
finished."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-03-01 05:19:03 +00:00
|
|
|
def get_counter():
|
|
|
|
"""Each upload status gets a unique number: this method returns that
|
|
|
|
number. This provides a handle to this particular upload, so a web
|
|
|
|
page can generate a suitable hyperlink."""
|
2008-02-12 22:36:05 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:38:39 +00:00
|
|
|
class IDownloadStatus(Interface):
|
2008-03-05 01:50:44 +00:00
|
|
|
def get_started():
|
|
|
|
"""Return a timestamp (float with seconds since epoch) indicating
|
|
|
|
when the operation was started."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:38:39 +00:00
|
|
|
def get_storage_index():
|
|
|
|
"""Return a string with the (binary) storage index in use on this
|
|
|
|
download. This may be None if there is no storage index (i.e. LIT
|
|
|
|
files)."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:38:39 +00:00
|
|
|
def get_size():
|
|
|
|
"""Return an integer with the number of bytes that will eventually be
|
|
|
|
retrieved for this file. Returns None if the size is not yet known.
|
|
|
|
"""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:38:39 +00:00
|
|
|
def using_helper():
|
|
|
|
"""Return True if this download is using a Helper, False if not."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:38:39 +00:00
|
|
|
def get_status():
|
|
|
|
"""Return a string describing the current state of the download
|
|
|
|
process."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-12 22:38:39 +00:00
|
|
|
def get_progress():
|
|
|
|
"""Returns a float (from 0.0 to 1.0) describing the amount of the
|
|
|
|
download that has completed. This value will remain at 0.0 until the
|
|
|
|
first byte of plaintext is pushed to the download target."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-26 22:35:28 +00:00
|
|
|
def get_active():
|
|
|
|
"""Return True if the download is currently active, False if not."""
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-03-01 05:19:03 +00:00
|
|
|
def get_counter():
|
|
|
|
"""Each download status gets a unique number: this method returns
|
|
|
|
that number. This provides a handle to this particular download, so a
|
|
|
|
web page can generate a suitable hyperlink."""
|
2008-02-12 22:38:39 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-04-17 02:05:41 +00:00
|
|
|
class IServermapUpdaterStatus(Interface):
|
|
|
|
pass
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-03-04 08:07:44 +00:00
|
|
|
class IPublishStatus(Interface):
|
|
|
|
pass
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-03-04 08:07:44 +00:00
|
|
|
class IRetrieveStatus(Interface):
|
|
|
|
pass
|
2007-10-23 00:46:24 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2007-01-21 22:15:31 +00:00
|
|
|
class NotCapableError(Exception):
|
|
|
|
"""You have tried to write to a read-only node."""
|
2007-03-08 02:16:06 +00:00
|
|
|
|
2007-10-31 02:47:36 +00:00
|
|
|
class BadWriteEnablerError(Exception):
|
|
|
|
pass
|
|
|
|
|
2007-05-30 00:39:39 +00:00
|
|
|
|
2012-07-24 03:40:49 +00:00
|
|
|
class RIControlClient(RemoteInterface):
|
2007-05-30 00:39:39 +00:00
|
|
|
def wait_for_client_connections(num_clients=int):
|
|
|
|
"""Do not return until we have connections to at least NUM_CLIENTS
|
|
|
|
storage servers.
|
|
|
|
"""
|
|
|
|
|
2007-03-08 02:16:06 +00:00
|
|
|
# debug stuff
|
|
|
|
|
2015-04-21 20:04:47 +00:00
|
|
|
def upload_random_data_from_file(size=int, convergence=str):
|
|
|
|
return str
|
|
|
|
|
|
|
|
def download_to_tempfile_and_delete(uri=str):
|
|
|
|
return None
|
|
|
|
|
2007-03-08 02:16:06 +00:00
|
|
|
def get_memory_usage():
|
|
|
|
"""Return a dict describes the amount of memory currently in use. The
|
|
|
|
keys are 'VmPeak', 'VmSize', and 'VmData'. The values are integers,
|
|
|
|
measuring memory consupmtion in bytes."""
|
|
|
|
return DictOf(str, int)
|
2007-09-20 01:40:18 +00:00
|
|
|
|
2008-01-30 03:44:32 +00:00
|
|
|
def speed_test(count=int, size=int, mutable=Any()):
|
2007-09-20 23:55:33 +00:00
|
|
|
"""Write 'count' tempfiles to disk, all of the given size. Measure
|
|
|
|
how long (in seconds) it takes to upload them all to the servers.
|
2007-12-14 09:05:31 +00:00
|
|
|
Then measure how long it takes to download all of them. If 'mutable'
|
2008-01-30 03:44:32 +00:00
|
|
|
is 'create', time creation of mutable files. If 'mutable' is
|
|
|
|
'upload', then time access to the same mutable file instead of
|
|
|
|
creating one.
|
2007-09-21 01:52:44 +00:00
|
|
|
|
|
|
|
Returns a tuple of (upload_time, download_time).
|
2007-09-20 01:40:18 +00:00
|
|
|
"""
|
2007-09-21 01:52:44 +00:00
|
|
|
return (float, float)
|
2007-09-26 19:21:15 +00:00
|
|
|
|
|
|
|
def measure_peer_response_time():
|
|
|
|
"""Send a short message to each connected peer, and measure the time
|
|
|
|
it takes for them to respond to it. This is a rough measure of the
|
|
|
|
application-level round trip time.
|
|
|
|
|
|
|
|
@return: a dictionary mapping peerid to a float (RTT time in seconds)
|
|
|
|
"""
|
|
|
|
|
2011-02-27 02:12:03 +00:00
|
|
|
return DictOf(str, float)
|
2008-01-10 04:25:47 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-02-06 08:52:25 +00:00
|
|
|
UploadResults = Any() #DictOf(str, str)
|
2008-01-10 04:25:47 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-01-10 04:25:47 +00:00
|
|
|
class RIEncryptedUploadable(RemoteInterface):
|
|
|
|
__remote_name__ = "RIEncryptedUploadable.tahoe.allmydata.com"
|
|
|
|
|
|
|
|
def get_size():
|
2008-03-11 17:50:31 +00:00
|
|
|
return Offset
|
2008-01-10 04:25:47 +00:00
|
|
|
|
2008-01-16 10:03:35 +00:00
|
|
|
def get_all_encoding_parameters():
|
|
|
|
return (int, int, int, long)
|
2008-01-10 04:25:47 +00:00
|
|
|
|
2008-03-11 17:50:31 +00:00
|
|
|
def read_encrypted(offset=Offset, length=ReadSize):
|
2008-01-11 12:42:55 +00:00
|
|
|
return ListOf(str)
|
2008-01-10 04:25:47 +00:00
|
|
|
|
2008-01-17 08:52:33 +00:00
|
|
|
def close():
|
|
|
|
return None
|
|
|
|
|
2008-01-10 04:25:47 +00:00
|
|
|
|
2008-01-11 11:53:37 +00:00
|
|
|
class RICHKUploadHelper(RemoteInterface):
|
2008-01-10 04:25:47 +00:00
|
|
|
__remote_name__ = "RIUploadHelper.tahoe.allmydata.com"
|
|
|
|
|
2008-11-22 00:43:52 +00:00
|
|
|
def get_version():
|
|
|
|
"""
|
|
|
|
Return a dictionary of version information.
|
|
|
|
"""
|
|
|
|
return DictOf(str, Any())
|
|
|
|
|
2008-01-10 04:25:47 +00:00
|
|
|
def upload(reader=RIEncryptedUploadable):
|
|
|
|
return UploadResults
|
|
|
|
|
|
|
|
|
|
|
|
class RIHelper(RemoteInterface):
|
|
|
|
__remote_name__ = "RIHelper.tahoe.allmydata.com"
|
|
|
|
|
2008-11-22 00:43:52 +00:00
|
|
|
def get_version():
|
|
|
|
"""
|
|
|
|
Return a dictionary of version information.
|
|
|
|
"""
|
|
|
|
return DictOf(str, Any())
|
|
|
|
|
2008-01-11 11:53:37 +00:00
|
|
|
def upload_chk(si=StorageIndex):
|
2008-01-10 04:25:47 +00:00
|
|
|
"""See if a file with a given storage index needs uploading. The
|
|
|
|
helper will ask the appropriate storage servers to see if the file
|
|
|
|
has already been uploaded. If so, the helper will return a set of
|
|
|
|
'upload results' that includes whatever hashes are needed to build
|
|
|
|
the read-cap, and perhaps a truncated sharemap.
|
|
|
|
|
|
|
|
If the file has not yet been uploaded (or if it was only partially
|
|
|
|
uploaded), the helper will return an empty upload-results dictionary
|
2008-01-11 11:53:37 +00:00
|
|
|
and also an RICHKUploadHelper object that will take care of the
|
|
|
|
upload process. The client should call upload() on this object and
|
|
|
|
pass it a reference to an RIEncryptedUploadable object that will
|
|
|
|
provide ciphertext. When the upload is finished, the upload() method
|
|
|
|
will finish and return the upload results.
|
2008-01-10 04:25:47 +00:00
|
|
|
"""
|
2008-01-11 11:53:37 +00:00
|
|
|
return (UploadResults, ChoiceOf(RICHKUploadHelper, None))
|
stats: add a simple stats gathering system
We have a desire to collect runtime statistics from multiple nodes primarily
for server monitoring purposes. This implements a simple implementation of
such a system, as a skeleton to build more sophistication upon.
Each client now looks for a 'stats_gatherer.furl' config file. If it has
been configured to use a stats gatherer, then it instantiates internally
a StatsProvider. This is a central place for code which wishes to offer
stats up for monitoring to report them to, either by calling
stats_provider.count('stat.name', value) to increment a counter, or by
registering a class as a stats producer with sp.register_producer(obj).
The StatsProvider connects to the StatsGatherer server and provides its
provider upon startup. The StatsGatherer is then responsible for polling
the attached providers periodically to retrieve the data provided.
The provider queries each registered producer when the gatherer queries
the provider. Both the internal 'counters' and the queried 'stats' are
then reported to the gatherer.
This provides a simple gatherer app, (c.f. make stats-gatherer-run)
which prints its furl and listens for incoming connections. Once a
minute, the gatherer polls all connected providers, and writes the
retrieved data into a pickle file.
Also included is a munin plugin which knows how to read the gatherer's
stats.pickle and output data munin can interpret. this plugin,
tahoe-stats.py can be symlinked as multiple different names within
munin's 'plugins' directory, and inspects argv to determine which
data to display, doing a lookup in a table within that file.
It looks in the environment for 'statsfile' to determine the path to
the gatherer's stats.pickle. An example plugins-conf.d file is
provided.
2008-01-31 03:11:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
class RIStatsProvider(RemoteInterface):
|
|
|
|
__remote_name__ = "RIStatsProvider.tahoe.allmydata.com"
|
|
|
|
"""
|
|
|
|
Provides access to statistics and monitoring information.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_stats():
|
|
|
|
"""
|
2009-07-02 01:57:28 +00:00
|
|
|
returns a dictionary containing 'counters' and 'stats', each a
|
2011-05-27 12:01:35 +00:00
|
|
|
dictionary with string counter/stat name keys, and numeric or None values.
|
2009-07-02 01:57:28 +00:00
|
|
|
counters are monotonically increasing measures of work done, and
|
|
|
|
stats are instantaneous measures (potentially time averaged
|
|
|
|
internally)
|
stats: add a simple stats gathering system
We have a desire to collect runtime statistics from multiple nodes primarily
for server monitoring purposes. This implements a simple implementation of
such a system, as a skeleton to build more sophistication upon.
Each client now looks for a 'stats_gatherer.furl' config file. If it has
been configured to use a stats gatherer, then it instantiates internally
a StatsProvider. This is a central place for code which wishes to offer
stats up for monitoring to report them to, either by calling
stats_provider.count('stat.name', value) to increment a counter, or by
registering a class as a stats producer with sp.register_producer(obj).
The StatsProvider connects to the StatsGatherer server and provides its
provider upon startup. The StatsGatherer is then responsible for polling
the attached providers periodically to retrieve the data provided.
The provider queries each registered producer when the gatherer queries
the provider. Both the internal 'counters' and the queried 'stats' are
then reported to the gatherer.
This provides a simple gatherer app, (c.f. make stats-gatherer-run)
which prints its furl and listens for incoming connections. Once a
minute, the gatherer polls all connected providers, and writes the
retrieved data into a pickle file.
Also included is a munin plugin which knows how to read the gatherer's
stats.pickle and output data munin can interpret. this plugin,
tahoe-stats.py can be symlinked as multiple different names within
munin's 'plugins' directory, and inspects argv to determine which
data to display, doing a lookup in a table within that file.
It looks in the environment for 'statsfile' to determine the path to
the gatherer's stats.pickle. An example plugins-conf.d file is
provided.
2008-01-31 03:11:07 +00:00
|
|
|
"""
|
2011-05-27 12:01:35 +00:00
|
|
|
return DictOf(str, DictOf(str, ChoiceOf(float, int, long, None)))
|
stats: add a simple stats gathering system
We have a desire to collect runtime statistics from multiple nodes primarily
for server monitoring purposes. This implements a simple implementation of
such a system, as a skeleton to build more sophistication upon.
Each client now looks for a 'stats_gatherer.furl' config file. If it has
been configured to use a stats gatherer, then it instantiates internally
a StatsProvider. This is a central place for code which wishes to offer
stats up for monitoring to report them to, either by calling
stats_provider.count('stat.name', value) to increment a counter, or by
registering a class as a stats producer with sp.register_producer(obj).
The StatsProvider connects to the StatsGatherer server and provides its
provider upon startup. The StatsGatherer is then responsible for polling
the attached providers periodically to retrieve the data provided.
The provider queries each registered producer when the gatherer queries
the provider. Both the internal 'counters' and the queried 'stats' are
then reported to the gatherer.
This provides a simple gatherer app, (c.f. make stats-gatherer-run)
which prints its furl and listens for incoming connections. Once a
minute, the gatherer polls all connected providers, and writes the
retrieved data into a pickle file.
Also included is a munin plugin which knows how to read the gatherer's
stats.pickle and output data munin can interpret. this plugin,
tahoe-stats.py can be symlinked as multiple different names within
munin's 'plugins' directory, and inspects argv to determine which
data to display, doing a lookup in a table within that file.
It looks in the environment for 'statsfile' to determine the path to
the gatherer's stats.pickle. An example plugins-conf.d file is
provided.
2008-01-31 03:11:07 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
stats: add a simple stats gathering system
We have a desire to collect runtime statistics from multiple nodes primarily
for server monitoring purposes. This implements a simple implementation of
such a system, as a skeleton to build more sophistication upon.
Each client now looks for a 'stats_gatherer.furl' config file. If it has
been configured to use a stats gatherer, then it instantiates internally
a StatsProvider. This is a central place for code which wishes to offer
stats up for monitoring to report them to, either by calling
stats_provider.count('stat.name', value) to increment a counter, or by
registering a class as a stats producer with sp.register_producer(obj).
The StatsProvider connects to the StatsGatherer server and provides its
provider upon startup. The StatsGatherer is then responsible for polling
the attached providers periodically to retrieve the data provided.
The provider queries each registered producer when the gatherer queries
the provider. Both the internal 'counters' and the queried 'stats' are
then reported to the gatherer.
This provides a simple gatherer app, (c.f. make stats-gatherer-run)
which prints its furl and listens for incoming connections. Once a
minute, the gatherer polls all connected providers, and writes the
retrieved data into a pickle file.
Also included is a munin plugin which knows how to read the gatherer's
stats.pickle and output data munin can interpret. this plugin,
tahoe-stats.py can be symlinked as multiple different names within
munin's 'plugins' directory, and inspects argv to determine which
data to display, doing a lookup in a table within that file.
It looks in the environment for 'statsfile' to determine the path to
the gatherer's stats.pickle. An example plugins-conf.d file is
provided.
2008-01-31 03:11:07 +00:00
|
|
|
class RIStatsGatherer(RemoteInterface):
|
|
|
|
__remote_name__ = "RIStatsGatherer.tahoe.allmydata.com"
|
|
|
|
"""
|
|
|
|
Provides a monitoring service for centralised collection of stats
|
|
|
|
"""
|
|
|
|
|
|
|
|
def provide(provider=RIStatsProvider, nickname=str):
|
|
|
|
"""
|
2012-07-24 03:37:07 +00:00
|
|
|
@param provider: a stats collector instance that should be polled
|
stats: add a simple stats gathering system
We have a desire to collect runtime statistics from multiple nodes primarily
for server monitoring purposes. This implements a simple implementation of
such a system, as a skeleton to build more sophistication upon.
Each client now looks for a 'stats_gatherer.furl' config file. If it has
been configured to use a stats gatherer, then it instantiates internally
a StatsProvider. This is a central place for code which wishes to offer
stats up for monitoring to report them to, either by calling
stats_provider.count('stat.name', value) to increment a counter, or by
registering a class as a stats producer with sp.register_producer(obj).
The StatsProvider connects to the StatsGatherer server and provides its
provider upon startup. The StatsGatherer is then responsible for polling
the attached providers periodically to retrieve the data provided.
The provider queries each registered producer when the gatherer queries
the provider. Both the internal 'counters' and the queried 'stats' are
then reported to the gatherer.
This provides a simple gatherer app, (c.f. make stats-gatherer-run)
which prints its furl and listens for incoming connections. Once a
minute, the gatherer polls all connected providers, and writes the
retrieved data into a pickle file.
Also included is a munin plugin which knows how to read the gatherer's
stats.pickle and output data munin can interpret. this plugin,
tahoe-stats.py can be symlinked as multiple different names within
munin's 'plugins' directory, and inspects argv to determine which
data to display, doing a lookup in a table within that file.
It looks in the environment for 'statsfile' to determine the path to
the gatherer's stats.pickle. An example plugins-conf.d file is
provided.
2008-01-31 03:11:07 +00:00
|
|
|
periodically by the gatherer to collect stats.
|
|
|
|
@param nickname: a name useful to identify the provided client
|
|
|
|
"""
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2008-02-01 04:10:15 +00:00
|
|
|
class IStatsProducer(Interface):
|
|
|
|
def get_stats():
|
|
|
|
"""
|
|
|
|
returns a dictionary, with str keys representing the names of stats
|
|
|
|
to be monitored, and numeric values.
|
|
|
|
"""
|
|
|
|
|
2008-06-03 07:01:15 +00:00
|
|
|
class FileTooLargeError(Exception):
|
|
|
|
pass
|
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
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.
2008-12-05 15:17:54 +00:00
|
|
|
class IValidatedThingProxy(Interface):
|
|
|
|
def start():
|
2012-07-24 03:37:07 +00:00
|
|
|
""" Acquire a thing and validate it. Return a deferred that is
|
2009-07-02 01:57:28 +00:00
|
|
|
eventually fired with self if the thing is valid or errbacked if it
|
|
|
|
can't be acquired or validated."""
|
2008-11-22 03:07:27 +00:00
|
|
|
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-11-22 03:07:27 +00:00
|
|
|
class InsufficientVersionError(Exception):
|
|
|
|
def __init__(self, needed, got):
|
|
|
|
self.needed = needed
|
|
|
|
self.got = got
|
2012-07-24 03:29:14 +00:00
|
|
|
|
2008-11-22 03:07:27 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "InsufficientVersionError(need '%s', got %s)" % (self.needed,
|
|
|
|
self.got)
|
2009-12-27 20:10:43 +00:00
|
|
|
|
|
|
|
class EmptyPathnameComponentError(Exception):
|
|
|
|
"""The webapi disallows empty pathname components."""
|