2020-04-29 04:49:27 +00:00
|
|
|
import
|
2020-08-31 03:32:41 +00:00
|
|
|
std/strutils,
|
2020-07-24 01:39:58 +00:00
|
|
|
confutils, confutils/defs, confutils/std/net,
|
|
|
|
chronicles, chronos,
|
2020-05-21 04:16:00 +00:00
|
|
|
libp2p/crypto/crypto,
|
|
|
|
libp2p/crypto/secp,
|
2020-07-20 04:40:35 +00:00
|
|
|
nimcrypto/utils,
|
2021-09-24 17:32:45 +00:00
|
|
|
eth/keys,
|
2022-02-04 23:58:27 +00:00
|
|
|
../protocol/waku_rln_relay/waku_rln_relay_types,
|
|
|
|
../protocol/waku_message
|
2021-12-08 18:35:47 +00:00
|
|
|
|
2020-04-29 04:49:27 +00:00
|
|
|
type
|
|
|
|
WakuNodeConf* = object
|
2021-05-11 15:07:26 +00:00
|
|
|
## General node config
|
|
|
|
|
2020-04-29 04:49:27 +00:00
|
|
|
logLevel* {.
|
|
|
|
desc: "Sets the log level."
|
|
|
|
defaultValue: LogLevel.INFO
|
|
|
|
name: "log-level" }: LogLevel
|
2021-05-11 15:07:26 +00:00
|
|
|
|
|
|
|
nodekey* {.
|
|
|
|
desc: "P2P node private key as 64 char hex string.",
|
|
|
|
defaultValue: crypto.PrivateKey.random(Secp256k1, keys.newRng()[]).tryGet()
|
|
|
|
name: "nodekey" }: crypto.PrivateKey
|
2020-04-29 04:49:27 +00:00
|
|
|
|
2020-10-22 15:04:17 +00:00
|
|
|
listenAddress* {.
|
2020-07-24 01:39:58 +00:00
|
|
|
defaultValue: defaultListenAddress(config)
|
2021-11-01 18:02:39 +00:00
|
|
|
desc: "Listening address for LibP2P (and Discovery v5, if enabled) traffic."
|
2020-07-24 01:39:58 +00:00
|
|
|
name: "listen-address"}: ValidIpAddress
|
|
|
|
|
2020-04-29 04:49:27 +00:00
|
|
|
tcpPort* {.
|
|
|
|
desc: "TCP listening port."
|
2020-05-28 03:28:44 +00:00
|
|
|
defaultValue: 60000
|
2020-07-24 01:39:58 +00:00
|
|
|
name: "tcp-port" }: Port
|
2021-11-02 10:29:11 +00:00
|
|
|
|
2020-04-29 04:49:27 +00:00
|
|
|
portsShift* {.
|
|
|
|
desc: "Add a shift to all port numbers."
|
|
|
|
defaultValue: 0
|
|
|
|
name: "ports-shift" }: uint16
|
|
|
|
|
|
|
|
nat* {.
|
|
|
|
desc: "Specify method to use for determining public address. " &
|
|
|
|
"Must be one of: any, none, upnp, pmp, extip:<IP>."
|
|
|
|
defaultValue: "any" }: string
|
2021-10-12 12:48:48 +00:00
|
|
|
|
|
|
|
maxConnections* {.
|
|
|
|
desc: "Maximum allowed number of libp2p connections."
|
|
|
|
defaultValue: 50
|
|
|
|
name: "max-connections" }: uint16
|
2021-05-11 15:07:26 +00:00
|
|
|
|
|
|
|
## Persistence config
|
2021-04-21 09:36:56 +00:00
|
|
|
|
2021-05-11 15:07:26 +00:00
|
|
|
dbPath* {.
|
|
|
|
desc: "The database path for peristent storage",
|
|
|
|
defaultValue: ""
|
|
|
|
name: "db-path" }: string
|
|
|
|
|
|
|
|
persistPeers* {.
|
|
|
|
desc: "Enable peer persistence: true|false",
|
|
|
|
defaultValue: false
|
|
|
|
name: "persist-peers" }: bool
|
|
|
|
|
|
|
|
persistMessages* {.
|
2021-05-03 21:30:52 +00:00
|
|
|
desc: "Enable message persistence: true|false",
|
|
|
|
defaultValue: false
|
|
|
|
name: "persist-messages" }: bool
|
2022-02-16 16:12:09 +00:00
|
|
|
|
|
|
|
## DNS addrs config
|
|
|
|
|
|
|
|
dnsAddrs* {.
|
|
|
|
desc: "Enable resolution of `dnsaddr`, `dns4` or `dns6` multiaddrs"
|
|
|
|
defaultValue: true
|
|
|
|
name: "dns-addrs" }: bool
|
|
|
|
|
|
|
|
dnsAddrsNameServers* {.
|
|
|
|
desc: "DNS name server IPs to query for DNS multiaddrs resolution. Argument may be repeated."
|
|
|
|
defaultValue: @[ValidIpAddress.init("1.1.1.1"), ValidIpAddress.init("1.0.0.1")]
|
|
|
|
name: "dns-addrs-name-server" }: seq[ValidIpAddress]
|
2022-02-18 11:10:38 +00:00
|
|
|
|
|
|
|
dns4DomainName* {.
|
|
|
|
desc: "The domain name resolving to the node's public IPv4 address",
|
|
|
|
defaultValue: ""
|
|
|
|
name: "dns4-domain-name" }: string
|
2021-05-03 21:30:52 +00:00
|
|
|
|
2021-05-11 15:07:26 +00:00
|
|
|
## Relay config
|
2020-10-20 02:36:27 +00:00
|
|
|
|
|
|
|
relay* {.
|
2021-03-10 07:03:22 +00:00
|
|
|
desc: "Enable relay protocol: true|false",
|
2020-10-20 02:36:27 +00:00
|
|
|
defaultValue: true
|
|
|
|
name: "relay" }: bool
|
2021-01-08 17:56:58 +00:00
|
|
|
|
2021-05-11 15:07:26 +00:00
|
|
|
rlnRelay* {.
|
|
|
|
desc: "Enable spam protection through rln-relay: true|false",
|
|
|
|
defaultValue: false
|
|
|
|
name: "rln-relay" }: bool
|
|
|
|
|
2021-09-17 17:31:25 +00:00
|
|
|
rlnRelayMemIndex* {.
|
2021-09-24 17:32:45 +00:00
|
|
|
desc: "(experimental) the index of node in the rln-relay group: a value between 0-99 inclusive",
|
|
|
|
defaultValue: MembershipIndex(0)
|
|
|
|
name: "rln-relay-membership-index" }: MembershipIndex
|
|
|
|
|
|
|
|
rlnRelayPubsubTopic* {.
|
|
|
|
desc: "the pubsub topic for which rln-relay gets enabled",
|
2022-02-04 23:58:27 +00:00
|
|
|
defaultValue: "/waku/2/default-waku/proto"
|
2021-09-24 17:32:45 +00:00
|
|
|
name: "rln-relay-pubsub-topic" }: string
|
2022-02-04 23:58:27 +00:00
|
|
|
|
|
|
|
rlnRelayContentTopic* {.
|
|
|
|
desc: "the pubsub topic for which rln-relay gets enabled",
|
|
|
|
defaultValue: "/toy-chat/2/huilong/proto"
|
|
|
|
name: "rln-relay-content-topic" }: ContentTopic
|
2021-11-01 18:02:39 +00:00
|
|
|
|
2021-05-11 15:07:26 +00:00
|
|
|
staticnodes* {.
|
|
|
|
desc: "Peer multiaddr to directly connect with. Argument may be repeated."
|
|
|
|
name: "staticnode" }: seq[string]
|
|
|
|
|
2021-04-30 12:07:46 +00:00
|
|
|
keepAlive* {.
|
|
|
|
desc: "Enable keep-alive for idle connections: true|false",
|
|
|
|
defaultValue: false
|
|
|
|
name: "keep-alive" }: bool
|
2020-10-20 02:36:27 +00:00
|
|
|
|
2021-05-11 15:07:26 +00:00
|
|
|
topics* {.
|
|
|
|
desc: "Default topics to subscribe to (space separated list)."
|
|
|
|
defaultValue: "/waku/2/default-waku/proto"
|
|
|
|
name: "topics" .}: string
|
|
|
|
|
|
|
|
## Store config
|
|
|
|
|
|
|
|
store* {.
|
|
|
|
desc: "Enable store protocol: true|false",
|
|
|
|
defaultValue: true
|
|
|
|
name: "store" }: bool
|
|
|
|
|
|
|
|
storenode* {.
|
|
|
|
desc: "Peer multiaddr to query for storage.",
|
|
|
|
defaultValue: ""
|
|
|
|
name: "storenode" }: string
|
|
|
|
|
2021-11-03 10:59:51 +00:00
|
|
|
storeCapacity* {.
|
|
|
|
desc: "Maximum number of messages to keep in store.",
|
|
|
|
defaultValue: 50000
|
|
|
|
name: "store-capacity" }: int
|
|
|
|
|
2021-05-11 15:07:26 +00:00
|
|
|
## Filter config
|
|
|
|
|
|
|
|
filter* {.
|
|
|
|
desc: "Enable filter protocol: true|false",
|
|
|
|
defaultValue: false
|
|
|
|
name: "filter" }: bool
|
|
|
|
|
|
|
|
filternode* {.
|
|
|
|
desc: "Peer multiaddr to request content filtering of messages.",
|
|
|
|
defaultValue: ""
|
|
|
|
name: "filternode" }: string
|
|
|
|
|
2021-12-08 18:35:47 +00:00
|
|
|
filterTimeout* {.
|
|
|
|
desc: "Timeout for filter node in seconds.",
|
|
|
|
defaultValue: 14400 # 4 hours
|
|
|
|
name: "filter-timeout" }: int64
|
|
|
|
|
2021-05-11 15:07:26 +00:00
|
|
|
## Swap config
|
|
|
|
|
2020-11-21 05:31:48 +00:00
|
|
|
swap* {.
|
2021-03-10 07:03:22 +00:00
|
|
|
desc: "Enable swap protocol: true|false",
|
2021-05-26 10:05:56 +00:00
|
|
|
defaultValue: true
|
2020-11-21 05:31:48 +00:00
|
|
|
name: "swap" }: bool
|
2021-05-11 15:07:26 +00:00
|
|
|
|
|
|
|
## Lightpush config
|
2020-11-21 05:31:48 +00:00
|
|
|
|
2021-04-24 04:56:37 +00:00
|
|
|
lightpush* {.
|
|
|
|
desc: "Enable lightpush protocol: true|false",
|
|
|
|
defaultValue: false
|
|
|
|
name: "lightpush" }: bool
|
2020-11-16 08:38:52 +00:00
|
|
|
|
2021-06-04 10:02:47 +00:00
|
|
|
lightpushnode* {.
|
|
|
|
desc: "Peer multiaddr to request lightpush of published messages.",
|
|
|
|
defaultValue: ""
|
|
|
|
name: "lightpushnode" }: string
|
|
|
|
|
2021-05-11 15:07:26 +00:00
|
|
|
## JSON-RPC config
|
2020-04-29 04:49:27 +00:00
|
|
|
|
|
|
|
rpc* {.
|
2021-03-10 07:03:22 +00:00
|
|
|
desc: "Enable Waku JSON-RPC server: true|false",
|
2020-04-29 05:19:48 +00:00
|
|
|
defaultValue: true
|
2020-04-29 04:49:27 +00:00
|
|
|
name: "rpc" }: bool
|
|
|
|
|
|
|
|
rpcAddress* {.
|
2020-12-24 08:02:30 +00:00
|
|
|
desc: "Listening address of the JSON-RPC server.",
|
2020-07-24 01:39:58 +00:00
|
|
|
defaultValue: ValidIpAddress.init("127.0.0.1")
|
|
|
|
name: "rpc-address" }: ValidIpAddress
|
2020-04-29 04:49:27 +00:00
|
|
|
|
|
|
|
rpcPort* {.
|
2020-12-24 08:02:30 +00:00
|
|
|
desc: "Listening port of the JSON-RPC server.",
|
2020-04-29 04:49:27 +00:00
|
|
|
defaultValue: 8545
|
|
|
|
name: "rpc-port" }: uint16
|
2020-12-24 08:02:30 +00:00
|
|
|
|
|
|
|
rpcAdmin* {.
|
2021-03-10 07:03:22 +00:00
|
|
|
desc: "Enable access to JSON-RPC Admin API: true|false",
|
2020-12-24 08:02:30 +00:00
|
|
|
defaultValue: false
|
|
|
|
name: "rpc-admin" }: bool
|
|
|
|
|
|
|
|
rpcPrivate* {.
|
2021-03-10 07:03:22 +00:00
|
|
|
desc: "Enable access to JSON-RPC Private API: true|false",
|
2020-12-24 08:02:30 +00:00
|
|
|
defaultValue: false
|
|
|
|
name: "rpc-private" }: bool
|
2021-05-11 15:07:26 +00:00
|
|
|
|
|
|
|
## Metrics config
|
2020-04-29 04:49:27 +00:00
|
|
|
|
|
|
|
metricsServer* {.
|
2021-03-10 07:03:22 +00:00
|
|
|
desc: "Enable the metrics server: true|false"
|
2020-04-29 04:49:27 +00:00
|
|
|
defaultValue: false
|
|
|
|
name: "metrics-server" }: bool
|
|
|
|
|
|
|
|
metricsServerAddress* {.
|
|
|
|
desc: "Listening address of the metrics server."
|
2020-07-24 01:39:58 +00:00
|
|
|
defaultValue: ValidIpAddress.init("127.0.0.1")
|
|
|
|
name: "metrics-server-address" }: ValidIpAddress
|
2020-04-29 04:49:27 +00:00
|
|
|
|
|
|
|
metricsServerPort* {.
|
|
|
|
desc: "Listening HTTP port of the metrics server."
|
|
|
|
defaultValue: 8008
|
|
|
|
name: "metrics-server-port" }: uint16
|
|
|
|
|
2021-05-11 15:07:26 +00:00
|
|
|
metricsLogging* {.
|
|
|
|
desc: "Enable metrics logging: true|false"
|
|
|
|
defaultValue: false
|
|
|
|
name: "metrics-logging" }: bool
|
2021-08-12 08:51:38 +00:00
|
|
|
|
|
|
|
## DNS discovery config
|
|
|
|
|
|
|
|
dnsDiscovery* {.
|
|
|
|
desc: "Enable discovering nodes via DNS"
|
|
|
|
defaultValue: false
|
|
|
|
name: "dns-discovery" }: bool
|
|
|
|
|
|
|
|
dnsDiscoveryUrl* {.
|
|
|
|
desc: "URL for DNS node list in format 'enrtree://<key>@<fqdn>'",
|
|
|
|
defaultValue: ""
|
|
|
|
name: "dns-discovery-url" }: string
|
2021-08-25 11:57:35 +00:00
|
|
|
|
|
|
|
dnsDiscoveryNameServers* {.
|
|
|
|
desc: "DNS name server IPs to query. Argument may be repeated."
|
|
|
|
defaultValue: @[ValidIpAddress.init("1.1.1.1"), ValidIpAddress.init("1.0.0.1")]
|
|
|
|
name: "dns-discovery-name-server" }: seq[ValidIpAddress]
|
2021-11-01 18:02:39 +00:00
|
|
|
|
|
|
|
## Discovery v5 config
|
|
|
|
|
|
|
|
discv5Discovery* {.
|
|
|
|
desc: "Enable discovering nodes via Node Discovery v5"
|
|
|
|
defaultValue: false
|
|
|
|
name: "discv5-discovery" }: bool
|
|
|
|
|
|
|
|
discv5UdpPort* {.
|
|
|
|
desc: "Listening UDP port for Node Discovery v5."
|
|
|
|
defaultValue: 9000
|
|
|
|
name: "discv5-udp-port" }: Port
|
|
|
|
|
|
|
|
discv5BootstrapNodes* {.
|
|
|
|
desc: "Text-encoded ENR for bootstrap node. Used when connecting to the network. Argument may be repeated."
|
|
|
|
name: "discv5-bootstrap-node" }: seq[string]
|
|
|
|
|
|
|
|
discv5EnrAutoUpdate* {.
|
|
|
|
desc: "Discovery can automatically update its ENR with the IP address " &
|
|
|
|
"and UDP port as seen by other nodes it communicates with. " &
|
|
|
|
"This option allows to enable/disable this functionality"
|
|
|
|
defaultValue: false
|
|
|
|
name: "discv5-enr-auto-update" .}: bool
|
2021-05-11 15:07:26 +00:00
|
|
|
|
2022-03-01 14:11:56 +00:00
|
|
|
discv5TableIpLimit* {.
|
|
|
|
hidden
|
|
|
|
desc: "Maximum amount of nodes with the same IP in discv5 routing tables"
|
|
|
|
defaultValue: 10
|
|
|
|
name: "discv5-table-ip-limit" .}: uint
|
|
|
|
|
|
|
|
discv5BucketIpLimit* {.
|
|
|
|
hidden
|
|
|
|
desc: "Maximum amount of nodes with the same IP in discv5 routing table buckets"
|
|
|
|
defaultValue: 2
|
|
|
|
name: "discv5-bucket-ip-limit" .}: uint
|
|
|
|
|
|
|
|
discv5BitsPerHop* {.
|
|
|
|
hidden
|
|
|
|
desc: "Kademlia's b variable, increase for less hops per lookup"
|
|
|
|
defaultValue: 1
|
|
|
|
name: "discv5-bits-per-hop" .}: int
|
|
|
|
|
2021-11-02 10:29:11 +00:00
|
|
|
## websocket config
|
|
|
|
websocketSupport* {.
|
|
|
|
desc: "Enable websocket: true|false",
|
|
|
|
defaultValue: false
|
|
|
|
name: "websocket-support"}: bool
|
|
|
|
|
|
|
|
websocketPort* {.
|
|
|
|
desc: "WebSocket listening port."
|
|
|
|
defaultValue: 8000
|
|
|
|
name: "websocket-port" }: Port
|
2021-11-10 12:05:36 +00:00
|
|
|
|
|
|
|
websocketSecureSupport* {.
|
|
|
|
desc: "Enable secure websocket: true|false",
|
|
|
|
defaultValue: false
|
|
|
|
name: "websocket-secure-support"}: bool
|
|
|
|
|
|
|
|
websocketSecureKeyPath* {.
|
|
|
|
desc: "Secure websocket key path: '/path/to/key.txt' ",
|
|
|
|
defaultValue: ""
|
|
|
|
name: "websocket-secure-key-path"}: string
|
|
|
|
|
|
|
|
websocketSecureCertPath* {.
|
|
|
|
desc: "Secure websocket Certificate path: '/path/to/cert.txt' ",
|
|
|
|
defaultValue: ""
|
|
|
|
name: "websocket-secure-cert-path"}: string
|
2021-11-02 10:29:11 +00:00
|
|
|
|
2020-05-21 04:16:00 +00:00
|
|
|
# NOTE: Keys are different in nim-libp2p
|
2020-07-20 04:40:35 +00:00
|
|
|
proc parseCmdArg*(T: type crypto.PrivateKey, p: TaintedString): T =
|
2020-04-29 04:49:27 +00:00
|
|
|
try:
|
2020-05-26 03:55:53 +00:00
|
|
|
let key = SkPrivateKey.init(utils.fromHex(p)).tryGet()
|
|
|
|
# XXX: Here at the moment
|
2020-07-20 04:40:35 +00:00
|
|
|
result = crypto.PrivateKey(scheme: Secp256k1, skkey: key)
|
2020-04-29 04:49:27 +00:00
|
|
|
except CatchableError as e:
|
|
|
|
raise newException(ConfigurationError, "Invalid private key")
|
|
|
|
|
2020-07-20 04:40:35 +00:00
|
|
|
proc completeCmdArg*(T: type crypto.PrivateKey, val: TaintedString): seq[string] =
|
2020-04-29 04:49:27 +00:00
|
|
|
return @[]
|
|
|
|
|
2020-07-24 01:39:58 +00:00
|
|
|
proc parseCmdArg*(T: type ValidIpAddress, p: TaintedString): T =
|
2020-04-29 04:49:27 +00:00
|
|
|
try:
|
2020-07-24 01:39:58 +00:00
|
|
|
result = ValidIpAddress.init(p)
|
2020-04-29 04:49:27 +00:00
|
|
|
except CatchableError as e:
|
|
|
|
raise newException(ConfigurationError, "Invalid IP address")
|
|
|
|
|
2020-07-24 01:39:58 +00:00
|
|
|
proc completeCmdArg*(T: type ValidIpAddress, val: TaintedString): seq[string] =
|
2020-04-29 04:49:27 +00:00
|
|
|
return @[]
|
2020-07-24 01:39:58 +00:00
|
|
|
|
|
|
|
proc parseCmdArg*(T: type Port, p: TaintedString): T =
|
|
|
|
try:
|
|
|
|
result = Port(parseInt(p))
|
|
|
|
except CatchableError as e:
|
|
|
|
raise newException(ConfigurationError, "Invalid Port number")
|
|
|
|
|
|
|
|
proc completeCmdArg*(T: type Port, val: TaintedString): seq[string] =
|
|
|
|
return @[]
|
|
|
|
|
|
|
|
func defaultListenAddress*(conf: WakuNodeConf): ValidIpAddress =
|
|
|
|
# TODO: How should we select between IPv4 and IPv6
|
|
|
|
# Maybe there should be a config option for this.
|
2022-03-01 14:11:56 +00:00
|
|
|
(static ValidIpAddress.init("0.0.0.0"))
|