This specification defines the Node Discovery protocol version 4, a Kademlia-like DHT that stores information about Ethereum nodes. The Kademlia structure was chosen because it is an efficient way to organize a distributed index of nodes and yields a topology of low diameter.
The current protocol version is 4. You can find a list of changes in past protocol versions at the end of this document.
Every node has a cryptographic identity, a key on the elliptic curve secp256k1. The public key of the node serves as its identifier or 'node ID'.
The 'distance' between two node IDs is the bitwise exclusive or on the hashes of the public keys, taken as the number.
distance(n₁, n₂) = keccak256(n₁) XOR keccak256(n₂)
Nodes in the Discovery Protocol keep information about other nodes in their neighborhood.
Neighbor nodes are stored in a routing table consisting of 'k-buckets'. For each 0 ≤ i < 256
, every node keeps a k-bucket for nodes of distance between 2i
and 2i+1
from
itself.
The Node Discovery Protocol uses k = 16
, i.e. every k-bucket contains up to 16 node
entries. The entries are sorted by time last seen — least-recently seen node at the head,
most-recently seen at the tail.
Whenever a new node N₁ is encountered, it can be inserted into the corresponding bucket.
If the bucket contains less than k
entries N₁ can simply be added as the first entry. If
the bucket already contains k
entries, the least recently seen node in the bucket, N₂,
needs to be revalidated by sending a ping packet. If no reply is received from N₂ it is
considered dead, removed and N₁ added to the front of the bucket.
To prevent traffic amplification attacks, implementations must verify that the sender of a query participates in the discovery protocol. The sender of a packet is considered verified if it has sent a valid pong response with matching ping hash within the last 12 hours.
A 'lookup' locates the k
closest nodes to a node ID.
The lookup initiator starts by picking α
closest nodes to the target it knows of. The
initiator then sends concurrent FindNode packets to those nodes. α
is a system-wide
concurrency parameter, such as 3. In the recursive step, the initiator resends FindNode to
nodes it has learned about from previous queries. Of the k
nodes the initiator has heard
of closest to the target, it picks α
that it has not yet queried and resends FindNode
to them. Nodes that fail to respond quickly are removed from consideration until and
unless they do respond.
If a round of FindNode queries fails to return a node any closer than the closest already
seen, the initiator resends the find node to all of the k
closest nodes it has not
already queried. The lookup terminates when the initiator has queried and gotten responses
from the k
closest nodes it has seen.
Node discovery messages are sent as UDP datagrams. The maximum size of any packet is 1280 bytes.
packet = packet-header || packet-data
Every packet starts with a header:
packet-header = hash || signature || packet-type
hash = keccak256(signature || packet-type || packet-data)
signature = sign(packet-type || packet-data)
The hash
exists to make the packet format recognizable when running multiple protocols
on the same UDP port. It serves no other purpose.
Every packet is signed by the node's identity key. The signature
is encoded as a byte
array of length 65 as the concatenation of the signature values r
, s
and the 'recovery
id' v
.
The packet-type
is a single byte defining the type of message. Valid packet types are
listed below. Data after the header is specific to the packet type and is encoded as an
RLP list. Implementations should ignore any additional elements in the packet-data
list
as well as any extra data after the list.
packet-data = [version, from, to, expiration, ...]
version = 4
from = [sender-ip, sender-udp-port, sender-tcp-port]
to = [recipient-ip, recipient-udp-port, 0]
The expiration
field is an absolute UNIX time stamp. Packets containing a time stamp
that lies in the past are expired may not be processed.
When a ping packet is received, the recipient should reply with a Pong packet. It may also consider the sender for addition into the node table. Implementations should ignore any mismatches in version.
If no communication with the sender has occurred within the last 12h, a ping should be sent in addition to pong in order to receive an endpoint proof.
packet-data = [to, ping-hash, expiration, ...]
Pong is the reply to ping.
ping-hash
should be equal to hash
of the corresponding ping packet. Implementations
should ignore unsolicited pong packets that do not contain the hash of the most recent
ping packet.
packet-data = [target, expiration, ...]
A FindNode packet requests information about nodes close to target
. The target
is a
65-byte secp256k1 public key. When FindNode is received, the recipient should reply with
Neighbors packets containing the closest 16 nodes to target found in its local table.
To guard against traffic amplification attacks, Neighbors replies should only be sent if the sender of FindNode has been verified by the endpoint proof procedure.
packet-data = [nodes, expiration, ...]
nodes = [[ip, udp-port, tcp-port, node-id], ...]
Neighbors is the reply to FindNode.
The expiration
field present in all packets is supposed to prevent packet replay. Since
it is an absolute time stamp, the node's clock must be accurate to verify it correctly.
Since the protocol's launch in 2016 we have received countless reports about connectivity
issues related to the user's clock being wrong.
The endpoint proof is imprecise because the sender of FindNode can never be sure whether the recipient has seen a recent enough pong. Geth handles it as follows: If no communication with the recipient has occurred within the last 12h, initiate the procedure by sending a ping. Wait for a ping from the other side, reply to it and then send FindNode.
EIP-8 mandated that implementations ignore mismatches in Ping version and any additional
list elements in packet-data
.