2019-02-25 09:58:23 +08:00
|
|
|
import asyncio
|
2019-07-28 14:06:29 +08:00
|
|
|
from typing import (
|
|
|
|
Any,
|
|
|
|
Callable,
|
|
|
|
Coroutine,
|
|
|
|
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-28 14:06:29 +08:00
|
|
|
from libp2p.peer.id import (
|
|
|
|
ID,
|
|
|
|
id_b58_decode,
|
|
|
|
)
|
|
|
|
from libp2p.peer.peerstore import PeerStore
|
|
|
|
from libp2p.protocol_muxer.multiselect import Multiselect
|
|
|
|
from libp2p.protocol_muxer.multiselect_client import MultiselectClient
|
|
|
|
from libp2p.routing.interfaces import IPeerRouting
|
|
|
|
from libp2p.transport.upgrader import TransportUpgrader
|
|
|
|
from libp2p.transport.transport_interface import ITransport
|
|
|
|
from libp2p.transport.listener_interface import IListener
|
|
|
|
from libp2p.stream_muxer.muxed_connection_interface import IMuxedConn
|
|
|
|
|
2019-07-28 22:30:51 +08:00
|
|
|
from libp2p.stream_muxer.mplex.mplex_stream import MplexStream
|
|
|
|
|
|
|
|
from .network_interface import INetwork
|
|
|
|
from .notifee_interface import INotifee
|
|
|
|
from .connection.raw_connection import RawConnection
|
|
|
|
from .stream.net_stream import NetStream
|
|
|
|
|
2018-10-15 01:47:06 +08:00
|
|
|
|
2018-10-15 13:52:25 +08:00
|
|
|
class Swarm(INetwork):
|
2019-04-29 03:00:43 +08:00
|
|
|
# pylint: disable=too-many-instance-attributes,cell-var-from-loop,too-many-arguments
|
2018-10-15 13:52:25 +08:00
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
self_id: ID
|
|
|
|
peerstore: PeerStore
|
|
|
|
upgrader: TransportUpgrader
|
|
|
|
transport: ITransport
|
|
|
|
router: IPeerRouting
|
|
|
|
connections: Dict[ID, IMuxedConn]
|
|
|
|
listeners: Dict[str, IListener]
|
|
|
|
stream_handlers: Dict[NetStream, Callable[[NetStream], None]]
|
|
|
|
|
|
|
|
multiselect: Multiselect
|
|
|
|
multiselect_client: MultiselectClient
|
|
|
|
|
|
|
|
notifees: List[INotifee]
|
|
|
|
|
|
|
|
def __init__(self,
|
|
|
|
peer_id: ID,
|
|
|
|
peerstore: PeerStore,
|
|
|
|
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-07-28 14:30:15 +08:00
|
|
|
def set_stream_handler(self, protocol_id: str, stream_handler: Callable[[NetStream], Coroutine[Any, Any, None]]) -> 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
|
|
|
|
:raises SwarmException: raised when no address if found for peer_id
|
|
|
|
:return: muxed connection
|
2018-11-01 05:40:01 +08:00
|
|
|
"""
|
2018-11-29 23:06:40 +08:00
|
|
|
|
2018-11-13 00:00:43 +08:00
|
|
|
# Get peer info from peer store
|
|
|
|
addrs = self.peerstore.addrs(peer_id)
|
|
|
|
|
|
|
|
if not addrs:
|
|
|
|
raise SwarmException("No known addresses to peer")
|
|
|
|
|
2019-04-25 10:11:54 +08:00
|
|
|
if not self.router:
|
|
|
|
multiaddr = addrs[0]
|
|
|
|
else:
|
|
|
|
multiaddr = self.router.find_peer(peer_id)
|
2018-11-13 00:00:43 +08:00
|
|
|
|
2018-11-01 05:40:01 +08:00
|
|
|
if peer_id in self.connections:
|
2018-11-13 02:02:49 +08:00
|
|
|
# If muxed connection already exists for peer_id,
|
|
|
|
# set muxed connection equal to existing muxed connection
|
2018-11-12 05:42:10 +08:00
|
|
|
muxed_conn = self.connections[peer_id]
|
2018-11-01 05:40:01 +08:00
|
|
|
else:
|
2019-03-01 07:18:58 +08:00
|
|
|
# Dial peer (connection to peer does not yet exist)
|
2018-11-12 05:42:10 +08:00
|
|
|
# Transport dials peer (gets back a raw conn)
|
2019-02-25 09:58:23 +08:00
|
|
|
raw_conn = await self.transport.dial(multiaddr, self.self_id)
|
2018-11-12 05:42:10 +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
|
|
|
|
secured_conn = await self.upgrader.upgrade_security(raw_conn, peer_id, True)
|
|
|
|
muxed_conn = self.upgrader.upgrade_connection(secured_conn, \
|
2019-03-24 01:52:02 +08:00
|
|
|
self.generic_protocol_handler, peer_id)
|
2018-11-12 05:42:10 +08:00
|
|
|
|
|
|
|
# Store muxed connection in connections
|
|
|
|
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-29 23:06:40 +08:00
|
|
|
return muxed_conn
|
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
async def new_stream(self, peer_id: ID, protocol_ids: Sequence[str]) -> 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
|
|
|
|
"""
|
|
|
|
# Get peer info from peer store
|
|
|
|
addrs = self.peerstore.addrs(peer_id)
|
|
|
|
|
|
|
|
if not addrs:
|
|
|
|
raise SwarmException("No known addresses to peer")
|
|
|
|
|
|
|
|
multiaddr = addrs[0]
|
|
|
|
|
|
|
|
muxed_conn = await self.dial_peer(peer_id)
|
|
|
|
|
2018-11-12 05:42:10 +08:00
|
|
|
# Use muxed conn to open stream, which returns
|
|
|
|
# a muxed stream
|
2018-11-29 02:51:50 +08:00
|
|
|
# TODO: Remove protocol id from being passed into muxed_conn
|
2019-02-25 09:58:23 +08:00
|
|
|
muxed_stream = await muxed_conn.open_stream(protocol_ids[0], multiaddr)
|
2018-11-29 02:51:50 +08:00
|
|
|
|
|
|
|
# Perform protocol muxing to determine protocol to use
|
2019-07-28 14:06:29 +08:00
|
|
|
selected_protocol = await self.multiselect_client.select_one_of(list(protocol_ids), muxed_stream)
|
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-07-28 14:06:29 +08:00
|
|
|
async def listen(self, *args: Multiaddr) -> bool:
|
2018-10-22 01:51:55 +08:00
|
|
|
"""
|
|
|
|
:param *args: one or many multiaddrs to start listening on
|
|
|
|
:return: true if at least one success
|
2018-11-13 02:02:49 +08:00
|
|
|
|
2018-11-13 00:00:43 +08:00
|
|
|
For each multiaddr in args
|
|
|
|
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
|
|
|
|
"""
|
2018-11-29 23:06:40 +08:00
|
|
|
for multiaddr in args:
|
|
|
|
if str(multiaddr) in self.listeners:
|
2018-11-12 09:29:17 +08:00
|
|
|
return True
|
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
async def conn_handler(reader: asyncio.StreamReader, writer: asyncio.StreamWriter) -> None:
|
2019-02-25 09:58:23 +08:00
|
|
|
# Read in first message (should be peer_id of initiator) and ack
|
|
|
|
peer_id = id_b58_decode((await reader.read(1024)).decode())
|
|
|
|
|
|
|
|
writer.write("received peer id".encode())
|
|
|
|
await writer.drain()
|
|
|
|
|
2018-11-13 02:02:49 +08:00
|
|
|
# Upgrade reader/write to a net_stream and pass \
|
|
|
|
# to appropriate stream handler (using multiaddr)
|
2018-11-29 23:06:40 +08:00
|
|
|
raw_conn = RawConnection(multiaddr.value_for_protocol('ip4'),
|
2018-11-30 02:42:05 +08:00
|
|
|
multiaddr.value_for_protocol('tcp'), 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
|
|
|
|
secured_conn = await self.upgrader.upgrade_security(raw_conn, peer_id, False)
|
|
|
|
muxed_conn = self.upgrader.upgrade_connection(secured_conn, \
|
2019-03-24 01:52:02 +08:00
|
|
|
self.generic_protocol_handler, peer_id)
|
2018-11-29 02:51:50 +08:00
|
|
|
|
2019-02-25 09:58:23 +08:00
|
|
|
# Store muxed_conn with peer id
|
|
|
|
self.connections[peer_id] = muxed_conn
|
2018-11-12 09:29:17 +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.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)
|
2018-11-29 23:06:40 +08:00
|
|
|
self.listeners[str(multiaddr)] = listener
|
2018-11-13 00:00:43 +08:00
|
|
|
await listener.listen(multiaddr)
|
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.listen(self, multiaddr)
|
2019-03-01 07:18:58 +08:00
|
|
|
|
2018-11-12 09:29:17 +08:00
|
|
|
return True
|
|
|
|
except IOError:
|
|
|
|
# Failed. Continue looping.
|
2018-11-13 00:00:43 +08:00
|
|
|
print("Failed to connect to: " + str(multiaddr))
|
2018-11-12 09:29:17 +08:00
|
|
|
|
|
|
|
# No multiaddr succeeded
|
|
|
|
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-07-22 18:12:54 +08:00
|
|
|
# TODO: `tear_down`
|
|
|
|
async def tear_down(self) -> None:
|
|
|
|
# pylint: disable=line-too-long
|
|
|
|
# Reference: https://github.com/libp2p/go-libp2p-swarm/blob/8be680aef8dea0a4497283f2f98470c2aeae6b65/swarm.go#L118 # noqa: E501
|
|
|
|
pass
|
|
|
|
|
|
|
|
# TODO: `disconnect`?
|
|
|
|
|
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
GenericProtocolHandlerFn = Callable[[MplexStream], Coroutine[Any, Any, None]]
|
|
|
|
|
|
|
|
|
|
|
|
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-28 14:06:29 +08:00
|
|
|
async def generic_protocol_handler(muxed_stream: MplexStream) -> None:
|
2019-02-25 09:58:23 +08:00
|
|
|
# Perform protocol muxing to determine protocol to use
|
2019-03-24 01:52:02 +08:00
|
|
|
protocol, handler = await multiselect.negotiate(muxed_stream)
|
|
|
|
|
|
|
|
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
|
2018-11-29 23:06:40 +08:00
|
|
|
|
2019-07-28 14:06:29 +08:00
|
|
|
|
2018-11-12 05:42:10 +08:00
|
|
|
class SwarmException(Exception):
|
|
|
|
pass
|