![Build Status] ![Doc Status] ![Crates Status]
This is a rust implementation of the Discovery v5 peer discovery protocol.
Discovery v5 is a protocol designed for encrypted peer discovery and topic advertisement. Each peer/node on the network is identified via it's 'ENR' (Ethereum Name Record), which is essentially a signed key-value store containing the node's public key and optionally IP address and port.
Discv5 employs a kademlia-like routing table to store and manage discovered peers and topics. The protocol allows for external IP discovery in NAT environments through regular PING/PONG's with discovered nodes. Nodes return the external IP address that they have received and a simple majority is chosen as our external IP address. If an external IP address is updated, this is produced as an event to notify the swarm (if one is used for this behaviour).
For a simple CLI discovery service see discv5-cli
The Discv5
service implements Stream
which emits Discv5Event
events. Running a
discv5 service is as simple as initialising a Discv5
struct and driving the stream.
A simple example of creating this service is as follows:
```rust use enr::{Enr,EnrBuilder, CombinedKey}; use std::net::Ipv4Addr; use discv5::{Discv5, Discv5Config, Discv5Event}; use futures::prelude::*;
async fn main() { // generate a key for the node let enrkey = CombinedKey::generatesecp256k1();
// construct a local ENR
let enr = EnrBuilder::new("v4")
.ip("127.0.0.1".parse::
// display the ENR's node id and base64 encoding
println!("Node Id: {}", enr.node_id());
println!("Base64 ENR: {}", enr.to_base64());
// listen on the UDP socket of the ENR
let listen_address = enr.udp_socket().unwrap();
// use default settings for the discv5 service
let config = Discv5Config::default();
// construct the discv5 service let mut discv5 = Discv5::new(enr, enrkey, config, listenaddress).unwrap();
// add another node's ENR to connect to and join an existing DHT
discv5.addenr("-IS4QKXYSAtVY5dwZneGdrMnuvjnhG3TQM8P8RHW1ZMbdOBsMfKQoZvEe9PqsYgKAb5afYVffn8iCxptuwUamV98d8IBgmlkgnY0gmlwhAAAAACJc2VjcDI1NmsxoQPKY0yuDUmstAHYpMa2oxVtw0RW_QAdpzBQA8yWM0xOIN1ZHCCIyg".parse::
// search peers closest to a target
let target_random_node_id = enr::NodeId::random();
discv5.find_node(target_random_node_id);
// poll the stream for the next FindNoeResult event loop { match discv5.next().await { Some(Discv5Event::FindNodeResult { closerpeers, .. }) => { println!("Query completed. Found {} peers", closerpeers.len()); break; } _ => {} // handle other discv5 events } } } ```
To see a usage in a runtime environment, see the find_nodes
example in /examples
.
This protocol is split into three main sections/layers:
Discv5Service
] struct. It encodes/decodes [Packet
]'s to and from the specified UDP
socket.AES_GCM
. All node communication
undergoes a handshake, which results in a [Session
]. [Session
]'s are established when
needed and get dropped after a timeout. This section manages the creation and maintenance of
sessions between nodes. It is realised by the [SessionService
] struct.Behaviour - This section contains the protocol-level logic. In particular it manages the
routing table of known ENR's, topic registration/advertisement and performs various queries
such as peer discovery. This section is realised by the [Discv5
] struct.
Note - Currently only secp256k1
keys are supported.