2019-03-05 22:54:08 +00:00
|
|
|
import
|
2019-05-22 07:13:15 +00:00
|
|
|
options, tables,
|
2019-06-12 18:22:05 +00:00
|
|
|
chronos, json_serialization, strutils, chronicles, eth/net/nat,
|
2019-03-18 03:54:08 +00:00
|
|
|
spec/digest, version, conf
|
2019-03-05 22:54:08 +00:00
|
|
|
|
|
|
|
const
|
2019-03-18 03:54:08 +00:00
|
|
|
clientId = "Nimbus beacon node v" & fullVersionStr()
|
2019-03-05 22:54:08 +00:00
|
|
|
|
2019-06-12 18:22:05 +00:00
|
|
|
export
|
|
|
|
version
|
|
|
|
|
|
|
|
let
|
|
|
|
globalListeningAddr = parseIpAddress("0.0.0.0")
|
|
|
|
|
|
|
|
proc setupNat(conf: BeaconNodeConf): tuple[ip: IpAddress,
|
|
|
|
tcpPort: Port,
|
|
|
|
udpPort: Port] =
|
|
|
|
# defaults
|
|
|
|
result.ip = globalListeningAddr
|
|
|
|
result.tcpPort = Port(conf.tcpPort)
|
|
|
|
result.udpPort = Port(conf.udpPort)
|
|
|
|
|
|
|
|
var nat: NatStrategy
|
|
|
|
case conf.nat.toLowerAscii:
|
|
|
|
of "any":
|
|
|
|
nat = NatAny
|
|
|
|
of "none":
|
|
|
|
nat = NatNone
|
|
|
|
of "upnp":
|
|
|
|
nat = NatUpnp
|
|
|
|
of "pmp":
|
|
|
|
nat = NatPmp
|
|
|
|
else:
|
|
|
|
if conf.nat.startsWith("extip:") and isIpAddress(conf.nat[6..^1]):
|
|
|
|
# any required port redirection is assumed to be done by hand
|
|
|
|
result.ip = parseIpAddress(conf.nat[6..^1])
|
|
|
|
nat = NatNone
|
|
|
|
else:
|
|
|
|
error "not a valid NAT mechanism, nor a valid IP address", value = conf.nat
|
|
|
|
quit(QuitFailure)
|
|
|
|
|
|
|
|
if nat != NatNone:
|
|
|
|
let extIP = getExternalIP(nat)
|
|
|
|
if extIP.isSome:
|
|
|
|
result.ip = extIP.get()
|
|
|
|
let extPorts = redirectPorts(tcpPort = result.tcpPort,
|
|
|
|
udpPort = result.udpPort,
|
|
|
|
description = clientId)
|
|
|
|
if extPorts.isSome:
|
|
|
|
(result.tcpPort, result.udpPort) = extPorts.get()
|
|
|
|
|
2019-05-31 18:36:32 +00:00
|
|
|
when networkBackend == rlpxBackend:
|
2019-03-05 22:54:08 +00:00
|
|
|
import
|
2019-03-18 03:54:08 +00:00
|
|
|
os,
|
2019-06-12 18:22:05 +00:00
|
|
|
eth/[rlp, p2p, keys], gossipsub_protocol,
|
2019-03-22 11:33:10 +00:00
|
|
|
eth/p2p/peer_pool # for log on connected peers
|
2019-03-05 22:54:08 +00:00
|
|
|
|
|
|
|
export
|
|
|
|
p2p, rlp, gossipsub_protocol
|
|
|
|
|
2019-03-19 19:50:22 +00:00
|
|
|
const
|
|
|
|
netBackendName* = "rlpx"
|
2019-06-03 17:07:50 +00:00
|
|
|
IrrelevantNetwork* = UselessPeer
|
2019-03-19 19:50:22 +00:00
|
|
|
|
2019-03-05 22:54:08 +00:00
|
|
|
type
|
|
|
|
Eth2Node* = EthereumNode
|
2019-05-22 07:13:15 +00:00
|
|
|
Eth2NodeIdentity* = KeyPair
|
2019-03-05 22:54:08 +00:00
|
|
|
BootstrapAddr* = ENode
|
|
|
|
|
2019-05-22 07:13:15 +00:00
|
|
|
proc getPersistentNetIdentity*(conf: BeaconNodeConf): Eth2NodeIdentity =
|
2019-03-18 03:54:08 +00:00
|
|
|
let privateKeyFile = conf.dataDir / "network.privkey"
|
|
|
|
var privKey: PrivateKey
|
|
|
|
if not fileExists(privateKeyFile):
|
|
|
|
privKey = newPrivateKey()
|
2019-03-19 17:22:17 +00:00
|
|
|
createDir conf.dataDir.string
|
2019-03-18 03:54:08 +00:00
|
|
|
writeFile(privateKeyFile, $privKey)
|
|
|
|
else:
|
|
|
|
privKey = initPrivateKey(readFile(privateKeyFile).string)
|
|
|
|
|
2019-03-19 17:22:17 +00:00
|
|
|
KeyPair(seckey: privKey, pubkey: privKey.getPublicKey())
|
|
|
|
|
|
|
|
proc getPersistenBootstrapAddr*(conf: BeaconNodeConf,
|
|
|
|
ip: IpAddress, port: Port): BootstrapAddr =
|
2019-03-05 22:54:08 +00:00
|
|
|
let
|
2019-05-22 07:13:15 +00:00
|
|
|
identity = getPersistentNetIdentity(conf)
|
2019-03-19 17:22:17 +00:00
|
|
|
address = Address(ip: ip, tcpPort: port, udpPort: port)
|
|
|
|
|
2019-05-22 07:13:15 +00:00
|
|
|
initENode(identity.pubKey, address)
|
|
|
|
|
|
|
|
proc isSameNode*(bootstrapNode: BootstrapAddr, id: Eth2NodeIdentity): bool =
|
|
|
|
bootstrapNode.pubKey == id.pubKey
|
|
|
|
|
|
|
|
proc shortForm*(id: Eth2NodeIdentity): string =
|
|
|
|
($id.pubKey)[0..5]
|
2019-03-19 17:22:17 +00:00
|
|
|
|
|
|
|
proc writeValue*(writer: var JsonWriter, value: BootstrapAddr) {.inline.} =
|
|
|
|
writer.writeValue $value
|
|
|
|
|
|
|
|
proc readValue*(reader: var JsonReader, value: var BootstrapAddr) {.inline.} =
|
|
|
|
value = initENode reader.readValue(string)
|
|
|
|
|
|
|
|
proc createEth2Node*(conf: BeaconNodeConf): Future[EthereumNode] {.async.} =
|
|
|
|
let
|
2019-05-22 07:13:15 +00:00
|
|
|
keys = getPersistentNetIdentity(conf)
|
2019-04-18 00:02:14 +00:00
|
|
|
(ip, tcpPort, udpPort) = setupNat(conf)
|
|
|
|
address = Address(ip: ip,
|
|
|
|
tcpPort: tcpPort,
|
|
|
|
udpPort: udpPort)
|
2019-03-05 22:54:08 +00:00
|
|
|
|
2019-03-19 17:22:17 +00:00
|
|
|
# TODO there are more networking options to add here: local bind ip, ipv6
|
|
|
|
# etc.
|
2019-03-12 13:14:30 +00:00
|
|
|
return newEthereumNode(keys, address, 0,
|
2019-03-28 11:56:44 +00:00
|
|
|
nil, clientId)
|
2019-03-05 22:54:08 +00:00
|
|
|
|
|
|
|
proc saveConnectionAddressFile*(node: Eth2Node, filename: string) =
|
|
|
|
writeFile(filename, $node.listeningAddress)
|
|
|
|
|
|
|
|
proc init*(T: type BootstrapAddr, str: string): T =
|
|
|
|
initENode(str)
|
|
|
|
|
2019-05-22 07:13:15 +00:00
|
|
|
func peersCount*(node: Eth2Node): int =
|
|
|
|
node.peerPool.len
|
2019-03-22 11:33:10 +00:00
|
|
|
|
2019-03-05 22:54:08 +00:00
|
|
|
else:
|
2019-06-03 17:07:50 +00:00
|
|
|
import
|
2019-06-12 12:23:05 +00:00
|
|
|
os, random, std_shims/io,
|
|
|
|
libp2p/crypto/crypto, libp2p/daemon/daemonapi, eth/async_utils,
|
2019-06-03 17:07:50 +00:00
|
|
|
ssz
|
2019-05-31 18:36:32 +00:00
|
|
|
|
|
|
|
when networkBackend == libp2pSpecBackend:
|
|
|
|
import libp2p_spec_backend
|
|
|
|
export libp2p_spec_backend
|
2019-06-05 02:00:07 +00:00
|
|
|
const netBackendName* = "libp2p_spec"
|
2019-06-03 17:07:50 +00:00
|
|
|
|
2019-05-31 18:36:32 +00:00
|
|
|
else:
|
|
|
|
import libp2p_backend
|
|
|
|
export libp2p_backend
|
2019-06-05 02:00:07 +00:00
|
|
|
const netBackendName* = "libp2p_native"
|
2019-06-03 17:07:50 +00:00
|
|
|
|
2019-03-05 22:54:08 +00:00
|
|
|
type
|
|
|
|
BootstrapAddr* = PeerInfo
|
2019-05-22 07:13:15 +00:00
|
|
|
Eth2NodeIdentity* = PeerInfo
|
2019-03-05 22:54:08 +00:00
|
|
|
|
2019-06-12 12:23:05 +00:00
|
|
|
const
|
|
|
|
networkKeyFilename = "privkey.protobuf"
|
|
|
|
|
2019-03-05 22:54:08 +00:00
|
|
|
proc init*(T: type BootstrapAddr, str: string): T =
|
|
|
|
Json.decode(str, PeerInfo)
|
|
|
|
|
2019-06-12 12:23:05 +00:00
|
|
|
proc ensureNetworkIdFile(conf: BeaconNodeConf): string =
|
|
|
|
result = conf.dataDir / networkKeyFilename
|
|
|
|
if not fileExists(result):
|
|
|
|
createDir conf.dataDir.string
|
|
|
|
let pk = PrivateKey.random(Ed25519)
|
|
|
|
writeFile(result, pk.getBytes)
|
2019-03-05 22:54:08 +00:00
|
|
|
|
2019-05-22 07:13:15 +00:00
|
|
|
proc getPersistentNetIdentity*(conf: BeaconNodeConf): Eth2NodeIdentity =
|
|
|
|
# Using waitFor here is reasonable, because this proc is needed only
|
|
|
|
# prior to connecting to the network. The RLPx alternative reads from
|
|
|
|
# file and it's much easier to use if it's not async.
|
|
|
|
# TODO: revisit in the future when we have our own Lib2P2 implementation.
|
2019-06-12 12:23:05 +00:00
|
|
|
let daemon = waitFor newDaemonApi(id = conf.ensureNetworkIdFile)
|
2019-05-22 07:13:15 +00:00
|
|
|
result = waitFor daemon.identity()
|
|
|
|
waitFor daemon.close()
|
|
|
|
|
2019-06-17 11:08:05 +00:00
|
|
|
template tcpEndPoint(address, port): auto =
|
|
|
|
MultiAddress.init(address, IPPROTO_TCP, port)
|
|
|
|
|
2019-06-12 12:23:05 +00:00
|
|
|
proc createEth2Node*(conf: BeaconNodeConf): Future[Eth2Node] {.async.} =
|
2019-06-12 18:22:05 +00:00
|
|
|
var
|
|
|
|
(extIp, extTcpPort, extUdpPort) = setupNat(conf)
|
|
|
|
hostAddress = tcpEndPoint(globalListeningAddr, Port conf.tcpPort)
|
|
|
|
announcedAddresses = if extIp != globalListeningAddr: @[]
|
|
|
|
else: @[tcpEndPoint(extIp, extTcpPort)]
|
2019-06-17 11:08:05 +00:00
|
|
|
keyFile = conf.ensureNetworkIdFile
|
2019-06-12 18:22:05 +00:00
|
|
|
|
2019-06-17 11:08:05 +00:00
|
|
|
info "Starting LibP2P deamon", hostAddress, announcedAddresses, keyFile
|
|
|
|
let daemon = await newDaemonApi({PSGossipSub},
|
|
|
|
id = keyFile,
|
|
|
|
hostAddresses = @[hostAddress],
|
|
|
|
announcedAddresses = announcedAddresses)
|
2019-06-12 18:22:05 +00:00
|
|
|
|
2019-06-12 12:23:05 +00:00
|
|
|
return await Eth2Node.init(daemon)
|
|
|
|
|
2019-05-22 07:13:15 +00:00
|
|
|
proc getPersistenBootstrapAddr*(conf: BeaconNodeConf,
|
|
|
|
ip: IpAddress, port: Port): BootstrapAddr =
|
2019-06-12 18:22:05 +00:00
|
|
|
result = getPersistentNetIdentity(conf)
|
|
|
|
result.addresses = @[tcpEndPoint(ip, port)]
|
2019-05-22 07:13:15 +00:00
|
|
|
|
|
|
|
proc isSameNode*(bootstrapNode: BootstrapAddr, id: Eth2NodeIdentity): bool =
|
2019-06-17 11:08:05 +00:00
|
|
|
bootstrapNode.peer == id.peer
|
2019-05-22 07:13:15 +00:00
|
|
|
|
|
|
|
proc shortForm*(id: Eth2NodeIdentity): string =
|
|
|
|
# TODO: Make this shorter
|
|
|
|
$id
|
|
|
|
|
2019-03-05 22:54:08 +00:00
|
|
|
proc connectToNetwork*(node: Eth2Node, bootstrapNodes: seq[PeerInfo]) {.async.} =
|
|
|
|
# TODO: perhaps we should do these in parallel
|
2019-06-24 16:27:19 +00:00
|
|
|
var connected = false
|
2019-03-05 22:54:08 +00:00
|
|
|
for bootstrapNode in bootstrapNodes:
|
|
|
|
try:
|
|
|
|
await node.daemon.connect(bootstrapNode.peer, bootstrapNode.addresses)
|
2019-03-18 03:54:08 +00:00
|
|
|
let peer = node.getPeer(bootstrapNode.peer)
|
2019-06-10 23:20:18 +00:00
|
|
|
await initializeConnection(peer)
|
2019-06-24 16:27:19 +00:00
|
|
|
connected = true
|
2019-03-05 22:54:08 +00:00
|
|
|
except PeerDisconnected:
|
|
|
|
error "Failed to connect to bootstrap node", node = bootstrapNode
|
|
|
|
|
2019-06-24 16:27:19 +00:00
|
|
|
if connected == false:
|
|
|
|
fatal "Failed to connect to any bootstrap node. Quitting."
|
|
|
|
quit 1
|
|
|
|
|
2019-03-05 22:54:08 +00:00
|
|
|
proc saveConnectionAddressFile*(node: Eth2Node, filename: string) =
|
|
|
|
let id = waitFor node.daemon.identity()
|
|
|
|
Json.saveFile(filename, id, pretty = false)
|
|
|
|
|
|
|
|
proc loadConnectionAddressFile*(filename: string): PeerInfo =
|
|
|
|
Json.loadFile(filename, PeerInfo)
|
|
|
|
|
2019-05-22 07:13:15 +00:00
|
|
|
func peersCount*(node: Eth2Node): int =
|
|
|
|
node.peers.len
|
|
|
|
|
2019-06-03 17:07:50 +00:00
|
|
|
proc makeMessageHandler[MsgType](msgHandler: proc(msg: MsgType)): P2PPubSubCallback =
|
|
|
|
result = proc(api: DaemonAPI,
|
|
|
|
ticket: PubsubTicket,
|
|
|
|
msg: PubSubMessage): Future[bool] {.async.} =
|
|
|
|
msgHandler SSZ.decode(msg.data, MsgType)
|
|
|
|
return true
|
|
|
|
|
|
|
|
proc subscribe*[MsgType](node: Eth2Node,
|
|
|
|
topic: string,
|
|
|
|
msgHandler: proc(msg: MsgType)) {.async.} =
|
|
|
|
discard await node.daemon.pubsubSubscribe(topic, makeMessageHandler(msgHandler))
|
|
|
|
|
|
|
|
proc broadcast*(node: Eth2Node, topic: string, msg: auto) =
|
|
|
|
traceAsyncErrors node.daemon.pubsubPublish(topic, SSZ.encode(msg))
|
|
|
|
|
|
|
|
# TODO:
|
|
|
|
# At the moment, this is just a compatiblity shim for the existing RLPx functionality.
|
|
|
|
# The filtering is not implemented properly yet.
|
|
|
|
iterator randomPeers*(node: Eth2Node, maxPeers: int, Protocol: type): Peer =
|
|
|
|
var peers = newSeq[Peer]()
|
|
|
|
for _, peer in pairs(node.peers): peers.add peer
|
|
|
|
shuffle peers
|
|
|
|
if peers.len > maxPeers: peers.setLen(maxPeers)
|
|
|
|
for p in peers: yield p
|
|
|
|
|