2006-11-30 22:14:47 +00:00
|
|
|
|
2007-05-25 00:34:42 +00:00
|
|
|
import os, sha, stat, time
|
2007-06-07 22:32:21 +00:00
|
|
|
from foolscap import Referenceable, SturdyRef
|
2006-12-02 02:17:50 +00:00
|
|
|
from zope.interface import implements
|
2007-06-28 00:11:06 +00:00
|
|
|
from allmydata.interfaces import RIClient
|
|
|
|
from allmydata import node
|
2006-11-30 23:23:39 +00:00
|
|
|
|
2007-06-29 01:01:00 +00:00
|
|
|
from twisted.internet import reactor
|
2007-05-25 00:34:42 +00:00
|
|
|
from twisted.application.internet import TimerService
|
2006-11-30 22:14:47 +00:00
|
|
|
|
2007-04-26 19:01:25 +00:00
|
|
|
import allmydata
|
2007-03-30 03:19:52 +00:00
|
|
|
from allmydata.Crypto.Util.number import bytes_to_long
|
2006-12-01 03:14:23 +00:00
|
|
|
from allmydata.storageserver import StorageServer
|
2006-12-03 01:27:18 +00:00
|
|
|
from allmydata.upload import Uploader
|
2006-12-03 10:01:43 +00:00
|
|
|
from allmydata.download import Downloader
|
2006-12-04 11:06:09 +00:00
|
|
|
from allmydata.webish import WebishServer
|
2007-03-08 02:16:06 +00:00
|
|
|
from allmydata.control import ControlServer
|
2007-03-27 23:12:11 +00:00
|
|
|
from allmydata.introducer import IntroducerClient
|
2007-06-28 00:11:06 +00:00
|
|
|
from allmydata.vdrive import VirtualDrive
|
2006-11-30 22:29:52 +00:00
|
|
|
|
2006-12-03 01:27:18 +00:00
|
|
|
class Client(node.Node, Referenceable):
|
2006-12-02 02:17:50 +00:00
|
|
|
implements(RIClient)
|
2006-12-03 01:27:18 +00:00
|
|
|
PORTNUMFILE = "client.port"
|
2006-12-01 03:14:23 +00:00
|
|
|
STOREDIR = 'storage'
|
2006-12-03 01:27:18 +00:00
|
|
|
NODETYPE = "client"
|
2006-12-04 11:06:09 +00:00
|
|
|
WEBPORTFILE = "webport"
|
2007-03-27 23:12:11 +00:00
|
|
|
INTRODUCER_FURL_FILE = "introducer.furl"
|
2007-06-07 22:32:21 +00:00
|
|
|
MY_FURL_FILE = "myself.furl"
|
2007-05-25 00:34:42 +00:00
|
|
|
SUICIDE_PREVENTION_HOTLINE_FILE = "suicide_prevention_hotline"
|
2006-11-30 22:27:06 +00:00
|
|
|
|
2007-04-26 19:01:25 +00:00
|
|
|
# we're pretty narrow-minded right now
|
|
|
|
OLDEST_SUPPORTED_VERSION = allmydata.__version__
|
|
|
|
|
2006-12-03 01:27:18 +00:00
|
|
|
def __init__(self, basedir="."):
|
|
|
|
node.Node.__init__(self, basedir)
|
2007-05-22 21:08:30 +00:00
|
|
|
self.my_furl = None
|
2007-03-23 23:20:26 +00:00
|
|
|
self.introducer_client = None
|
2006-12-03 07:52:28 +00:00
|
|
|
self.add_service(StorageServer(os.path.join(basedir, self.STOREDIR)))
|
2006-12-03 01:27:18 +00:00
|
|
|
self.add_service(Uploader())
|
2006-12-03 10:01:43 +00:00
|
|
|
self.add_service(Downloader())
|
2007-06-28 00:11:06 +00:00
|
|
|
self.add_service(VirtualDrive())
|
2006-12-04 11:06:09 +00:00
|
|
|
WEBPORTFILE = os.path.join(self.basedir, self.WEBPORTFILE)
|
|
|
|
if os.path.exists(WEBPORTFILE):
|
|
|
|
f = open(WEBPORTFILE, "r")
|
2007-06-07 22:32:21 +00:00
|
|
|
webport = f.read().strip() # strports string
|
2006-12-04 11:06:09 +00:00
|
|
|
f.close()
|
|
|
|
self.add_service(WebishServer(webport))
|
2007-03-27 23:12:11 +00:00
|
|
|
|
|
|
|
INTRODUCER_FURL_FILE = os.path.join(self.basedir,
|
|
|
|
self.INTRODUCER_FURL_FILE)
|
|
|
|
f = open(INTRODUCER_FURL_FILE, "r")
|
|
|
|
self.introducer_furl = f.read().strip()
|
|
|
|
f.close()
|
|
|
|
|
2007-05-25 00:34:42 +00:00
|
|
|
hotline_file = os.path.join(self.basedir,
|
|
|
|
self.SUICIDE_PREVENTION_HOTLINE_FILE)
|
|
|
|
if os.path.exists(hotline_file):
|
2007-05-30 00:39:39 +00:00
|
|
|
hotline = TimerService(1.0, self._check_hotline, hotline_file)
|
2007-05-25 00:34:42 +00:00
|
|
|
hotline.setServiceParent(self)
|
|
|
|
|
|
|
|
def _check_hotline(self, hotline_file):
|
|
|
|
if os.path.exists(hotline_file):
|
|
|
|
mtime = os.stat(hotline_file)[stat.ST_MTIME]
|
|
|
|
if mtime > time.time() - 10.0:
|
|
|
|
return
|
|
|
|
self.log("hotline missing or too old, shutting down")
|
|
|
|
reactor.stop()
|
|
|
|
|
2006-12-03 02:37:31 +00:00
|
|
|
def tub_ready(self):
|
2007-03-27 23:12:11 +00:00
|
|
|
self.log("tub_ready")
|
2007-06-07 22:32:21 +00:00
|
|
|
|
|
|
|
my_old_name = None
|
|
|
|
MYSELF_FURL_PATH = os.path.join(self.basedir, self.MY_FURL_FILE)
|
|
|
|
if os.path.exists(MYSELF_FURL_PATH):
|
|
|
|
my_old_furl = open(MYSELF_FURL_PATH, "r").read().strip()
|
|
|
|
sturdy = SturdyRef(my_old_furl)
|
|
|
|
my_old_name = sturdy.name
|
|
|
|
|
|
|
|
self.my_furl = self.tub.registerReference(self, my_old_name)
|
|
|
|
f = open(MYSELF_FURL_PATH, "w")
|
|
|
|
f.write(self.my_furl)
|
|
|
|
f.close()
|
2007-03-27 23:12:11 +00:00
|
|
|
|
2007-05-22 21:08:30 +00:00
|
|
|
ic = IntroducerClient(self.tub, self.introducer_furl, self.my_furl)
|
2007-03-27 23:12:11 +00:00
|
|
|
self.introducer_client = ic
|
|
|
|
ic.setServiceParent(self)
|
|
|
|
|
2007-03-23 23:20:26 +00:00
|
|
|
self.register_control()
|
2007-03-27 23:12:11 +00:00
|
|
|
|
2007-03-23 23:20:26 +00:00
|
|
|
def register_control(self):
|
|
|
|
c = ControlServer()
|
|
|
|
c.setServiceParent(self)
|
|
|
|
control_url = self.tub.registerReference(c)
|
2007-05-22 21:08:30 +00:00
|
|
|
f = open("control.furl", "w")
|
2007-03-23 23:20:26 +00:00
|
|
|
f.write(control_url + "\n")
|
|
|
|
f.close()
|
2007-05-22 21:08:30 +00:00
|
|
|
os.chmod("control.furl", 0600)
|
2007-03-23 23:20:26 +00:00
|
|
|
|
2007-06-15 08:33:24 +00:00
|
|
|
|
2007-04-26 19:01:25 +00:00
|
|
|
def remote_get_versions(self):
|
|
|
|
return str(allmydata.__version__), str(self.OLDEST_SUPPORTED_VERSION)
|
|
|
|
|
2006-12-01 01:09:57 +00:00
|
|
|
def remote_get_service(self, name):
|
2007-06-15 03:14:34 +00:00
|
|
|
if name in ("storageserver",):
|
|
|
|
return self.getServiceNamed(name)
|
|
|
|
raise RuntimeError("I am unwilling to give you service %s" % name)
|
2006-12-01 01:09:57 +00:00
|
|
|
|
2006-12-01 03:18:51 +00:00
|
|
|
|
2007-03-27 23:12:11 +00:00
|
|
|
def get_all_peerids(self):
|
2007-06-10 04:03:57 +00:00
|
|
|
if not self.introducer_client:
|
|
|
|
return []
|
2007-03-27 23:12:11 +00:00
|
|
|
return self.introducer_client.connections.iterkeys()
|
|
|
|
|
2007-03-30 03:19:52 +00:00
|
|
|
def get_permuted_peers(self, key):
|
|
|
|
"""
|
|
|
|
@return: list of (permuted-peerid, peerid, connection,)
|
|
|
|
"""
|
2006-12-01 03:18:51 +00:00
|
|
|
results = []
|
2007-03-30 03:19:52 +00:00
|
|
|
for peerid, connection in self.introducer_client.connections.iteritems():
|
|
|
|
assert isinstance(peerid, str)
|
|
|
|
permuted = bytes_to_long(sha.new(key + peerid).digest())
|
|
|
|
results.append((permuted, peerid, connection))
|
2006-12-01 03:18:51 +00:00
|
|
|
results.sort()
|
2007-03-30 03:19:52 +00:00
|
|
|
return results
|
2007-06-10 04:03:57 +00:00
|
|
|
|
|
|
|
def connected_to_introducer(self):
|
|
|
|
if self.introducer_client:
|
|
|
|
return self.introducer_client.connected_to_introducer()
|
|
|
|
return False
|