2019-02-25 09:58:23 +08:00
|
|
|
import asyncio
|
2019-08-08 14:22:06 +08:00
|
|
|
from typing import Callable, Dict, List, Sequence
|
2019-02-25 09:58:23 +08:00
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
from multiaddr import Multiaddr
|
2019-01-10 02:38:56 +08:00
|
|
|
|
2019-07-31 19:31:58 +08:00
|
|
|
from libp2p.peer.id import ID
|
2019-09-03 16:49:00 +08:00
|
|
|
from libp2p.peer.peerstore import PeerStoreError
|
2019-08-11 16:47:54 +08:00
|
|
|
from libp2p.peer.peerstore_interface import IPeerStore
|
2019-07-28 14:06:29 +08:00
|
|
|
from libp2p.protocol_muxer.multiselect import Multiselect
|
|
|
|
from libp2p.protocol_muxer.multiselect_client import MultiselectClient
|
2019-09-05 23:24:17 +08:00
|
|
|
from libp2p.protocol_muxer.multiselect_communicator import MultiselectCommunicator
|
2019-07-28 14:06:29 +08:00
|
|
|
from libp2p.routing.interfaces import IPeerRouting
|
2019-08-05 11:17:38 +08:00
|
|
|
from libp2p.stream_muxer.abc import IMuxedConn, IMuxedStream
|
2019-08-21 23:04:59 +08:00
|
|
|
from libp2p.transport.exceptions import MuxerUpgradeFailure, SecurityUpgradeFailure
|
2019-07-28 14:06:29 +08:00
|
|
|
from libp2p.transport.listener_interface import IListener
|
2019-08-03 13:36:19 +08:00
|
|
|
from libp2p.transport.transport_interface import ITransport
|
|
|
|
from libp2p.transport.upgrader import TransportUpgrader
|
2019-08-11 16:47:54 +08:00
|
|
|
from libp2p.typing import StreamHandlerFn, TProtocol
|
2019-07-28 14:06:29 +08:00
|
|
|
|
2019-08-03 13:36:19 +08:00
|
|
|
from .connection.raw_connection import RawConnection
|
2019-08-21 23:04:59 +08:00
|
|
|
from .exceptions import SwarmException
|
2019-07-28 22:30:51 +08:00
|
|
|
from .network_interface import INetwork
|
|
|
|
from .notifee_interface import INotifee
|
|
|
|
from .stream.net_stream import NetStream
|
2019-07-30 15:31:02 +08:00
|
|
|
from .stream.net_stream_interface import INetStream
|
2019-08-05 10:35:56 +08:00
|
|
|
from .typing import GenericProtocolHandlerFn
|
2019-07-28 22:30:51 +08:00
|
|
|
|
2019-07-29 12:42:13 +08:00
|
|
|
|
2018-10-15 13:52:25 +08:00
|
|
|
class Swarm(INetwork):
|
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
self_id: ID
|
2019-08-11 16:47:54 +08:00
|
|
|
peerstore: IPeerStore
|
2019-07-28 14:06:29 +08:00
|
|
|
upgrader: TransportUpgrader
|
|
|
|
transport: ITransport
|
|
|
|
router: IPeerRouting
|
2019-08-31 22:32:32 +08:00
|
|
|
# TODO: Connection and `peer_id` are 1-1 mapping in our implementation,
|
2019-08-29 22:00:07 +08:00
|
|
|
# whereas in Go one `peer_id` may point to multiple connections.
|
2019-07-28 14:06:29 +08:00
|
|
|
connections: Dict[ID, IMuxedConn]
|
|
|
|
listeners: Dict[str, IListener]
|
2019-07-30 15:31:02 +08:00
|
|
|
stream_handlers: Dict[INetStream, Callable[[INetStream], None]]
|
2019-07-28 14:06:29 +08:00
|
|
|
|
|
|
|
multiselect: Multiselect
|
|
|
|
multiselect_client: MultiselectClient
|
|
|
|
|
|
|
|
notifees: List[INotifee]
|
|
|
|
|
2019-08-01 06:00:12 +08:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
peer_id: ID,
|
2019-08-11 16:47:54 +08:00
|
|
|
peerstore: IPeerStore,
|
2019-08-01 06:00:12 +08:00
|
|
|
upgrader: TransportUpgrader,
|
|
|
|
transport: ITransport,
|
|
|
|
router: IPeerRouting,
|
|
|
|
):
|
2018-11-29 23:06:40 +08:00
|
|
|
self.self_id = peer_id
|
2018-11-12 01:36:15 +08:00
|
|
|
self.peerstore = peerstore
|
2018-11-12 05:42:10 +08:00
|
|
|
self.upgrader = upgrader
|
2019-04-25 10:36:09 +08:00
|
|
|
self.transport = transport
|
2019-04-29 03:00:43 +08:00
|
|
|
self.router = router
|
2018-11-12 06:10:37 +08:00
|
|
|
self.connections = dict()
|
|
|
|
self.listeners = dict()
|
2018-11-12 09:29:17 +08:00
|
|
|
self.stream_handlers = dict()
|
2018-10-15 13:52:25 +08:00
|
|
|
|
2018-11-29 02:51:50 +08:00
|
|
|
# Protocol muxing
|
|
|
|
self.multiselect = Multiselect()
|
|
|
|
self.multiselect_client = MultiselectClient()
|
|
|
|
|
2019-03-01 07:18:58 +08:00
|
|
|
# Create Notifee array
|
|
|
|
self.notifees = []
|
|
|
|
|
2019-02-25 09:58:23 +08:00
|
|
|
# Create generic protocol handler
|
|
|
|
self.generic_protocol_handler = create_generic_protocol_handler(self)
|
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
def get_peer_id(self) -> ID:
|
2018-11-27 07:24:29 +08:00
|
|
|
return self.self_id
|
2018-11-19 00:22:56 +08:00
|
|
|
|
2019-08-14 05:36:42 +08:00
|
|
|
def set_stream_handler(
|
|
|
|
self, protocol_id: TProtocol, stream_handler: StreamHandlerFn
|
|
|
|
) -> bool:
|
2018-10-15 13:52:25 +08:00
|
|
|
"""
|
2018-11-12 09:29:17 +08:00
|
|
|
:param protocol_id: protocol id used on stream
|
2018-10-15 13:52:25 +08:00
|
|
|
:param stream_handler: a stream handler instance
|
|
|
|
:return: true if successful
|
|
|
|
"""
|
2018-11-29 02:51:50 +08:00
|
|
|
self.multiselect.add_handler(protocol_id, stream_handler)
|
|
|
|
return True
|
2018-10-15 13:52:25 +08:00
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
async def dial_peer(self, peer_id: ID) -> IMuxedConn:
|
2018-11-01 05:40:01 +08:00
|
|
|
"""
|
2018-11-29 23:06:40 +08:00
|
|
|
dial_peer try to create a connection to peer_id
|
|
|
|
:param peer_id: peer if we want to dial
|
2019-08-21 23:04:59 +08:00
|
|
|
:raises SwarmException: raised when an error occurs
|
2018-11-29 23:06:40 +08:00
|
|
|
:return: muxed connection
|
2018-11-01 05:40:01 +08:00
|
|
|
"""
|
2018-11-29 23:06:40 +08:00
|
|
|
|
2019-09-03 14:12:16 +08:00
|
|
|
if peer_id in self.connections:
|
|
|
|
# If muxed connection already exists for peer_id,
|
|
|
|
# set muxed connection equal to existing muxed connection
|
|
|
|
return self.connections[peer_id]
|
|
|
|
|
|
|
|
try:
|
|
|
|
# Get peer info from peer store
|
|
|
|
addrs = self.peerstore.addrs(peer_id)
|
|
|
|
except PeerStoreError:
|
|
|
|
raise SwarmException(f"No known addresses to peer {peer_id}")
|
2018-11-13 00:00:43 +08:00
|
|
|
|
|
|
|
if not addrs:
|
2019-09-03 14:12:16 +08:00
|
|
|
raise SwarmException(f"No known addresses to peer {peer_id}")
|
2018-11-13 00:00:43 +08:00
|
|
|
|
2019-04-25 10:11:54 +08:00
|
|
|
if not self.router:
|
|
|
|
multiaddr = addrs[0]
|
|
|
|
else:
|
|
|
|
multiaddr = self.router.find_peer(peer_id)
|
2019-09-03 14:12:16 +08:00
|
|
|
# Dial peer (connection to peer does not yet exist)
|
|
|
|
# Transport dials peer (gets back a raw conn)
|
|
|
|
raw_conn = await self.transport.dial(multiaddr, self.self_id)
|
|
|
|
|
|
|
|
# Per, https://discuss.libp2p.io/t/multistream-security/130, we first secure
|
|
|
|
# the conn and then mux the conn
|
|
|
|
try:
|
|
|
|
secured_conn = await self.upgrader.upgrade_security(raw_conn, peer_id, True)
|
|
|
|
except SecurityUpgradeFailure as error:
|
|
|
|
# TODO: Add logging to indicate the failure
|
|
|
|
await raw_conn.close()
|
|
|
|
raise SwarmException(
|
|
|
|
f"fail to upgrade the connection to a secured connection from {peer_id}"
|
|
|
|
) from error
|
|
|
|
try:
|
|
|
|
muxed_conn = await self.upgrader.upgrade_connection(
|
|
|
|
secured_conn, self.generic_protocol_handler, peer_id
|
|
|
|
)
|
|
|
|
except MuxerUpgradeFailure as error:
|
|
|
|
# TODO: Add logging to indicate the failure
|
|
|
|
await secured_conn.close()
|
|
|
|
raise SwarmException(
|
|
|
|
f"fail to upgrade the connection to a muxed connection from {peer_id}"
|
|
|
|
) from error
|
|
|
|
|
|
|
|
# Store muxed connection in connections
|
|
|
|
self.connections[peer_id] = muxed_conn
|
2018-11-13 00:00:43 +08:00
|
|
|
|
2019-09-03 14:12:16 +08:00
|
|
|
# Call notifiers since event occurred
|
|
|
|
for notifee in self.notifees:
|
|
|
|
await notifee.connected(self, muxed_conn)
|
2019-03-01 07:18:58 +08:00
|
|
|
|
2018-11-29 23:06:40 +08:00
|
|
|
return muxed_conn
|
|
|
|
|
2019-08-14 05:36:42 +08:00
|
|
|
async def new_stream(
|
|
|
|
self, peer_id: ID, protocol_ids: Sequence[TProtocol]
|
|
|
|
) -> NetStream:
|
2018-11-29 23:06:40 +08:00
|
|
|
"""
|
|
|
|
:param peer_id: peer_id of destination
|
|
|
|
:param protocol_id: protocol id
|
|
|
|
:return: net stream instance
|
|
|
|
"""
|
|
|
|
|
|
|
|
muxed_conn = await self.dial_peer(peer_id)
|
|
|
|
|
2019-08-26 20:26:22 +08:00
|
|
|
# Use muxed conn to open stream, which returns a muxed stream
|
|
|
|
muxed_stream = await muxed_conn.open_stream()
|
2018-11-29 02:51:50 +08:00
|
|
|
|
|
|
|
# Perform protocol muxing to determine protocol to use
|
2019-07-29 12:42:13 +08:00
|
|
|
selected_protocol = await self.multiselect_client.select_one_of(
|
2019-09-05 23:24:17 +08:00
|
|
|
list(protocol_ids), MultiselectCommunicator(muxed_stream)
|
2019-07-29 12:42:13 +08:00
|
|
|
)
|
2018-11-12 05:42:10 +08:00
|
|
|
|
2018-11-29 02:51:50 +08:00
|
|
|
# Create a net stream with the selected protocol
|
2018-11-12 05:42:10 +08:00
|
|
|
net_stream = NetStream(muxed_stream)
|
2018-11-29 02:51:50 +08:00
|
|
|
net_stream.set_protocol(selected_protocol)
|
2018-11-12 05:42:10 +08:00
|
|
|
|
2019-03-01 07:18:58 +08:00
|
|
|
# Call notifiers since event occurred
|
|
|
|
for notifee in self.notifees:
|
2019-03-01 08:11:04 +08:00
|
|
|
await notifee.opened_stream(self, net_stream)
|
2019-03-01 07:18:58 +08:00
|
|
|
|
2018-11-12 05:42:10 +08:00
|
|
|
return net_stream
|
2018-10-22 01:51:55 +08:00
|
|
|
|
2019-08-11 16:47:54 +08:00
|
|
|
async def listen(self, *multiaddrs: Multiaddr) -> bool:
|
2018-10-22 01:51:55 +08:00
|
|
|
"""
|
2019-08-01 13:25:20 +08:00
|
|
|
:param multiaddrs: one or many multiaddrs to start listening on
|
2018-10-22 01:51:55 +08:00
|
|
|
:return: true if at least one success
|
2018-11-13 02:02:49 +08:00
|
|
|
|
2019-08-01 13:25:20 +08:00
|
|
|
For each multiaddr
|
2018-11-13 00:00:43 +08:00
|
|
|
Check if a listener for multiaddr exists already
|
|
|
|
If listener already exists, continue
|
|
|
|
Otherwise:
|
|
|
|
Capture multiaddr in conn handler
|
|
|
|
Have conn handler delegate to stream handler
|
|
|
|
Call listener listen with the multiaddr
|
|
|
|
Map multiaddr to listener
|
|
|
|
"""
|
2019-08-17 21:41:17 +08:00
|
|
|
for maddr in multiaddrs:
|
|
|
|
if str(maddr) in self.listeners:
|
2018-11-12 09:29:17 +08:00
|
|
|
return True
|
|
|
|
|
2019-08-01 06:00:12 +08:00
|
|
|
async def conn_handler(
|
|
|
|
reader: asyncio.StreamReader, writer: asyncio.StreamWriter
|
|
|
|
) -> None:
|
2018-11-13 02:02:49 +08:00
|
|
|
# Upgrade reader/write to a net_stream and pass \
|
|
|
|
# to appropriate stream handler (using multiaddr)
|
2019-08-25 03:02:30 +08:00
|
|
|
raw_conn = RawConnection(reader, writer, False)
|
2019-05-02 01:54:19 +08:00
|
|
|
|
2019-04-30 15:09:05 +08:00
|
|
|
# Per, https://discuss.libp2p.io/t/multistream-security/130, we first secure
|
|
|
|
# the conn and then mux the conn
|
2019-08-20 16:42:34 +08:00
|
|
|
try:
|
2019-08-21 23:04:59 +08:00
|
|
|
# FIXME: This dummy `ID(b"")` for the remote peer is useless.
|
2019-08-20 16:42:34 +08:00
|
|
|
secured_conn = await self.upgrader.upgrade_security(
|
|
|
|
raw_conn, ID(b""), False
|
|
|
|
)
|
2019-08-21 23:04:59 +08:00
|
|
|
except SecurityUpgradeFailure as error:
|
|
|
|
# TODO: Add logging to indicate the failure
|
2019-08-25 04:06:24 +08:00
|
|
|
await raw_conn.close()
|
2019-08-21 23:04:59 +08:00
|
|
|
raise SwarmException(
|
|
|
|
"fail to upgrade the connection to a secured connection"
|
|
|
|
) from error
|
|
|
|
peer_id = secured_conn.get_remote_peer()
|
|
|
|
try:
|
2019-08-20 16:42:34 +08:00
|
|
|
muxed_conn = await self.upgrader.upgrade_connection(
|
|
|
|
secured_conn, self.generic_protocol_handler, peer_id
|
|
|
|
)
|
2019-08-21 23:04:59 +08:00
|
|
|
except MuxerUpgradeFailure as error:
|
2019-08-20 16:42:34 +08:00
|
|
|
# TODO: Add logging to indicate the failure
|
2019-08-25 04:06:24 +08:00
|
|
|
await secured_conn.close()
|
2019-08-21 23:04:59 +08:00
|
|
|
raise SwarmException(
|
|
|
|
f"fail to upgrade the connection to a muxed connection from {peer_id}"
|
|
|
|
) from error
|
2019-02-25 09:58:23 +08:00
|
|
|
# Store muxed_conn with peer id
|
|
|
|
self.connections[peer_id] = muxed_conn
|
2019-03-01 07:18:58 +08:00
|
|
|
# Call notifiers since event occurred
|
|
|
|
for notifee in self.notifees:
|
2019-03-01 08:11:04 +08:00
|
|
|
await notifee.connected(self, muxed_conn)
|
2019-03-01 07:18:58 +08:00
|
|
|
|
2018-11-12 09:29:17 +08:00
|
|
|
try:
|
|
|
|
# Success
|
|
|
|
listener = self.transport.create_listener(conn_handler)
|
2019-08-17 21:41:17 +08:00
|
|
|
self.listeners[str(maddr)] = listener
|
|
|
|
await listener.listen(maddr)
|
2019-03-01 07:18:58 +08:00
|
|
|
|
|
|
|
# Call notifiers since event occurred
|
|
|
|
for notifee in self.notifees:
|
2019-08-17 21:41:17 +08:00
|
|
|
await notifee.listen(self, maddr)
|
2019-03-01 07:18:58 +08:00
|
|
|
|
2018-11-12 09:29:17 +08:00
|
|
|
return True
|
|
|
|
except IOError:
|
|
|
|
# Failed. Continue looping.
|
2019-08-17 21:41:17 +08:00
|
|
|
print("Failed to connect to: " + str(maddr))
|
2018-11-12 09:29:17 +08:00
|
|
|
|
2019-08-17 21:41:17 +08:00
|
|
|
# No maddr succeeded
|
2018-11-12 09:29:17 +08:00
|
|
|
return False
|
2018-11-12 05:42:10 +08:00
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
def notify(self, notifee: INotifee) -> bool:
|
2019-03-01 07:18:58 +08:00
|
|
|
"""
|
|
|
|
:param notifee: object implementing Notifee interface
|
2019-03-15 02:01:37 +08:00
|
|
|
:return: true if notifee registered successfully, false otherwise
|
2019-03-01 07:18:58 +08:00
|
|
|
"""
|
2019-03-15 00:47:40 +08:00
|
|
|
if isinstance(notifee, INotifee):
|
|
|
|
self.notifees.append(notifee)
|
2019-03-15 02:01:37 +08:00
|
|
|
return True
|
|
|
|
return False
|
2019-03-01 07:18:58 +08:00
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
def add_router(self, router: IPeerRouting) -> None:
|
2019-04-25 10:11:54 +08:00
|
|
|
self.router = router
|
|
|
|
|
2019-08-29 21:38:06 +08:00
|
|
|
async def close(self) -> None:
|
|
|
|
# TODO: Prevent from new listeners and conns being added.
|
|
|
|
# Reference: https://github.com/libp2p/go-libp2p-swarm/blob/8be680aef8dea0a4497283f2f98470c2aeae6b65/swarm.go#L124-L134 # noqa: E501
|
2019-07-22 18:12:54 +08:00
|
|
|
|
2019-08-29 21:38:06 +08:00
|
|
|
# Close listeners
|
|
|
|
await asyncio.gather(
|
|
|
|
*[listener.close() for listener in self.listeners.values()]
|
|
|
|
)
|
|
|
|
|
|
|
|
# Close connections
|
|
|
|
await asyncio.gather(
|
|
|
|
*[connection.close() for connection in self.connections.values()]
|
|
|
|
)
|
|
|
|
|
|
|
|
async def close_peer(self, peer_id: ID) -> None:
|
2019-08-31 22:37:59 +08:00
|
|
|
if peer_id not in self.connections:
|
|
|
|
return
|
2019-08-29 21:38:06 +08:00
|
|
|
connection = self.connections[peer_id]
|
|
|
|
del self.connections[peer_id]
|
|
|
|
await connection.close()
|
2019-07-22 18:12:54 +08:00
|
|
|
|
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
def create_generic_protocol_handler(swarm: Swarm) -> GenericProtocolHandlerFn:
|
2019-02-25 09:58:23 +08:00
|
|
|
"""
|
|
|
|
Create a generic protocol handler from the given swarm. We use swarm
|
|
|
|
to extract the multiselect module so that generic_protocol_handler
|
|
|
|
can use multiselect when generic_protocol_handler is called
|
|
|
|
from a different class
|
|
|
|
"""
|
|
|
|
multiselect = swarm.multiselect
|
|
|
|
|
2019-07-30 23:41:28 +08:00
|
|
|
async def generic_protocol_handler(muxed_stream: IMuxedStream) -> None:
|
2019-02-25 09:58:23 +08:00
|
|
|
# Perform protocol muxing to determine protocol to use
|
2019-08-15 23:31:26 +08:00
|
|
|
protocol, handler = await multiselect.negotiate(
|
2019-09-05 23:24:17 +08:00
|
|
|
MultiselectCommunicator(muxed_stream)
|
2019-08-15 23:31:26 +08:00
|
|
|
)
|
2019-03-24 01:52:02 +08:00
|
|
|
|
|
|
|
net_stream = NetStream(muxed_stream)
|
|
|
|
net_stream.set_protocol(protocol)
|
2019-02-25 09:58:23 +08:00
|
|
|
|
2019-03-15 00:47:40 +08:00
|
|
|
# Call notifiers since event occurred
|
|
|
|
for notifee in swarm.notifees:
|
2019-03-24 01:52:02 +08:00
|
|
|
await notifee.opened_stream(swarm, net_stream)
|
2019-03-15 00:47:40 +08:00
|
|
|
|
2019-02-25 09:58:23 +08:00
|
|
|
# Give to stream handler
|
2019-03-24 01:52:02 +08:00
|
|
|
asyncio.ensure_future(handler(net_stream))
|
2019-02-25 09:58:23 +08:00
|
|
|
|
|
|
|
return generic_protocol_handler
|