2016-07-20 00:22:12 +00:00
|
|
|
import os, stat, time, weakref
|
2016-01-27 06:49:23 +00:00
|
|
|
from base64 import urlsafe_b64encode
|
2018-01-31 01:04:08 +00:00
|
|
|
from functools import partial
|
2018-09-11 17:14:41 +00:00
|
|
|
from errno import ENOENT, EPERM
|
2006-11-30 23:23:39 +00:00
|
|
|
|
2019-06-14 20:34:10 +00:00
|
|
|
import attr
|
2017-02-27 17:56:49 +00:00
|
|
|
from zope.interface import implementer
|
2019-06-14 20:34:10 +00:00
|
|
|
from twisted.plugin import (
|
|
|
|
getPlugins,
|
|
|
|
)
|
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
|
|
|
from twisted.internet import reactor, defer
|
2010-08-04 07:27:02 +00:00
|
|
|
from twisted.application import service
|
2007-05-25 00:34:42 +00:00
|
|
|
from twisted.application.internet import TimerService
|
2016-05-10 20:19:35 +00:00
|
|
|
from twisted.python.filepath import FilePath
|
2006-11-30 22:14:47 +00:00
|
|
|
|
2007-04-26 19:01:25 +00:00
|
|
|
import allmydata
|
2019-06-14 04:17:58 +00:00
|
|
|
from allmydata.crypto import rsa, ed25519
|
2019-07-08 18:46:22 +00:00
|
|
|
from allmydata.crypto.util import remove_prefix
|
2009-02-18 21:46:55 +00:00
|
|
|
from allmydata.storage.server import StorageServer
|
2009-06-01 21:06:04 +00:00
|
|
|
from allmydata import storage_client
|
2008-07-16 20:14:39 +00:00
|
|
|
from allmydata.immutable.upload import Uploader
|
2009-01-07 04:48:22 +00:00
|
|
|
from allmydata.immutable.offloaded import Helper
|
2007-03-08 02:16:06 +00:00
|
|
|
from allmydata.control import ControlServer
|
2008-06-18 19:24:16 +00:00
|
|
|
from allmydata.introducer.client import IntroducerClient
|
2019-06-17 20:44:17 +00:00
|
|
|
from allmydata.util import (
|
|
|
|
hashutil, base32, pollmixin, log, idlib,
|
|
|
|
yamlutil, configutil,
|
|
|
|
)
|
2016-07-20 00:22:12 +00:00
|
|
|
from allmydata.util.encodingutil import (get_filesystem_encoding,
|
|
|
|
from_utf8_or_none)
|
2008-12-02 00:24:21 +00:00
|
|
|
from allmydata.util.abbreviate import parse_abbreviated_size
|
2009-03-19 01:00:09 +00:00
|
|
|
from allmydata.util.time_format import parse_duration, parse_date
|
2018-01-30 06:51:49 +00:00
|
|
|
from allmydata.util.i2p_provider import create as create_i2p_provider
|
|
|
|
from allmydata.util.tor_provider import create as create_tor_provider
|
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
|
|
|
from allmydata.stats import StatsProvider
|
2009-01-14 23:14:24 +00:00
|
|
|
from allmydata.history import History
|
2019-06-14 20:34:10 +00:00
|
|
|
from allmydata.interfaces import (
|
|
|
|
IStatsProducer,
|
|
|
|
SDMF_VERSION,
|
|
|
|
MDMF_VERSION,
|
|
|
|
DEFAULT_MAX_SEGMENT_SIZE,
|
|
|
|
IFoolscapStoragePlugin,
|
|
|
|
IAnnounceableStorageServer,
|
|
|
|
)
|
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
|
|
|
from allmydata.nodemaker import NodeMaker
|
2011-08-24 15:59:28 +00:00
|
|
|
from allmydata.blacklist import Blacklist
|
2018-02-28 18:13:14 +00:00
|
|
|
from allmydata import node
|
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
|
|
|
|
2007-11-09 09:54:51 +00:00
|
|
|
|
2008-01-16 10:03:35 +00:00
|
|
|
KiB=1024
|
|
|
|
MiB=1024*KiB
|
|
|
|
GiB=1024*MiB
|
|
|
|
TiB=1024*GiB
|
|
|
|
PiB=1024*TiB
|
|
|
|
|
2019-06-17 20:44:17 +00:00
|
|
|
def _valid_config():
|
|
|
|
cfg = node._common_valid_config()
|
|
|
|
return cfg.update(configutil.ValidConfiguration({
|
2016-09-05 22:34:17 +00:00
|
|
|
"client": (
|
|
|
|
"helper.furl",
|
|
|
|
"introducer.furl",
|
|
|
|
"key_generator.furl",
|
|
|
|
"mutable.format",
|
|
|
|
"peers.preferred",
|
|
|
|
"shares.happy",
|
|
|
|
"shares.needed",
|
|
|
|
"shares.total",
|
|
|
|
"stats_gatherer.furl",
|
|
|
|
),
|
|
|
|
"drop_upload": ( # deprecated already?
|
|
|
|
"enabled",
|
|
|
|
),
|
|
|
|
"ftpd": (
|
|
|
|
"accounts.file",
|
|
|
|
"accounts.url",
|
|
|
|
"enabled",
|
|
|
|
"port",
|
|
|
|
),
|
|
|
|
"storage": (
|
|
|
|
"debug_discard",
|
|
|
|
"enabled",
|
|
|
|
"expire.cutoff_date",
|
|
|
|
"expire.enabled",
|
|
|
|
"expire.immutable",
|
|
|
|
"expire.mode",
|
|
|
|
"expire.mode",
|
|
|
|
"expire.mutable",
|
|
|
|
"expire.override_lease_duration",
|
|
|
|
"readonly",
|
|
|
|
"reserved_space",
|
2018-05-20 02:10:39 +00:00
|
|
|
"storage_dir",
|
2016-09-05 22:34:17 +00:00
|
|
|
),
|
|
|
|
"sftpd": (
|
|
|
|
"accounts.file",
|
|
|
|
"accounts.url",
|
|
|
|
"enabled",
|
|
|
|
"host_privkey_file",
|
|
|
|
"host_pubkey_file",
|
|
|
|
"port",
|
|
|
|
),
|
|
|
|
"helper": (
|
|
|
|
"enabled",
|
|
|
|
),
|
|
|
|
"magic_folder": (
|
|
|
|
"download.umask",
|
|
|
|
"enabled",
|
|
|
|
"local.directory",
|
2016-10-24 22:44:38 +00:00
|
|
|
"poll_interval",
|
2016-09-05 22:34:17 +00:00
|
|
|
),
|
2019-06-17 20:44:17 +00:00
|
|
|
}))
|
2016-09-05 22:34:17 +00:00
|
|
|
|
2018-01-29 05:48:18 +00:00
|
|
|
# this is put into README in new node-directories
|
|
|
|
CLIENT_README = """
|
|
|
|
This directory contains files which contain private data for the Tahoe node,
|
|
|
|
such as private keys. On Unix-like systems, the permissions on this directory
|
|
|
|
are set to disallow users other than its owner from reading the contents of
|
|
|
|
the files. See the 'configuration.rst' documentation file for details.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2016-09-05 22:34:17 +00:00
|
|
|
|
2008-03-24 16:46:06 +00:00
|
|
|
def _make_secret():
|
2018-08-29 22:44:12 +00:00
|
|
|
"""
|
|
|
|
Returns a base32-encoded random secret of hashutil.CRYPTO_VAL_SIZE
|
|
|
|
bytes.
|
|
|
|
"""
|
2008-03-24 16:46:06 +00:00
|
|
|
return base32.b2a(os.urandom(hashutil.CRYPTO_VAL_SIZE)) + "\n"
|
|
|
|
|
2018-01-31 01:04:08 +00:00
|
|
|
|
2019-05-15 06:17:44 +00:00
|
|
|
class SecretHolder(object):
|
2009-11-18 01:54:44 +00:00
|
|
|
def __init__(self, lease_secret, convergence_secret):
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
self._lease_secret = lease_secret
|
2009-11-18 01:54:44 +00:00
|
|
|
self._convergence_secret = convergence_secret
|
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
|
|
|
|
|
|
|
def get_renewal_secret(self):
|
|
|
|
return hashutil.my_renewal_secret_hash(self._lease_secret)
|
|
|
|
|
|
|
|
def get_cancel_secret(self):
|
|
|
|
return hashutil.my_cancel_secret_hash(self._lease_secret)
|
|
|
|
|
2009-11-18 01:54:44 +00:00
|
|
|
def get_convergence_secret(self):
|
|
|
|
return self._convergence_secret
|
|
|
|
|
2019-05-15 06:17:44 +00:00
|
|
|
class KeyGenerator(object):
|
2010-01-13 00:42:26 +00:00
|
|
|
"""I create RSA keys for mutable files. Each call to generate() returns a
|
|
|
|
single keypair. The keysize is specified first by the keysize= argument
|
|
|
|
to generate(), then with a default set by set_default_keysize(), then
|
|
|
|
with a built-in default of 2048 bits."""
|
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
|
|
|
def __init__(self):
|
|
|
|
self.default_keysize = 2048
|
|
|
|
|
|
|
|
def set_default_keysize(self, keysize):
|
|
|
|
"""Call this to override the size of the RSA keys created for new
|
2010-01-13 00:42:26 +00:00
|
|
|
mutable files which don't otherwise specify a size. This will affect
|
|
|
|
all subsequent calls to generate() without a keysize= argument. The
|
|
|
|
default size is 2048 bits. Test cases should call this method once
|
2011-08-10 20:22:43 +00:00
|
|
|
during setup, to cause me to create smaller keys, so the unit tests
|
|
|
|
run faster."""
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
self.default_keysize = keysize
|
|
|
|
|
|
|
|
def generate(self, keysize=None):
|
2010-01-13 00:42:26 +00:00
|
|
|
"""I return a Deferred that fires with a (verifyingkey, signingkey)
|
2011-08-10 20:22:43 +00:00
|
|
|
pair. I accept a keysize in bits (2048 bit keys are standard, smaller
|
|
|
|
keys are used for testing). If you do not provide a keysize, I will
|
2010-01-13 00:42:26 +00:00
|
|
|
use my default, which is set by a call to set_default_keysize(). If
|
|
|
|
set_default_keysize() has never been called, I will create 2048 bit
|
|
|
|
keys."""
|
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
|
|
|
keysize = keysize or self.default_keysize
|
2016-04-28 07:05:30 +00:00
|
|
|
# RSA key generation for a 2048 bit key takes between 0.8 and 3.2
|
|
|
|
# secs
|
2019-06-12 21:44:35 +00:00
|
|
|
signer, verifier = rsa.create_signing_keypair(keysize)
|
2016-04-28 07:05:30 +00:00
|
|
|
return defer.succeed( (verifier, signer) )
|
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
|
|
|
|
2010-08-04 07:27:02 +00:00
|
|
|
class Terminator(service.Service):
|
|
|
|
def __init__(self):
|
|
|
|
self._clients = weakref.WeakKeyDictionary()
|
|
|
|
def register(self, c):
|
|
|
|
self._clients[c] = None
|
|
|
|
def stopService(self):
|
|
|
|
for c in self._clients:
|
|
|
|
c.stop()
|
|
|
|
return service.Service.stopService(self)
|
|
|
|
|
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
|
|
|
|
2018-02-28 18:13:14 +00:00
|
|
|
def read_config(basedir, portnumfile, generated_files=[]):
|
2018-08-24 21:41:31 +00:00
|
|
|
"""
|
|
|
|
Read and validate configuration for a client-style Node. See
|
|
|
|
:method:`allmydata.node.read_config` for parameter meanings (the
|
|
|
|
only difference here is we pass different validation data)
|
|
|
|
|
|
|
|
:returns: :class:`allmydata.node._Config` instance
|
|
|
|
"""
|
2018-02-28 18:13:14 +00:00
|
|
|
return node.read_config(
|
|
|
|
basedir, portnumfile,
|
|
|
|
generated_files=generated_files,
|
2019-06-17 20:44:17 +00:00
|
|
|
_valid_config=_valid_config(),
|
2018-02-28 18:13:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-03-04 21:29:17 +00:00
|
|
|
def create_client(basedir=u".", _client_factory=None):
|
2018-02-22 22:42:44 +00:00
|
|
|
"""
|
|
|
|
Creates a new client instance (a subclass of Node).
|
|
|
|
|
2018-08-24 21:41:31 +00:00
|
|
|
:param unicode basedir: the node directory (which may not exist yet)
|
|
|
|
|
|
|
|
:param _client_factory: (for testing) a callable that returns an
|
|
|
|
instance of :class:`allmydata.node.Node` (or a subclass). By default
|
|
|
|
this is :class:`allmydata.client._Client`
|
2018-02-22 22:42:44 +00:00
|
|
|
|
2018-09-04 20:55:36 +00:00
|
|
|
:returns: Deferred yielding an instance of :class:`allmydata.client._Client`
|
2018-02-22 22:42:44 +00:00
|
|
|
"""
|
2018-09-04 20:55:36 +00:00
|
|
|
try:
|
|
|
|
node.create_node_dir(basedir, CLIENT_README)
|
|
|
|
config = read_config(basedir, u"client.port")
|
|
|
|
# following call is async
|
|
|
|
return create_client_from_config(
|
|
|
|
config,
|
|
|
|
_client_factory=_client_factory,
|
|
|
|
)
|
|
|
|
except Exception:
|
2019-06-12 20:47:25 +00:00
|
|
|
return defer.fail()
|
2018-01-28 04:40:43 +00:00
|
|
|
|
2018-01-28 08:27:25 +00:00
|
|
|
|
2019-06-14 15:56:02 +00:00
|
|
|
def create_client_from_config(config, _client_factory=None, introducer_factory=None):
|
2018-01-31 18:30:46 +00:00
|
|
|
"""
|
2018-03-05 01:55:32 +00:00
|
|
|
Creates a new client instance (a subclass of Node). Most code
|
|
|
|
should probably use `create_client` instead.
|
|
|
|
|
2018-03-05 04:55:41 +00:00
|
|
|
:returns: Deferred yielding a _Client instance
|
|
|
|
|
2018-03-05 01:55:32 +00:00
|
|
|
:param config: configuration instance (from read_config()) which
|
|
|
|
encapsulates everything in the "node directory".
|
2018-01-31 18:30:46 +00:00
|
|
|
|
2018-03-05 01:55:32 +00:00
|
|
|
:param _client_factory: for testing; the class to instantiate
|
2018-03-05 04:55:41 +00:00
|
|
|
instead of _Client
|
2019-06-14 15:56:02 +00:00
|
|
|
|
|
|
|
:param introducer_factory: for testing; the class to instantiate instead
|
|
|
|
of IntroducerClient
|
2018-01-31 18:30:46 +00:00
|
|
|
"""
|
2018-09-04 20:55:36 +00:00
|
|
|
try:
|
|
|
|
if _client_factory is None:
|
|
|
|
_client_factory = _Client
|
|
|
|
|
|
|
|
i2p_provider = create_i2p_provider(reactor, config)
|
|
|
|
tor_provider = create_tor_provider(reactor, config)
|
|
|
|
handlers = node.create_connection_handlers(reactor, config, i2p_provider, tor_provider)
|
|
|
|
default_connection_handlers, foolscap_connection_handlers = handlers
|
|
|
|
tub_options = node.create_tub_options(config)
|
|
|
|
|
|
|
|
main_tub = node.create_main_tub(
|
|
|
|
config, tub_options, default_connection_handlers,
|
|
|
|
foolscap_connection_handlers, i2p_provider, tor_provider,
|
|
|
|
)
|
|
|
|
control_tub = node.create_control_tub()
|
|
|
|
|
2019-06-14 15:56:02 +00:00
|
|
|
introducer_clients = create_introducer_clients(config, main_tub, introducer_factory)
|
2018-09-04 20:55:36 +00:00
|
|
|
storage_broker = create_storage_farm_broker(
|
|
|
|
config, default_connection_handlers, foolscap_connection_handlers,
|
|
|
|
tub_options, introducer_clients
|
|
|
|
)
|
|
|
|
|
|
|
|
client = _client_factory(
|
|
|
|
config,
|
|
|
|
main_tub,
|
|
|
|
control_tub,
|
|
|
|
i2p_provider,
|
|
|
|
tor_provider,
|
|
|
|
introducer_clients,
|
|
|
|
storage_broker,
|
|
|
|
)
|
|
|
|
i2p_provider.setServiceParent(client)
|
|
|
|
tor_provider.setServiceParent(client)
|
|
|
|
for ic in introducer_clients:
|
|
|
|
ic.setServiceParent(client)
|
|
|
|
storage_broker.setServiceParent(client)
|
|
|
|
return defer.succeed(client)
|
|
|
|
except Exception:
|
2019-06-12 20:47:25 +00:00
|
|
|
return defer.fail()
|
2018-01-31 01:04:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def _sequencer(config):
|
2018-08-29 22:44:12 +00:00
|
|
|
"""
|
|
|
|
:returns: a 2-tuple consisting of a new announcement
|
2018-09-04 20:56:50 +00:00
|
|
|
sequence-number and random nonce (int, unicode). Reads and
|
|
|
|
re-writes configuration file "announcement-seqnum" (starting at 1
|
|
|
|
if that file doesn't exist).
|
2018-08-29 22:44:12 +00:00
|
|
|
"""
|
2018-01-31 01:04:08 +00:00
|
|
|
seqnum_s = config.get_config_from_file("announcement-seqnum")
|
|
|
|
if not seqnum_s:
|
2018-09-04 20:56:50 +00:00
|
|
|
seqnum_s = u"0"
|
2018-01-31 01:04:08 +00:00
|
|
|
seqnum = int(seqnum_s.strip())
|
|
|
|
seqnum += 1 # increment
|
2018-01-31 18:30:46 +00:00
|
|
|
config.write_config_file("announcement-seqnum", "{}\n".format(seqnum))
|
2018-01-31 01:04:08 +00:00
|
|
|
nonce = _make_secret().strip()
|
|
|
|
return seqnum, nonce
|
|
|
|
|
|
|
|
|
2019-06-14 15:56:02 +00:00
|
|
|
def create_introducer_clients(config, main_tub, introducer_factory=None):
|
2018-01-31 18:30:46 +00:00
|
|
|
"""
|
2018-08-29 22:44:12 +00:00
|
|
|
Read, validate and parse any 'introducers.yaml' configuration.
|
|
|
|
|
2019-06-14 15:56:02 +00:00
|
|
|
:param introducer_factory: for testing; the class to instantiate instead
|
|
|
|
of IntroducerClient
|
|
|
|
|
2018-03-05 03:08:11 +00:00
|
|
|
:returns: a list of IntroducerClient instances
|
2018-01-31 18:30:46 +00:00
|
|
|
"""
|
2019-06-14 15:56:02 +00:00
|
|
|
if introducer_factory is None:
|
|
|
|
introducer_factory = IntroducerClient
|
|
|
|
|
2018-03-05 03:08:11 +00:00
|
|
|
# we return this list
|
2018-01-31 01:04:08 +00:00
|
|
|
introducer_clients = []
|
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
introducers_yaml_filename = config.get_private_path("introducers.yaml")
|
2018-01-31 01:04:08 +00:00
|
|
|
introducers_filepath = FilePath(introducers_yaml_filename)
|
|
|
|
|
|
|
|
try:
|
|
|
|
with introducers_filepath.open() as f:
|
|
|
|
introducers_yaml = yamlutil.safe_load(f)
|
2018-09-07 21:20:53 +00:00
|
|
|
if introducers_yaml is None:
|
2018-09-11 17:14:41 +00:00
|
|
|
raise EnvironmentError(
|
|
|
|
EPERM,
|
|
|
|
"Can't read '{}'".format(introducers_yaml_filename),
|
|
|
|
introducers_yaml_filename,
|
|
|
|
)
|
2018-01-31 01:04:08 +00:00
|
|
|
introducers = introducers_yaml.get("introducers", {})
|
2018-01-31 18:30:46 +00:00
|
|
|
log.msg(
|
|
|
|
"found {} introducers in private/introducers.yaml".format(
|
|
|
|
len(introducers),
|
|
|
|
)
|
|
|
|
)
|
2018-09-04 20:56:58 +00:00
|
|
|
except EnvironmentError as e:
|
|
|
|
if e.errno != ENOENT:
|
|
|
|
raise
|
2018-01-31 01:04:08 +00:00
|
|
|
introducers = {}
|
|
|
|
|
|
|
|
if "default" in introducers.keys():
|
2018-01-31 18:30:46 +00:00
|
|
|
raise ValueError(
|
|
|
|
"'default' introducer furl cannot be specified in introducers.yaml;"
|
|
|
|
" please fix impossible configuration."
|
|
|
|
)
|
2018-01-31 01:04:08 +00:00
|
|
|
|
|
|
|
# read furl from tahoe.cfg
|
|
|
|
tahoe_cfg_introducer_furl = config.get_config("client", "introducer.furl", None)
|
|
|
|
if tahoe_cfg_introducer_furl == "None":
|
2018-01-31 18:30:46 +00:00
|
|
|
raise ValueError(
|
|
|
|
"tahoe.cfg has invalid 'introducer.furl = None':"
|
|
|
|
" to disable it, use 'introducer.furl ='"
|
|
|
|
" or omit the key entirely"
|
|
|
|
)
|
2018-01-31 01:04:08 +00:00
|
|
|
if tahoe_cfg_introducer_furl:
|
|
|
|
introducers[u'default'] = {'furl':tahoe_cfg_introducer_furl}
|
|
|
|
|
|
|
|
for petname, introducer in introducers.items():
|
2018-01-31 18:30:46 +00:00
|
|
|
introducer_cache_filepath = FilePath(config.get_private_path("introducer_{}_cache.yaml".format(petname)))
|
2019-06-14 15:56:02 +00:00
|
|
|
ic = introducer_factory(
|
2018-01-28 01:05:16 +00:00
|
|
|
main_tub,
|
2018-01-31 01:04:08 +00:00
|
|
|
introducer['furl'].encode("ascii"),
|
|
|
|
config.nickname,
|
|
|
|
str(allmydata.__full_version__),
|
|
|
|
str(_Client.OLDEST_SUPPORTED_VERSION),
|
2018-03-04 21:29:17 +00:00
|
|
|
node.get_app_versions(),
|
2018-01-31 01:04:08 +00:00
|
|
|
partial(_sequencer, config),
|
|
|
|
introducer_cache_filepath,
|
2017-09-06 01:08:35 +00:00
|
|
|
)
|
2018-01-31 01:04:08 +00:00
|
|
|
introducer_clients.append(ic)
|
2018-03-05 03:08:11 +00:00
|
|
|
return introducer_clients
|
2018-01-31 01:04:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def create_storage_farm_broker(config, default_connection_handlers, foolscap_connection_handlers, tub_options, introducer_clients):
|
|
|
|
"""
|
2018-08-29 22:44:12 +00:00
|
|
|
Create a StorageFarmBroker object, for use by Uploader/Downloader
|
2018-01-31 01:04:08 +00:00
|
|
|
(and everybody else who wants to use storage servers)
|
2018-08-29 22:44:12 +00:00
|
|
|
|
|
|
|
:param config: a _Config instance
|
|
|
|
|
|
|
|
:param default_connection_handlers: default Foolscap handlers
|
|
|
|
|
|
|
|
:param foolscap_connection_handlers: available/configured Foolscap
|
|
|
|
handlers
|
|
|
|
|
|
|
|
:param dict tub_options: how to configure our Tub
|
|
|
|
|
|
|
|
:param list introducer_clients: IntroducerClient instances if
|
|
|
|
we're connecting to any
|
2018-01-31 01:04:08 +00:00
|
|
|
"""
|
|
|
|
ps = config.get_config("client", "peers.preferred", "").split(",")
|
|
|
|
preferred_peers = tuple([p.strip() for p in ps if p != ""])
|
|
|
|
|
2018-09-04 20:57:26 +00:00
|
|
|
def tub_creator(handler_overrides=None, **kwargs):
|
2018-03-04 21:29:17 +00:00
|
|
|
return node.create_tub(
|
2018-01-31 01:04:08 +00:00
|
|
|
tub_options,
|
|
|
|
default_connection_handlers,
|
|
|
|
foolscap_connection_handlers,
|
2018-09-06 17:39:09 +00:00
|
|
|
handler_overrides={} if handler_overrides is None else handler_overrides,
|
2018-01-31 01:04:08 +00:00
|
|
|
**kwargs
|
|
|
|
)
|
|
|
|
|
|
|
|
sb = storage_client.StorageFarmBroker(
|
|
|
|
permute_peers=True,
|
|
|
|
tub_maker=tub_creator,
|
|
|
|
preferred_peers=preferred_peers,
|
2018-01-28 01:05:16 +00:00
|
|
|
)
|
2018-01-31 01:04:08 +00:00
|
|
|
for ic in introducer_clients:
|
|
|
|
sb.use_introducer(ic)
|
|
|
|
return sb
|
2017-09-06 01:08:35 +00:00
|
|
|
|
|
|
|
|
2019-06-14 20:34:10 +00:00
|
|
|
|
|
|
|
@implementer(IAnnounceableStorageServer)
|
|
|
|
@attr.s
|
|
|
|
class AnnounceableStorageServer(object):
|
|
|
|
announcement = attr.ib()
|
|
|
|
storage_server = attr.ib()
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-02-27 17:56:49 +00:00
|
|
|
@implementer(IStatsProducer)
|
2017-09-06 01:08:35 +00:00
|
|
|
class _Client(node.Node, pollmixin.PollMixin):
|
2008-04-17 18:13:39 +00:00
|
|
|
|
2006-12-01 03:14:23 +00:00
|
|
|
STOREDIR = 'storage'
|
2006-12-03 01:27:18 +00:00
|
|
|
NODETYPE = "client"
|
2014-08-17 14:36:57 +00:00
|
|
|
EXIT_TRIGGER_FILE = "exit_trigger"
|
2006-11-30 22:27:06 +00:00
|
|
|
|
2008-07-30 22:51:07 +00:00
|
|
|
# This means that if a storage server treats me as though I were a
|
|
|
|
# 1.0.0 storage client, it will work as they expect.
|
|
|
|
OLDEST_SUPPORTED_VERSION = "1.0.0"
|
2007-04-26 19:01:25 +00:00
|
|
|
|
2014-04-14 22:34:39 +00:00
|
|
|
# This is a dictionary of (needed, desired, total, max_segment_size). 'needed'
|
2008-01-16 10:03:35 +00:00
|
|
|
# is the number of shares required to reconstruct a file. 'desired' means
|
|
|
|
# that we will abort an upload unless we can allocate space for at least
|
|
|
|
# this many. 'total' is the total number of shares created by encoding.
|
|
|
|
# If everybody has room then this is is how many we will upload.
|
2008-02-05 20:05:13 +00:00
|
|
|
DEFAULT_ENCODING_PARAMETERS = {"k": 3,
|
|
|
|
"happy": 7,
|
|
|
|
"n": 10,
|
2019-05-08 20:04:57 +00:00
|
|
|
"max_segment_size": DEFAULT_MAX_SEGMENT_SIZE,
|
2008-01-16 10:03:35 +00:00
|
|
|
}
|
|
|
|
|
2018-03-05 03:08:11 +00:00
|
|
|
def __init__(self, config, main_tub, control_tub, i2p_provider, tor_provider, introducer_clients,
|
2018-03-06 23:29:24 +00:00
|
|
|
storage_farm_broker):
|
2018-01-31 01:04:08 +00:00
|
|
|
"""
|
2018-08-24 21:41:31 +00:00
|
|
|
Use :func:`allmydata.client.create_client` to instantiate one of these.
|
2018-01-31 01:04:08 +00:00
|
|
|
"""
|
2018-03-06 23:29:24 +00:00
|
|
|
node.Node.__init__(self, config, main_tub, control_tub, i2p_provider, tor_provider)
|
2018-01-31 01:04:08 +00:00
|
|
|
|
2017-08-23 21:34:11 +00:00
|
|
|
self._magic_folders = dict()
|
2008-04-17 18:13:39 +00:00
|
|
|
self.started_timestamp = time.time()
|
2018-01-31 01:04:08 +00:00
|
|
|
self.logSource = "Client"
|
2014-04-21 21:40:28 +00:00
|
|
|
self.encoding_params = self.DEFAULT_ENCODING_PARAMETERS.copy()
|
2018-01-31 01:04:08 +00:00
|
|
|
|
|
|
|
self.introducer_clients = introducer_clients
|
|
|
|
self.storage_broker = storage_farm_broker
|
|
|
|
|
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
|
|
|
self.init_stats_provider()
|
2009-11-18 01:54:44 +00:00
|
|
|
self.init_secrets()
|
2013-04-18 07:06:55 +00:00
|
|
|
self.init_node_key()
|
2007-07-04 00:27:07 +00:00
|
|
|
self.init_storage()
|
2008-02-06 02:58:38 +00:00
|
|
|
self.init_control()
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
self._key_generator = KeyGenerator()
|
2018-01-31 18:30:46 +00:00
|
|
|
key_gen_furl = config.get_config("client", "key_generator.furl", None)
|
2008-04-02 01:45:13 +00:00
|
|
|
if key_gen_furl:
|
2016-04-28 07:05:30 +00:00
|
|
|
log.msg("[client]key_generator.furl= is now ignored, see #2783")
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
self.init_client()
|
2016-08-27 00:31:02 +00:00
|
|
|
self.load_static_servers()
|
2016-03-29 01:02:22 +00:00
|
|
|
self.helper = None
|
2018-01-31 18:30:46 +00:00
|
|
|
if config.get_config("helper", "enabled", False, boolean=True):
|
2018-03-06 23:29:24 +00:00
|
|
|
if not self._is_tub_listening():
|
2016-08-30 01:49:20 +00:00
|
|
|
raise ValueError("config error: helper is enabled, but tub "
|
|
|
|
"is not listening ('tub.port=' is empty)")
|
2016-03-29 01:02:22 +00:00
|
|
|
self.init_helper()
|
2008-10-06 19:52:36 +00:00
|
|
|
self.init_ftp_server()
|
2008-11-05 01:00:22 +00:00
|
|
|
self.init_sftp_server()
|
2015-09-16 13:59:49 +00:00
|
|
|
self.init_magic_folder()
|
2007-08-28 01:58:39 +00:00
|
|
|
|
2014-08-17 14:36:57 +00:00
|
|
|
# If the node sees an exit_trigger file, it will poll every second to see
|
|
|
|
# whether the file still exists, and what its mtime is. If the file does not
|
|
|
|
# exist or has not been modified for a given timeout, the node will exit.
|
2018-08-24 21:41:44 +00:00
|
|
|
exit_trigger_file = config.get_config_path(self.EXIT_TRIGGER_FILE)
|
2014-08-17 14:36:57 +00:00
|
|
|
if os.path.exists(exit_trigger_file):
|
|
|
|
age = time.time() - os.stat(exit_trigger_file)[stat.ST_MTIME]
|
|
|
|
self.log("%s file noticed (%ds old), starting timer" % (self.EXIT_TRIGGER_FILE, age))
|
|
|
|
exit_trigger = TimerService(1.0, self._check_exit_trigger, exit_trigger_file)
|
|
|
|
exit_trigger.setServiceParent(self)
|
2007-05-25 00:34:42 +00:00
|
|
|
|
2009-02-20 19:15:54 +00:00
|
|
|
# this needs to happen last, so it can use getServiceNamed() to
|
|
|
|
# acquire references to StorageServer and other web-statusable things
|
2018-08-24 21:41:44 +00:00
|
|
|
webport = config.get_config("node", "web.port", None)
|
2007-12-03 21:52:42 +00:00
|
|
|
if webport:
|
|
|
|
self.init_web(webport) # strports string
|
|
|
|
|
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
|
|
|
def init_stats_provider(self):
|
2018-01-31 18:30:46 +00:00
|
|
|
gatherer_furl = self.config.get_config("client", "stats_gatherer.furl", None)
|
2008-05-08 18:37:30 +00:00
|
|
|
self.stats_provider = StatsProvider(self, gatherer_furl)
|
2018-01-31 20:03:05 +00:00
|
|
|
self.stats_provider.setServiceParent(self)
|
2008-05-08 18:37:30 +00:00
|
|
|
self.stats_provider.register_producer(self)
|
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
|
|
|
|
2008-04-17 18:13:39 +00:00
|
|
|
def get_stats(self):
|
|
|
|
return { 'node.uptime': time.time() - self.started_timestamp }
|
|
|
|
|
2009-11-18 01:54:44 +00:00
|
|
|
def init_secrets(self):
|
2018-01-31 18:30:46 +00:00
|
|
|
lease_s = self.config.get_or_create_private_config("secret", _make_secret)
|
2009-11-18 01:54:44 +00:00
|
|
|
lease_secret = base32.a2b(lease_s)
|
2018-01-31 18:30:46 +00:00
|
|
|
convergence_s = self.config.get_or_create_private_config('convergence',
|
|
|
|
_make_secret)
|
2009-11-18 01:54:44 +00:00
|
|
|
self.convergence = base32.a2b(convergence_s)
|
|
|
|
self._secret_holder = SecretHolder(lease_secret, self.convergence)
|
2007-08-28 02:30:26 +00:00
|
|
|
|
2013-04-18 07:06:55 +00:00
|
|
|
def init_node_key(self):
|
new introducer: signed extensible dictionary-based messages! refs #466
This introduces new client and server halves to the Introducer (renaming the
old one with a _V1 suffix). Both have fallbacks to accomodate talking to a
different version: the publishing client switches on whether the server's
.get_version() advertises V2 support, the server switches on which
subscription method was invoked by the subscribing client.
The V2 protocol sends a three-tuple of (serialized announcement dictionary,
signature, pubkey) for each announcement. The V2 server dispatches messages
to subscribers according to the service-name, and throws errors for invalid
signatures, but does not otherwise examine the messages. The V2 receiver's
subscription callback will receive a (serverid, ann_dict) pair. The
'serverid' will be equal to the pubkey if all of the following are true:
the originating client is V2, and was told a privkey to use
the announcement went through a V2 server
the signature is valid
If not, 'serverid' will be equal to the tubid portion of the announced FURL,
as was the case for V1 receivers.
Servers will create a keypair if one does not exist yet, stored in
private/server.privkey .
The signed announcement dictionary puts the server FURL in a key named
"anonymous-storage-FURL", which anticipates upcoming Accounting-related
changes in the server advertisements. It also provides a key named
"permutation-seed-base32" to tell clients what permutation seed to use. This
is computed at startup, using tubid if there are existing shares, otherwise
the pubkey, to retain share-order compatibility for existing servers.
2011-11-20 10:21:32 +00:00
|
|
|
# we only create the key once. On all subsequent runs, we re-use the
|
|
|
|
# existing key
|
|
|
|
def _make_key():
|
2019-06-14 04:17:58 +00:00
|
|
|
private_key, _ = ed25519.create_signing_keypair()
|
|
|
|
return ed25519.string_from_signing_key(private_key) + "\n"
|
2019-05-17 17:27:30 +00:00
|
|
|
|
2019-06-14 04:17:58 +00:00
|
|
|
private_key_str = self.config.get_or_create_private_config("node.privkey", _make_key)
|
|
|
|
private_key, public_key = ed25519.signing_keypair_from_string(private_key_str)
|
|
|
|
public_key_str = ed25519.string_from_verifying_key(public_key)
|
|
|
|
self.config.write_config_file("node.pubkey", public_key_str + "\n")
|
|
|
|
self._node_private_key = private_key
|
|
|
|
self._node_public_key = public_key
|
new introducer: signed extensible dictionary-based messages! refs #466
This introduces new client and server halves to the Introducer (renaming the
old one with a _V1 suffix). Both have fallbacks to accomodate talking to a
different version: the publishing client switches on whether the server's
.get_version() advertises V2 support, the server switches on which
subscription method was invoked by the subscribing client.
The V2 protocol sends a three-tuple of (serialized announcement dictionary,
signature, pubkey) for each announcement. The V2 server dispatches messages
to subscribers according to the service-name, and throws errors for invalid
signatures, but does not otherwise examine the messages. The V2 receiver's
subscription callback will receive a (serverid, ann_dict) pair. The
'serverid' will be equal to the pubkey if all of the following are true:
the originating client is V2, and was told a privkey to use
the announcement went through a V2 server
the signature is valid
If not, 'serverid' will be equal to the tubid portion of the announced FURL,
as was the case for V1 receivers.
Servers will create a keypair if one does not exist yet, stored in
private/server.privkey .
The signed announcement dictionary puts the server FURL in a key named
"anonymous-storage-FURL", which anticipates upcoming Accounting-related
changes in the server advertisements. It also provides a key named
"permutation-seed-base32" to tell clients what permutation seed to use. This
is computed at startup, using tubid if there are existing shares, otherwise
the pubkey, to retain share-order compatibility for existing servers.
2011-11-20 10:21:32 +00:00
|
|
|
|
2013-04-14 21:32:13 +00:00
|
|
|
def get_long_nodeid(self):
|
|
|
|
# this matches what IServer.get_longname() says about us elsewhere
|
2019-07-08 18:46:22 +00:00
|
|
|
vk_string = ed25519.string_from_verifying_key(self._node_public_key)
|
|
|
|
return remove_prefix(vk_string, "pub-")
|
2013-04-14 21:32:13 +00:00
|
|
|
|
|
|
|
def get_long_tubid(self):
|
|
|
|
return idlib.nodeid_b2a(self.nodeid)
|
|
|
|
|
new introducer: signed extensible dictionary-based messages! refs #466
This introduces new client and server halves to the Introducer (renaming the
old one with a _V1 suffix). Both have fallbacks to accomodate talking to a
different version: the publishing client switches on whether the server's
.get_version() advertises V2 support, the server switches on which
subscription method was invoked by the subscribing client.
The V2 protocol sends a three-tuple of (serialized announcement dictionary,
signature, pubkey) for each announcement. The V2 server dispatches messages
to subscribers according to the service-name, and throws errors for invalid
signatures, but does not otherwise examine the messages. The V2 receiver's
subscription callback will receive a (serverid, ann_dict) pair. The
'serverid' will be equal to the pubkey if all of the following are true:
the originating client is V2, and was told a privkey to use
the announcement went through a V2 server
the signature is valid
If not, 'serverid' will be equal to the tubid portion of the announced FURL,
as was the case for V1 receivers.
Servers will create a keypair if one does not exist yet, stored in
private/server.privkey .
The signed announcement dictionary puts the server FURL in a key named
"anonymous-storage-FURL", which anticipates upcoming Accounting-related
changes in the server advertisements. It also provides a key named
"permutation-seed-base32" to tell clients what permutation seed to use. This
is computed at startup, using tubid if there are existing shares, otherwise
the pubkey, to retain share-order compatibility for existing servers.
2011-11-20 10:21:32 +00:00
|
|
|
def _init_permutation_seed(self, ss):
|
2018-01-31 18:30:46 +00:00
|
|
|
seed = self.config.get_config_from_file("permutation-seed")
|
new introducer: signed extensible dictionary-based messages! refs #466
This introduces new client and server halves to the Introducer (renaming the
old one with a _V1 suffix). Both have fallbacks to accomodate talking to a
different version: the publishing client switches on whether the server's
.get_version() advertises V2 support, the server switches on which
subscription method was invoked by the subscribing client.
The V2 protocol sends a three-tuple of (serialized announcement dictionary,
signature, pubkey) for each announcement. The V2 server dispatches messages
to subscribers according to the service-name, and throws errors for invalid
signatures, but does not otherwise examine the messages. The V2 receiver's
subscription callback will receive a (serverid, ann_dict) pair. The
'serverid' will be equal to the pubkey if all of the following are true:
the originating client is V2, and was told a privkey to use
the announcement went through a V2 server
the signature is valid
If not, 'serverid' will be equal to the tubid portion of the announced FURL,
as was the case for V1 receivers.
Servers will create a keypair if one does not exist yet, stored in
private/server.privkey .
The signed announcement dictionary puts the server FURL in a key named
"anonymous-storage-FURL", which anticipates upcoming Accounting-related
changes in the server advertisements. It also provides a key named
"permutation-seed-base32" to tell clients what permutation seed to use. This
is computed at startup, using tubid if there are existing shares, otherwise
the pubkey, to retain share-order compatibility for existing servers.
2011-11-20 10:21:32 +00:00
|
|
|
if not seed:
|
|
|
|
have_shares = ss.have_shares()
|
|
|
|
if have_shares:
|
|
|
|
# if the server has shares but not a recorded
|
|
|
|
# permutation-seed, then it has been around since pre-#466
|
|
|
|
# days, and the clients who uploaded those shares used our
|
|
|
|
# TubID as a permutation-seed. We should keep using that same
|
|
|
|
# seed to keep the shares in the same place in the permuted
|
|
|
|
# ring, so those clients don't have to perform excessive
|
|
|
|
# searches.
|
|
|
|
seed = base32.b2a(self.nodeid)
|
|
|
|
else:
|
|
|
|
# otherwise, we're free to use the more natural seed of our
|
|
|
|
# pubkey-based serverid
|
2019-07-08 18:46:22 +00:00
|
|
|
vk_string = ed25519.string_from_verifying_key(self._node_public_key)
|
|
|
|
vk_bytes = remove_prefix(vk_string, ed25519.PUBLIC_KEY_PREFIX)
|
new introducer: signed extensible dictionary-based messages! refs #466
This introduces new client and server halves to the Introducer (renaming the
old one with a _V1 suffix). Both have fallbacks to accomodate talking to a
different version: the publishing client switches on whether the server's
.get_version() advertises V2 support, the server switches on which
subscription method was invoked by the subscribing client.
The V2 protocol sends a three-tuple of (serialized announcement dictionary,
signature, pubkey) for each announcement. The V2 server dispatches messages
to subscribers according to the service-name, and throws errors for invalid
signatures, but does not otherwise examine the messages. The V2 receiver's
subscription callback will receive a (serverid, ann_dict) pair. The
'serverid' will be equal to the pubkey if all of the following are true:
the originating client is V2, and was told a privkey to use
the announcement went through a V2 server
the signature is valid
If not, 'serverid' will be equal to the tubid portion of the announced FURL,
as was the case for V1 receivers.
Servers will create a keypair if one does not exist yet, stored in
private/server.privkey .
The signed announcement dictionary puts the server FURL in a key named
"anonymous-storage-FURL", which anticipates upcoming Accounting-related
changes in the server advertisements. It also provides a key named
"permutation-seed-base32" to tell clients what permutation seed to use. This
is computed at startup, using tubid if there are existing shares, otherwise
the pubkey, to retain share-order compatibility for existing servers.
2011-11-20 10:21:32 +00:00
|
|
|
seed = base32.b2a(vk_bytes)
|
2018-01-31 18:30:46 +00:00
|
|
|
self.config.write_config_file("permutation-seed", seed+"\n")
|
new introducer: signed extensible dictionary-based messages! refs #466
This introduces new client and server halves to the Introducer (renaming the
old one with a _V1 suffix). Both have fallbacks to accomodate talking to a
different version: the publishing client switches on whether the server's
.get_version() advertises V2 support, the server switches on which
subscription method was invoked by the subscribing client.
The V2 protocol sends a three-tuple of (serialized announcement dictionary,
signature, pubkey) for each announcement. The V2 server dispatches messages
to subscribers according to the service-name, and throws errors for invalid
signatures, but does not otherwise examine the messages. The V2 receiver's
subscription callback will receive a (serverid, ann_dict) pair. The
'serverid' will be equal to the pubkey if all of the following are true:
the originating client is V2, and was told a privkey to use
the announcement went through a V2 server
the signature is valid
If not, 'serverid' will be equal to the tubid portion of the announced FURL,
as was the case for V1 receivers.
Servers will create a keypair if one does not exist yet, stored in
private/server.privkey .
The signed announcement dictionary puts the server FURL in a key named
"anonymous-storage-FURL", which anticipates upcoming Accounting-related
changes in the server advertisements. It also provides a key named
"permutation-seed-base32" to tell clients what permutation seed to use. This
is computed at startup, using tubid if there are existing shares, otherwise
the pubkey, to retain share-order compatibility for existing servers.
2011-11-20 10:21:32 +00:00
|
|
|
return seed.strip()
|
|
|
|
|
2007-07-04 00:27:07 +00:00
|
|
|
def init_storage(self):
|
2008-02-05 20:05:13 +00:00
|
|
|
# should we run a storage server (and publish it for others to use)?
|
2018-01-31 18:30:46 +00:00
|
|
|
if not self.config.get_config("storage", "enabled", True, boolean=True):
|
2008-02-05 20:05:13 +00:00
|
|
|
return
|
2018-03-06 23:29:24 +00:00
|
|
|
if not self._is_tub_listening():
|
2016-08-30 01:49:20 +00:00
|
|
|
raise ValueError("config error: storage is enabled, but tub "
|
|
|
|
"is not listening ('tub.port=' is empty)")
|
2018-01-31 18:30:46 +00:00
|
|
|
readonly = self.config.get_config("storage", "readonly", False, boolean=True)
|
2008-02-05 20:05:13 +00:00
|
|
|
|
2018-03-19 18:21:28 +00:00
|
|
|
config_storedir = self.get_config(
|
|
|
|
"storage", "storage_dir", self.STOREDIR,
|
|
|
|
).decode('utf-8')
|
2018-01-31 18:30:46 +00:00
|
|
|
storedir = self.config.get_config_path(config_storedir)
|
2007-08-22 17:29:57 +00:00
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
data = self.config.get_config("storage", "reserved_space", None)
|
2008-12-02 00:24:21 +00:00
|
|
|
try:
|
|
|
|
reserved = parse_abbreviated_size(data)
|
|
|
|
except ValueError:
|
|
|
|
log.msg("[storage]reserved_space= contains unparseable value %s"
|
|
|
|
% data)
|
2013-03-20 22:25:10 +00:00
|
|
|
raise
|
2008-12-02 00:24:21 +00:00
|
|
|
if reserved is None:
|
|
|
|
reserved = 0
|
2018-01-31 18:30:46 +00:00
|
|
|
discard = self.config.get_config("storage", "debug_discard", False,
|
|
|
|
boolean=True)
|
2009-03-19 01:00:09 +00:00
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
expire = self.config.get_config("storage", "expire.enabled", False, boolean=True)
|
2009-03-19 01:00:09 +00:00
|
|
|
if expire:
|
2018-01-31 18:30:46 +00:00
|
|
|
mode = self.config.get_config("storage", "expire.mode") # require a mode
|
2009-03-19 01:00:09 +00:00
|
|
|
else:
|
2018-01-31 18:30:46 +00:00
|
|
|
mode = self.config.get_config("storage", "expire.mode", "age")
|
2009-03-19 01:00:09 +00:00
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
o_l_d = self.config.get_config("storage", "expire.override_lease_duration", None)
|
2009-03-19 01:00:09 +00:00
|
|
|
if o_l_d is not None:
|
|
|
|
o_l_d = parse_duration(o_l_d)
|
|
|
|
|
|
|
|
cutoff_date = None
|
|
|
|
if mode == "cutoff-date":
|
2018-01-31 18:30:46 +00:00
|
|
|
cutoff_date = self.config.get_config("storage", "expire.cutoff_date")
|
2009-03-19 01:00:09 +00:00
|
|
|
cutoff_date = parse_date(cutoff_date)
|
|
|
|
|
|
|
|
sharetypes = []
|
2018-01-31 18:30:46 +00:00
|
|
|
if self.config.get_config("storage", "expire.immutable", True, boolean=True):
|
2009-03-19 01:00:09 +00:00
|
|
|
sharetypes.append("immutable")
|
2018-01-31 18:30:46 +00:00
|
|
|
if self.config.get_config("storage", "expire.mutable", True, boolean=True):
|
2009-03-19 01:00:09 +00:00
|
|
|
sharetypes.append("mutable")
|
|
|
|
expiration_sharetypes = tuple(sharetypes)
|
|
|
|
|
2009-02-18 23:23:01 +00:00
|
|
|
ss = StorageServer(storedir, self.nodeid,
|
2008-12-02 00:24:21 +00:00
|
|
|
reserved_space=reserved,
|
|
|
|
discard_storage=discard,
|
|
|
|
readonly_storage=readonly,
|
2009-03-19 01:00:09 +00:00
|
|
|
stats_provider=self.stats_provider,
|
|
|
|
expiration_enabled=expire,
|
|
|
|
expiration_mode=mode,
|
|
|
|
expiration_override_lease_duration=o_l_d,
|
|
|
|
expiration_cutoff_date=cutoff_date,
|
|
|
|
expiration_sharetypes=expiration_sharetypes)
|
2018-01-31 20:03:05 +00:00
|
|
|
ss.setServiceParent(self)
|
2009-03-19 01:00:09 +00:00
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
furl_file = self.config.get_private_path("storage.furl").encode(get_filesystem_encoding())
|
2016-04-27 04:54:45 +00:00
|
|
|
furl = self.tub.registerReference(ss, furlFile=furl_file)
|
|
|
|
ann = {"anonymous-storage-FURL": furl,
|
|
|
|
"permutation-seed-base32": self._init_permutation_seed(ss),
|
|
|
|
}
|
2016-09-12 23:01:23 +00:00
|
|
|
for ic in self.introducer_clients:
|
2019-06-14 04:17:58 +00:00
|
|
|
ic.publish("storage", ann, self._node_private_key)
|
2008-02-05 20:05:13 +00:00
|
|
|
|
2019-06-14 20:34:10 +00:00
|
|
|
self._init_storage_plugins()
|
|
|
|
|
|
|
|
|
|
|
|
def _init_storage_plugins(self):
|
|
|
|
"""
|
|
|
|
Load, register, and announce any configured storage plugins.
|
|
|
|
"""
|
|
|
|
storage_plugin_names = self._get_enabled_storage_plugin_names()
|
|
|
|
plugins = list(self._collect_storage_plugins(storage_plugin_names))
|
|
|
|
# TODO What if some names aren't found?
|
|
|
|
announceable_storage_servers = self._create_plugin_storage_servers(plugins)
|
|
|
|
self._enable_storage_servers(announceable_storage_servers)
|
|
|
|
|
|
|
|
|
|
|
|
def _get_enabled_storage_plugin_names(self):
|
|
|
|
"""
|
|
|
|
Get the names of storage plugins that are enabled in the configuration.
|
|
|
|
"""
|
|
|
|
return {
|
|
|
|
self.config.get_config(
|
|
|
|
"storage", "plugins", b""
|
|
|
|
).decode("ascii")
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def _collect_storage_plugins(self, storage_plugin_names):
|
|
|
|
"""
|
|
|
|
Get the storage plugins with names matching those given.
|
|
|
|
"""
|
|
|
|
return list(
|
|
|
|
plugin
|
|
|
|
for plugin
|
|
|
|
in getPlugins(IFoolscapStoragePlugin)
|
|
|
|
if plugin.name in storage_plugin_names
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def _create_plugin_storage_servers(self, plugins):
|
|
|
|
"""
|
|
|
|
Cause each storage plugin to instantiate its storage server and return
|
|
|
|
them all.
|
|
|
|
"""
|
|
|
|
return list(
|
|
|
|
self._add_to_announcement(
|
|
|
|
{u"name": plugin.name},
|
|
|
|
plugin.get_storage_server(
|
|
|
|
self._get_storage_plugin_configuration(plugin.name),
|
|
|
|
lambda: self.getServiceNamed(StorageServer.name)
|
|
|
|
),
|
|
|
|
)
|
|
|
|
for plugin
|
|
|
|
in plugins
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def _add_to_announcement(self, information, announceable_storage_server):
|
|
|
|
"""
|
|
|
|
Create a new ``AnnounceableStorageServer`` based on
|
|
|
|
``announceable_storage_server`` with ``information`` added to its
|
|
|
|
``announcement``.
|
|
|
|
"""
|
|
|
|
updated_announcement = announceable_storage_server.announcement.copy()
|
|
|
|
updated_announcement.update(information)
|
|
|
|
return AnnounceableStorageServer(
|
|
|
|
updated_announcement,
|
|
|
|
announceable_storage_server.storage_server,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def _get_storage_plugin_configuration(self, storage_plugin_name):
|
|
|
|
return dict(
|
|
|
|
# Need to reach past the Tahoe-LAFS-supplied wrapper around the
|
|
|
|
# underlying ConfigParser...
|
|
|
|
self.config.config.items("storageserver.plugins." + storage_plugin_name)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def _enable_storage_servers(self, announceable_storage_servers):
|
|
|
|
"""
|
|
|
|
Register and announce the given storage servers.
|
|
|
|
"""
|
|
|
|
for announceable in announceable_storage_servers:
|
|
|
|
self._enable_storage_server(announceable)
|
|
|
|
|
|
|
|
|
|
|
|
def _enable_storage_server(self, announceable_storage_server):
|
|
|
|
"""
|
|
|
|
Register and announce a storage server.
|
|
|
|
"""
|
|
|
|
furl_file = self.config.get_private_path(
|
|
|
|
"storage-plugin.{}.furl".format(
|
|
|
|
# Oops, why don't I have a better handle on this value?
|
|
|
|
announceable_storage_server.announcement[u"name"],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
furl = self.tub.registerReference(
|
|
|
|
announceable_storage_server.storage_server,
|
|
|
|
furlFile=furl_file.encode(get_filesystem_encoding()),
|
|
|
|
)
|
|
|
|
announceable_storage_server = self._add_to_announcement(
|
|
|
|
{u"storage-server-FURL": furl},
|
|
|
|
announceable_storage_server,
|
|
|
|
)
|
|
|
|
for ic in self.introducer_clients:
|
|
|
|
ic.publish(
|
|
|
|
"storage",
|
|
|
|
announceable_storage_server.announcement,
|
|
|
|
self._node_key,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2008-03-12 02:20:10 +00:00
|
|
|
def init_client(self):
|
2018-01-31 18:30:46 +00:00
|
|
|
helper_furl = self.config.get_config("client", "helper.furl", None)
|
2012-12-29 04:17:00 +00:00
|
|
|
if helper_furl in ("None", ""):
|
|
|
|
helper_furl = None
|
|
|
|
|
2014-04-21 21:40:28 +00:00
|
|
|
DEP = self.encoding_params
|
2018-01-31 18:30:46 +00:00
|
|
|
DEP["k"] = int(self.config.get_config("client", "shares.needed", DEP["k"]))
|
|
|
|
DEP["n"] = int(self.config.get_config("client", "shares.total", DEP["n"]))
|
|
|
|
DEP["happy"] = int(self.config.get_config("client", "shares.happy", DEP["happy"]))
|
2009-06-01 21:06:04 +00:00
|
|
|
|
2016-01-27 06:49:23 +00:00
|
|
|
# for the CLI to authenticate to local JSON endpoints
|
|
|
|
self._create_auth_token()
|
|
|
|
|
2009-08-15 11:44:15 +00:00
|
|
|
self.history = History(self.stats_provider)
|
2010-08-04 07:27:02 +00:00
|
|
|
self.terminator = Terminator()
|
|
|
|
self.terminator.setServiceParent(self)
|
2018-01-31 20:03:05 +00:00
|
|
|
uploader = Uploader(
|
|
|
|
helper_furl,
|
|
|
|
self.stats_provider,
|
|
|
|
self.history,
|
|
|
|
)
|
|
|
|
uploader.setServiceParent(self)
|
2011-08-24 15:59:28 +00:00
|
|
|
self.init_blacklist()
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
self.init_nodemaker()
|
2009-02-16 21:58:44 +00:00
|
|
|
|
2016-01-27 06:49:23 +00:00
|
|
|
def get_auth_token(self):
|
|
|
|
"""
|
|
|
|
This returns a local authentication token, which is just some
|
|
|
|
random data in "api_auth_token" which must be echoed to API
|
|
|
|
calls.
|
|
|
|
|
|
|
|
Currently only the URI '/magic' for magic-folder status; other
|
|
|
|
endpoints are invited to include this as well, as appropriate.
|
|
|
|
"""
|
2018-01-31 18:30:46 +00:00
|
|
|
return self.config.get_private_config('api_auth_token')
|
2016-01-27 06:49:23 +00:00
|
|
|
|
|
|
|
def _create_auth_token(self):
|
|
|
|
"""
|
|
|
|
Creates new auth-token data written to 'private/api_auth_token'.
|
|
|
|
|
|
|
|
This is intentionally re-created every time the node starts.
|
|
|
|
"""
|
2018-01-31 18:30:46 +00:00
|
|
|
self.config.write_private_config(
|
2016-01-27 06:49:23 +00:00
|
|
|
'api_auth_token',
|
|
|
|
urlsafe_b64encode(os.urandom(32)) + '\n',
|
|
|
|
)
|
|
|
|
|
2009-06-02 02:25:11 +00:00
|
|
|
def get_storage_broker(self):
|
|
|
|
return self.storage_broker
|
|
|
|
|
2016-08-27 00:31:02 +00:00
|
|
|
def load_static_servers(self):
|
|
|
|
"""
|
|
|
|
Load the servers.yaml file if it exists, and provide the static
|
|
|
|
server data to the StorageFarmBroker.
|
|
|
|
"""
|
2018-01-31 18:30:46 +00:00
|
|
|
fn = self.config.get_private_path("servers.yaml")
|
2016-08-27 00:31:02 +00:00
|
|
|
servers_filepath = FilePath(fn)
|
|
|
|
try:
|
|
|
|
with servers_filepath.open() as f:
|
|
|
|
servers_yaml = yamlutil.safe_load(f)
|
|
|
|
static_servers = servers_yaml.get("storage", {})
|
|
|
|
log.msg("found %d static servers in private/servers.yaml" %
|
|
|
|
len(static_servers))
|
|
|
|
self.storage_broker.set_static_servers(static_servers)
|
|
|
|
except EnvironmentError:
|
|
|
|
pass
|
|
|
|
|
2011-08-24 15:59:28 +00:00
|
|
|
def init_blacklist(self):
|
2018-01-31 18:30:46 +00:00
|
|
|
fn = self.config.get_config_path("access.blacklist")
|
2011-08-24 15:59:28 +00:00
|
|
|
self.blacklist = Blacklist(fn)
|
|
|
|
|
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
|
|
|
def init_nodemaker(self):
|
2018-01-31 18:30:46 +00:00
|
|
|
default = self.config.get_config("client", "mutable.format", default="SDMF")
|
2011-10-13 16:32:29 +00:00
|
|
|
if default.upper() == "MDMF":
|
|
|
|
self.mutable_file_default = MDMF_VERSION
|
|
|
|
else:
|
|
|
|
self.mutable_file_default = SDMF_VERSION
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
self.nodemaker = NodeMaker(self.storage_broker,
|
|
|
|
self._secret_holder,
|
|
|
|
self.get_history(),
|
|
|
|
self.getServiceNamed("uploader"),
|
2010-08-04 07:27:02 +00:00
|
|
|
self.terminator,
|
Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
* stop using IURI as an adapter
* pass cap strings around instead of URI instances
* move filenode/dirnode creation duties from Client to new NodeMaker class
* move other Client duties to KeyGenerator, SecretHolder, History classes
* stop passing Client reference to dirnode/filenode constructors
- pass less-powerful references instead, like StorageBroker or Uploader
* always create DirectoryNodes by wrapping a filenode (mutable for now)
* remove some specialized mock classes from unit tests
Detailed list of changes (done one at a time, then merged together)
always pass a string to create_node_from_uri(), not an IURI instance
always pass a string to IFilesystemNode constructors, not an IURI instance
stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
client.py: move SecretHolder code out to a separate class
test_web.py: hush pyflakes
client.py: move NodeMaker functionality out into a separate object
LiteralFileNode: stop storing a Client reference
immutable Checker: remove Client reference, it only needs a SecretHolder
immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
immutable Repairer: replace Client reference with StorageBroker and SecretHolder
immutable FileNode: remove Client reference
mutable.Publish: stop passing Client
mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
MutableChecker: reference StorageBroker and History directly, not through Client
mutable.FileNode: removed unused indirection to checker classes
mutable.FileNode: remove Client reference
client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
move create_mutable_file() into NodeMaker
test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
test_mutable.py: clean up basedir names
client.py: move create_empty_dirnode() into NodeMaker
dirnode.py: get rid of DirectoryNode.create
remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
remove Client from NodeMaker
move helper status into History, pass History to web.Status instead of Client
test_mutable.py: fix minor typo
2009-08-15 11:02:56 +00:00
|
|
|
self.get_encoding_parameters(),
|
2011-10-13 16:32:29 +00:00
|
|
|
self.mutable_file_default,
|
2011-08-24 15:59:28 +00:00
|
|
|
self._key_generator,
|
|
|
|
self.blacklist)
|
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
|
|
|
|
2009-01-14 23:14:24 +00:00
|
|
|
def get_history(self):
|
2009-08-15 11:44:15 +00:00
|
|
|
return self.history
|
2009-01-14 23:14:24 +00:00
|
|
|
|
2008-02-06 02:58:38 +00:00
|
|
|
def init_control(self):
|
2016-04-27 04:54:45 +00:00
|
|
|
c = ControlServer()
|
|
|
|
c.setServiceParent(self)
|
2016-06-30 13:04:23 +00:00
|
|
|
control_url = self.control_tub.registerReference(c)
|
2018-01-31 18:30:46 +00:00
|
|
|
self.config.write_private_config("control.furl", control_url + "\n")
|
2007-07-04 00:27:07 +00:00
|
|
|
|
2008-02-06 02:58:38 +00:00
|
|
|
def init_helper(self):
|
2018-01-31 18:30:46 +00:00
|
|
|
self.helper = Helper(self.config.get_config_path("helper"),
|
2016-04-27 04:54:45 +00:00
|
|
|
self.storage_broker, self._secret_holder,
|
|
|
|
self.stats_provider, self.history)
|
|
|
|
# TODO: this is confusing. BASEDIR/private/helper.furl is created by
|
|
|
|
# the helper. BASEDIR/helper.furl is consumed by the client who wants
|
|
|
|
# to use the helper. I like having the filename be the same, since
|
|
|
|
# that makes 'cp' work smoothly, but the difference between config
|
|
|
|
# inputs and generated outputs is hard to see.
|
2018-01-31 18:30:46 +00:00
|
|
|
helper_furlfile = self.config.get_private_path("helper.furl").encode(get_filesystem_encoding())
|
2016-04-27 04:54:45 +00:00
|
|
|
self.tub.registerReference(self.helper, furlFile=helper_furlfile)
|
2007-08-10 01:30:24 +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
|
|
|
def set_default_mutable_keysize(self, keysize):
|
|
|
|
self._key_generator.set_default_keysize(keysize)
|
2008-04-02 01:45:13 +00:00
|
|
|
|
2007-08-22 21:54:34 +00:00
|
|
|
def init_web(self, webport):
|
2007-12-03 21:52:42 +00:00
|
|
|
self.log("init_web(webport=%s)", args=(webport,))
|
|
|
|
|
2007-09-04 23:33:06 +00:00
|
|
|
from allmydata.webish import WebishServer
|
2018-01-31 18:30:46 +00:00
|
|
|
nodeurl_path = self.config.get_config_path("node.url")
|
|
|
|
staticdir_config = self.config.get_config("node", "web.static", "public_html").decode("utf-8")
|
|
|
|
staticdir = self.config.get_config_path(staticdir_config)
|
2009-02-20 19:15:54 +00:00
|
|
|
ws = WebishServer(self, webport, nodeurl_path, staticdir)
|
2018-01-31 20:03:05 +00:00
|
|
|
ws.setServiceParent(self)
|
2007-08-22 21:54:34 +00:00
|
|
|
|
2008-10-06 19:52:36 +00:00
|
|
|
def init_ftp_server(self):
|
2018-01-31 18:30:46 +00:00
|
|
|
if self.config.get_config("ftpd", "enabled", False, boolean=True):
|
2015-03-24 17:10:00 +00:00
|
|
|
accountfile = from_utf8_or_none(
|
2018-01-31 18:30:46 +00:00
|
|
|
self.config.get_config("ftpd", "accounts.file", None))
|
2015-03-24 17:10:00 +00:00
|
|
|
if accountfile:
|
2018-01-31 18:30:46 +00:00
|
|
|
accountfile = self.config.get_config_path(accountfile)
|
|
|
|
accounturl = self.config.get_config("ftpd", "accounts.url", None)
|
|
|
|
ftp_portstr = self.config.get_config("ftpd", "port", "8021")
|
2008-10-07 01:06:05 +00:00
|
|
|
|
2008-11-05 21:07:33 +00:00
|
|
|
from allmydata.frontends import ftpd
|
2008-10-07 01:06:05 +00:00
|
|
|
s = ftpd.FTPServer(self, accountfile, accounturl, ftp_portstr)
|
|
|
|
s.setServiceParent(self)
|
2008-10-06 19:52:36 +00:00
|
|
|
|
2008-11-05 01:00:22 +00:00
|
|
|
def init_sftp_server(self):
|
2018-01-31 18:30:46 +00:00
|
|
|
if self.config.get_config("sftpd", "enabled", False, boolean=True):
|
2015-03-24 17:10:00 +00:00
|
|
|
accountfile = from_utf8_or_none(
|
2018-01-31 18:30:46 +00:00
|
|
|
self.config.get_config("sftpd", "accounts.file", None))
|
2015-03-24 17:10:00 +00:00
|
|
|
if accountfile:
|
2018-01-31 18:30:46 +00:00
|
|
|
accountfile = self.config.get_config_path(accountfile)
|
|
|
|
accounturl = self.config.get_config("sftpd", "accounts.url", None)
|
|
|
|
sftp_portstr = self.config.get_config("sftpd", "port", "8022")
|
|
|
|
pubkey_file = from_utf8_or_none(self.config.get_config("sftpd", "host_pubkey_file"))
|
|
|
|
privkey_file = from_utf8_or_none(self.config.get_config("sftpd", "host_privkey_file"))
|
2008-11-05 01:00:22 +00:00
|
|
|
|
2008-11-05 21:07:33 +00:00
|
|
|
from allmydata.frontends import sftpd
|
2008-11-05 01:00:22 +00:00
|
|
|
s = sftpd.SFTPServer(self, accountfile, accounturl,
|
|
|
|
sftp_portstr, pubkey_file, privkey_file)
|
|
|
|
s.setServiceParent(self)
|
|
|
|
|
2015-09-16 13:59:49 +00:00
|
|
|
def init_magic_folder(self):
|
|
|
|
#print "init_magic_folder"
|
2018-01-31 18:30:46 +00:00
|
|
|
if self.config.get_config("drop_upload", "enabled", False, boolean=True):
|
2018-02-28 18:13:14 +00:00
|
|
|
raise node.OldConfigOptionError(
|
|
|
|
"The [drop_upload] section must be renamed to [magic_folder].\n"
|
|
|
|
"See docs/frontends/magic-folder.rst for more information."
|
|
|
|
)
|
2011-11-20 23:24:26 +00:00
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
if self.config.get_config("magic_folder", "enabled", False, boolean=True):
|
2016-10-24 20:47:22 +00:00
|
|
|
from allmydata.frontends import magic_folder
|
2015-09-16 13:59:49 +00:00
|
|
|
|
2016-10-24 22:44:38 +00:00
|
|
|
try:
|
2018-01-31 18:30:46 +00:00
|
|
|
magic_folders = magic_folder.load_magic_folders(self.config._basedir)
|
2017-08-23 21:34:11 +00:00
|
|
|
except Exception as e:
|
|
|
|
log.msg("Error loading magic-folder config: {}".format(e))
|
|
|
|
raise
|
2015-09-16 13:59:49 +00:00
|
|
|
|
2016-07-22 00:23:22 +00:00
|
|
|
# start processing the upload queue when we've connected to
|
|
|
|
# enough servers
|
|
|
|
threshold = min(self.encoding_params["k"],
|
|
|
|
self.encoding_params["happy"] + 1)
|
2017-08-23 21:34:11 +00:00
|
|
|
|
|
|
|
for (name, mf_config) in magic_folders.items():
|
|
|
|
self.log("Starting magic_folder '{}'".format(name))
|
2018-04-23 15:41:29 +00:00
|
|
|
s = magic_folder.MagicFolder.from_config(self, name, mf_config)
|
2017-08-23 21:34:11 +00:00
|
|
|
self._magic_folders[name] = s
|
|
|
|
s.setServiceParent(self)
|
|
|
|
|
|
|
|
connected_d = self.storage_broker.when_connected_enough(threshold)
|
|
|
|
def connected_enough(ign, mf):
|
|
|
|
mf.ready() # returns a Deferred we ignore
|
|
|
|
return None
|
|
|
|
connected_d.addCallback(connected_enough, s)
|
2011-08-08 23:40:49 +00:00
|
|
|
|
2014-08-17 14:36:57 +00:00
|
|
|
def _check_exit_trigger(self, exit_trigger_file):
|
|
|
|
if os.path.exists(exit_trigger_file):
|
|
|
|
mtime = os.stat(exit_trigger_file)[stat.ST_MTIME]
|
2009-03-08 03:50:39 +00:00
|
|
|
if mtime > time.time() - 120.0:
|
2007-05-25 00:34:42 +00:00
|
|
|
return
|
2007-09-19 20:56:00 +00:00
|
|
|
else:
|
2014-08-17 14:36:57 +00:00
|
|
|
self.log("%s file too old, shutting down" % (self.EXIT_TRIGGER_FILE,))
|
2007-09-19 20:56:00 +00:00
|
|
|
else:
|
2014-08-17 14:36:57 +00:00
|
|
|
self.log("%s file missing, shutting down" % (self.EXIT_TRIGGER_FILE,))
|
2007-05-25 00:34:42 +00:00
|
|
|
reactor.stop()
|
|
|
|
|
2007-07-12 22:33:30 +00:00
|
|
|
def get_encoding_parameters(self):
|
2014-04-21 21:40:28 +00:00
|
|
|
return self.encoding_params
|
2007-07-12 22:33:30 +00:00
|
|
|
|
2016-09-12 23:01:23 +00:00
|
|
|
def introducer_connection_statuses(self):
|
2016-12-08 23:15:49 +00:00
|
|
|
return [ic.connection_status() for ic in self.introducer_clients]
|
2016-09-12 23:01:23 +00:00
|
|
|
|
2007-06-10 04:03:57 +00:00
|
|
|
def connected_to_introducer(self):
|
2016-09-12 23:01:23 +00:00
|
|
|
return any([ic.connected_to_introducer() for ic in self.introducer_clients])
|
2007-08-28 02:00:18 +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
|
|
|
def get_renewal_secret(self): # this will go away
|
|
|
|
return self._secret_holder.get_renewal_secret()
|
2007-08-28 02:30:26 +00:00
|
|
|
|
2007-08-28 02:00:18 +00:00
|
|
|
def get_cancel_secret(self):
|
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 self._secret_holder.get_cancel_secret()
|
2007-09-20 22:33:58 +00:00
|
|
|
|
|
|
|
def debug_wait_for_client_connections(self, num_clients):
|
|
|
|
"""Return a Deferred that fires (with None) when we have connections
|
|
|
|
to the given number of peers. Useful for tests that set up a
|
|
|
|
temporary test network and need to know when it is safe to proceed
|
|
|
|
with an upload or download."""
|
|
|
|
def _check():
|
2011-02-21 01:58:04 +00:00
|
|
|
return len(self.storage_broker.get_connected_servers()) >= num_clients
|
2007-09-20 22:33:58 +00:00
|
|
|
d = self.poll(_check, 0.5)
|
|
|
|
d.addCallback(lambda res: None)
|
|
|
|
return d
|
|
|
|
|
2007-11-01 22:15:29 +00:00
|
|
|
|
2007-11-09 09:54:51 +00:00
|
|
|
# these four methods are the primitives for creating filenodes and
|
|
|
|
# dirnodes. The first takes a URI and produces a filenode or (new-style)
|
|
|
|
# dirnode. The other three create brand-new filenodes/dirnodes.
|
|
|
|
|
2010-01-27 06:44:30 +00:00
|
|
|
def create_node_from_uri(self, write_uri, read_uri=None, deep_immutable=False, name="<unknown name>"):
|
|
|
|
# This returns synchronously.
|
|
|
|
# Note that it does *not* validate the write_uri and read_uri; instead we
|
|
|
|
# may get an opaque node if there were any problems.
|
|
|
|
return self.nodemaker.create_from_cap(write_uri, read_uri, deep_immutable=deep_immutable, name=name)
|
2007-11-09 09:54:51 +00:00
|
|
|
|
2011-10-13 16:29:51 +00:00
|
|
|
def create_dirnode(self, initial_children={}, version=None):
|
2011-08-02 01:48:11 +00:00
|
|
|
d = self.nodemaker.create_new_mutable_directory(initial_children, version=version)
|
2009-10-12 22:45:06 +00:00
|
|
|
return d
|
2010-01-27 06:44:30 +00:00
|
|
|
|
2009-11-18 07:09:00 +00:00
|
|
|
def create_immutable_dirnode(self, children, convergence=None):
|
|
|
|
return self.nodemaker.create_immutable_directory(children, convergence)
|
2007-11-01 22:15:29 +00:00
|
|
|
|
2011-08-02 01:48:11 +00:00
|
|
|
def create_mutable_file(self, contents=None, keysize=None, version=None):
|
|
|
|
return self.nodemaker.create_mutable_file(contents, keysize,
|
|
|
|
version=version)
|
2008-04-02 01:45:13 +00:00
|
|
|
|
2017-02-14 23:36:57 +00:00
|
|
|
def upload(self, uploadable, reactor=None):
|
2007-11-09 09:54:51 +00:00
|
|
|
uploader = self.getServiceNamed("uploader")
|
2017-02-14 23:36:57 +00:00
|
|
|
return uploader.upload(uploadable, reactor=reactor)
|