Onionr/onionr/onionrservices/bootstrapservice.py

118 lines
4.3 KiB
Python
Raw Normal View History

'''
Onionr - Private P2P Communication
Bootstrap onion direct connections for the clients
'''
'''
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
'''
2019-03-25 23:46:25 +00:00
import time, threading, uuid
from gevent.pywsgi import WSGIServer, WSGIHandler
from stem.control import Controller
2019-03-25 23:46:25 +00:00
from flask import Flask, Response
2019-07-14 06:51:43 +00:00
from netcontroller import get_open_port
2019-03-27 17:38:46 +00:00
from . import httpheaders
from onionrutils import stringvalidators, epoch
2019-07-28 05:44:21 +00:00
import config, onionrblocks, filepaths
2019-08-25 08:08:09 +00:00
import onionrexceptions
2019-07-28 05:44:21 +00:00
import deadsimplekv as simplekv
2019-08-25 08:08:09 +00:00
import warden
from . import pool
def __bootstrap_timeout(server: WSGIServer, timeout: int, signal_object):
time.sleep(timeout)
signal_object.timed_out = True
server.stop()
2019-08-16 22:40:17 +00:00
def bootstrap_client_service(peer, comm_inst=None, bootstrap_timeout=300):
'''
Bootstrap client services
'''
if not stringvalidators.validate_pub_key(peer):
raise ValueError('Peer must be valid base32 ed25519 public key')
2019-08-25 08:08:09 +00:00
connection_pool = None
# here we use a lambda for the timeout thread to set to true
timed_out = lambda: None
timed_out.timed_out = False
2019-03-19 05:09:53 +00:00
2019-07-14 06:51:43 +00:00
bootstrap_port = get_open_port()
2019-03-19 05:09:53 +00:00
bootstrap_app = Flask(__name__)
2019-08-25 08:08:09 +00:00
bootstrap_app.config['MAX_CONTENT_LENGTH'] = 1 * 1024
2019-03-19 05:09:53 +00:00
http_server = WSGIServer(('127.0.0.1', bootstrap_port), bootstrap_app, log=None)
2019-03-26 04:25:46 +00:00
try:
2019-08-16 22:40:17 +00:00
assert comm_inst is not None
except (AttributeError, AssertionError) as e:
2019-03-26 04:25:46 +00:00
pass
else:
2019-08-16 22:40:17 +00:00
comm_inst.service_greenlets.append(http_server)
2019-08-25 08:08:09 +00:00
connection_pool = comm_inst.shared_state.get(pool.ServicePool)
bootstrap_address = ''
shutdown = False
2019-03-25 23:46:25 +00:00
bs_id = str(uuid.uuid4())
2019-07-28 05:44:21 +00:00
key_store = simplekv.DeadSimpleKV(filepaths.cached_storage)
@bootstrap_app.route('/ping')
def get_ping():
return "pong!"
2019-03-27 17:38:46 +00:00
@bootstrap_app.after_request
def afterReq(resp):
# Security headers
resp = httpheaders.set_default_onionr_http_headers(resp)
return resp
@bootstrap_app.route('/bs/<address>', methods=['POST'])
def get_bootstrap(address):
if stringvalidators.validate_transport(address + '.onion'):
# Set the bootstrap address then close the server
2019-03-25 23:46:25 +00:00
bootstrap_address = address + '.onion'
2019-07-28 05:44:21 +00:00
key_store.put(bs_id, bootstrap_address)
2019-03-25 23:46:25 +00:00
http_server.stop()
return Response("success")
else:
return Response("")
2019-07-28 05:33:26 +00:00
with Controller.from_port(port=config.get('tor.controlPort')) as controller:
2019-08-25 08:08:09 +00:00
connection_pool.bootstrap_pending.append(peer)
# Connect to the Tor process for Onionr
2019-07-28 05:33:26 +00:00
controller.authenticate(config.get('tor.controlpassword'))
# Create the v3 onion service
2019-03-25 23:46:25 +00:00
response = controller.create_ephemeral_hidden_service({80: bootstrap_port}, key_type = 'NEW', key_content = 'ED25519-V3', await_publication = True)
2019-07-28 05:33:26 +00:00
onionrblocks.insert(response.service_id, header='con', sign=True, encryptType='asym',
asymPeer=peer, disableForward=True, expire=(epoch.get_epoch() + bootstrap_timeout))
2019-08-25 08:08:09 +00:00
threading.Thread(target=__bootstrap_timeout, args=[http_server, bootstrap_timeout], daemon=True)
# Run the bootstrap server
2019-03-25 23:46:25 +00:00
try:
http_server.serve_forever()
except TypeError:
pass
# This line reached when server is shutdown by being bootstrapped
2019-08-16 22:40:17 +00:00
# Add the address to the client pool
if not comm_inst is None:
comm_inst.direct_connection_clients[peer] = response.service_id
2019-08-25 08:08:09 +00:00
connection_pool.bootstrap_pending.remove(peer)
if timed_out.timed_out:
raise onionrexceptions.Timeout
# Now that the bootstrap server has received a server, return the address
2019-07-28 05:44:21 +00:00
return key_store.get(bs_id)