mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
276 lines
8.9 KiB
Python
276 lines
8.9 KiB
Python
import logging
|
|
|
|
from multiaddr import (
|
|
Multiaddr,
|
|
)
|
|
import trio
|
|
|
|
from libp2p.abc import (
|
|
IHost,
|
|
INetStream,
|
|
IPeerStore,
|
|
)
|
|
from libp2p.crypto.serialization import (
|
|
deserialize_public_key,
|
|
)
|
|
from libp2p.custom_types import (
|
|
StreamHandlerFn,
|
|
TProtocol,
|
|
)
|
|
from libp2p.network.stream.exceptions import (
|
|
StreamClosed,
|
|
)
|
|
from libp2p.peer.id import (
|
|
ID,
|
|
)
|
|
from libp2p.utils import (
|
|
get_agent_version,
|
|
varint,
|
|
)
|
|
from libp2p.utils.varint import (
|
|
decode_varint_from_bytes,
|
|
)
|
|
|
|
from ..identify.identify import (
|
|
_mk_identify_protobuf,
|
|
)
|
|
from ..identify.pb.identify_pb2 import (
|
|
Identify,
|
|
)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# Protocol ID for identify/push
|
|
ID_PUSH = TProtocol("/ipfs/id/push/1.0.0")
|
|
PROTOCOL_VERSION = "ipfs/0.1.0"
|
|
AGENT_VERSION = get_agent_version()
|
|
CONCURRENCY_LIMIT = 10
|
|
|
|
|
|
def identify_push_handler_for(
|
|
host: IHost, use_varint_format: bool = True
|
|
) -> StreamHandlerFn:
|
|
"""
|
|
Create a handler for the identify/push protocol.
|
|
|
|
This handler receives pushed identify messages from remote peers and updates
|
|
the local peerstore with the new information.
|
|
|
|
Args:
|
|
host: The libp2p host.
|
|
use_varint_format: True=length-prefixed, False=raw protobuf.
|
|
|
|
"""
|
|
|
|
async def handle_identify_push(stream: INetStream) -> None:
|
|
peer_id = stream.muxed_conn.peer_id
|
|
|
|
try:
|
|
if use_varint_format:
|
|
# Read length-prefixed identify message from the stream
|
|
# First read the varint length prefix
|
|
length_bytes = b""
|
|
while True:
|
|
b = await stream.read(1)
|
|
if not b:
|
|
break
|
|
length_bytes += b
|
|
if b[0] & 0x80 == 0:
|
|
break
|
|
|
|
if not length_bytes:
|
|
logger.warning("No length prefix received from peer %s", peer_id)
|
|
return
|
|
|
|
msg_length = decode_varint_from_bytes(length_bytes)
|
|
|
|
# Read the protobuf message
|
|
data = await stream.read(msg_length)
|
|
if len(data) != msg_length:
|
|
logger.warning("Incomplete message received from peer %s", peer_id)
|
|
return
|
|
else:
|
|
# Read raw protobuf message from the stream
|
|
# For raw format, we need to read all data before the stream is closed
|
|
data = b""
|
|
try:
|
|
# Read all available data in a single operation
|
|
data = await stream.read()
|
|
except StreamClosed:
|
|
# Try to read any remaining data
|
|
try:
|
|
data = await stream.read()
|
|
except Exception:
|
|
pass
|
|
|
|
# If we got no data, log a warning and return
|
|
if not data:
|
|
logger.warning(
|
|
"No data received in raw format from peer %s", peer_id
|
|
)
|
|
return
|
|
|
|
identify_msg = Identify()
|
|
identify_msg.ParseFromString(data)
|
|
|
|
# Update the peerstore with the new information
|
|
await _update_peerstore_from_identify(
|
|
host.get_peerstore(), peer_id, identify_msg
|
|
)
|
|
|
|
logger.debug("Successfully processed identify/push from peer %s", peer_id)
|
|
except StreamClosed:
|
|
logger.debug(
|
|
"Stream closed while processing identify/push from %s", peer_id
|
|
)
|
|
except Exception as e:
|
|
logger.error("Error processing identify/push from %s: %s", peer_id, e)
|
|
finally:
|
|
# Close the stream after processing
|
|
await stream.close()
|
|
|
|
return handle_identify_push
|
|
|
|
|
|
async def _update_peerstore_from_identify(
|
|
peerstore: IPeerStore, peer_id: ID, identify_msg: Identify
|
|
) -> None:
|
|
"""
|
|
Update the peerstore with information from an identify message.
|
|
|
|
This function handles partial updates, where only some fields may be present
|
|
in the identify message.
|
|
"""
|
|
# Update public key if present
|
|
if identify_msg.HasField("public_key"):
|
|
try:
|
|
# Note: This assumes the peerstore has a method to update the public key
|
|
# You may need to adjust this based on your actual peerstore implementation
|
|
peerstore.add_protocols(peer_id, [])
|
|
# The actual public key update would go here
|
|
pubkey = deserialize_public_key(identify_msg.public_key)
|
|
peerstore.add_pubkey(peer_id, pubkey)
|
|
except Exception as e:
|
|
logger.error("Error updating public key for peer %s: %s", peer_id, e)
|
|
|
|
# Update listen addresses if present
|
|
if identify_msg.listen_addrs:
|
|
try:
|
|
# Convert bytes to Multiaddr objects
|
|
addrs = [Multiaddr(addr) for addr in identify_msg.listen_addrs]
|
|
# Add the addresses to the peerstore
|
|
for addr in addrs:
|
|
# Use a default TTL of 2 hours (7200 seconds)
|
|
peerstore.add_addr(peer_id, addr, 7200)
|
|
except Exception as e:
|
|
logger.error("Error updating listen addresses for peer %s: %s", peer_id, e)
|
|
|
|
# Update protocols if present
|
|
if identify_msg.protocols:
|
|
try:
|
|
# Add the protocols to the peerstore
|
|
peerstore.add_protocols(peer_id, identify_msg.protocols)
|
|
except Exception as e:
|
|
logger.error("Error updating protocols for peer %s: %s", peer_id, e)
|
|
|
|
# Update observed address if present
|
|
if identify_msg.HasField("observed_addr") and identify_msg.observed_addr:
|
|
try:
|
|
# Convert bytes to Multiaddr object
|
|
observed_addr = Multiaddr(identify_msg.observed_addr)
|
|
# Add the observed address to the peerstore
|
|
# Use a default TTL of 2 hours (7200 seconds)
|
|
peerstore.add_addr(peer_id, observed_addr, 7200)
|
|
except Exception as e:
|
|
logger.error("Error updating observed address for peer %s: %s", peer_id, e)
|
|
|
|
|
|
async def push_identify_to_peer(
|
|
host: IHost,
|
|
peer_id: ID,
|
|
observed_multiaddr: Multiaddr | None = None,
|
|
limit: trio.Semaphore = trio.Semaphore(CONCURRENCY_LIMIT),
|
|
use_varint_format: bool = True,
|
|
) -> bool:
|
|
"""
|
|
Push an identify message to a specific peer.
|
|
|
|
This function opens a stream to the peer using the identify/push protocol,
|
|
sends the identify message, and closes the stream.
|
|
|
|
Args:
|
|
host: The libp2p host.
|
|
peer_id: The peer ID to push to.
|
|
observed_multiaddr: The observed multiaddress (optional).
|
|
limit: Semaphore for concurrency control.
|
|
use_varint_format: True=length-prefixed, False=raw protobuf.
|
|
|
|
Returns:
|
|
bool: True if the push was successful, False otherwise.
|
|
|
|
"""
|
|
async with limit:
|
|
try:
|
|
# Create a new stream to the peer using the identify/push protocol
|
|
stream = await host.new_stream(peer_id, [ID_PUSH])
|
|
|
|
# Create the identify message
|
|
identify_msg = _mk_identify_protobuf(host, observed_multiaddr)
|
|
response = identify_msg.SerializeToString()
|
|
|
|
if use_varint_format:
|
|
# Send length-prefixed identify message
|
|
await stream.write(varint.encode_uvarint(len(response)))
|
|
await stream.write(response)
|
|
else:
|
|
# Send raw protobuf message
|
|
await stream.write(response)
|
|
|
|
# Close the stream
|
|
await stream.close()
|
|
|
|
logger.debug("Successfully pushed identify to peer %s", peer_id)
|
|
return True
|
|
except Exception as e:
|
|
logger.error("Error pushing identify to peer %s: %s", peer_id, e)
|
|
return False
|
|
|
|
|
|
async def push_identify_to_peers(
|
|
host: IHost,
|
|
peer_ids: set[ID] | None = None,
|
|
observed_multiaddr: Multiaddr | None = None,
|
|
use_varint_format: bool = True,
|
|
) -> None:
|
|
"""
|
|
Push an identify message to multiple peers in parallel.
|
|
|
|
If peer_ids is None, push to all connected peers.
|
|
|
|
Args:
|
|
host: The libp2p host.
|
|
peer_ids: Set of peer IDs to push to (if None, push to all connected peers).
|
|
observed_multiaddr: The observed multiaddress (optional).
|
|
use_varint_format: True=length-prefixed, False=raw protobuf.
|
|
|
|
"""
|
|
if peer_ids is None:
|
|
# Get all connected peers
|
|
peer_ids = set(host.get_connected_peers())
|
|
|
|
# Create a single shared semaphore for concurrency control
|
|
limit = trio.Semaphore(CONCURRENCY_LIMIT)
|
|
|
|
# Push to each peer in parallel using a trio.Nursery
|
|
# limiting concurrent connections to CONCURRENCY_LIMIT
|
|
async with trio.open_nursery() as nursery:
|
|
for peer_id in peer_ids:
|
|
nursery.start_soon(
|
|
push_identify_to_peer,
|
|
host,
|
|
peer_id,
|
|
observed_multiaddr,
|
|
limit,
|
|
use_varint_format,
|
|
)
|