2007-07-24 20:46:06 +00:00
|
|
|
|
2007-12-07 15:03:43 +00:00
|
|
|
import datetime, os.path, re, types
|
2007-08-12 17:29:38 +00:00
|
|
|
from base64 import b32decode, b32encode
|
2007-05-22 21:01:40 +00:00
|
|
|
|
2007-10-15 15:32:21 +00:00
|
|
|
from twisted.python import log
|
2007-03-08 22:10:36 +00:00
|
|
|
from twisted.application import service
|
2007-05-23 22:08:03 +00:00
|
|
|
from twisted.internet import defer, reactor
|
|
|
|
from foolscap import Tub, eventual
|
2007-12-13 02:37:37 +00:00
|
|
|
from allmydata import get_package_versions_string
|
2007-11-20 01:23:18 +00:00
|
|
|
from allmydata.util import log as tahoe_log
|
2007-10-15 15:32:21 +00:00
|
|
|
from allmydata.util import iputil, observer, humanreadable
|
2007-05-24 00:54:48 +00:00
|
|
|
from allmydata.util.assertutil import precondition
|
2007-12-13 03:31:01 +00:00
|
|
|
|
|
|
|
# Just to get their versions:
|
|
|
|
import allmydata, pycryptopp, zfec
|
|
|
|
|
|
|
|
from foolscap.logging.publish import LogPublisher
|
|
|
|
# Add our application versions to the data that Foolscap's
|
|
|
|
# LogPublisher reports. Our __version__ attributes are actually
|
|
|
|
# instances of allmydata.util.version_class.Version, so convert them
|
|
|
|
# into strings first.
|
|
|
|
LogPublisher.versions['allmydata'] = str(allmydata.__version__)
|
|
|
|
LogPublisher.versions['zfec'] = str(zfec.__version__)
|
|
|
|
LogPublisher.versions['pycryptopp'] = str(pycryptopp.__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)
|
|
|
|
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-10-12 00:30:07 +00:00
|
|
|
|
2007-10-15 03:43:11 +00:00
|
|
|
def formatTimeTahoeStyle(self, when):
|
|
|
|
# we want UTC timestamps that look like:
|
|
|
|
# 2007-10-12 00:26:28.566Z [Client] rnp752lz: 'client running'
|
2007-10-15 03:46:51 +00:00
|
|
|
d = datetime.datetime.utcfromtimestamp(when)
|
|
|
|
if d.microsecond:
|
|
|
|
return d.isoformat(" ")[:-3]+"Z"
|
|
|
|
else:
|
|
|
|
return d.isoformat(" ") + ".000Z"
|
2007-10-12 00:30:07 +00:00
|
|
|
|
2006-12-03 01:27:18 +00:00
|
|
|
class Node(service.MultiService):
|
2007-12-03 21:52:42 +00:00
|
|
|
# this implements common functionality of both Client nodes and Introducer
|
|
|
|
# nodes.
|
2006-12-03 01:27:18 +00:00
|
|
|
NODETYPE = "unknown NODETYPE"
|
|
|
|
PORTNUMFILE = None
|
2007-05-23 19:48:52 +00:00
|
|
|
CERTFILE = "node.pem"
|
2007-05-22 21:01:40 +00:00
|
|
|
LOCAL_IP_FILE = "advertised_ip_addresses"
|
2006-12-03 01:27:18 +00:00
|
|
|
|
|
|
|
def __init__(self, basedir="."):
|
|
|
|
service.MultiService.__init__(self)
|
|
|
|
self.basedir = os.path.abspath(basedir)
|
2007-03-08 22:10:36 +00:00
|
|
|
self._tub_ready_observerlist = observer.OneShotObserverList()
|
2006-12-03 01:27:18 +00:00
|
|
|
certfile = os.path.join(self.basedir, self.CERTFILE)
|
2007-05-23 19:41:23 +00:00
|
|
|
self.tub = Tub(certFile=certfile)
|
2007-09-21 23:52:55 +00:00
|
|
|
os.chmod(certfile, 0600)
|
2007-04-07 03:55:59 +00:00
|
|
|
self.tub.setOption("logLocalFailures", True)
|
|
|
|
self.tub.setOption("logRemoteFailures", True)
|
2007-08-12 17:29:38 +00:00
|
|
|
self.nodeid = b32decode(self.tub.tubID.upper()) # binary format
|
2007-08-28 01:58:39 +00:00
|
|
|
self.write_config("my_nodeid", b32encode(self.nodeid).lower() + "\n")
|
2007-08-12 17:29:38 +00:00
|
|
|
self.short_nodeid = b32encode(self.nodeid).lower()[:8] # ready for printing
|
2006-12-03 01:27:18 +00:00
|
|
|
assert self.PORTNUMFILE, "Your node.Node subclass must provide PORTNUMFILE"
|
|
|
|
self._portnumfile = os.path.join(self.basedir, self.PORTNUMFILE)
|
2007-05-22 21:06:00 +00:00
|
|
|
try:
|
|
|
|
portnum = int(open(self._portnumfile, "rU").read())
|
2007-06-01 01:32:21 +00:00
|
|
|
except (EnvironmentError, ValueError):
|
2007-05-22 21:06:00 +00:00
|
|
|
portnum = 0
|
2006-12-03 01:27:18 +00:00
|
|
|
self.tub.listenOn("tcp:%d" % portnum)
|
|
|
|
# we must wait until our service has started before we can find out
|
|
|
|
# our IP address and thus do tub.setLocation, and we can't register
|
|
|
|
# any services with the Tub until after that point
|
|
|
|
self.tub.setServiceParent(self)
|
2007-08-11 21:52:37 +00:00
|
|
|
self.logSource="Node"
|
2006-12-03 01:27:18 +00:00
|
|
|
|
|
|
|
AUTHKEYSFILEBASE = "authorized_keys."
|
|
|
|
for f in os.listdir(self.basedir):
|
|
|
|
if f.startswith(AUTHKEYSFILEBASE):
|
|
|
|
keyfile = os.path.join(self.basedir, f)
|
|
|
|
portnum = int(f[len(AUTHKEYSFILEBASE):])
|
|
|
|
from allmydata import manhole
|
|
|
|
m = manhole.AuthorizedKeysManhole(portnum, keyfile)
|
|
|
|
m.setServiceParent(self)
|
2006-12-03 03:27:50 +00:00
|
|
|
self.log("AuthorizedKeysManhole listening on %d" % portnum)
|
|
|
|
|
2007-10-12 00:30:07 +00:00
|
|
|
self.setup_logging()
|
2007-12-13 02:37:37 +00:00
|
|
|
self.log("Node constructed. " + get_package_versions_string())
|
2007-12-07 15:03:43 +00:00
|
|
|
iputil.increase_rlimits()
|
2007-04-27 20:47:38 +00:00
|
|
|
|
2007-08-28 01:58:39 +00:00
|
|
|
def get_config(self, name, mode="r", 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 open(fn, mode).read().strip()
|
|
|
|
except EnvironmentError:
|
|
|
|
if not required:
|
|
|
|
return None
|
|
|
|
raise
|
|
|
|
|
2007-08-28 02:23:50 +00:00
|
|
|
def get_or_create_config(self, name, default_fn, mode="w", filemode=None):
|
2007-08-28 02:07:12 +00:00
|
|
|
"""Try to get the (string) contents of a config file, and return it.
|
|
|
|
Any leading or trailing whitespace will be stripped from the data.
|
|
|
|
|
|
|
|
If the file does not exist, try to create it using default_fn, and
|
|
|
|
then return the value that was written. If 'default_fn' is a string,
|
|
|
|
use it as a default value. If not, treat it as a 0-argument callable
|
|
|
|
which is expected to return a string.
|
|
|
|
"""
|
2007-08-28 01:58:39 +00:00
|
|
|
value = self.get_config(name)
|
|
|
|
if value is None:
|
2007-08-28 02:07:12 +00:00
|
|
|
if isinstance(default_fn, (str, unicode)):
|
|
|
|
value = default_fn
|
|
|
|
else:
|
|
|
|
value = default_fn()
|
2007-08-28 01:58:39 +00:00
|
|
|
fn = os.path.join(self.basedir, name)
|
|
|
|
try:
|
2007-08-28 02:23:50 +00:00
|
|
|
f = open(fn, mode)
|
|
|
|
f.write(value)
|
|
|
|
f.close()
|
|
|
|
if filemode is not None:
|
|
|
|
os.chmod(fn, filemode)
|
2007-08-28 01:58:39 +00:00
|
|
|
except EnvironmentError, e:
|
|
|
|
self.log("Unable to write config file '%s'" % fn)
|
|
|
|
self.log(e)
|
2007-08-28 02:23:50 +00:00
|
|
|
value = value.strip()
|
2007-08-28 01:58:39 +00:00
|
|
|
return value
|
|
|
|
|
|
|
|
def write_config(self, name, value, mode="w"):
|
|
|
|
"""Write a string to a config file."""
|
|
|
|
fn = os.path.join(self.basedir, name)
|
|
|
|
try:
|
|
|
|
open(fn, mode).write(value)
|
|
|
|
except EnvironmentError, e:
|
|
|
|
self.log("Unable to write config file '%s'" % fn)
|
|
|
|
self.log(e)
|
|
|
|
|
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")
|
2007-12-03 21:52:42 +00:00
|
|
|
# Delay until the reactor is running.
|
2007-05-24 00:54:48 +00:00
|
|
|
eventual.eventually(self._startService)
|
|
|
|
|
2007-05-23 22:08:03 +00:00
|
|
|
def _startService(self):
|
|
|
|
precondition(reactor.running)
|
2007-05-31 20:44:22 +00:00
|
|
|
self.log("Node._startService")
|
2007-03-08 22:10:36 +00:00
|
|
|
|
|
|
|
service.MultiService.startService(self)
|
|
|
|
d = defer.succeed(None)
|
2007-03-08 22:12:52 +00:00
|
|
|
d.addCallback(lambda res: iputil.get_local_addresses_async())
|
2007-03-08 22:10:36 +00:00
|
|
|
d.addCallback(self._setup_tub)
|
|
|
|
d.addCallback(lambda res: self.tub_ready())
|
|
|
|
def _ready(res):
|
|
|
|
self.log("%s running" % self.NODETYPE)
|
|
|
|
self._tub_ready_observerlist.fire(self)
|
|
|
|
return self
|
|
|
|
d.addCallback(_ready)
|
2007-06-05 01:46:37 +00:00
|
|
|
def _die(failure):
|
|
|
|
self.log('_startService() failed')
|
|
|
|
log.err(failure)
|
|
|
|
#reactor.stop() # for unknown reasons, reactor.stop() isn't working. [ ] TODO
|
|
|
|
self.log('calling os.abort()')
|
|
|
|
os.abort()
|
|
|
|
d.addErrback(_die)
|
2007-03-08 22:10:36 +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")
|
2007-05-23 22:08:03 +00:00
|
|
|
d = self._tub_ready_observerlist.when_fired()
|
2007-05-31 20:44:22 +00:00
|
|
|
def _really_stopService(ignored):
|
|
|
|
self.log("Node._really_stopService")
|
|
|
|
return service.MultiService.stopService(self)
|
|
|
|
d.addCallback(_really_stopService)
|
2007-05-23 22:08:03 +00:00
|
|
|
return d
|
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):
|
2007-10-22 23:52:55 +00:00
|
|
|
# we replace the formatTime() method of the log observer that twistd
|
|
|
|
# set up for us, with a method that uses better timestamps.
|
2007-10-12 00:30:07 +00:00
|
|
|
for o in log.theLogPublisher.observers:
|
|
|
|
# o might be a FileLogObserver's .emit method
|
|
|
|
if type(o) is type(self.setup_logging): # bound method
|
|
|
|
ob = o.im_self
|
|
|
|
if isinstance(ob, log.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
|
|
|
|
|
2007-12-13 03:31:01 +00:00
|
|
|
self.tub.setOption("logport-furlfile",
|
|
|
|
os.path.join(self.basedir, "logport.furl"))
|
|
|
|
self.tub.setOption("log-gatherer-furlfile",
|
|
|
|
os.path.join(self.basedir, "log_gatherer.furl"))
|
|
|
|
|
2007-11-20 01:23:18 +00:00
|
|
|
def log(self, msg, src="", args=(), **kw):
|
2007-08-11 21:52:37 +00:00
|
|
|
if src:
|
|
|
|
logsrc = src
|
|
|
|
else:
|
2007-10-12 00:30:07 +00:00
|
|
|
logsrc = self.logSource
|
2007-08-11 21:52:37 +00:00
|
|
|
if args:
|
|
|
|
try:
|
|
|
|
msg = msg % tuple(map(humanreadable.hr, args))
|
|
|
|
except TypeError, e:
|
|
|
|
msg = "ERROR: output string '%s' contained invalid %% expansion, error: %s, args: %s\n" % (`msg`, e, `args`)
|
2007-11-20 01:23:18 +00:00
|
|
|
msg = self.short_nodeid + ": " + humanreadable.hr(msg)
|
|
|
|
return log.callWithContext({"system":logsrc},
|
|
|
|
tahoe_log.msg, msg, **kw)
|
2006-12-03 01:27:18 +00:00
|
|
|
|
2007-03-08 01:43:17 +00:00
|
|
|
def _setup_tub(self, local_addresses):
|
2006-12-03 02:37:31 +00:00
|
|
|
# we can't get a dynamically-assigned portnum until our Tub is
|
|
|
|
# running, which means after startService.
|
2006-12-03 01:27:18 +00:00
|
|
|
l = self.tub.getListeners()[0]
|
|
|
|
portnum = l.getPortnum()
|
2007-05-22 21:01:40 +00:00
|
|
|
# record which port we're listening on, so we can grab the same one next time
|
|
|
|
open(self._portnumfile, "w").write("%d\n" % portnum)
|
|
|
|
|
|
|
|
local_addresses = [ "%s:%d" % (addr, portnum,) for addr in local_addresses ]
|
|
|
|
|
|
|
|
addresses = []
|
|
|
|
try:
|
|
|
|
for addrline in open(os.path.join(self.basedir, self.LOCAL_IP_FILE), "rU"):
|
|
|
|
mo = ADDR_RE.search(addrline)
|
|
|
|
if mo:
|
|
|
|
(addr, dummy, aportnum,) = mo.groups()
|
|
|
|
if aportnum is None:
|
|
|
|
aportnum = portnum
|
2007-05-23 22:08:55 +00:00
|
|
|
addresses.append("%s:%d" % (addr, int(aportnum),))
|
2007-05-22 21:01:40 +00:00
|
|
|
except EnvironmentError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
addresses.extend(local_addresses)
|
|
|
|
|
|
|
|
location = ",".join(addresses)
|
2007-03-08 01:43:17 +00:00
|
|
|
self.log("Tub location set to %s" % location)
|
|
|
|
self.tub.setLocation(location)
|
2006-12-03 01:27:18 +00:00
|
|
|
return self.tub
|
|
|
|
|
2006-12-03 02:37:31 +00:00
|
|
|
def tub_ready(self):
|
|
|
|
# called when the Tub is available for registerReference
|
2007-12-13 03:31:01 +00:00
|
|
|
pass
|
2006-12-03 01:27:18 +00:00
|
|
|
|
2007-03-08 22:10:36 +00:00
|
|
|
def when_tub_ready(self):
|
|
|
|
return self._tub_ready_observerlist.when_fired()
|
|
|
|
|
2006-12-03 01:27:18 +00:00
|
|
|
def add_service(self, s):
|
|
|
|
s.setServiceParent(self)
|
|
|
|
return s
|
|
|
|
|