PySecretHandshake/secret_handshake/network.py

160 lines
5.2 KiB
Python
Raw Normal View History

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.
import asyncio
2017-06-04 19:50:49 +00:00
2017-08-01 20:06:29 +00:00
from async_generator import async_generator, yield_
2017-06-04 19:50:49 +00:00
from .boxstream import get_stream_pair
from .crypto import SHSClientCrypto, SHSServerCrypto
class SHSClientException(Exception):
pass
class SHSDuplexStream(object):
def __init__(self):
self.write_stream = None
self.read_stream = None
2018-02-04 21:19:15 +00:00
self.is_connected = False
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()
def close(self):
self.write_stream.close()
self.read_stream.close()
2018-02-04 21:19:15 +00:00
self.is_connected = False
2017-06-04 19:50:49 +00:00
2017-08-01 20:06:29 +00:00
@async_generator
2017-06-04 19:50:49 +00:00
async def __aiter__(self):
async for msg in self.read_stream:
2017-08-01 20:06:29 +00:00
await yield_(msg)
2017-06-04 19:50:49 +00:00
class SHSEndpoint(object):
def __init__(self):
self._on_connect = None
self.crypto = None
2017-06-05 18:41:44 +00:00
def on_connect(self, cb):
self._on_connect = cb
def disconnect(self):
raise NotImplementedError
2017-06-04 19:50:49 +00:00
class SHSServer(SHSEndpoint):
def __init__(self, host, port, server_kp, application_key=None):
super(SHSServer, self).__init__()
2017-06-04 19:50:49 +00:00
self.host = host
self.port = port
self.crypto = SHSServerCrypto(server_kp, application_key=application_key)
self.connections = []
2017-06-04 19:50:49 +00:00
async def _handshake(self, reader, writer):
data = await reader.readexactly(64)
2017-06-04 19:50:49 +00:00
if not self.crypto.verify_challenge(data):
raise SHSClientException("Client challenge is not valid")
2017-06-04 19:50:49 +00:00
writer.write(self.crypto.generate_challenge())
data = await reader.readexactly(112)
2017-06-04 19:50:49 +00:00
if not self.crypto.verify_client_auth(data):
raise SHSClientException("Client auth is not valid")
2017-06-04 19:50:49 +00:00
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()
conn = SHSServerConnection.from_byte_streams(reader, writer, **keys)
self.connections.append(conn)
2017-06-04 19:50:49 +00:00
if self._on_connect:
asyncio.ensure_future(self._on_connect(conn))
async def listen(self):
await asyncio.start_server(self.handle_connection, self.host, self.port)
def disconnect(self):
for connection in self.connections:
connection.close()
2017-06-04 19:50:49 +00:00
class SHSServerConnection(SHSDuplexStream):
def __init__(self, read_stream, write_stream):
super(SHSServerConnection, self).__init__()
self.read_stream = read_stream
self.write_stream = write_stream
2017-06-04 19:50:49 +00:00
@classmethod
def from_byte_streams(cls, reader, writer, **keys):
reader, writer = get_stream_pair(reader, writer, **keys)
return cls(reader, writer)
class SHSClient(SHSDuplexStream, SHSEndpoint):
def __init__(self, host, port, client_kp, server_pub_key, ephemeral_key=None, application_key=None):
SHSDuplexStream.__init__(self)
SHSEndpoint.__init__(self)
2017-06-04 19:50:49 +00:00
self.host = host
self.port = port
self.crypto = SHSClientCrypto(
client_kp, server_pub_key, ephemeral_key=ephemeral_key, application_key=application_key
)
2017-06-04 19:50:49 +00:00
async def _handshake(self, reader, writer):
writer.write(self.crypto.generate_challenge())
data = await reader.readexactly(64)
2017-06-04 19:50:49 +00:00
if not self.crypto.verify_server_challenge(data):
raise SHSClientException("Server challenge is not valid")
2017-06-04 19:50:49 +00:00
writer.write(self.crypto.generate_client_auth())
data = await reader.readexactly(80)
2017-06-04 19:50:49 +00:00
if not self.crypto.verify_server_accept(data):
raise SHSClientException("Server accept is not valid")
2017-06-04 19:50:49 +00:00
async def open(self):
reader, writer = await asyncio.open_connection(self.host, self.port)
await self._handshake(reader, writer)
2017-06-04 19:50:49 +00:00
keys = self.crypto.get_box_keys()
self.crypto.clean()
self.read_stream, self.write_stream = get_stream_pair(reader, writer, **keys)
self.writer = writer
2018-02-04 21:19:15 +00:00
self.is_connected = True
2017-06-05 18:41:44 +00:00
if self._on_connect:
await self._on_connect()
def disconnect(self):
self.close()