Noise: add PatternXX

This commit is contained in:
mhchia
2020-02-09 00:33:26 +08:00
parent f27db83a14
commit 0324a69841
8 changed files with 169 additions and 35 deletions

View File

@ -1,47 +1,22 @@
from libp2p.crypto.keys import KeyPair, PrivateKey
from libp2p.io.msgio import ReadWriteCloser
from libp2p.network.connection.raw_connection_interface import IRawConnection
from libp2p.peer.id import ID
from libp2p.security.base_session import BaseSession
from libp2p.security.secure_conn_interface import ISecureConn
from libp2p.security.secure_transport_interface import ISecureTransport
from libp2p.typing import TProtocol
from .patterns import IPattern, PatternXX
PROTOCOL_ID = TProtocol("/noise")
class NoiseConnection(BaseSession):
conn: ReadWriteCloser
def __init__(
self,
local_peer: ID,
local_private_key: PrivateKey,
remote_peer: ID,
conn: ReadWriteCloser,
is_initiator: bool,
) -> None:
super().__init__(local_peer, local_private_key, is_initiator, remote_peer)
self.conn = conn
async def read(self, n: int = None) -> bytes:
# TODO: Add decryption logic here
return await self.conn.read(n)
async def write(self, data: bytes) -> None:
# TODO: Add encryption logic here
await self.conn.write(data)
async def close(self) -> None:
await self.conn.close()
class Transport(ISecureTransport):
libp2p_privkey: PrivateKey
noise_privkey: PrivateKey
local_peer: ID
early_data: bytes
with_noise_pipes: bool
# TODO: A storage of seen noise static keys for pattern IK?
def __init__(
self,
@ -56,16 +31,25 @@ class Transport(ISecureTransport):
self.early_data = early_data
self.with_noise_pipes = with_noise_pipes
if self.with_noise_pipes:
raise NotImplementedError
def get_pattern(self) -> IPattern:
if self.with_noise_pipes:
raise NotImplementedError
else:
return PatternXX(self.local_peer, self.libp2p_privkey, self.noise_privkey)
async def secure_inbound(self, conn: IRawConnection) -> ISecureConn:
# TODO: SecureInbound attempts to complete a noise-libp2p handshake initiated
# by a remote peer over the given InsecureConnection.
return NoiseConnection(self.local_peer, self.libp2p_privkey, None, conn, False)
pattern = self.get_pattern()
return await pattern.handshake_inbound(conn)
async def secure_outbound(self, conn: IRawConnection, peer_id: ID) -> ISecureConn:
# TODO: Validate libp2p pubkey with `peer_id`. Abort if not correct.
# NOTE: Implementations that support Noise Pipes must decide whether to use
# an XX or IK handshake based on whether they possess a cached static
# Noise key for the remote peer.
return NoiseConnection(
self.local_peer, self.libp2p_privkey, peer_id, conn, False
)
pattern = self.get_pattern()
return await pattern.handshake_outbound(conn, peer_id)