go-waku/waku/v2/node/wakuoptions.go

449 lines
13 KiB
Go
Raw Normal View History

package node
import (
"crypto/ecdsa"
2022-03-22 13:12:58 +00:00
"crypto/tls"
"errors"
2021-10-15 02:15:02 +00:00
"fmt"
"net"
"time"
2022-07-05 21:28:34 +00:00
"github.com/decanus/go-rln/rln"
2021-11-17 16:19:42 +00:00
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/libp2p/go-libp2p"
"github.com/libp2p/go-libp2p-core/crypto"
pubsub "github.com/libp2p/go-libp2p-pubsub"
"github.com/libp2p/go-libp2p/config"
2021-10-15 02:15:02 +00:00
basichost "github.com/libp2p/go-libp2p/p2p/host/basic"
2022-05-31 19:51:53 +00:00
"github.com/libp2p/go-libp2p/p2p/muxer/mplex"
"github.com/libp2p/go-libp2p/p2p/muxer/yamux"
2022-05-27 19:55:35 +00:00
"github.com/libp2p/go-libp2p/p2p/net/connmgr"
quic "github.com/libp2p/go-libp2p/p2p/transport/quic"
"github.com/libp2p/go-libp2p/p2p/transport/tcp"
2021-10-15 02:15:02 +00:00
"github.com/multiformats/go-multiaddr"
manet "github.com/multiformats/go-multiaddr/net"
2021-10-05 02:13:54 +00:00
rendezvous "github.com/status-im/go-waku-rendezvous"
"github.com/status-im/go-waku/waku/v2/protocol/filter"
2021-04-22 00:09:37 +00:00
"github.com/status-im/go-waku/waku/v2/protocol/store"
"github.com/status-im/go-waku/waku/v2/utils"
"go.uber.org/zap"
)
2021-06-28 14:14:28 +00:00
// Default clientId
const clientId string = "Go Waku v2 node"
// Default minRelayPeersToPublish
2022-03-21 23:15:53 +00:00
const defaultMinRelayPeersToPublish = 0
type WakuNodeParameters struct {
2021-11-17 16:19:42 +00:00
hostAddr *net.TCPAddr
2022-03-22 00:48:46 +00:00
dns4Domain string
2021-11-17 16:19:42 +00:00
advertiseAddr *net.IP
multiAddr []multiaddr.Multiaddr
2021-10-15 02:15:02 +00:00
addressFactory basichost.AddrsFactory
2021-11-17 16:19:42 +00:00
privKey *ecdsa.PrivateKey
2021-10-15 02:15:02 +00:00
libP2POpts []libp2p.Option
2022-03-22 13:12:58 +00:00
enableWS bool
2022-03-22 00:48:46 +00:00
wsPort int
2022-03-22 13:12:58 +00:00
enableWSS bool
2022-03-22 00:48:46 +00:00
wssPort int
2022-03-22 13:12:58 +00:00
tlsConfig *tls.Config
2022-05-27 13:25:06 +00:00
logger *zap.Logger
enableRelay bool
enableFilter bool
isFilterFullNode bool
filterOpts []filter.Option
wOpts []pubsub.Option
minRelayPeersToPublish int
2021-11-01 12:38:03 +00:00
enableStore bool
2022-06-19 21:47:39 +00:00
enableSwap bool
2021-11-01 12:38:03 +00:00
shouldResume bool
storeMsgs bool
messageProvider store.MessageProvider
maxMessages int
maxDuration time.Duration
swapMode int
swapDisconnectThreshold int
swapPaymentThreshold int
2021-10-01 17:49:50 +00:00
enableRendezvous bool
enableRendezvousServer bool
rendevousStorage rendezvous.Storage
rendezvousOpts []pubsub.DiscoverOpt
2021-10-01 17:49:50 +00:00
2021-11-17 16:19:42 +00:00
enableDiscV5 bool
udpPort int
discV5bootnodes []*enode.Node
discV5Opts []pubsub.DiscoverOpt
discV5autoUpdate bool
2022-07-05 21:28:34 +00:00
enableRLN bool
rlnRelayMemIndex rln.MembershipIndex
rlnRelayPubsubTopic string
rlnRelayContentTopic string
rlnRelayDynamic bool
keepAliveInterval time.Duration
enableLightPush bool
2021-06-16 10:14:22 +00:00
connStatusC chan ConnStatus
storeFactory storeFactory
}
type WakuNodeOption func(*WakuNodeParameters) error
2021-11-17 16:19:42 +00:00
// Default options used in the libp2p node
var DefaultWakuNodeOptions = []WakuNodeOption{
2022-05-27 13:25:06 +00:00
WithLogger(utils.Logger()),
2021-11-17 16:19:42 +00:00
WithWakuRelay(),
}
// MultiAddresses return the list of multiaddresses configured in the node
func (w WakuNodeParameters) MultiAddresses() []multiaddr.Multiaddr {
return w.multiAddr
}
// Identity returns a libp2p option containing the identity used by the node
func (w WakuNodeParameters) Identity() config.Option {
2021-11-17 16:19:42 +00:00
return libp2p.Identity(*w.GetPrivKey())
}
// AddressFactory returns the address factory used by the node's host
2021-11-17 16:19:42 +00:00
func (w WakuNodeParameters) AddressFactory() basichost.AddrsFactory {
return w.addressFactory
}
// WithLogger is a WakuNodeOption that adds a custom logger
func WithLogger(l *zap.Logger) WakuNodeOption {
return func(params *WakuNodeParameters) error {
2022-05-27 13:25:06 +00:00
params.logger = l
return nil
}
}
2022-03-22 00:48:46 +00:00
// WithDns4Domain is a WakuNodeOption that adds a custom domain name to listen
func WithDns4Domain(dns4Domain string) WakuNodeOption {
return func(params *WakuNodeParameters) error {
params.dns4Domain = dns4Domain
params.addressFactory = func([]multiaddr.Multiaddr) []multiaddr.Multiaddr {
2022-03-22 00:48:46 +00:00
var result []multiaddr.Multiaddr
hostAddrMA, err := multiaddr.NewMultiaddr("/dns4/" + params.dns4Domain)
2022-03-22 00:48:46 +00:00
if err != nil {
panic(fmt.Sprintf("invalid dns4 address: %s", err.Error()))
}
tcp, _ := multiaddr.NewMultiaddr(fmt.Sprintf("/tcp/%d", params.hostAddr.Port))
2022-03-22 00:48:46 +00:00
result = append(result, hostAddrMA.Encapsulate(tcp))
if params.enableWS || params.enableWSS {
if params.enableWSS {
wss, _ := multiaddr.NewMultiaddr(fmt.Sprintf("/tcp/%d/wss", params.wssPort))
2022-03-22 00:48:46 +00:00
result = append(result, hostAddrMA.Encapsulate(wss))
} else {
ws, _ := multiaddr.NewMultiaddr(fmt.Sprintf("/tcp/%d/ws", params.wsPort))
2022-03-22 00:48:46 +00:00
result = append(result, hostAddrMA.Encapsulate(ws))
}
}
return result
}
return nil
}
}
2021-11-17 16:19:42 +00:00
// WithHostAddress is a WakuNodeOption that configures libp2p to listen on a specific address
func WithHostAddress(hostAddr *net.TCPAddr) WakuNodeOption {
return func(params *WakuNodeParameters) error {
2021-11-17 16:19:42 +00:00
params.hostAddr = hostAddr
hostAddrMA, err := manet.FromNetAddr(hostAddr)
if err != nil {
return err
}
2021-11-17 16:19:42 +00:00
params.multiAddr = append(params.multiAddr, hostAddrMA)
return nil
}
}
2021-11-17 16:19:42 +00:00
// WithAdvertiseAddress is a WakuNodeOption that allows overriding the address used in the waku node with custom value
2022-03-22 00:48:46 +00:00
func WithAdvertiseAddress(address *net.TCPAddr) WakuNodeOption {
2021-10-15 02:15:02 +00:00
return func(params *WakuNodeParameters) error {
2021-11-17 16:19:42 +00:00
params.advertiseAddr = &address.IP
advertiseAddress, err := manet.FromNetAddr(address)
if err != nil {
return err
}
params.addressFactory = func([]multiaddr.Multiaddr) []multiaddr.Multiaddr {
2021-10-15 02:15:02 +00:00
var result []multiaddr.Multiaddr
2021-11-17 16:19:42 +00:00
result = append(result, advertiseAddress)
2022-03-22 00:48:46 +00:00
if params.enableWS || params.enableWSS {
if params.enableWSS {
2022-07-26 15:24:24 +00:00
wsMa, err := multiaddr.NewMultiaddr(fmt.Sprintf("/ip4/%s/tcp/%d/wss", address.IP, params.wssPort))
if err != nil {
panic(err)
}
2022-03-22 13:12:58 +00:00
result = append(result, wsMa)
} else {
2022-07-26 15:24:24 +00:00
wsMa, err := multiaddr.NewMultiaddr(fmt.Sprintf("/ip4/%s/tcp/%d/ws", address.IP, params.wsPort))
if err != nil {
panic(err)
}
2022-03-22 13:12:58 +00:00
result = append(result, wsMa)
}
2021-10-15 02:15:02 +00:00
}
return result
}
return nil
}
}
2021-04-22 20:42:44 +00:00
// WithMultiaddress is a WakuNodeOption that configures libp2p to listen on a list of multiaddresses
func WithMultiaddress(addresses []multiaddr.Multiaddr) WakuNodeOption {
2021-04-22 13:07:22 +00:00
return func(params *WakuNodeParameters) error {
params.multiAddr = append(params.multiAddr, addresses...)
return nil
}
}
2021-04-22 20:42:44 +00:00
// WithPrivateKey is used to set an ECDSA private key in a libp2p node
func WithPrivateKey(privKey *ecdsa.PrivateKey) WakuNodeOption {
return func(params *WakuNodeParameters) error {
2021-11-17 16:19:42 +00:00
params.privKey = privKey
return nil
}
}
// GetPrivKey returns the private key used in the node
2021-11-17 16:19:42 +00:00
func (w *WakuNodeParameters) GetPrivKey() *crypto.PrivKey {
2022-05-27 19:55:35 +00:00
privKey := crypto.PrivKey(utils.EcdsaPrivKeyToSecp256k1PrivKey(w.privKey))
2021-11-17 16:19:42 +00:00
return &privKey
}
2021-04-22 20:42:44 +00:00
// WithLibP2POptions is a WakuNodeOption used to configure the libp2p node.
// This can potentially override any libp2p config that was set with other
// WakuNodeOption
func WithLibP2POptions(opts ...libp2p.Option) WakuNodeOption {
return func(params *WakuNodeParameters) error {
params.libP2POpts = opts
return nil
}
}
2021-04-22 20:42:44 +00:00
// WithWakuRelay enables the Waku V2 Relay protocol. This WakuNodeOption
// accepts a list of WakuRelay gossipsub option to setup the protocol
func WithWakuRelay(opts ...pubsub.Option) WakuNodeOption {
return WithWakuRelayAndMinPeers(defaultMinRelayPeersToPublish, opts...)
}
// WithWakuRelayAndMinPeers enables the Waku V2 Relay protocol. This WakuNodeOption
// accepts a min peers require to publish and a list of WakuRelay gossipsub option to setup the protocol
func WithWakuRelayAndMinPeers(minRelayPeersToPublish int, opts ...pubsub.Option) WakuNodeOption {
return func(params *WakuNodeParameters) error {
params.enableRelay = true
params.wOpts = opts
params.minRelayPeersToPublish = minRelayPeersToPublish
return nil
}
}
2021-11-17 16:19:42 +00:00
// WithDiscoveryV5 is a WakuOption used to enable DiscV5 peer discovery
func WithDiscoveryV5(udpPort int, bootnodes []*enode.Node, autoUpdate bool, discoverOpts ...pubsub.DiscoverOpt) WakuNodeOption {
return func(params *WakuNodeParameters) error {
params.enableDiscV5 = true
params.udpPort = udpPort
params.discV5bootnodes = bootnodes
params.discV5Opts = discoverOpts
params.discV5autoUpdate = autoUpdate
return nil
}
}
// WithRendezvous is a WakuOption used to enable go-waku-rendezvous discovery.
// It accepts an optional list of DiscoveryOpt options
func WithRendezvous(discoverOpts ...pubsub.DiscoverOpt) WakuNodeOption {
2021-10-01 17:49:50 +00:00
return func(params *WakuNodeParameters) error {
params.enableRendezvous = true
params.rendezvousOpts = discoverOpts
return nil
}
}
// WithRendezvousServer is a WakuOption used to set the node as a rendezvous
// point, using an specific storage for the peer information
func WithRendezvousServer(storage rendezvous.Storage) WakuNodeOption {
2021-10-01 17:49:50 +00:00
return func(params *WakuNodeParameters) error {
params.enableRendezvousServer = true
params.rendevousStorage = storage
2021-10-01 17:49:50 +00:00
return nil
}
}
// WithWakuFilter enables the Waku V2 Filter protocol. This WakuNodeOption
// accepts a list of WakuFilter gossipsub options to setup the protocol
func WithWakuFilter(fullNode bool, filterOpts ...filter.Option) WakuNodeOption {
2021-06-10 12:59:51 +00:00
return func(params *WakuNodeParameters) error {
params.enableFilter = true
params.isFilterFullNode = fullNode
params.filterOpts = filterOpts
2021-06-10 12:59:51 +00:00
return nil
}
}
2021-04-22 20:42:44 +00:00
// WithWakuStore enables the Waku V2 Store protocol and if the messages should
// be stored or not in a message provider
func WithWakuStore(shouldStoreMessages bool, shouldResume bool) WakuNodeOption {
return func(params *WakuNodeParameters) error {
params.enableStore = true
params.storeMsgs = shouldStoreMessages
params.shouldResume = shouldResume
return nil
}
}
// WithWakuStoreFactory is used to replace the default WakuStore with a custom
// implementation that implements the store.Store interface
func WithWakuStoreFactory(factory storeFactory) WakuNodeOption {
return func(params *WakuNodeParameters) error {
params.storeFactory = factory
return nil
}
}
// WithWakuSwap set the option of the Waku V2 Swap protocol
func WithWakuSwap(mode int, disconnectThreshold, paymentThreshold int) WakuNodeOption {
return func(params *WakuNodeParameters) error {
2022-06-19 21:47:39 +00:00
params.enableSwap = true
params.swapMode = mode
params.swapDisconnectThreshold = disconnectThreshold
params.swapPaymentThreshold = paymentThreshold
return nil
}
}
2021-04-22 20:42:44 +00:00
// WithMessageProvider is a WakuNodeOption that sets the MessageProvider
// used to store and retrieve persisted messages
func WithMessageProvider(s store.MessageProvider) WakuNodeOption {
return func(params *WakuNodeParameters) error {
if s == nil {
return errors.New("message provider can't be nil")
}
2021-11-01 12:38:03 +00:00
params.messageProvider = s
return nil
}
}
// WithLightPush is a WakuNodeOption that enables the lightpush protocol
func WithLightPush() WakuNodeOption {
return func(params *WakuNodeParameters) error {
params.enableLightPush = true
return nil
}
}
// WithKeepAlive is a WakuNodeOption used to set the interval of time when
// each peer will be ping to keep the TCP connection alive
func WithKeepAlive(t time.Duration) WakuNodeOption {
return func(params *WakuNodeParameters) error {
params.keepAliveInterval = t
return nil
}
}
// WithConnectionStatusChannel is a WakuNodeOption used to set a channel where the
// connection status changes will be pushed to. It's useful to identify when peer
// connections and disconnections occur
func WithConnectionStatusChannel(connStatus chan ConnStatus) WakuNodeOption {
2021-06-16 10:14:22 +00:00
return func(params *WakuNodeParameters) error {
params.connStatusC = connStatus
2021-06-16 10:14:22 +00:00
return nil
}
}
// WithWebsockets is a WakuNodeOption used to enable websockets support
2022-03-22 13:12:58 +00:00
func WithWebsockets(address string, port int) WakuNodeOption {
return func(params *WakuNodeParameters) error {
params.enableWS = true
2022-03-22 00:48:46 +00:00
params.wsPort = port
2022-03-22 13:12:58 +00:00
wsMa, err := multiaddr.NewMultiaddr(fmt.Sprintf("/ip4/%s/tcp/%d/%s", address, port, "ws"))
if err != nil {
return err
}
params.multiAddr = append(params.multiAddr, wsMa)
return nil
}
}
// WithSecureWebsockets is a WakuNodeOption used to enable secure websockets support
2022-03-22 13:12:58 +00:00
func WithSecureWebsockets(address string, port int, certPath string, keyPath string) WakuNodeOption {
return func(params *WakuNodeParameters) error {
params.enableWSS = true
2022-03-22 00:48:46 +00:00
params.wssPort = port
2022-03-22 13:12:58 +00:00
wsMa, err := multiaddr.NewMultiaddr(fmt.Sprintf("/ip4/%s/tcp/%d/%s", address, port, "wss"))
if err != nil {
return err
}
params.multiAddr = append(params.multiAddr, wsMa)
certificate, err := tls.LoadX509KeyPair(certPath, keyPath)
if err != nil {
return err
}
params.tlsConfig = &tls.Config{
Certificates: []tls.Certificate{certificate},
}
return nil
}
}
2022-07-05 21:28:34 +00:00
func WithStaticRLNRelay(pubsubTopic string, contentTopic string, memberIndex rln.MembershipIndex) WakuNodeOption {
return func(params *WakuNodeParameters) error {
params.enableRLN = true
params.rlnRelayDynamic = false
params.rlnRelayMemIndex = memberIndex
params.rlnRelayPubsubTopic = pubsubTopic
params.rlnRelayContentTopic = contentTopic
return nil
}
}
2021-04-22 20:42:44 +00:00
// Default options used in the libp2p node
var DefaultLibP2POptions = []libp2p.Option{
2022-03-22 13:12:58 +00:00
libp2p.ChainOptions(
libp2p.Transport(tcp.NewTCPTransport),
libp2p.Transport(quic.NewTransport),
), libp2p.UserAgent(clientId),
2022-05-31 19:51:53 +00:00
libp2p.ChainOptions(
libp2p.Muxer("/yamux/1.0.0", yamux.DefaultTransport),
libp2p.Muxer("/mplex/6.7.0", mplex.DefaultTransport),
),
2022-03-22 13:12:58 +00:00
libp2p.EnableNATService(),
libp2p.ConnectionManager(newConnManager(200, 300, connmgr.WithGracePeriod(0))),
}
func newConnManager(lo int, hi int, opts ...connmgr.Option) *connmgr.BasicConnMgr {
mgr, err := connmgr.NewConnManager(lo, hi, opts...)
if err != nil {
panic("could not create ConnManager: " + err.Error())
}
return mgr
}