2018-07-17 18:39:04 +00:00
|
|
|
package p2p
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-05-28 12:54:49 +00:00
|
|
|
"net"
|
2018-07-17 18:39:04 +00:00
|
|
|
|
2019-05-09 21:02:24 +00:00
|
|
|
"github.com/libp2p/go-libp2p"
|
2019-05-28 12:54:49 +00:00
|
|
|
filter "github.com/libp2p/go-maddr-filter"
|
2018-07-17 18:39:04 +00:00
|
|
|
ma "github.com/multiformats/go-multiaddr"
|
2018-08-14 16:16:21 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/iputils"
|
2018-07-17 18:39:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// buildOptions for the libp2p host.
|
2018-09-20 04:14:31 +00:00
|
|
|
// TODO(287): Expand on these options and provide the option configuration via flags.
|
2018-07-17 18:39:04 +00:00
|
|
|
// Currently, this is a random port and a (seemingly) consistent private key
|
|
|
|
// identity.
|
2019-05-28 12:54:49 +00:00
|
|
|
func buildOptions(cfg *ServerConfig) []libp2p.Option {
|
2018-08-14 16:16:21 +00:00
|
|
|
ip, err := iputils.ExternalIPv4()
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Could not get IPv4 address: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-05-28 12:54:49 +00:00
|
|
|
listen, err := ma.NewMultiaddr(fmt.Sprintf("/ip4/%s/tcp/%d", ip, cfg.Port))
|
2018-07-29 00:44:24 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Failed to p2p listen: %v", err)
|
|
|
|
}
|
2018-07-17 18:39:04 +00:00
|
|
|
|
2019-05-17 22:59:01 +00:00
|
|
|
return []libp2p.Option{
|
2018-07-17 18:39:04 +00:00
|
|
|
libp2p.ListenAddrs(listen),
|
2018-11-25 16:55:02 +00:00
|
|
|
libp2p.EnableRelay(), // Allows dialing to peers via relay.
|
2019-05-28 12:54:49 +00:00
|
|
|
optionConnectionManager(cfg.MaxPeers),
|
|
|
|
whitelistSubnet(cfg.WhitelistCIDR),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// whitelistSubnet adds a whitelist multiaddress filter for a given CIDR subnet.
|
|
|
|
// Example: 192.168.0.0/16 may be used to accept only connections on your local
|
|
|
|
// network.
|
|
|
|
func whitelistSubnet(cidr string) libp2p.Option {
|
|
|
|
if cidr == "" {
|
|
|
|
return func(_ *libp2p.Config) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return func(cfg *libp2p.Config) error {
|
|
|
|
_, ipnet, err := net.ParseCIDR(cidr)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if cfg.Filters == nil {
|
|
|
|
cfg.Filters = filter.NewFilters()
|
|
|
|
}
|
|
|
|
cfg.Filters.AddFilter(*ipnet, filter.ActionAccept)
|
|
|
|
|
|
|
|
return nil
|
2018-07-17 18:39:04 +00:00
|
|
|
}
|
|
|
|
}
|