2019-04-30 15:27:06 +08:00
|
|
|
import asyncio
|
|
|
|
from libp2p.security.secure_transport_interface import ISecureTransport
|
|
|
|
from libp2p.security.secure_conn_interface import ISecureConn
|
|
|
|
|
2019-08-01 19:12:11 +08:00
|
|
|
from typing import TYPE_CHECKING, cast
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from libp2p.network.connection.raw_connection_interface import IRawConnection
|
|
|
|
from libp2p.peer.id import ID
|
|
|
|
from .typing import TSecurityDetails
|
|
|
|
|
2019-04-30 15:27:06 +08:00
|
|
|
|
2019-08-01 06:00:12 +08:00
|
|
|
class SimpleSecurityTransport(ISecureTransport):
|
2019-08-01 19:12:11 +08:00
|
|
|
key_phrase: str
|
|
|
|
|
|
|
|
def __init__(self, key_phrase: str) -> None:
|
2019-04-30 15:27:06 +08:00
|
|
|
self.key_phrase = key_phrase
|
2019-05-02 01:54:19 +08:00
|
|
|
|
2019-08-01 19:12:11 +08:00
|
|
|
async def secure_inbound(self, conn: "IRawConnection") -> "ISecureConn":
|
2019-04-30 15:27:06 +08:00
|
|
|
"""
|
|
|
|
Secure the connection, either locally or by communicating with opposing node via conn,
|
|
|
|
for an inbound connection (i.e. we are not the initiator)
|
|
|
|
:return: secure connection object (that implements secure_conn_interface)
|
|
|
|
"""
|
|
|
|
await conn.write(self.key_phrase.encode())
|
|
|
|
incoming = (await conn.read()).decode()
|
|
|
|
|
|
|
|
if incoming != self.key_phrase:
|
2019-08-01 06:00:12 +08:00
|
|
|
raise Exception(
|
|
|
|
"Key phrase differed between nodes. Expected " + self.key_phrase
|
|
|
|
)
|
2019-04-30 15:27:06 +08:00
|
|
|
|
|
|
|
secure_conn = SimpleSecureConn(conn, self.key_phrase)
|
|
|
|
return secure_conn
|
|
|
|
|
2019-08-01 19:12:11 +08:00
|
|
|
async def secure_outbound(
|
|
|
|
self, conn: "IRawConnection", peer_id: "ID"
|
|
|
|
) -> "ISecureConn":
|
2019-04-30 15:27:06 +08:00
|
|
|
"""
|
|
|
|
Secure the connection, either locally or by communicating with opposing node via conn,
|
|
|
|
for an inbound connection (i.e. we are the initiator)
|
|
|
|
:return: secure connection object (that implements secure_conn_interface)
|
|
|
|
"""
|
|
|
|
await conn.write(self.key_phrase.encode())
|
|
|
|
incoming = (await conn.read()).decode()
|
|
|
|
|
|
|
|
# Force context switch, as this security transport is built for testing locally
|
|
|
|
# in a single event loop
|
|
|
|
await asyncio.sleep(0)
|
|
|
|
|
|
|
|
if incoming != self.key_phrase:
|
2019-08-01 06:00:12 +08:00
|
|
|
raise Exception(
|
|
|
|
"Key phrase differed between nodes. Expected " + self.key_phrase
|
|
|
|
)
|
2019-04-30 15:27:06 +08:00
|
|
|
|
|
|
|
secure_conn = SimpleSecureConn(conn, self.key_phrase)
|
|
|
|
return secure_conn
|
|
|
|
|
|
|
|
|
2019-08-01 06:00:12 +08:00
|
|
|
class SimpleSecureConn(ISecureConn):
|
2019-08-01 19:12:11 +08:00
|
|
|
conn: "IRawConnection"
|
|
|
|
key_phrase: str
|
|
|
|
details: "TSecurityDetails"
|
|
|
|
|
|
|
|
def __init__(self, conn: "IRawConnection", key_phrase: str) -> None:
|
2019-04-30 15:27:06 +08:00
|
|
|
self.conn = conn
|
2019-08-01 19:12:11 +08:00
|
|
|
self.details = cast("TSecurityDetails", {})
|
2019-04-30 15:27:06 +08:00
|
|
|
self.details["key_phrase"] = key_phrase
|
|
|
|
|
2019-08-01 19:12:11 +08:00
|
|
|
def get_conn(self) -> "ISecureConn":
|
2019-04-30 15:27:06 +08:00
|
|
|
"""
|
|
|
|
:return: connection object that has been made secure
|
|
|
|
"""
|
2019-08-01 19:12:11 +08:00
|
|
|
return cast("ISecureConn", self.conn)
|
2019-04-30 15:27:06 +08:00
|
|
|
|
2019-08-01 19:12:11 +08:00
|
|
|
def get_security_details(self) -> "TSecurityDetails":
|
2019-04-30 15:27:06 +08:00
|
|
|
"""
|
|
|
|
:return: map containing details about the connections security
|
|
|
|
"""
|
|
|
|
return self.details
|