2017-06-04 19:50:49 +00:00
|
|
|
# Copyright (c) 2017 PySecretHandshake contributors (see AUTHORS for more details)
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
|
|
# copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
|
|
|
|
2017-06-05 18:41:44 +00:00
|
|
|
from asyncio import open_connection, start_server, ensure_future
|
2017-06-04 19:50:49 +00:00
|
|
|
|
|
|
|
from .boxstream import get_stream_pair
|
|
|
|
from .crypto import SHSClientCrypto, SHSServerCrypto
|
|
|
|
|
|
|
|
|
|
|
|
class SHSClientException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class SHSSocket(object):
|
|
|
|
def __init__(self, loop):
|
|
|
|
self.loop = loop
|
2017-06-05 18:41:44 +00:00
|
|
|
self._on_connect = None
|
2017-06-04 19:50:49 +00:00
|
|
|
|
|
|
|
def write(self, data):
|
|
|
|
self.write_stream.write(data)
|
|
|
|
|
|
|
|
async def read(self):
|
|
|
|
return await self.read_stream.read()
|
|
|
|
|
|
|
|
async def disconnect(self):
|
|
|
|
self.writer.close()
|
|
|
|
|
|
|
|
async def __aiter__(self):
|
|
|
|
async for msg in self.read_stream:
|
|
|
|
yield msg
|
|
|
|
|
2017-06-05 18:41:44 +00:00
|
|
|
def on_connect(self, cb):
|
|
|
|
self._on_connect = cb
|
|
|
|
|
2017-06-04 19:50:49 +00:00
|
|
|
|
|
|
|
class SHSServer(SHSSocket):
|
|
|
|
def __init__(self, host, port, server_kp, application_key=None, loop=None):
|
|
|
|
super(SHSServer, self).__init__(loop)
|
|
|
|
self.host = host
|
|
|
|
self.port = port
|
|
|
|
self.crypto = SHSServerCrypto(server_kp, application_key=application_key)
|
|
|
|
|
|
|
|
async def _handshake(self, reader, writer):
|
|
|
|
data = await reader.read(64)
|
|
|
|
if not self.crypto.verify_challenge(data):
|
|
|
|
raise SHSClientException('Client challenge is not valid')
|
|
|
|
|
|
|
|
writer.write(self.crypto.generate_challenge())
|
|
|
|
|
|
|
|
data = await reader.read(112)
|
|
|
|
if not self.crypto.verify_client_auth(data):
|
|
|
|
raise SHSClientException('Client auth is not valid')
|
|
|
|
|
|
|
|
writer.write(self.crypto.generate_accept())
|
|
|
|
|
|
|
|
async def handle_connection(self, reader, writer):
|
|
|
|
self.crypto.clean()
|
|
|
|
await self._handshake(reader, writer)
|
|
|
|
|
|
|
|
keys = self.crypto.get_box_keys()
|
|
|
|
self.crypto.clean()
|
|
|
|
|
|
|
|
self.read_stream, self.write_stream = get_stream_pair(reader, writer, **keys)
|
|
|
|
self.writer = writer
|
|
|
|
|
|
|
|
if self._on_connect:
|
2017-06-05 18:41:44 +00:00
|
|
|
ensure_future(self._on_connect(), loop=self.loop)
|
2017-06-04 19:50:49 +00:00
|
|
|
|
|
|
|
def listen(self):
|
|
|
|
self.loop.run_until_complete(start_server(self.handle_connection, self.host, self.port, loop=self.loop))
|
|
|
|
|
|
|
|
|
|
|
|
class SHSClient(SHSSocket):
|
|
|
|
def __init__(self, host, port, client_kp, server_pub_key, ephemeral_key=None, application_key=None, loop=None):
|
|
|
|
super(SHSClient, self).__init__(loop)
|
|
|
|
self.host = host
|
|
|
|
self.port = port
|
|
|
|
self.crypto = SHSClientCrypto(client_kp, server_pub_key, ephemeral_key=ephemeral_key,
|
|
|
|
application_key=application_key)
|
|
|
|
|
|
|
|
async def _handshake(self, reader, writer):
|
|
|
|
writer.write(self.crypto.generate_challenge())
|
|
|
|
|
|
|
|
data = await reader.read(64)
|
|
|
|
if not self.crypto.verify_server_challenge(data):
|
|
|
|
raise SHSClientException('Server challenge is not valid')
|
|
|
|
|
|
|
|
writer.write(self.crypto.generate_client_auth())
|
|
|
|
|
|
|
|
data = await reader.read(80)
|
|
|
|
if not self.crypto.verify_server_accept(data):
|
|
|
|
raise SHSClientException('Server accept is not valid')
|
|
|
|
|
|
|
|
def connect(self):
|
|
|
|
reader, writer = self.loop.run_until_complete(open_connection(self.host, self.port, loop=self.loop))
|
|
|
|
self.loop.run_until_complete(self._handshake(reader, writer))
|
|
|
|
|
|
|
|
keys = self.crypto.get_box_keys()
|
|
|
|
self.crypto.clean()
|
|
|
|
|
|
|
|
self.read_stream, self.write_stream = get_stream_pair(reader, writer, **keys)
|
|
|
|
self.writer = writer
|
2017-06-05 18:41:44 +00:00
|
|
|
if self._on_connect:
|
|
|
|
ensure_future(self._on_connect(), loop=self.loop)
|