nim-eth/eth/p2p/discoveryv5/node.nim

97 lines
2.5 KiB
Nim
Raw Normal View History

import
std/hashes,
2020-10-23 14:41:44 +00:00
nimcrypto, stint, chronos, stew/shims/net, chronicles,
eth/keys, enr
2019-12-16 19:38:45 +00:00
{.push raises: [Defect].}
2019-12-16 19:38:45 +00:00
type
NodeId* = UInt256
Address* = object
ip*: ValidIpAddress
port*: Port
2019-12-16 19:38:45 +00:00
Node* = ref object
id*: NodeId
pubkey*: PublicKey
address*: Option[Address]
2019-12-16 19:38:45 +00:00
record*: Record
seen*: bool ## Indicates if there was at least one successful
## request-response with this node.
2019-12-16 19:38:45 +00:00
2020-10-23 14:41:44 +00:00
func toNodeId*(pk: PublicKey): NodeId =
## Convert public key to a node identifier.
readUintBE[256](keccak256.digest(pk.toRaw()).data)
2019-12-16 19:38:45 +00:00
2020-10-23 14:41:44 +00:00
func newNode*(r: Record): Result[Node, cstring] =
## Create a new `Node` from a `Record`.
2019-12-16 19:38:45 +00:00
# TODO: Handle IPv6
let pk = r.get(PublicKey)
# This check is redundant for a properly created record as the deserialization
# of a record will fail at `verifySignature` if there is no public key.
if pk.isNone():
return err("Could not recover public key from ENR")
# Also this can not fail for a properly created record as id is checked upon
# deserialization.
let tr = ? r.toTypedRecord()
if tr.ip.isSome() and tr.udp.isSome():
let a = Address(ip: ipv4(tr.ip.get()), port: Port(tr.udp.get()))
ok(Node(id: pk.get().toNodeId(), pubkey: pk.get() , record: r,
address: some(a)))
else:
ok(Node(id: pk.get().toNodeId(), pubkey: pk.get(), record: r,
address: none(Address)))
2019-12-16 19:38:45 +00:00
2020-10-23 14:41:44 +00:00
func hash*(n: Node): hashes.Hash = hash(n.pubkey.toRaw)
func `==`*(a, b: Node): bool =
(a.isNil and b.isNil) or
(not a.isNil and not b.isNil and a.pubkey == b.pubkey)
2020-10-23 14:41:44 +00:00
func `$`*(id: NodeId): string =
2020-07-15 13:27:22 +00:00
id.toHex()
2020-10-23 14:41:44 +00:00
func shortLog*(id: NodeId): string =
## Returns compact string representation of ``id``.
var sid = $id
if len(sid) <= 10:
result = sid
else:
result = newStringOfCap(10)
for i in 0..<2:
result.add(sid[i])
result.add("*")
for i in (len(sid) - 6)..sid.high:
result.add(sid[i])
chronicles.formatIt(NodeId): shortLog(it)
func `$`*(a: Address): string =
result.add($a.ip)
result.add(":" & $a.port)
2020-10-23 14:41:44 +00:00
func shortLog*(n: Node): string =
if n.isNil:
"uninitialized"
elif n.address.isNone():
2020-10-23 14:41:44 +00:00
shortLog(n.id) & ":unaddressable"
2019-12-16 19:38:45 +00:00
else:
2020-10-23 14:41:44 +00:00
shortLog(n.id) & ":" & $n.address.get()
chronicles.formatIt(Node): shortLog(it)
func shortLog*(nodes: seq[Node]): string =
result = "["
var first = true
for n in nodes:
if first:
first = false
else:
result.add(", ")
result.add(shortLog(n))
result.add("]")
chronicles.formatIt(seq[Node]): shortLog(it)