magic-wormhole/src/wormhole/servers/relay_server.py

259 lines
10 KiB
Python
Raw Normal View History

from __future__ import print_function
import re, json, time, random
from twisted.python import log
from twisted.application import service, internet
2015-10-04 19:40:12 +00:00
from twisted.web import server, resource, http
2015-02-12 02:13:54 +00:00
SECONDS = 1.0
MINUTE = 60*SECONDS
HOUR = 60*MINUTE
DAY = 24*HOUR
2015-02-12 02:13:54 +00:00
MB = 1000*1000
2015-05-05 01:19:40 +00:00
CHANNEL_EXPIRATION_TIME = 3*DAY
EXPIRATION_CHECK_PERIOD = 2*HOUR
class EventsProtocol:
def __init__(self, request):
self.request = request
def sendComment(self, comment):
# this is ignored by clients, but can keep the connection open in the
# face of firewall/NAT timeouts. It also helps unit tests, since
# apparently twisted.web.client.Agent doesn't consider the connection
# to be established until it sees the first byte of the reponse body.
self.request.write(b": " + comment + b"\n\n")
def sendEvent(self, data, name=None, id=None, retry=None):
if name:
self.request.write(b"event: " + name.encode("utf-8") + b"\n")
# e.g. if name=foo, then the client web page should do:
# (new EventSource(url)).addEventListener("foo", handlerfunc)
# Note that this basically defaults to "message".
self.request.write(b"\n")
if id:
self.request.write(b"id: " + id.encode("utf-8") + b"\n")
self.request.write(b"\n")
if retry:
self.request.write(b"retry: " + retry + b"\n") # milliseconds
self.request.write(b"\n")
for line in data.splitlines():
self.request.write(b"data: " + line.encode("utf-8") + b"\n")
self.request.write(b"\n")
def stop(self):
self.request.finish()
# note: no versions of IE (including the current IE11) support EventSource
# relay URLs are:
# GET /list -> {channelids: [INT..]}
# POST /allocate {side: SIDE} -> {channelid: INT}
# these return all messages (base64) for CID= :
# POST /CID {side:, phase:, body:} -> {messages: [{phase:, body:}..]}
# GET /CID (no-eventsource) -> {messages: [{phase:, body:}..]}
# GET /CID (eventsource) -> {phase:, body:}..
# POST /CID/deallocate {side: SIDE} -> {status: waiting | deleted}
# all JSON responses include a "welcome:{..}" key
class Channel(resource.Resource):
def __init__(self, channelid, relay, db, welcome):
resource.Resource.__init__(self)
self.channelid = channelid
self.relay = relay
2015-04-10 16:15:27 +00:00
self.db = db
2015-04-21 01:34:13 +00:00
self.welcome = welcome
self.event_channels = set() # ep
self.putChild(b"deallocate", Deallocator(self.channelid, self.relay))
def get_messages(self, request):
request.setHeader(b"content-type", b"application/json; charset=utf-8")
messages = []
for row in self.db.execute("SELECT * FROM `messages`"
" WHERE `channelid`=?"
" ORDER BY `when` ASC",
(self.channelid,)).fetchall():
messages.append({"phase": row["phase"], "body": row["body"]})
data = {"welcome": self.welcome, "messages": messages}
return (json.dumps(data)+"\n").encode("utf-8")
def render_GET(self, request):
if b"text/event-stream" not in (request.getHeader(b"accept") or b""):
return self.get_messages(request)
request.setHeader(b"content-type", b"text/event-stream; charset=utf-8")
ep = EventsProtocol(request)
2015-04-21 01:34:13 +00:00
ep.sendEvent(json.dumps(self.welcome), name="welcome")
self.event_channels.add(ep)
request.notifyFinish().addErrback(lambda f:
self.event_channels.discard(ep))
2015-04-10 17:00:08 +00:00
for row in self.db.execute("SELECT * FROM `messages`"
" WHERE `channelid`=?"
2015-04-10 17:00:08 +00:00
" ORDER BY `when` ASC",
(self.channelid,)).fetchall():
data = json.dumps({"phase": row["phase"], "body": row["body"]})
ep.sendEvent(data)
return server.NOT_DONE_YET
def broadcast_message(self, phase, body):
data = json.dumps({"phase": phase, "body": body})
for ep in self.event_channels:
ep.sendEvent(data)
def render_POST(self, request):
#data = json.load(request.content, encoding="utf-8")
content = request.content.read()
data = json.loads(content.decode("utf-8"))
side = data["side"]
phase = data["phase"]
if not isinstance(phase, type(u"")):
raise TypeError("phase must be string, not %s" % type(phase))
body = data["body"]
self.db.execute("INSERT INTO `messages`"
" (`channelid`, `side`, `phase`, `body`, `when`)"
" VALUES (?,?,?,?,?)",
(self.channelid, side, phase, body, time.time()))
self.db.execute("INSERT INTO `allocations`"
" (`channelid`, `side`)"
" VALUES (?,?)",
(self.channelid, side))
self.db.commit()
self.broadcast_message(phase, body)
return self.get_messages(request)
class Deallocator(resource.Resource):
def __init__(self, channelid, relay):
self.channelid = channelid
self.relay = relay
def render_POST(self, request):
content = request.content.read()
data = json.loads(content.decode("utf-8"))
side = data["side"]
deleted = self.relay.maybe_free_child(self.channelid, side)
resp = {"status": "waiting"}
if deleted:
resp = {"status": "deleted"}
return json.dumps(resp).encode("utf-8")
def get_allocated(db):
c = db.execute("SELECT DISTINCT `channelid` FROM `allocations`")
return set([row["channelid"] for row in c.fetchall()])
class Allocator(resource.Resource):
def __init__(self, db, welcome):
resource.Resource.__init__(self)
self.db = db
2015-04-21 01:34:13 +00:00
self.welcome = welcome
def allocate_channelid(self):
allocated = get_allocated(self.db)
for size in range(1,4): # stick to 1-999 for now
available = set()
for cid in range(10**(size-1), 10**size):
if cid not in allocated:
available.add(cid)
if available:
return random.choice(list(available))
# ouch, 999 currently allocated. Try random ones for a while.
for tries in range(1000):
cid = random.randrange(1000, 1000*1000)
if cid not in allocated:
return cid
raise ValueError("unable to find a free channelid")
def render_POST(self, request):
content = request.content.read()
data = json.loads(content.decode("utf-8"))
side = data["side"]
if not isinstance(side, type(u"")):
raise TypeError("side must be string, not '%s'" % type(side))
channelid = self.allocate_channelid()
self.db.execute("INSERT INTO `allocations` VALUES (?,?)",
(channelid, side))
self.db.commit()
log.msg("allocated #%d, now have %d DB channels" %
(channelid, len(get_allocated(self.db))))
request.setHeader(b"content-type", b"application/json; charset=utf-8")
data = {"welcome": self.welcome,
"channelid": channelid}
return (json.dumps(data)+"\n").encode("utf-8")
class ChannelList(resource.Resource):
def __init__(self, db, welcome):
resource.Resource.__init__(self)
self.db = db
2015-04-21 01:34:13 +00:00
self.welcome = welcome
def render_GET(self, request):
c = self.db.execute("SELECT DISTINCT `channelid` FROM `allocations`")
allocated = sorted(set([row["channelid"] for row in c.fetchall()]))
request.setHeader(b"content-type", b"application/json; charset=utf-8")
data = {"welcome": self.welcome,
"channelids": allocated}
return (json.dumps(data)+"\n").encode("utf-8")
class Relay(resource.Resource, service.MultiService):
2015-04-10 16:15:27 +00:00
def __init__(self, db, welcome):
resource.Resource.__init__(self)
service.MultiService.__init__(self)
2015-04-10 16:15:27 +00:00
self.db = db
2015-04-21 01:34:13 +00:00
self.welcome = welcome
self.channels = {}
t = internet.TimerService(EXPIRATION_CHECK_PERIOD,
self.prune_old_channels)
t.setServiceParent(self)
def getChild(self, path, request):
if path == b"allocate":
return Allocator(self.db, self.welcome)
if path == b"list":
return ChannelList(self.db, self.welcome)
if not re.search(br'^\d+$', path):
return resource.ErrorPage(http.BAD_REQUEST,
"invalid channel id",
"invalid channel id")
channelid = int(path)
if not channelid in self.channels:
log.msg("spawning #%d" % channelid)
self.channels[channelid] = Channel(channelid, self, self.db,
self.welcome)
return self.channels[channelid]
def maybe_free_child(self, channelid, side):
self.db.execute("DELETE FROM `allocations`"
" WHERE `channelid`=? AND `side`=?",
(channelid, side))
self.db.commit()
remaining = self.db.execute("SELECT COUNT(*) FROM `allocations`"
" WHERE `channelid`=?",
(channelid,)).fetchone()[0]
if remaining:
return False
self.free_child(channelid)
return True
def free_child(self, channelid):
self.db.execute("DELETE FROM `allocations` WHERE `channelid`=?",
(channelid,))
self.db.execute("DELETE FROM `messages` WHERE `channelid`=?",
(channelid,))
2015-04-10 17:00:08 +00:00
self.db.commit()
if channelid in self.channels:
self.channels.pop(channelid)
log.msg("freed+killed #%d, now have %d DB channels, %d live" %
(channelid, len(get_allocated(self.db)), len(self.channels)))
def prune_old_channels(self):
2015-05-05 01:19:40 +00:00
old = time.time() - CHANNEL_EXPIRATION_TIME
for channelid in get_allocated(self.db):
c = self.db.execute("SELECT `when` FROM `messages`"
" WHERE `channelid`=?"
" ORDER BY `when` DESC LIMIT 1", (channelid,))
rows = c.fetchall()
if not rows or (rows[0]["when"] < old):
log.msg("expiring %d" % channelid)
self.free_child(channelid)