2019-03-05 22:54:08 +00:00
|
|
|
import
|
2019-03-19 03:57:19 +00:00
|
|
|
options, chronos, json_serialization, strutils,
|
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-03-18 03:54:08 +00:00
|
|
|
when useRLPx:
|
2019-03-05 22:54:08 +00:00
|
|
|
import
|
2019-03-18 03:54:08 +00:00
|
|
|
os,
|
2019-03-22 11:33:10 +00:00
|
|
|
eth/[rlp, p2p, keys], gossipsub_protocol,
|
|
|
|
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-03-05 22:54:08 +00:00
|
|
|
type
|
|
|
|
Eth2Node* = EthereumNode
|
|
|
|
BootstrapAddr* = ENode
|
|
|
|
|
|
|
|
template libp2pProtocol*(name, version: string) {.pragma.}
|
|
|
|
|
2019-03-19 03:57:19 +00:00
|
|
|
func parseNat(nat: string): IpAddress =
|
|
|
|
# TODO we should try to discover the actual external IP, in case we're
|
|
|
|
# behind a nat / upnp / etc..
|
|
|
|
if nat.startsWith("extip:"):
|
|
|
|
parseIpAddress(nat[6..^1])
|
|
|
|
else:
|
|
|
|
parseIpAddress("127.0.0.1")
|
|
|
|
|
2019-03-20 01:18:49 +00:00
|
|
|
proc ensureNetworkKeys*(conf: BeaconNodeConf): KeyPair =
|
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-03-19 17:22:17 +00:00
|
|
|
keys = ensureNetworkKeys(conf)
|
|
|
|
address = Address(ip: ip, tcpPort: port, udpPort: port)
|
|
|
|
|
|
|
|
initENode(keys.pubKey, address)
|
|
|
|
|
|
|
|
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
|
|
|
|
keys = ensureNetworkKeys(conf)
|
2019-03-19 03:57:19 +00:00
|
|
|
address = Address(ip: parseNat(conf.nat),
|
2019-03-18 03:54:08 +00:00
|
|
|
tcpPort: Port conf.tcpPort,
|
|
|
|
udpPort: Port conf.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,
|
|
|
|
nil, clientId, minPeers = 1)
|
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-03-22 11:33:10 +00:00
|
|
|
func connectedPeers*(enode: EthereumNode): int =
|
|
|
|
enode.peerPool.len
|
|
|
|
|
2019-03-05 22:54:08 +00:00
|
|
|
else:
|
|
|
|
import
|
2019-03-18 03:54:08 +00:00
|
|
|
libp2p/daemon/daemonapi, chronicles,
|
2019-03-05 22:54:08 +00:00
|
|
|
libp2p_backend
|
|
|
|
|
|
|
|
export
|
|
|
|
libp2p_backend
|
|
|
|
|
|
|
|
type
|
|
|
|
BootstrapAddr* = PeerInfo
|
|
|
|
|
2019-03-19 19:50:22 +00:00
|
|
|
const
|
|
|
|
netBackendName* = "libp2p"
|
|
|
|
|
2019-03-05 22:54:08 +00:00
|
|
|
proc writeValue*(writer: var JsonWriter, value: PeerID) {.inline.} =
|
|
|
|
writer.writeValue value.pretty
|
|
|
|
|
|
|
|
proc readValue*(reader: var JsonReader, value: var PeerID) {.inline.} =
|
|
|
|
value = PeerID.init reader.readValue(string)
|
|
|
|
|
|
|
|
proc writeValue*(writer: var JsonWriter, value: MultiAddress) {.inline.} =
|
|
|
|
writer.writeValue $value
|
|
|
|
|
|
|
|
proc readValue*(reader: var JsonReader, value: var MultiAddress) {.inline.} =
|
|
|
|
value = MultiAddress.init reader.readValue(string)
|
|
|
|
|
|
|
|
proc init*(T: type BootstrapAddr, str: string): T =
|
|
|
|
Json.decode(str, PeerInfo)
|
|
|
|
|
2019-03-18 03:54:08 +00:00
|
|
|
proc createEth2Node*(conf: BeaconNodeConf): Future[Eth2Node] {.async.} =
|
2019-03-05 22:54:08 +00:00
|
|
|
var node = new Eth2Node
|
|
|
|
await node.init()
|
|
|
|
return node
|
|
|
|
|
|
|
|
proc connectToNetwork*(node: Eth2Node, bootstrapNodes: seq[PeerInfo]) {.async.} =
|
|
|
|
# TODO: perhaps we should do these in parallel
|
|
|
|
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)
|
|
|
|
await peer.performProtocolHandshakes()
|
2019-03-05 22:54:08 +00:00
|
|
|
except PeerDisconnected:
|
|
|
|
error "Failed to connect to bootstrap node", node = bootstrapNode
|
|
|
|
|
|
|
|
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)
|
|
|
|
|