2018-03-01 19:28:18 +00:00
|
|
|
"""
|
|
|
|
This module contains classes and functions to implement and manage
|
|
|
|
a node for Tahoe-LAFS.
|
|
|
|
"""
|
2018-02-07 10:05:21 +00:00
|
|
|
import datetime
|
|
|
|
import os.path
|
|
|
|
import re
|
|
|
|
import types
|
2018-08-24 21:50:55 +00:00
|
|
|
import errno
|
2018-02-07 10:05:21 +00:00
|
|
|
import ConfigParser
|
|
|
|
import tempfile
|
2017-09-06 01:08:35 +00:00
|
|
|
from io import BytesIO
|
2007-08-12 17:29:38 +00:00
|
|
|
from base64 import b32decode, b32encode
|
2007-05-22 21:01:40 +00:00
|
|
|
|
2016-10-22 19:26:36 +00:00
|
|
|
from twisted.internet import reactor
|
2008-09-20 17:35:45 +00:00
|
|
|
from twisted.python import log as twlog
|
2007-03-08 22:10:36 +00:00
|
|
|
from twisted.application import service
|
2018-08-24 21:50:55 +00:00
|
|
|
from twisted.python.failure import Failure
|
2016-04-27 04:54:45 +00:00
|
|
|
from foolscap.api import Tub, app_versions
|
2008-07-07 06:49:08 +00:00
|
|
|
import foolscap.logging.log
|
2008-09-23 00:03:51 +00:00
|
|
|
from allmydata import get_package_versions, get_package_versions_string
|
2008-07-03 00:40:29 +00:00
|
|
|
from allmydata.util import log
|
2016-04-27 04:54:45 +00:00
|
|
|
from allmydata.util import fileutil, iputil
|
|
|
|
from allmydata.util.assertutil import _assert
|
2010-07-22 00:14:18 +00:00
|
|
|
from allmydata.util.fileutil import abspath_expanduser_unicode
|
2011-08-03 16:38:48 +00:00
|
|
|
from allmydata.util.encodingutil import get_filesystem_encoding, quote_output
|
2015-12-21 21:59:15 +00:00
|
|
|
from allmydata.util import configutil
|
2016-10-22 19:26:36 +00:00
|
|
|
from allmydata.util import i2p_provider, tor_provider
|
2016-08-31 08:50:13 +00:00
|
|
|
|
2016-09-05 22:34:17 +00:00
|
|
|
def _common_config_sections():
|
|
|
|
return {
|
|
|
|
"connections": (
|
|
|
|
"tcp",
|
|
|
|
),
|
|
|
|
"node": (
|
|
|
|
"log_gatherer.furl",
|
|
|
|
"nickname",
|
|
|
|
"reveal-ip-address",
|
|
|
|
"tempdir",
|
|
|
|
"timeout.disconnect",
|
|
|
|
"timeout.keepalive",
|
|
|
|
"tub.location",
|
|
|
|
"tub.port",
|
|
|
|
"web.port",
|
|
|
|
"web.static",
|
|
|
|
),
|
|
|
|
"i2p": (
|
|
|
|
"enabled",
|
|
|
|
"i2p.configdir",
|
|
|
|
"i2p.executable",
|
|
|
|
"launch",
|
|
|
|
"sam.port",
|
2016-10-22 19:26:36 +00:00
|
|
|
"dest",
|
|
|
|
"dest.port",
|
|
|
|
"dest.private_key_file",
|
2016-09-05 22:34:17 +00:00
|
|
|
),
|
|
|
|
"tor": (
|
|
|
|
"control.port",
|
|
|
|
"enabled",
|
|
|
|
"launch",
|
|
|
|
"socks.port",
|
|
|
|
"tor.executable",
|
2016-10-09 05:02:11 +00:00
|
|
|
"onion",
|
|
|
|
"onion.local_port",
|
|
|
|
"onion.external_port",
|
|
|
|
"onion.private_key_file",
|
2016-09-05 22:34:17 +00:00
|
|
|
),
|
|
|
|
}
|
|
|
|
|
2007-12-21 21:42:38 +00:00
|
|
|
# Add our application versions to the data that Foolscap's LogPublisher
|
2008-09-23 00:03:51 +00:00
|
|
|
# reports.
|
2008-09-23 00:13:47 +00:00
|
|
|
for thing, things_version in get_package_versions().iteritems():
|
2008-09-23 00:03:51 +00:00
|
|
|
app_versions.add_version(thing, str(things_version))
|
2007-05-21 20:42:51 +00:00
|
|
|
|
2007-05-22 21:01:40 +00:00
|
|
|
# group 1 will be addr (dotted quad string), group 3 if any will be portnum (string)
|
2018-03-01 19:31:30 +00:00
|
|
|
ADDR_RE = re.compile("^([1-9][0-9]*\.[1-9][0-9]*\.[1-9][0-9]*\.[1-9][0-9]*)(:([1-9][0-9]*))?$")
|
2007-05-22 21:01:40 +00:00
|
|
|
|
2018-01-28 06:13:50 +00:00
|
|
|
# this is put into README in new node-directories (for client and introducers)
|
|
|
|
PRIV_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.
|
|
|
|
"""
|
|
|
|
|
2007-10-12 00:30:07 +00:00
|
|
|
|
2007-10-15 03:43:11 +00:00
|
|
|
def formatTimeTahoeStyle(self, when):
|
2018-03-01 19:28:18 +00:00
|
|
|
"""
|
|
|
|
Format the given (UTC) timestamp in the way Tahoe-LAFS expects it,
|
|
|
|
for example: 2007-10-12 00:26:28.566Z
|
|
|
|
|
|
|
|
:param when: UTC POSIX timestamp
|
|
|
|
:type when: float
|
|
|
|
:returns: datetime.datetime
|
|
|
|
"""
|
2007-10-15 03:46:51 +00:00
|
|
|
d = datetime.datetime.utcfromtimestamp(when)
|
|
|
|
if d.microsecond:
|
|
|
|
return d.isoformat(" ")[:-3]+"Z"
|
2018-03-01 19:50:22 +00:00
|
|
|
return d.isoformat(" ") + ".000Z"
|
2007-10-12 00:30:07 +00:00
|
|
|
|
2018-03-01 19:31:30 +00:00
|
|
|
PRIV_README = """
|
2007-12-17 23:39:54 +00:00
|
|
|
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
|
2010-11-28 17:34:44 +00:00
|
|
|
the files. See the 'configuration.rst' documentation file for details."""
|
2007-12-17 23:39:54 +00:00
|
|
|
|
2018-08-24 21:41:31 +00:00
|
|
|
class _None(object):
|
2018-03-01 19:56:59 +00:00
|
|
|
"""
|
|
|
|
This class is to be used as a marker in get_config()
|
|
|
|
"""
|
2008-09-30 23:21:49 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
class MissingConfigEntry(Exception):
|
2011-08-01 23:24:23 +00:00
|
|
|
""" A required config entry was not found. """
|
|
|
|
|
|
|
|
class OldConfigError(Exception):
|
|
|
|
""" An obsolete config file was found. See
|
|
|
|
docs/historical/configuration.rst. """
|
2011-08-03 17:45:46 +00:00
|
|
|
def __str__(self):
|
|
|
|
return ("Found pre-Tahoe-LAFS-v1.3 configuration file(s):\n"
|
|
|
|
"%s\n"
|
|
|
|
"See docs/historical/configuration.rst."
|
|
|
|
% "\n".join([quote_output(fname) for fname in self.args[0]]))
|
|
|
|
|
2011-11-20 23:24:26 +00:00
|
|
|
class OldConfigOptionError(Exception):
|
2018-03-01 19:28:18 +00:00
|
|
|
"""Indicate that outdated configuration options are being used."""
|
2011-11-20 23:24:26 +00:00
|
|
|
pass
|
|
|
|
|
2014-05-05 21:55:50 +00:00
|
|
|
class UnescapedHashError(Exception):
|
2018-03-01 19:28:18 +00:00
|
|
|
"""Indicate that a configuration entry contains an unescaped '#' character."""
|
2014-05-05 21:55:50 +00:00
|
|
|
def __str__(self):
|
|
|
|
return ("The configuration entry %s contained an unescaped '#' character."
|
2014-05-05 22:14:48 +00:00
|
|
|
% quote_output("[%s]%s = %s" % self.args))
|
2014-05-05 21:55:50 +00:00
|
|
|
|
2016-08-31 09:44:27 +00:00
|
|
|
class PrivacyError(Exception):
|
|
|
|
"""reveal-IP-address = false, but the node is configured in such a way
|
|
|
|
that the IP address could be revealed"""
|
2008-09-30 23:21:49 +00:00
|
|
|
|
2017-09-06 01:08:35 +00:00
|
|
|
|
2018-02-27 22:00:31 +00:00
|
|
|
def create_node_dir(basedir, readme_text):
|
|
|
|
"""
|
|
|
|
Create new new 'node directory' at 'basedir'. This includes a
|
|
|
|
'private' subdirectory. If basedir (and privdir) already exists,
|
|
|
|
nothing is done.
|
|
|
|
|
|
|
|
:param readme_text: text to put in <basedir>/private/README
|
|
|
|
"""
|
|
|
|
if not os.path.exists(basedir):
|
|
|
|
fileutil.make_dirs(basedir)
|
|
|
|
privdir = os.path.join(basedir, "private")
|
|
|
|
if not os.path.exists(privdir):
|
2018-08-24 21:42:00 +00:00
|
|
|
fileutil.make_dirs(privdir, 0o700)
|
2018-02-27 22:00:31 +00:00
|
|
|
with open(os.path.join(privdir, 'README'), 'w') as f:
|
|
|
|
f.write(readme_text)
|
|
|
|
|
|
|
|
|
2017-09-06 01:08:35 +00:00
|
|
|
def read_config(basedir, portnumfile, generated_files=[], _valid_config_sections=None):
|
2018-08-24 21:41:31 +00:00
|
|
|
"""
|
|
|
|
Read and validate configuration.
|
|
|
|
|
|
|
|
:param unicode basedir: directory where configuration data begins
|
|
|
|
|
|
|
|
:param unicode portnumfile: filename fragment for "port number" files
|
|
|
|
|
|
|
|
:param list generated_files: a list of automatically-generated
|
|
|
|
configuration files.
|
|
|
|
|
|
|
|
:param dict _valid_config_sections: (internal use, optional) a
|
|
|
|
dict-of-dicts structure defining valid configuration sections and
|
|
|
|
keys
|
|
|
|
|
|
|
|
:returns: :class:`allmydata.node._Config` instance
|
|
|
|
"""
|
2017-09-06 01:08:35 +00:00
|
|
|
basedir = abspath_expanduser_unicode(unicode(basedir))
|
|
|
|
if _valid_config_sections is None:
|
|
|
|
_valid_config_sections = _common_config_sections
|
|
|
|
|
|
|
|
# complain if there's bad stuff in the config dir
|
|
|
|
_error_about_old_config_files(basedir, generated_files)
|
|
|
|
|
|
|
|
# canonicalize the portnum file
|
|
|
|
portnumfile = os.path.join(basedir, portnumfile)
|
|
|
|
|
|
|
|
# (try to) read the main config file
|
|
|
|
config_fname = os.path.join(basedir, "tahoe.cfg")
|
|
|
|
parser = ConfigParser.SafeConfigParser()
|
|
|
|
try:
|
|
|
|
parser = configutil.get_config(config_fname)
|
2018-08-24 21:50:55 +00:00
|
|
|
except EnvironmentError as e:
|
|
|
|
if e.errno != errno.ENOENT:
|
2017-09-06 01:08:35 +00:00
|
|
|
raise
|
2018-01-31 18:30:46 +00:00
|
|
|
|
2018-05-20 02:10:39 +00:00
|
|
|
configutil.validate_config(config_fname, parser, _valid_config_sections())
|
2018-01-31 18:30:46 +00:00
|
|
|
|
|
|
|
# make sure we have a private configuration area
|
|
|
|
fileutil.make_dirs(os.path.join(basedir, "private"), 0o700)
|
|
|
|
return _Config(parser, portnumfile, basedir, config_fname)
|
2017-09-06 01:08:35 +00:00
|
|
|
|
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
def config_from_string(config_str, portnumfile, basedir):
|
2018-08-25 08:23:58 +00:00
|
|
|
"""
|
|
|
|
load configuration from in-memory string
|
|
|
|
"""
|
2017-09-06 01:08:35 +00:00
|
|
|
parser = ConfigParser.SafeConfigParser()
|
|
|
|
parser.readfp(BytesIO(config_str))
|
2018-01-31 18:30:46 +00:00
|
|
|
return _Config(parser, portnumfile, basedir, '<in-memory>')
|
2017-09-06 01:08:35 +00:00
|
|
|
|
|
|
|
|
2018-02-14 01:57:49 +00:00
|
|
|
def get_app_versions():
|
2018-08-24 21:44:17 +00:00
|
|
|
"""
|
|
|
|
:returns: dict of versions important to Foolscap
|
|
|
|
"""
|
2018-02-14 01:57:49 +00:00
|
|
|
return dict(app_versions.versions)
|
|
|
|
|
|
|
|
|
2017-09-06 01:08:35 +00:00
|
|
|
def _error_about_old_config_files(basedir, generated_files):
|
|
|
|
"""
|
|
|
|
If any old configuration files are detected, raise
|
|
|
|
OldConfigError.
|
|
|
|
"""
|
|
|
|
oldfnames = set()
|
|
|
|
old_names = [
|
|
|
|
'nickname', 'webport', 'keepalive_timeout', 'log_gatherer.furl',
|
|
|
|
'disconnect_timeout', 'advertised_ip_addresses', 'introducer.furl',
|
|
|
|
'helper.furl', 'key_generator.furl', 'stats_gatherer.furl',
|
|
|
|
'no_storage', 'readonly_storage', 'sizelimit',
|
|
|
|
'debug_discard_storage', 'run_helper'
|
|
|
|
]
|
|
|
|
for fn in generated_files:
|
|
|
|
old_names.remove(fn)
|
|
|
|
for name in old_names:
|
|
|
|
fullfname = os.path.join(basedir, name)
|
|
|
|
if os.path.exists(fullfname):
|
|
|
|
oldfnames.add(fullfname)
|
|
|
|
if oldfnames:
|
|
|
|
e = OldConfigError(oldfnames)
|
|
|
|
twlog.msg(e)
|
|
|
|
raise e
|
|
|
|
|
|
|
|
|
|
|
|
class _Config(object):
|
|
|
|
"""
|
2018-02-22 21:39:35 +00:00
|
|
|
Manages configuration of a Tahoe 'node directory'.
|
2017-09-06 01:08:35 +00:00
|
|
|
|
2018-02-22 21:39:35 +00:00
|
|
|
Note: all this code and functionality was formerly in the Node
|
|
|
|
class; names and funtionality have been kept the same while moving
|
|
|
|
the code. It probably makes sense for several of these APIs to
|
|
|
|
have better names.
|
2017-09-06 01:08:35 +00:00
|
|
|
"""
|
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
def __init__(self, configparser, portnum_fname, basedir, config_fname):
|
2018-02-22 21:39:35 +00:00
|
|
|
"""
|
|
|
|
:param configparser: a ConfigParser instance
|
|
|
|
|
|
|
|
:param portnum_fname: filename to use for the port-number file
|
|
|
|
(a relative path inside basedir)
|
|
|
|
|
|
|
|
:param basedir: path to our "node directory", inside which all
|
|
|
|
configuration is managed
|
|
|
|
|
|
|
|
:param config_fname: the pathname actually used to create the
|
|
|
|
configparser (might be 'fake' if using in-memory data)
|
|
|
|
"""
|
2017-09-06 01:08:35 +00:00
|
|
|
self.portnum_fname = portnum_fname
|
2018-01-31 18:30:46 +00:00
|
|
|
self._basedir = abspath_expanduser_unicode(unicode(basedir))
|
2018-02-22 21:39:35 +00:00
|
|
|
self._config_fname = config_fname
|
2017-09-06 01:08:35 +00:00
|
|
|
self.config = configparser
|
|
|
|
|
|
|
|
nickname_utf8 = self.get_config("node", "nickname", "<unspecified>")
|
|
|
|
self.nickname = nickname_utf8.decode("utf-8")
|
|
|
|
assert type(self.nickname) is unicode
|
|
|
|
|
|
|
|
def validate(self, valid_config_sections):
|
|
|
|
configutil.validate_config(self._config_fname, self.config, valid_config_sections)
|
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
def write_config_file(self, name, value, mode="w"):
|
|
|
|
"""
|
|
|
|
writes the given 'value' into a file called 'name' in the config
|
|
|
|
directory
|
|
|
|
"""
|
|
|
|
fn = os.path.join(self._basedir, name)
|
|
|
|
try:
|
|
|
|
fileutil.write(fn, value, mode)
|
2018-08-24 21:50:55 +00:00
|
|
|
except EnvironmentError:
|
|
|
|
log.err(
|
|
|
|
Failure(),
|
|
|
|
"Unable to write config file '{}'".format(fn),
|
|
|
|
)
|
2018-01-31 18:30:46 +00:00
|
|
|
|
2017-09-06 01:08:35 +00:00
|
|
|
def get_config(self, section, option, default=_None, boolean=False):
|
|
|
|
try:
|
|
|
|
if boolean:
|
|
|
|
return self.config.getboolean(section, option)
|
|
|
|
|
|
|
|
item = self.config.get(section, option)
|
|
|
|
if option.endswith(".furl") and self._contains_unescaped_hash(item):
|
|
|
|
raise UnescapedHashError(section, option, item)
|
|
|
|
|
|
|
|
return item
|
|
|
|
except (ConfigParser.NoOptionError, ConfigParser.NoSectionError):
|
|
|
|
if default is _None:
|
|
|
|
raise MissingConfigEntry(
|
|
|
|
"{} is missing the [{}]{} entry".format(
|
|
|
|
quote_output(self._config_fname),
|
|
|
|
section,
|
|
|
|
option,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
return default
|
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
def get_config_from_file(self, name, required=False):
|
|
|
|
"""Get the (string) contents of a config file, or None if the file
|
|
|
|
did not exist. If required=True, raise an exception rather than
|
|
|
|
returning None. Any leading or trailing whitespace will be stripped
|
|
|
|
from the data."""
|
|
|
|
fn = os.path.join(self._basedir, name)
|
|
|
|
try:
|
|
|
|
return fileutil.read(fn).strip()
|
2018-08-24 21:50:55 +00:00
|
|
|
except EnvironmentError as e:
|
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise # we only care about "file doesn't exist"
|
2018-01-31 18:30:46 +00:00
|
|
|
if not required:
|
|
|
|
return None
|
|
|
|
raise
|
|
|
|
|
|
|
|
def get_or_create_private_config(self, name, default=_None):
|
|
|
|
"""Try to get the (string) contents of a private config file (which
|
|
|
|
is a config file that resides within the subdirectory named
|
|
|
|
'private'), and return it. Any leading or trailing whitespace will be
|
|
|
|
stripped from the data.
|
|
|
|
|
|
|
|
If the file does not exist, and default is not given, report an error.
|
|
|
|
If the file does not exist and a default is specified, try to create
|
|
|
|
it using that default, and then return the value that was written.
|
|
|
|
If 'default' is a string, use it as a default value. If not, treat it
|
|
|
|
as a zero-argument callable that is expected to return a string.
|
|
|
|
"""
|
|
|
|
privname = os.path.join(self._basedir, "private", name)
|
|
|
|
try:
|
|
|
|
value = fileutil.read(privname)
|
2018-08-24 21:50:55 +00:00
|
|
|
except EnvironmentError as e:
|
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise # we only care about "file doesn't exist"
|
2018-01-31 18:30:46 +00:00
|
|
|
if default is _None:
|
|
|
|
raise MissingConfigEntry("The required configuration file %s is missing."
|
|
|
|
% (quote_output(privname),))
|
|
|
|
if isinstance(default, basestring):
|
|
|
|
value = default
|
|
|
|
else:
|
|
|
|
value = default()
|
|
|
|
fileutil.write(privname, value)
|
|
|
|
return value.strip()
|
|
|
|
|
|
|
|
def write_private_config(self, name, value):
|
|
|
|
"""Write the (string) contents of a private config file (which is a
|
|
|
|
config file that resides within the subdirectory named 'private'), and
|
|
|
|
return it.
|
|
|
|
"""
|
|
|
|
privname = os.path.join(self._basedir, "private", name)
|
|
|
|
with open(privname, "w") as f:
|
|
|
|
f.write(value)
|
|
|
|
|
|
|
|
def get_private_config(self, name, default=_None):
|
|
|
|
"""Read the (string) contents of a private config file (which is a
|
|
|
|
config file that resides within the subdirectory named 'private'),
|
|
|
|
and return it. Return a default, or raise an error if one was not
|
|
|
|
given.
|
|
|
|
"""
|
|
|
|
privname = os.path.join(self._basedir, "private", name)
|
|
|
|
try:
|
|
|
|
return fileutil.read(privname).strip()
|
2018-08-24 21:50:55 +00:00
|
|
|
except EnvironmentError as e:
|
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise # we only care about "file doesn't exist"
|
2018-01-31 18:30:46 +00:00
|
|
|
if default is _None:
|
|
|
|
raise MissingConfigEntry("The required configuration file %s is missing."
|
|
|
|
% (quote_output(privname),))
|
|
|
|
return default
|
|
|
|
|
|
|
|
def get_private_path(self, *args):
|
|
|
|
"""
|
|
|
|
returns an absolute path inside the 'private' directory with any
|
|
|
|
extra args join()-ed
|
|
|
|
"""
|
|
|
|
return os.path.join(self._basedir, "private", *args)
|
|
|
|
|
|
|
|
def get_config_path(self, *args):
|
|
|
|
"""
|
|
|
|
returns an absolute path inside the config directory with any
|
|
|
|
extra args join()-ed
|
|
|
|
"""
|
2018-02-22 22:32:00 +00:00
|
|
|
# note: we re-expand here (_basedir already went through this
|
|
|
|
# expanduser function) in case the path we're being asked for
|
|
|
|
# has embedded ".."'s in it
|
|
|
|
return abspath_expanduser_unicode(
|
|
|
|
os.path.join(self._basedir, *args)
|
|
|
|
)
|
2018-01-31 18:30:46 +00:00
|
|
|
|
2017-09-06 01:08:35 +00:00
|
|
|
@staticmethod
|
|
|
|
def _contains_unescaped_hash(item):
|
|
|
|
characters = iter(item)
|
|
|
|
for c in characters:
|
|
|
|
if c == '\\':
|
|
|
|
characters.next()
|
|
|
|
elif c == '#':
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2018-01-28 01:05:16 +00:00
|
|
|
def create_tub_options(config):
|
|
|
|
# XXX this is code moved from Node -- but why are some options
|
|
|
|
# camelCase and some snake_case? can we FIXME?
|
|
|
|
tub_options = {
|
|
|
|
"logLocalFailures": True,
|
|
|
|
"logRemoteFailures": True,
|
|
|
|
"expose-remote-exception-types": False,
|
|
|
|
"accept-gifts": False,
|
|
|
|
}
|
|
|
|
|
|
|
|
# see #521 for a discussion of how to pick these timeout values.
|
|
|
|
keepalive_timeout_s = config.get_config("node", "timeout.keepalive", "")
|
|
|
|
if keepalive_timeout_s:
|
|
|
|
tub_options["keepaliveTimeout"] = int(keepalive_timeout_s)
|
|
|
|
disconnect_timeout_s = config.get_config("node", "timeout.disconnect", "")
|
|
|
|
if disconnect_timeout_s:
|
|
|
|
# N.B.: this is in seconds, so use "1800" to get 30min
|
|
|
|
tub_options["disconnectTimeout"] = int(disconnect_timeout_s)
|
|
|
|
return tub_options
|
|
|
|
|
|
|
|
|
|
|
|
def create_i2p_provider(reactor, basedir, config):
|
|
|
|
provider = i2p_provider.Provider(basedir, config, reactor)
|
|
|
|
provider.check_dest_config()
|
|
|
|
#self._i2p_provider.setServiceParent(self)
|
|
|
|
return provider
|
|
|
|
|
|
|
|
|
|
|
|
def create_tor_provider(reactor, basedir, config):
|
|
|
|
provider = tor_provider.Provider(basedir, config, reactor)
|
|
|
|
provider.check_onion_config()
|
|
|
|
##self._tor_provider.setServiceParent(self)
|
|
|
|
return provider
|
|
|
|
|
|
|
|
|
|
|
|
def _make_tcp_handler():
|
|
|
|
# this is always available
|
|
|
|
from foolscap.connections.tcp import default
|
|
|
|
return default()
|
|
|
|
|
|
|
|
|
|
|
|
# XXX shouldn't need this
|
|
|
|
def _make_tor_handler(tor_provider):
|
2018-01-28 04:40:43 +00:00
|
|
|
return tor_provider.get_tor_handler()
|
2018-01-28 01:05:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
# XXX shouldn't need this
|
|
|
|
def _make_i2p_handler(i2p_provider):
|
2018-01-28 04:40:43 +00:00
|
|
|
return i2p_provider.get_i2p_handler()
|
2018-01-28 01:05:16 +00:00
|
|
|
|
|
|
|
|
2018-01-28 08:27:25 +00:00
|
|
|
def create_connection_handlers(reactor, config, i2p_provider, tor_provider):
|
2018-01-28 01:05:16 +00:00
|
|
|
"""
|
|
|
|
:returns: 2-tuple of default_connection_handlers, foolscap_connection_handlers
|
|
|
|
"""
|
|
|
|
reveal_ip = config.get_config("node", "reveal-IP-address", True, boolean=True)
|
|
|
|
|
|
|
|
# We store handlers for everything. None means we were unable to
|
|
|
|
# create that handler, so hints which want it will be ignored.
|
|
|
|
handlers = foolscap_connection_handlers = {
|
|
|
|
"tcp": _make_tcp_handler(),
|
|
|
|
"tor": _make_tor_handler(tor_provider),
|
|
|
|
"i2p": _make_i2p_handler(i2p_provider),
|
|
|
|
}
|
|
|
|
log.msg(
|
|
|
|
format="built Foolscap connection handlers for: %(known_handlers)s",
|
|
|
|
known_handlers=sorted([k for k,v in handlers.items() if v]),
|
|
|
|
facility="tahoe.node",
|
|
|
|
umid="PuLh8g",
|
|
|
|
)
|
|
|
|
|
|
|
|
# then we remember the default mappings from tahoe.cfg
|
|
|
|
default_connection_handlers = {"tor": "tor", "i2p": "i2p"}
|
|
|
|
tcp_handler_name = config.get_config("connections", "tcp", "tcp").lower()
|
|
|
|
if tcp_handler_name == "disabled":
|
|
|
|
default_connection_handlers["tcp"] = None
|
|
|
|
else:
|
|
|
|
if tcp_handler_name not in handlers:
|
|
|
|
raise ValueError(
|
|
|
|
"'tahoe.cfg [connections] tcp=' uses "
|
|
|
|
"unknown handler type '{}'".format(
|
|
|
|
tcp_handler_name
|
|
|
|
)
|
|
|
|
)
|
|
|
|
if not handlers[tcp_handler_name]:
|
|
|
|
raise ValueError(
|
|
|
|
"'tahoe.cfg [connections] tcp=' uses "
|
|
|
|
"unavailable/unimportable handler type '{}'. "
|
|
|
|
"Please pip install tahoe-lafs[{}] to fix.".format(
|
|
|
|
tcp_handler_name,
|
|
|
|
tcp_handler_name,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
default_connection_handlers["tcp"] = tcp_handler_name
|
|
|
|
|
|
|
|
if not reveal_ip:
|
|
|
|
if default_connection_handlers.get("tcp") == "tcp":
|
|
|
|
raise PrivacyError("tcp = tcp, must be set to 'tor' or 'disabled'")
|
|
|
|
return default_connection_handlers, foolscap_connection_handlers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def create_tub(tub_options, default_connection_handlers, foolscap_connection_handlers,
|
|
|
|
handler_overrides={}, **kwargs):
|
|
|
|
# Create a Tub with the right options and handlers. It will be
|
|
|
|
# ephemeral unless the caller provides certFile=
|
|
|
|
tub = Tub(**kwargs)
|
|
|
|
for (name, value) in tub_options.items():
|
|
|
|
tub.setOption(name, value)
|
|
|
|
handlers = default_connection_handlers.copy()
|
|
|
|
handlers.update(handler_overrides)
|
|
|
|
tub.removeAllConnectionHintHandlers()
|
|
|
|
for hint_type, handler_name in handlers.items():
|
|
|
|
handler = foolscap_connection_handlers.get(handler_name)
|
|
|
|
if handler:
|
|
|
|
tub.addConnectionHintHandler(hint_type, handler)
|
|
|
|
return tub
|
|
|
|
|
|
|
|
|
|
|
|
def _write_config(basedir, name, value, mode="w"):
|
|
|
|
"""
|
|
|
|
Write a string to a config file.
|
|
|
|
"""
|
|
|
|
fn = os.path.join(basedir, name)
|
|
|
|
try:
|
|
|
|
fileutil.write(fn, value, mode)
|
|
|
|
except EnvironmentError, e:
|
|
|
|
log.msg("Unable to write config file '{}'".format(fn))
|
|
|
|
log.err(e)
|
|
|
|
|
|
|
|
|
|
|
|
def _convert_tub_port(s):
|
|
|
|
if re.search(r'^\d+$', s):
|
|
|
|
return "tcp:{}".format(int(s))
|
|
|
|
return s
|
|
|
|
|
|
|
|
|
2018-01-28 04:40:43 +00:00
|
|
|
def _tub_portlocation(config, cfg_tubport, cfg_location):
|
2018-01-28 01:05:16 +00:00
|
|
|
# return None, or tuple of (port, location)
|
|
|
|
tubport_disabled = False
|
2018-01-28 04:40:43 +00:00
|
|
|
reveal_ip = config.get_config("node", "reveal-IP-address", True, boolean=True)
|
|
|
|
|
2018-01-28 01:05:16 +00:00
|
|
|
if cfg_tubport is not None:
|
|
|
|
cfg_tubport = cfg_tubport.strip()
|
|
|
|
if cfg_tubport == "":
|
|
|
|
raise ValueError("tub.port must not be empty")
|
|
|
|
if cfg_tubport == "disabled":
|
|
|
|
tubport_disabled = True
|
|
|
|
|
|
|
|
location_disabled = False
|
|
|
|
if cfg_location is not None:
|
|
|
|
cfg_location = cfg_location.strip()
|
|
|
|
if cfg_location == "":
|
|
|
|
raise ValueError("tub.location must not be empty")
|
|
|
|
if cfg_location == "disabled":
|
|
|
|
location_disabled = True
|
|
|
|
|
|
|
|
if tubport_disabled and location_disabled:
|
|
|
|
return None
|
|
|
|
if tubport_disabled and not location_disabled:
|
|
|
|
raise ValueError("tub.port is disabled, but not tub.location")
|
|
|
|
if location_disabled and not tubport_disabled:
|
|
|
|
raise ValueError("tub.location is disabled, but not tub.port")
|
|
|
|
|
|
|
|
if cfg_tubport is None:
|
|
|
|
# For 'tub.port', tahoe.cfg overrides the individual file on
|
|
|
|
# disk. So only read self._portnumfile if tahoe.cfg doesn't
|
|
|
|
# provide a value.
|
|
|
|
if os.path.exists(config.portnum_fname):
|
|
|
|
file_tubport = fileutil.read(config.portnum_fname).strip()
|
|
|
|
tubport = _convert_tub_port(file_tubport)
|
|
|
|
else:
|
|
|
|
tubport = "tcp:%d" % iputil.allocate_tcp_port()
|
|
|
|
fileutil.write_atomically(config.portnum_fname, tubport + "\n",
|
|
|
|
mode="")
|
|
|
|
else:
|
|
|
|
tubport = _convert_tub_port(cfg_tubport)
|
|
|
|
|
|
|
|
if cfg_location is None:
|
|
|
|
cfg_location = "AUTO"
|
|
|
|
|
|
|
|
local_portnum = None # needed to hush lgtm.com static analyzer
|
|
|
|
# Replace the location "AUTO", if present, with the detected local
|
|
|
|
# addresses. Don't probe for local addresses unless necessary.
|
|
|
|
split_location = cfg_location.split(",")
|
|
|
|
if "AUTO" in split_location:
|
|
|
|
if not reveal_ip:
|
|
|
|
raise PrivacyError("tub.location uses AUTO")
|
|
|
|
local_addresses = iputil.get_local_addresses_sync()
|
|
|
|
# tubport must be like "tcp:12345" or "tcp:12345:morestuff"
|
|
|
|
local_portnum = int(tubport.split(":")[1])
|
|
|
|
new_locations = []
|
|
|
|
for loc in split_location:
|
|
|
|
if loc == "AUTO":
|
|
|
|
new_locations.extend(["tcp:%s:%d" % (ip, local_portnum)
|
|
|
|
for ip in local_addresses])
|
|
|
|
else:
|
|
|
|
if not reveal_ip:
|
|
|
|
# Legacy hints are "host:port". We use Foolscap's utility
|
|
|
|
# function to convert all hints into the modern format
|
|
|
|
# ("tcp:host:port") because that's what the receiving
|
|
|
|
# client will probably do. We test the converted hint for
|
|
|
|
# TCP-ness, but publish the original hint because that
|
|
|
|
# was the user's intent.
|
|
|
|
from foolscap.connections.tcp import convert_legacy_hint
|
|
|
|
converted_hint = convert_legacy_hint(loc)
|
|
|
|
hint_type = converted_hint.split(":")[0]
|
|
|
|
if hint_type == "tcp":
|
|
|
|
raise PrivacyError("tub.location includes tcp: hint")
|
|
|
|
new_locations.append(loc)
|
|
|
|
location = ",".join(new_locations)
|
|
|
|
|
|
|
|
return tubport, location
|
|
|
|
|
|
|
|
|
2018-01-28 08:27:25 +00:00
|
|
|
def create_main_tub(basedir, config, tub_options,
|
|
|
|
default_connection_handlers, foolscap_connection_handlers,
|
|
|
|
i2p_provider, tor_provider,
|
|
|
|
handler_overrides={}, cert_filename="node.pem"):
|
2018-01-28 04:40:43 +00:00
|
|
|
cfg_tubport = config.get_config("node", "tub.port", None)
|
|
|
|
cfg_location = config.get_config("node", "tub.location", None)
|
|
|
|
portlocation = _tub_portlocation(config, cfg_tubport, cfg_location)
|
|
|
|
|
2018-01-28 01:05:16 +00:00
|
|
|
certfile = os.path.join(basedir, "private", "node.pem") # FIXME "node.pem" was the CERTFILE option/thing
|
|
|
|
tub = create_tub(tub_options, default_connection_handlers, foolscap_connection_handlers,
|
|
|
|
handler_overrides=handler_overrides, certFile=certfile)
|
|
|
|
|
|
|
|
if portlocation:
|
|
|
|
tubport, location = portlocation
|
|
|
|
for port in tubport.split(","):
|
|
|
|
if port in ("0", "tcp:0"):
|
|
|
|
raise ValueError("tub.port cannot be 0: you must choose")
|
|
|
|
if port == "listen:i2p":
|
|
|
|
# the I2P provider will read its section of tahoe.cfg and
|
|
|
|
# return either a fully-formed Endpoint, or a descriptor
|
|
|
|
# that will create one, so we don't have to stuff all the
|
|
|
|
# options into the tub.port string (which would need a lot
|
|
|
|
# of escaping)
|
2018-01-28 08:27:25 +00:00
|
|
|
port_or_endpoint = i2p_provider.get_listener()
|
2018-01-28 01:05:16 +00:00
|
|
|
elif port == "listen:tor":
|
2018-01-28 08:27:25 +00:00
|
|
|
port_or_endpoint = tor_provider.get_listener()
|
2018-01-28 01:05:16 +00:00
|
|
|
else:
|
|
|
|
port_or_endpoint = port
|
|
|
|
tub.listenOn(port_or_endpoint)
|
|
|
|
tub.setLocation(location)
|
|
|
|
tub_is_listening = True
|
|
|
|
log.msg("Tub location set to %s" % (location,))
|
|
|
|
# the Tub is now ready for tub.registerReference()
|
|
|
|
else:
|
|
|
|
tub_is_listening = False
|
|
|
|
log.msg("Tub is not listening")
|
|
|
|
|
|
|
|
# XXX can we get rid of the tub_is_listening part?
|
|
|
|
return tub, tub_is_listening
|
|
|
|
|
|
|
|
|
|
|
|
def create_control_tub():
|
|
|
|
# the control port uses a localhost-only ephemeral Tub, with no
|
|
|
|
# control over the listening port or location
|
|
|
|
control_tub = Tub()
|
|
|
|
portnum = iputil.allocate_tcp_port()
|
|
|
|
port = "tcp:%d:interface=127.0.0.1" % portnum
|
|
|
|
location = "tcp:127.0.0.1:%d" % portnum
|
|
|
|
control_tub.listenOn(port)
|
|
|
|
control_tub.setLocation(location)
|
|
|
|
log.msg("Control Tub location set to %s" % (location,))
|
|
|
|
return control_tub
|
|
|
|
|
|
|
|
|
2017-09-06 01:08:35 +00:00
|
|
|
|
2006-12-03 01:27:18 +00:00
|
|
|
class Node(service.MultiService):
|
2018-03-01 19:28:18 +00:00
|
|
|
"""
|
|
|
|
This class implements common functionality of both Client nodes and Introducer nodes.
|
|
|
|
"""
|
2006-12-03 01:27:18 +00:00
|
|
|
NODETYPE = "unknown NODETYPE"
|
2007-05-23 19:48:52 +00:00
|
|
|
CERTFILE = "node.pem"
|
2011-08-03 01:32:12 +00:00
|
|
|
GENERATED_FILES = []
|
2006-12-03 01:27:18 +00:00
|
|
|
|
2018-01-28 06:13:50 +00:00
|
|
|
def __init__(self, config, main_tub, control_tub, i2p_provider, tor_provider, tub_is_listening):
|
2018-03-01 19:28:18 +00:00
|
|
|
"""
|
2018-01-31 18:30:46 +00:00
|
|
|
Initialize the node with the given configuration. Its base directory
|
2018-03-01 19:28:18 +00:00
|
|
|
is the current directory by default.
|
|
|
|
"""
|
2006-12-03 01:27:18 +00:00
|
|
|
service.MultiService.__init__(self)
|
2008-09-30 23:21:49 +00:00
|
|
|
|
2018-01-28 01:05:16 +00:00
|
|
|
self._tub_is_listening = tub_is_listening # holdover; do we really need this?
|
2017-09-06 01:08:35 +00:00
|
|
|
self.config = config
|
|
|
|
self.get_config = config.get_config # XXX stopgap
|
|
|
|
self.nickname = config.nickname # XXX stopgap
|
2008-09-30 23:21:49 +00:00
|
|
|
|
2009-01-15 03:00:15 +00:00
|
|
|
self.init_tempdir()
|
2016-09-30 05:51:23 +00:00
|
|
|
|
|
|
|
self.create_log_tub()
|
2018-03-01 19:31:30 +00:00
|
|
|
self.logSource = "Node"
|
2016-09-30 05:51:23 +00:00
|
|
|
self.setup_logging()
|
|
|
|
|
2018-01-28 01:05:16 +00:00
|
|
|
# XXX do we need to save these? or does just "create_client"
|
|
|
|
# need them? (note: look in client.py also!)
|
|
|
|
# (client.py DOES use them in init_client_storage_broker, but
|
|
|
|
# we'll want to pull that out as well...so FIXME later)
|
2018-01-28 08:27:25 +00:00
|
|
|
## self._default_connection_handlers, self._foolscap_connection_handlers = create_connection_handlers(reactor, basedir, config)
|
2018-01-28 01:05:16 +00:00
|
|
|
|
|
|
|
self.tub = main_tub
|
|
|
|
if self.tub is not None:
|
|
|
|
self.nodeid = b32decode(self.tub.tubID.upper()) # binary format
|
|
|
|
self.short_nodeid = b32encode(self.nodeid).lower()[:8] # for printing
|
|
|
|
self.write_config("my_nodeid", b32encode(self.nodeid).lower() + "\n")
|
|
|
|
self.tub.setServiceParent(self) # is this okay in __init__?
|
|
|
|
else:
|
|
|
|
self.nodeid = self.short_nodeid = None
|
|
|
|
|
|
|
|
self.control_tub = control_tub
|
|
|
|
if self.control_tub is not None:
|
|
|
|
self.control_tub.setServiceParent(self) # is this okay in __init__?
|
2008-09-30 23:21:49 +00:00
|
|
|
|
|
|
|
self.log("Node constructed. " + get_package_versions_string())
|
|
|
|
iputil.increase_rlimits()
|
|
|
|
|
2009-01-15 03:00:15 +00:00
|
|
|
def init_tempdir(self):
|
2018-03-01 19:28:18 +00:00
|
|
|
"""
|
|
|
|
Initialize/create a directory for temporary files.
|
|
|
|
"""
|
2017-09-06 01:08:35 +00:00
|
|
|
tempdir_config = self.config.get_config("node", "tempdir", "tmp").decode('utf-8')
|
2018-01-31 18:30:46 +00:00
|
|
|
tempdir = self.config.get_config_path(tempdir_config)
|
2009-01-15 03:00:15 +00:00
|
|
|
if not os.path.exists(tempdir):
|
|
|
|
fileutil.make_dirs(tempdir)
|
2015-01-30 00:50:18 +00:00
|
|
|
tempfile.tempdir = tempdir
|
2009-01-15 03:00:15 +00:00
|
|
|
# this should cause twisted.web.http (which uses
|
|
|
|
# tempfile.TemporaryFile) to put large request bodies in the given
|
|
|
|
# directory. Without this, the default temp dir is usually /tmp/,
|
|
|
|
# which is frequently too small.
|
2018-01-28 19:05:53 +00:00
|
|
|
temp_fd, test_name = tempfile.mkstemp()
|
2009-01-15 03:00:15 +00:00
|
|
|
_assert(os.path.dirname(test_name) == tempdir, test_name, tempdir)
|
2018-03-01 19:56:59 +00:00
|
|
|
os.close(temp_fd) # avoid leak of unneeded fd
|
2009-01-15 03:00:15 +00:00
|
|
|
|
2018-01-28 01:05:16 +00:00
|
|
|
# XXX probably want to pull this outside too?
|
2016-07-07 02:47:00 +00:00
|
|
|
def create_log_tub(self):
|
|
|
|
# The logport uses a localhost-only ephemeral Tub, with no control
|
|
|
|
# over the listening port or location. This might change if we
|
|
|
|
# discover a compelling reason for it in the future (e.g. being able
|
|
|
|
# to use "flogtool tail" against a remote server), but for now I
|
|
|
|
# think we can live without it.
|
|
|
|
self.log_tub = Tub()
|
|
|
|
portnum = iputil.allocate_tcp_port()
|
|
|
|
port = "tcp:%d:interface=127.0.0.1" % portnum
|
|
|
|
location = "tcp:127.0.0.1:%d" % portnum
|
|
|
|
self.log_tub.listenOn(port)
|
|
|
|
self.log_tub.setLocation(location)
|
|
|
|
self.log("Log Tub location set to %s" % (location,))
|
|
|
|
self.log_tub.setServiceParent(self)
|
|
|
|
|
2018-01-28 01:05:16 +00:00
|
|
|
# XXX this should be deprecated; no reason for it to be a method;
|
|
|
|
# use _write_config() instead
|
|
|
|
def write_config(self, name, value, mode="w"):
|
|
|
|
"""Write a string to a config file."""
|
|
|
|
_write_config(self.basedir, name, value, mode=mode)
|
|
|
|
|
2007-05-24 00:54:48 +00:00
|
|
|
def startService(self):
|
2007-10-22 23:55:20 +00:00
|
|
|
# Note: this class can be started and stopped at most once.
|
2007-05-31 20:44:22 +00:00
|
|
|
self.log("Node.startService")
|
2009-07-15 07:29:29 +00:00
|
|
|
# Record the process id in the twisted log, after startService()
|
|
|
|
# (__init__ is called before fork(), but startService is called
|
|
|
|
# after). Note that Foolscap logs handle pid-logging by itself, no
|
|
|
|
# need to send a pid to the foolscap log here.
|
|
|
|
twlog.msg("My pid: %s" % os.getpid())
|
2008-03-27 01:37:54 +00:00
|
|
|
try:
|
|
|
|
os.chmod("twistd.pid", 0644)
|
|
|
|
except EnvironmentError:
|
|
|
|
pass
|
2007-03-08 22:10:36 +00:00
|
|
|
|
|
|
|
service.MultiService.startService(self)
|
2016-04-27 01:21:36 +00:00
|
|
|
self.log("%s running" % self.NODETYPE)
|
2016-08-22 23:36:56 +00:00
|
|
|
twlog.msg("%s running" % self.NODETYPE)
|
2008-03-06 20:53:21 +00:00
|
|
|
|
2007-05-23 22:08:03 +00:00
|
|
|
def stopService(self):
|
2007-05-31 20:44:22 +00:00
|
|
|
self.log("Node.stopService")
|
2016-04-27 04:54:45 +00:00
|
|
|
return service.MultiService.stopService(self)
|
2007-05-31 20:44:22 +00:00
|
|
|
|
2007-03-08 22:10:36 +00:00
|
|
|
def shutdown(self):
|
|
|
|
"""Shut down the node. Returns a Deferred that fires (with None) when
|
|
|
|
it finally stops kicking."""
|
2007-05-31 20:44:22 +00:00
|
|
|
self.log("Node.shutdown")
|
2007-03-08 22:10:36 +00:00
|
|
|
return self.stopService()
|
|
|
|
|
2007-10-12 00:30:07 +00:00
|
|
|
def setup_logging(self):
|
2011-08-01 23:24:23 +00:00
|
|
|
# we replace the formatTime() method of the log observer that
|
|
|
|
# twistd set up for us, with a method that uses our preferred
|
|
|
|
# timestamp format.
|
2008-09-20 17:35:45 +00:00
|
|
|
for o in twlog.theLogPublisher.observers:
|
2007-10-12 00:30:07 +00:00
|
|
|
# o might be a FileLogObserver's .emit method
|
|
|
|
if type(o) is type(self.setup_logging): # bound method
|
|
|
|
ob = o.im_self
|
2008-09-20 17:35:45 +00:00
|
|
|
if isinstance(ob, twlog.FileLogObserver):
|
2007-10-22 23:52:55 +00:00
|
|
|
newmeth = types.UnboundMethodType(formatTimeTahoeStyle, ob, ob.__class__)
|
2007-10-15 03:43:11 +00:00
|
|
|
ob.formatTime = newmeth
|
2007-10-12 00:30:07 +00:00
|
|
|
# TODO: twisted >2.5.0 offers maxRotatedFiles=50
|
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
lgfurl_file = self.config.get_private_path("logport.furl").encode(get_filesystem_encoding())
|
2016-07-07 02:47:00 +00:00
|
|
|
if os.path.exists(lgfurl_file):
|
|
|
|
os.remove(lgfurl_file)
|
|
|
|
self.log_tub.setOption("logport-furlfile", lgfurl_file)
|
2017-09-06 01:08:35 +00:00
|
|
|
lgfurl = self.config.get_config("node", "log_gatherer.furl", "")
|
2008-09-30 23:21:49 +00:00
|
|
|
if lgfurl:
|
|
|
|
# this is in addition to the contents of log-gatherer-furlfile
|
2016-07-07 02:47:00 +00:00
|
|
|
self.log_tub.setOption("log-gatherer-furl", lgfurl)
|
|
|
|
self.log_tub.setOption("log-gatherer-furlfile",
|
2018-01-31 18:30:46 +00:00
|
|
|
self.config.get_config_path("log_gatherer.furl"))
|
2015-11-03 17:35:21 +00:00
|
|
|
|
2018-01-31 18:30:46 +00:00
|
|
|
incident_dir = self.config.get_config_path("logs", "incidents")
|
2012-04-29 02:28:44 +00:00
|
|
|
foolscap.logging.log.setLogDir(incident_dir.encode(get_filesystem_encoding()))
|
2016-08-09 19:27:33 +00:00
|
|
|
twlog.msg("Foolscap logging initialized")
|
|
|
|
twlog.msg("Note to developers: twistd.log does not receive very much.")
|
|
|
|
twlog.msg("Use 'flogtool tail -c NODEDIR/private/logport.furl' instead")
|
|
|
|
twlog.msg("and read docs/logging.rst")
|
2007-12-13 03:31:01 +00:00
|
|
|
|
2008-01-15 04:16:58 +00:00
|
|
|
def log(self, *args, **kwargs):
|
2008-07-03 00:40:29 +00:00
|
|
|
return log.msg(*args, **kwargs)
|
2008-01-15 04:16:58 +00:00
|
|
|
|
2006-12-03 01:27:18 +00:00
|
|
|
def add_service(self, s):
|
|
|
|
s.setServiceParent(self)
|
|
|
|
return s
|