2019-11-19 10:00:20 -07:00
|
|
|
package nebula
|
|
|
|
|
|
|
|
import (
|
2021-04-01 09:23:31 -06:00
|
|
|
"encoding/binary"
|
2020-11-23 12:50:01 -07:00
|
|
|
"errors"
|
2019-11-19 10:00:20 -07:00
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/golang/protobuf/proto"
|
2020-06-26 11:45:48 -06:00
|
|
|
"github.com/rcrowley/go-metrics"
|
2021-03-18 19:37:24 -06:00
|
|
|
"github.com/sirupsen/logrus"
|
2019-11-19 10:00:20 -07:00
|
|
|
)
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
//TODO: if a lighthouse doesn't have an answer, clients AGGRESSIVELY REQUERY.. why? handshake manager and/or getOrHandshake?
|
2021-03-31 16:32:02 -06:00
|
|
|
//TODO: nodes are roaming lighthouses, this is bad. How are they learning?
|
|
|
|
|
2020-11-23 12:50:01 -07:00
|
|
|
var ErrHostNotKnown = errors.New("host not known")
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
type LightHouse struct {
|
2021-03-31 16:32:02 -06:00
|
|
|
//TODO: We need a timer wheel to kick out vpnIps that haven't reported in a long time
|
2019-11-19 10:00:20 -07:00
|
|
|
sync.RWMutex //Because we concurrently read and write to our maps
|
|
|
|
amLighthouse bool
|
2021-04-01 09:23:31 -06:00
|
|
|
myVpnIp uint32
|
|
|
|
myVpnZeros uint32
|
2019-11-19 10:00:20 -07:00
|
|
|
punchConn *udpConn
|
|
|
|
|
|
|
|
// Local cache of answers from light houses
|
2021-04-14 12:50:09 -06:00
|
|
|
// map of vpn Ip to answers
|
|
|
|
addrMap map[uint32]*RemoteList
|
2019-11-19 10:00:20 -07:00
|
|
|
|
Add lighthouse.{remoteAllowList,localAllowList} (#217)
These settings make it possible to blacklist / whitelist IP addresses
that are used for remote connections.
`lighthouse.remoteAllowList` filters which remote IPs are allow when
fetching from the lighthouse (or, if you are the lighthouse, which IPs
you store and forward to querying hosts). By default, any remote IPs are
allowed. You can provide CIDRs here with `true` to allow and `false` to
deny. The most specific CIDR rule applies to each remote. If all rules
are "allow", the default will be "deny", and vice-versa. If both "allow"
and "deny" rules are present, then you MUST set a rule for "0.0.0.0/0"
as the default.
lighthouse:
remoteAllowList:
# Example to block IPs from this subnet from being used for remote IPs.
"172.16.0.0/12": false
# A more complicated example, allow public IPs but only private IPs from a specific subnet
"0.0.0.0/0": true
"10.0.0.0/8": false
"10.42.42.0/24": true
`lighthouse.localAllowList` has the same logic as above, but it applies
to the local addresses we advertise to the lighthouse. Additionally, you
can specify an `interfaces` map of regular expressions to match against
interface names. The regexp must match the entire name. All interface
rules must be either true or false (and the default rule will be the
inverse). CIDR rules are matched after interface name rules.
Default is all local IP addresses.
lighthouse:
localAllowList:
# Example to blacklist docker interfaces.
interfaces:
'docker.*': false
# Example to only advertise IPs in this subnet to the lighthouse.
"10.0.0.0/8": true
2020-04-08 13:36:43 -06:00
|
|
|
// filters remote addresses allowed for each host
|
|
|
|
// - When we are a lighthouse, this filters what addresses we store and
|
|
|
|
// respond with.
|
|
|
|
// - When we are not a lighthouse, this filters which addresses we accept
|
|
|
|
// from lighthouses.
|
|
|
|
remoteAllowList *AllowList
|
|
|
|
|
|
|
|
// filters local addresses that we advertise to lighthouses
|
|
|
|
localAllowList *AllowList
|
|
|
|
|
2020-07-22 08:35:10 -06:00
|
|
|
// used to trigger the HandshakeManager when we receive HostQueryReply
|
|
|
|
handshakeTrigger chan<- uint32
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
// staticList exists to avoid having a bool in each addrMap entry
|
|
|
|
// since static should be rare
|
|
|
|
staticList map[uint32]struct{}
|
|
|
|
lighthouses map[uint32]struct{}
|
|
|
|
interval int
|
2021-03-18 19:37:24 -06:00
|
|
|
nebulaPort uint32 // 32 bits because protobuf does not have a uint16
|
2019-11-19 10:00:20 -07:00
|
|
|
punchBack bool
|
2020-03-27 12:26:39 -06:00
|
|
|
punchDelay time.Duration
|
2020-06-26 11:45:48 -06:00
|
|
|
|
|
|
|
metrics *MessageMetrics
|
|
|
|
metricHolepunchTx metrics.Counter
|
2021-03-26 08:46:30 -06:00
|
|
|
l *logrus.Logger
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
type EncWriter interface {
|
|
|
|
SendMessageToVpnIp(t NebulaMessageType, st NebulaMessageSubType, vpnIp uint32, p, nb, out []byte)
|
|
|
|
}
|
|
|
|
|
2021-04-01 09:23:31 -06:00
|
|
|
func NewLightHouse(l *logrus.Logger, amLighthouse bool, myVpnIpNet *net.IPNet, ips []uint32, interval int, nebulaPort uint32, pc *udpConn, punchBack bool, punchDelay time.Duration, metricsEnabled bool) *LightHouse {
|
|
|
|
ones, _ := myVpnIpNet.Mask.Size()
|
2019-11-19 10:00:20 -07:00
|
|
|
h := LightHouse{
|
|
|
|
amLighthouse: amLighthouse,
|
2021-04-01 09:23:31 -06:00
|
|
|
myVpnIp: ip2int(myVpnIpNet.IP),
|
|
|
|
myVpnZeros: uint32(32 - ones),
|
2021-04-14 12:50:09 -06:00
|
|
|
addrMap: make(map[uint32]*RemoteList),
|
2019-11-19 10:00:20 -07:00
|
|
|
nebulaPort: nebulaPort,
|
|
|
|
lighthouses: make(map[uint32]struct{}),
|
|
|
|
staticList: make(map[uint32]struct{}),
|
|
|
|
interval: interval,
|
|
|
|
punchConn: pc,
|
|
|
|
punchBack: punchBack,
|
2020-03-27 12:26:39 -06:00
|
|
|
punchDelay: punchDelay,
|
2021-03-26 08:46:30 -06:00
|
|
|
l: l,
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
2020-06-26 11:45:48 -06:00
|
|
|
if metricsEnabled {
|
|
|
|
h.metrics = newLighthouseMetrics()
|
|
|
|
|
|
|
|
h.metricHolepunchTx = metrics.GetOrRegisterCounter("messages.tx.holepunch", nil)
|
|
|
|
} else {
|
|
|
|
h.metricHolepunchTx = metrics.NilCounter{}
|
|
|
|
}
|
|
|
|
|
2019-12-09 17:53:56 -07:00
|
|
|
for _, ip := range ips {
|
|
|
|
h.lighthouses[ip] = struct{}{}
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return &h
|
|
|
|
}
|
|
|
|
|
Add lighthouse.{remoteAllowList,localAllowList} (#217)
These settings make it possible to blacklist / whitelist IP addresses
that are used for remote connections.
`lighthouse.remoteAllowList` filters which remote IPs are allow when
fetching from the lighthouse (or, if you are the lighthouse, which IPs
you store and forward to querying hosts). By default, any remote IPs are
allowed. You can provide CIDRs here with `true` to allow and `false` to
deny. The most specific CIDR rule applies to each remote. If all rules
are "allow", the default will be "deny", and vice-versa. If both "allow"
and "deny" rules are present, then you MUST set a rule for "0.0.0.0/0"
as the default.
lighthouse:
remoteAllowList:
# Example to block IPs from this subnet from being used for remote IPs.
"172.16.0.0/12": false
# A more complicated example, allow public IPs but only private IPs from a specific subnet
"0.0.0.0/0": true
"10.0.0.0/8": false
"10.42.42.0/24": true
`lighthouse.localAllowList` has the same logic as above, but it applies
to the local addresses we advertise to the lighthouse. Additionally, you
can specify an `interfaces` map of regular expressions to match against
interface names. The regexp must match the entire name. All interface
rules must be either true or false (and the default rule will be the
inverse). CIDR rules are matched after interface name rules.
Default is all local IP addresses.
lighthouse:
localAllowList:
# Example to blacklist docker interfaces.
interfaces:
'docker.*': false
# Example to only advertise IPs in this subnet to the lighthouse.
"10.0.0.0/8": true
2020-04-08 13:36:43 -06:00
|
|
|
func (lh *LightHouse) SetRemoteAllowList(allowList *AllowList) {
|
|
|
|
lh.Lock()
|
|
|
|
defer lh.Unlock()
|
|
|
|
|
|
|
|
lh.remoteAllowList = allowList
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lh *LightHouse) SetLocalAllowList(allowList *AllowList) {
|
|
|
|
lh.Lock()
|
|
|
|
defer lh.Unlock()
|
|
|
|
|
|
|
|
lh.localAllowList = allowList
|
|
|
|
}
|
|
|
|
|
2019-11-23 16:55:23 -07:00
|
|
|
func (lh *LightHouse) ValidateLHStaticEntries() error {
|
2019-11-23 14:46:45 -07:00
|
|
|
for lhIP, _ := range lh.lighthouses {
|
2020-01-02 19:04:18 -07:00
|
|
|
if _, ok := lh.staticList[lhIP]; !ok {
|
2019-11-23 16:55:23 -07:00
|
|
|
return fmt.Errorf("Lighthouse %s does not have a static_host_map entry", IntIp(lhIP))
|
2019-11-23 14:46:45 -07:00
|
|
|
}
|
|
|
|
}
|
2019-11-23 16:55:23 -07:00
|
|
|
return nil
|
2019-11-23 14:46:45 -07:00
|
|
|
}
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
func (lh *LightHouse) Query(ip uint32, f EncWriter) *RemoteList {
|
2019-11-19 10:00:20 -07:00
|
|
|
if !lh.IsLighthouseIP(ip) {
|
|
|
|
lh.QueryServer(ip, f)
|
|
|
|
}
|
|
|
|
lh.RLock()
|
|
|
|
if v, ok := lh.addrMap[ip]; ok {
|
|
|
|
lh.RUnlock()
|
2021-04-14 12:50:09 -06:00
|
|
|
return v
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
lh.RUnlock()
|
2021-04-14 12:50:09 -06:00
|
|
|
return nil
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is asynchronous so no reply should be expected
|
|
|
|
func (lh *LightHouse) QueryServer(ip uint32, f EncWriter) {
|
2021-04-14 12:50:09 -06:00
|
|
|
if lh.amLighthouse {
|
|
|
|
return
|
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
if lh.IsLighthouseIP(ip) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send a query to the lighthouses and hope for the best next time
|
|
|
|
query, err := proto.Marshal(NewLhQueryByInt(ip))
|
|
|
|
if err != nil {
|
|
|
|
lh.l.WithError(err).WithField("vpnIp", IntIp(ip)).Error("Failed to marshal lighthouse query payload")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
lh.metricTx(NebulaMeta_HostQuery, int64(len(lh.lighthouses)))
|
|
|
|
nb := make([]byte, 12, 12)
|
|
|
|
out := make([]byte, mtu)
|
|
|
|
for n := range lh.lighthouses {
|
|
|
|
f.SendMessageToVpnIp(lightHouse, 0, n, query, nb, out)
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
func (lh *LightHouse) QueryCache(ip uint32) *RemoteList {
|
2019-11-19 10:00:20 -07:00
|
|
|
lh.RLock()
|
|
|
|
if v, ok := lh.addrMap[ip]; ok {
|
|
|
|
lh.RUnlock()
|
2021-04-14 12:50:09 -06:00
|
|
|
return v
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
lh.RUnlock()
|
2021-04-14 12:50:09 -06:00
|
|
|
|
|
|
|
lh.Lock()
|
|
|
|
defer lh.Unlock()
|
|
|
|
// Add an entry if we don't already have one
|
|
|
|
return lh.unlockedGetRemoteList(ip)
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
// queryAndPrepMessage is a lock helper on RemoteList, assisting the caller to build a lighthouse message containing
|
|
|
|
// details from the remote list. It looks for a hit in the addrMap and a hit in the RemoteList under the owner vpnIp
|
|
|
|
// If one is found then f() is called with proper locking, f() must return result of n.MarshalTo()
|
|
|
|
func (lh *LightHouse) queryAndPrepMessage(vpnIp uint32, f func(*cache) (int, error)) (bool, int, error) {
|
2021-03-31 16:32:02 -06:00
|
|
|
lh.RLock()
|
2021-04-14 12:50:09 -06:00
|
|
|
// Do we have an entry in the main cache?
|
|
|
|
if v, ok := lh.addrMap[vpnIp]; ok {
|
|
|
|
// Swap lh lock for remote list lock
|
|
|
|
v.RLock()
|
|
|
|
defer v.RUnlock()
|
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
lh.RUnlock()
|
2021-04-14 12:50:09 -06:00
|
|
|
|
|
|
|
// vpnIp should also be the owner here since we are a lighthouse.
|
|
|
|
c := v.cache[vpnIp]
|
|
|
|
// Make sure we have
|
|
|
|
if c != nil {
|
|
|
|
n, err := f(c)
|
|
|
|
return true, n, err
|
|
|
|
}
|
|
|
|
return false, 0, nil
|
2021-03-31 16:32:02 -06:00
|
|
|
}
|
|
|
|
lh.RUnlock()
|
|
|
|
return false, 0, nil
|
|
|
|
}
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
func (lh *LightHouse) DeleteVpnIP(vpnIP uint32) {
|
|
|
|
// First we check the static mapping
|
|
|
|
// and do nothing if it is there
|
|
|
|
if _, ok := lh.staticList[vpnIP]; ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
lh.Lock()
|
|
|
|
//l.Debugln(lh.addrMap)
|
|
|
|
delete(lh.addrMap, vpnIP)
|
2021-03-31 16:32:02 -06:00
|
|
|
|
|
|
|
if lh.l.Level >= logrus.DebugLevel {
|
|
|
|
lh.l.Debugf("deleting %s from lighthouse.", IntIp(vpnIP))
|
|
|
|
}
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
lh.Unlock()
|
|
|
|
}
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
// AddStaticRemote adds a static host entry for vpnIp as ourselves as the owner
|
|
|
|
// We are the owner because we don't want a lighthouse server to advertise for static hosts it was configured with
|
|
|
|
// And we don't want a lighthouse query reply to interfere with our learned cache if we are a client
|
|
|
|
func (lh *LightHouse) AddStaticRemote(vpnIp uint32, toAddr *udpAddr) {
|
2019-11-19 10:00:20 -07:00
|
|
|
lh.Lock()
|
2021-04-14 12:50:09 -06:00
|
|
|
am := lh.unlockedGetRemoteList(vpnIp)
|
|
|
|
am.Lock()
|
|
|
|
defer am.Unlock()
|
|
|
|
lh.Unlock()
|
2021-03-31 16:32:02 -06:00
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
if ipv4 := toAddr.IP.To4(); ipv4 != nil {
|
|
|
|
to := NewIp4AndPort(ipv4, uint32(toAddr.Port))
|
|
|
|
if !lh.unlockedShouldAddV4(to) {
|
2019-11-19 10:00:20 -07:00
|
|
|
return
|
|
|
|
}
|
2021-04-14 12:50:09 -06:00
|
|
|
am.unlockedPrependV4(lh.myVpnIp, to)
|
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
} else {
|
2021-04-14 12:50:09 -06:00
|
|
|
to := NewIp6AndPort(toAddr.IP, uint32(toAddr.Port))
|
|
|
|
if !lh.unlockedShouldAddV6(to) {
|
2021-03-31 16:32:02 -06:00
|
|
|
return
|
|
|
|
}
|
2021-04-14 12:50:09 -06:00
|
|
|
am.unlockedPrependV6(lh.myVpnIp, to)
|
2021-03-31 16:32:02 -06:00
|
|
|
}
|
2021-04-14 12:50:09 -06:00
|
|
|
|
|
|
|
// Mark it as static
|
|
|
|
lh.staticList[vpnIp] = struct{}{}
|
2021-03-31 16:32:02 -06:00
|
|
|
}
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
// unlockedGetRemoteList assumes you have the lh lock
|
|
|
|
func (lh *LightHouse) unlockedGetRemoteList(vpnIP uint32) *RemoteList {
|
|
|
|
am, ok := lh.addrMap[vpnIP]
|
|
|
|
if !ok {
|
|
|
|
am = NewRemoteList()
|
|
|
|
lh.addrMap[vpnIP] = am
|
2021-03-31 16:32:02 -06:00
|
|
|
}
|
2021-04-14 12:50:09 -06:00
|
|
|
return am
|
2021-03-31 16:32:02 -06:00
|
|
|
}
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
// unlockedShouldAddV4 checks if to is allowed by our allow list
|
|
|
|
func (lh *LightHouse) unlockedShouldAddV4(to *Ip4AndPort) bool {
|
2021-04-01 09:23:31 -06:00
|
|
|
allow := lh.remoteAllowList.AllowIpV4(to.Ip)
|
|
|
|
if lh.l.Level >= logrus.TraceLevel {
|
|
|
|
lh.l.WithField("remoteIp", IntIp(to.Ip)).WithField("allow", allow).Trace("remoteAllowList.Allow")
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
Add lighthouse.{remoteAllowList,localAllowList} (#217)
These settings make it possible to blacklist / whitelist IP addresses
that are used for remote connections.
`lighthouse.remoteAllowList` filters which remote IPs are allow when
fetching from the lighthouse (or, if you are the lighthouse, which IPs
you store and forward to querying hosts). By default, any remote IPs are
allowed. You can provide CIDRs here with `true` to allow and `false` to
deny. The most specific CIDR rule applies to each remote. If all rules
are "allow", the default will be "deny", and vice-versa. If both "allow"
and "deny" rules are present, then you MUST set a rule for "0.0.0.0/0"
as the default.
lighthouse:
remoteAllowList:
# Example to block IPs from this subnet from being used for remote IPs.
"172.16.0.0/12": false
# A more complicated example, allow public IPs but only private IPs from a specific subnet
"0.0.0.0/0": true
"10.0.0.0/8": false
"10.42.42.0/24": true
`lighthouse.localAllowList` has the same logic as above, but it applies
to the local addresses we advertise to the lighthouse. Additionally, you
can specify an `interfaces` map of regular expressions to match against
interface names. The regexp must match the entire name. All interface
rules must be either true or false (and the default rule will be the
inverse). CIDR rules are matched after interface name rules.
Default is all local IP addresses.
lighthouse:
localAllowList:
# Example to blacklist docker interfaces.
interfaces:
'docker.*': false
# Example to only advertise IPs in this subnet to the lighthouse.
"10.0.0.0/8": true
2020-04-08 13:36:43 -06:00
|
|
|
|
2021-04-01 09:23:31 -06:00
|
|
|
if !allow || ipMaskContains(lh.myVpnIp, lh.myVpnZeros, to.Ip) {
|
2021-03-31 16:32:02 -06:00
|
|
|
return false
|
Add lighthouse.{remoteAllowList,localAllowList} (#217)
These settings make it possible to blacklist / whitelist IP addresses
that are used for remote connections.
`lighthouse.remoteAllowList` filters which remote IPs are allow when
fetching from the lighthouse (or, if you are the lighthouse, which IPs
you store and forward to querying hosts). By default, any remote IPs are
allowed. You can provide CIDRs here with `true` to allow and `false` to
deny. The most specific CIDR rule applies to each remote. If all rules
are "allow", the default will be "deny", and vice-versa. If both "allow"
and "deny" rules are present, then you MUST set a rule for "0.0.0.0/0"
as the default.
lighthouse:
remoteAllowList:
# Example to block IPs from this subnet from being used for remote IPs.
"172.16.0.0/12": false
# A more complicated example, allow public IPs but only private IPs from a specific subnet
"0.0.0.0/0": true
"10.0.0.0/8": false
"10.42.42.0/24": true
`lighthouse.localAllowList` has the same logic as above, but it applies
to the local addresses we advertise to the lighthouse. Additionally, you
can specify an `interfaces` map of regular expressions to match against
interface names. The regexp must match the entire name. All interface
rules must be either true or false (and the default rule will be the
inverse). CIDR rules are matched after interface name rules.
Default is all local IP addresses.
lighthouse:
localAllowList:
# Example to blacklist docker interfaces.
interfaces:
'docker.*': false
# Example to only advertise IPs in this subnet to the lighthouse.
"10.0.0.0/8": true
2020-04-08 13:36:43 -06:00
|
|
|
}
|
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
// unlockedShouldAddV6 checks if to is allowed by our allow list
|
|
|
|
func (lh *LightHouse) unlockedShouldAddV6(to *Ip6AndPort) bool {
|
2021-04-01 09:23:31 -06:00
|
|
|
allow := lh.remoteAllowList.AllowIpV6(to.Hi, to.Lo)
|
|
|
|
if lh.l.Level >= logrus.TraceLevel {
|
|
|
|
lh.l.WithField("remoteIp", lhIp6ToIp(to)).WithField("allow", allow).Trace("remoteAllowList.Allow")
|
2021-03-31 16:32:02 -06:00
|
|
|
}
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
// We don't check our vpn network here because nebula does not support ipv6 on the inside
|
2021-03-31 16:32:02 -06:00
|
|
|
if !allow {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
2021-04-01 09:23:31 -06:00
|
|
|
func lhIp6ToIp(v *Ip6AndPort) net.IP {
|
|
|
|
ip := make(net.IP, 16)
|
|
|
|
binary.BigEndian.PutUint64(ip[:8], v.Hi)
|
|
|
|
binary.BigEndian.PutUint64(ip[8:], v.Lo)
|
|
|
|
return ip
|
|
|
|
}
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
func (lh *LightHouse) IsLighthouseIP(vpnIP uint32) bool {
|
|
|
|
if _, ok := lh.lighthouses[vpnIP]; ok {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewLhQueryByInt(VpnIp uint32) *NebulaMeta {
|
|
|
|
return &NebulaMeta{
|
|
|
|
Type: NebulaMeta_HostQuery,
|
|
|
|
Details: &NebulaMetaDetails{
|
|
|
|
VpnIp: VpnIp,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
func NewIp4AndPort(ip net.IP, port uint32) *Ip4AndPort {
|
|
|
|
ipp := Ip4AndPort{Port: port}
|
|
|
|
ipp.Ip = ip2int(ip)
|
|
|
|
return &ipp
|
2021-03-18 19:37:24 -06:00
|
|
|
}
|
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
func NewIp6AndPort(ip net.IP, port uint32) *Ip6AndPort {
|
2021-04-01 09:23:31 -06:00
|
|
|
return &Ip6AndPort{
|
|
|
|
Hi: binary.BigEndian.Uint64(ip[:8]),
|
|
|
|
Lo: binary.BigEndian.Uint64(ip[8:]),
|
|
|
|
Port: port,
|
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
func NewUDPAddrFromLH4(ipp *Ip4AndPort) *udpAddr {
|
2021-03-18 19:37:24 -06:00
|
|
|
ip := ipp.Ip
|
|
|
|
return NewUDPAddr(
|
|
|
|
net.IPv4(byte(ip&0xff000000>>24), byte(ip&0x00ff0000>>16), byte(ip&0x0000ff00>>8), byte(ip&0x000000ff)),
|
|
|
|
uint16(ipp.Port),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewUDPAddrFromLH6(ipp *Ip6AndPort) *udpAddr {
|
2021-04-01 09:23:31 -06:00
|
|
|
return NewUDPAddr(lhIp6ToIp(ipp), uint16(ipp.Port))
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (lh *LightHouse) LhUpdateWorker(f EncWriter) {
|
2019-12-26 14:12:31 -07:00
|
|
|
if lh.amLighthouse || lh.interval == 0 {
|
2019-11-19 10:00:20 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
2021-03-01 18:06:01 -07:00
|
|
|
lh.SendUpdate(f)
|
|
|
|
time.Sleep(time.Second * time.Duration(lh.interval))
|
|
|
|
}
|
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-03-01 18:06:01 -07:00
|
|
|
func (lh *LightHouse) SendUpdate(f EncWriter) {
|
2021-03-31 16:32:02 -06:00
|
|
|
var v4 []*Ip4AndPort
|
2021-03-18 19:37:24 -06:00
|
|
|
var v6 []*Ip6AndPort
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-03-26 08:46:30 -06:00
|
|
|
for _, e := range *localIps(lh.l, lh.localAllowList) {
|
2021-04-01 09:23:31 -06:00
|
|
|
if ip4 := e.To4(); ip4 != nil && ipMaskContains(lh.myVpnIp, lh.myVpnZeros, ip2int(ip4)) {
|
2021-03-31 16:32:02 -06:00
|
|
|
continue
|
|
|
|
}
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
// Only add IPs that aren't my VPN/tun IP
|
|
|
|
if ip := e.To4(); ip != nil {
|
|
|
|
v4 = append(v4, NewIp4AndPort(e, lh.nebulaPort))
|
|
|
|
} else {
|
|
|
|
v6 = append(v6, NewIp6AndPort(e, lh.nebulaPort))
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
2021-03-01 18:06:01 -07:00
|
|
|
}
|
|
|
|
m := &NebulaMeta{
|
|
|
|
Type: NebulaMeta_HostUpdateNotification,
|
|
|
|
Details: &NebulaMetaDetails{
|
2021-04-01 09:23:31 -06:00
|
|
|
VpnIp: lh.myVpnIp,
|
2021-03-31 16:32:02 -06:00
|
|
|
Ip4AndPorts: v4,
|
2021-03-18 19:37:24 -06:00
|
|
|
Ip6AndPorts: v6,
|
2021-03-01 18:06:01 -07:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
lh.metricTx(NebulaMeta_HostUpdateNotification, int64(len(lh.lighthouses)))
|
|
|
|
nb := make([]byte, 12, 12)
|
|
|
|
out := make([]byte, mtu)
|
2021-04-01 09:23:31 -06:00
|
|
|
|
|
|
|
mm, err := proto.Marshal(m)
|
|
|
|
if err != nil && lh.l.Level >= logrus.DebugLevel {
|
|
|
|
lh.l.WithError(err).Error("Error while marshaling for lighthouse update")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-03-01 18:06:01 -07:00
|
|
|
for vpnIp := range lh.lighthouses {
|
|
|
|
f.SendMessageToVpnIp(lightHouse, 0, vpnIp, mm, nb, out)
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-23 12:50:01 -07:00
|
|
|
type LightHouseHandler struct {
|
|
|
|
lh *LightHouse
|
|
|
|
nb []byte
|
|
|
|
out []byte
|
2021-03-31 16:32:02 -06:00
|
|
|
pb []byte
|
2020-11-23 12:50:01 -07:00
|
|
|
meta *NebulaMeta
|
2021-03-31 16:32:02 -06:00
|
|
|
l *logrus.Logger
|
2020-11-23 12:50:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (lh *LightHouse) NewRequestHandler() *LightHouseHandler {
|
|
|
|
lhh := &LightHouseHandler{
|
|
|
|
lh: lh,
|
|
|
|
nb: make([]byte, 12, 12),
|
|
|
|
out: make([]byte, mtu),
|
2021-03-31 16:32:02 -06:00
|
|
|
l: lh.l,
|
|
|
|
pb: make([]byte, mtu),
|
2020-11-23 12:50:01 -07:00
|
|
|
|
|
|
|
meta: &NebulaMeta{
|
|
|
|
Details: &NebulaMetaDetails{},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return lhh
|
|
|
|
}
|
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
func (lh *LightHouse) metricRx(t NebulaMeta_MessageType, i int64) {
|
|
|
|
lh.metrics.Rx(NebulaMessageType(t), 0, i)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lh *LightHouse) metricTx(t NebulaMeta_MessageType, i int64) {
|
|
|
|
lh.metrics.Tx(NebulaMessageType(t), 0, i)
|
|
|
|
}
|
|
|
|
|
2020-11-23 12:50:01 -07:00
|
|
|
// This method is similar to Reset(), but it re-uses the pointer structs
|
|
|
|
// so that we don't have to re-allocate them
|
|
|
|
func (lhh *LightHouseHandler) resetMeta() *NebulaMeta {
|
|
|
|
details := lhh.meta.Details
|
|
|
|
lhh.meta.Reset()
|
2021-03-31 16:32:02 -06:00
|
|
|
|
|
|
|
// Keep the array memory around
|
|
|
|
details.Ip4AndPorts = details.Ip4AndPorts[:0]
|
|
|
|
details.Ip6AndPorts = details.Ip6AndPorts[:0]
|
2020-11-23 12:50:01 -07:00
|
|
|
lhh.meta.Details = details
|
|
|
|
|
|
|
|
return lhh.meta
|
|
|
|
}
|
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
func (lhh *LightHouseHandler) HandleRequest(rAddr *udpAddr, vpnIp uint32, p []byte, w EncWriter) {
|
2020-11-23 12:50:01 -07:00
|
|
|
n := lhh.resetMeta()
|
2021-03-31 16:32:02 -06:00
|
|
|
err := n.Unmarshal(p)
|
2019-11-19 10:00:20 -07:00
|
|
|
if err != nil {
|
2021-03-31 16:32:02 -06:00
|
|
|
lhh.l.WithError(err).WithField("vpnIp", IntIp(vpnIp)).WithField("udpAddr", rAddr).
|
2019-11-19 10:00:20 -07:00
|
|
|
Error("Failed to unmarshal lighthouse packet")
|
|
|
|
//TODO: send recv_error?
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if n.Details == nil {
|
2021-03-31 16:32:02 -06:00
|
|
|
lhh.l.WithField("vpnIp", IntIp(vpnIp)).WithField("udpAddr", rAddr).
|
2019-11-19 10:00:20 -07:00
|
|
|
Error("Invalid lighthouse update")
|
|
|
|
//TODO: send recv_error?
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
lhh.lh.metricRx(n.Type, 1)
|
2020-06-26 11:45:48 -06:00
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
switch n.Type {
|
|
|
|
case NebulaMeta_HostQuery:
|
2021-03-31 16:32:02 -06:00
|
|
|
lhh.handleHostQuery(n, vpnIp, rAddr, w)
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
case NebulaMeta_HostQueryReply:
|
|
|
|
lhh.handleHostQueryReply(n, vpnIp)
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
case NebulaMeta_HostUpdateNotification:
|
|
|
|
lhh.handleHostUpdateNotification(n, vpnIp)
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
case NebulaMeta_HostMovedNotification:
|
|
|
|
case NebulaMeta_HostPunchNotification:
|
|
|
|
lhh.handleHostPunchNotification(n, vpnIp, w)
|
|
|
|
}
|
|
|
|
}
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
func (lhh *LightHouseHandler) handleHostQuery(n *NebulaMeta, vpnIp uint32, addr *udpAddr, w EncWriter) {
|
|
|
|
// Exit if we don't answer queries
|
|
|
|
if !lhh.lh.amLighthouse {
|
|
|
|
if lhh.l.Level >= logrus.DebugLevel {
|
|
|
|
lhh.l.Debugln("I don't answer queries, but received from: ", addr)
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
2021-03-31 16:32:02 -06:00
|
|
|
return
|
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
//TODO: we can DRY this further
|
|
|
|
reqVpnIP := n.Details.VpnIp
|
|
|
|
//TODO: Maybe instead of marshalling into n we marshal into a new `r` to not nuke our current request data
|
2021-04-14 12:50:09 -06:00
|
|
|
found, ln, err := lhh.lh.queryAndPrepMessage(n.Details.VpnIp, func(c *cache) (int, error) {
|
2021-03-31 16:32:02 -06:00
|
|
|
n = lhh.resetMeta()
|
|
|
|
n.Type = NebulaMeta_HostQueryReply
|
|
|
|
n.Details.VpnIp = reqVpnIP
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
lhh.coalesceAnswers(c, n)
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
return n.MarshalTo(lhh.pb)
|
|
|
|
})
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
if !found {
|
|
|
|
return
|
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
if err != nil {
|
|
|
|
lhh.l.WithError(err).WithField("vpnIp", IntIp(vpnIp)).Error("Failed to marshal lighthouse host query reply")
|
|
|
|
return
|
|
|
|
}
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
lhh.lh.metricTx(NebulaMeta_HostQueryReply, 1)
|
|
|
|
w.SendMessageToVpnIp(lightHouse, 0, vpnIp, lhh.pb[:ln], lhh.nb, lhh.out[:0])
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
// This signals the other side to punch some zero byte udp packets
|
2021-04-14 12:50:09 -06:00
|
|
|
found, ln, err = lhh.lh.queryAndPrepMessage(vpnIp, func(c *cache) (int, error) {
|
2021-03-31 16:32:02 -06:00
|
|
|
n = lhh.resetMeta()
|
|
|
|
n.Type = NebulaMeta_HostPunchNotification
|
|
|
|
n.Details.VpnIp = vpnIp
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
lhh.coalesceAnswers(c, n)
|
2021-03-31 16:32:02 -06:00
|
|
|
|
|
|
|
return n.MarshalTo(lhh.pb)
|
|
|
|
})
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
lhh.l.WithError(err).WithField("vpnIp", IntIp(vpnIp)).Error("Failed to marshal lighthouse host was queried for")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
lhh.lh.metricTx(NebulaMeta_HostPunchNotification, 1)
|
|
|
|
w.SendMessageToVpnIp(lightHouse, 0, reqVpnIP, lhh.pb[:ln], lhh.nb, lhh.out[:0])
|
|
|
|
}
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
func (lhh *LightHouseHandler) coalesceAnswers(c *cache, n *NebulaMeta) {
|
|
|
|
if c.v4 != nil {
|
|
|
|
if c.v4.learned != nil {
|
|
|
|
n.Details.Ip4AndPorts = append(n.Details.Ip4AndPorts, c.v4.learned)
|
|
|
|
}
|
|
|
|
if c.v4.reported != nil && len(c.v4.reported) > 0 {
|
|
|
|
n.Details.Ip4AndPorts = append(n.Details.Ip4AndPorts, c.v4.reported...)
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 16:32:02 -06:00
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
if c.v6 != nil {
|
|
|
|
if c.v6.learned != nil {
|
|
|
|
n.Details.Ip6AndPorts = append(n.Details.Ip6AndPorts, c.v6.learned)
|
|
|
|
}
|
|
|
|
if c.v6.reported != nil && len(c.v6.reported) > 0 {
|
|
|
|
n.Details.Ip6AndPorts = append(n.Details.Ip6AndPorts, c.v6.reported...)
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 16:32:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (lhh *LightHouseHandler) handleHostQueryReply(n *NebulaMeta, vpnIp uint32) {
|
|
|
|
if !lhh.lh.IsLighthouseIP(vpnIp) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
lhh.lh.Lock()
|
|
|
|
am := lhh.lh.unlockedGetRemoteList(n.Details.VpnIp)
|
|
|
|
am.Lock()
|
|
|
|
lhh.lh.Unlock()
|
2021-03-31 16:32:02 -06:00
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
am.unlockedSetV4(vpnIp, n.Details.Ip4AndPorts, lhh.lh.unlockedShouldAddV4)
|
|
|
|
am.unlockedSetV6(vpnIp, n.Details.Ip6AndPorts, lhh.lh.unlockedShouldAddV6)
|
|
|
|
am.Unlock()
|
2021-03-31 16:32:02 -06:00
|
|
|
|
|
|
|
// Non-blocking attempt to trigger, skip if it would block
|
|
|
|
select {
|
|
|
|
case lhh.lh.handshakeTrigger <- n.Details.VpnIp:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lhh *LightHouseHandler) handleHostUpdateNotification(n *NebulaMeta, vpnIp uint32) {
|
|
|
|
if !lhh.lh.amLighthouse {
|
|
|
|
if lhh.l.Level >= logrus.DebugLevel {
|
|
|
|
lhh.l.Debugln("I am not a lighthouse, do not take host updates: ", vpnIp)
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
2021-03-31 16:32:02 -06:00
|
|
|
return
|
|
|
|
}
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
//Simple check that the host sent this not someone else
|
|
|
|
if n.Details.VpnIp != vpnIp {
|
|
|
|
if lhh.l.Level >= logrus.DebugLevel {
|
|
|
|
lhh.l.WithField("vpnIp", IntIp(vpnIp)).WithField("answer", IntIp(n.Details.VpnIp)).Debugln("Host sent invalid update")
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
2021-03-31 16:32:02 -06:00
|
|
|
return
|
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
lhh.lh.Lock()
|
2021-04-14 12:50:09 -06:00
|
|
|
am := lhh.lh.unlockedGetRemoteList(vpnIp)
|
|
|
|
am.Lock()
|
|
|
|
lhh.lh.Unlock()
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-04-14 12:50:09 -06:00
|
|
|
am.unlockedSetV4(vpnIp, n.Details.Ip4AndPorts, lhh.lh.unlockedShouldAddV4)
|
|
|
|
am.unlockedSetV6(vpnIp, n.Details.Ip6AndPorts, lhh.lh.unlockedShouldAddV6)
|
|
|
|
am.Unlock()
|
2021-03-31 16:32:02 -06:00
|
|
|
}
|
2021-03-18 19:37:24 -06:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
func (lhh *LightHouseHandler) handleHostPunchNotification(n *NebulaMeta, vpnIp uint32, w EncWriter) {
|
|
|
|
if !lhh.lh.IsLighthouseIP(vpnIp) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
empty := []byte{0}
|
|
|
|
punch := func(vpnPeer *udpAddr) {
|
|
|
|
if vpnPeer == nil {
|
|
|
|
return
|
2021-03-18 19:37:24 -06:00
|
|
|
}
|
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
go func() {
|
|
|
|
time.Sleep(lhh.lh.punchDelay)
|
|
|
|
lhh.lh.metricHolepunchTx.Inc(1)
|
|
|
|
lhh.lh.punchConn.WriteTo(empty, vpnPeer)
|
|
|
|
}()
|
|
|
|
|
|
|
|
if lhh.l.Level >= logrus.DebugLevel {
|
|
|
|
//TODO: lacking the ip we are actually punching on, old: l.Debugf("Punching %s on %d for %s", IntIp(a.Ip), a.Port, IntIp(n.Details.VpnIp))
|
|
|
|
lhh.l.Debugf("Punching on %d for %s", vpnPeer.Port, IntIp(n.Details.VpnIp))
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
for _, a := range n.Details.Ip4AndPorts {
|
|
|
|
punch(NewUDPAddrFromLH4(a))
|
|
|
|
}
|
2020-06-26 11:45:48 -06:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
for _, a := range n.Details.Ip6AndPorts {
|
|
|
|
punch(NewUDPAddrFromLH6(a))
|
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-03-31 16:32:02 -06:00
|
|
|
// This sends a nebula test packet to the host trying to contact us. In the case
|
|
|
|
// of a double nat or other difficult scenario, this may help establish
|
|
|
|
// a tunnel.
|
|
|
|
if lhh.lh.punchBack {
|
|
|
|
go func() {
|
|
|
|
time.Sleep(time.Second * 5)
|
|
|
|
if lhh.l.Level >= logrus.DebugLevel {
|
|
|
|
lhh.l.Debugf("Sending a nebula test packet to vpn ip %s", IntIp(n.Details.VpnIp))
|
|
|
|
}
|
|
|
|
//NOTE: we have to allocate a new output buffer here since we are spawning a new goroutine
|
|
|
|
// for each punchBack packet. We should move this into a timerwheel or a single goroutine
|
|
|
|
// managed by a channel.
|
|
|
|
w.SendMessageToVpnIp(test, testRequest, n.Details.VpnIp, []byte(""), make([]byte, 12, 12), make([]byte, mtu))
|
|
|
|
}()
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 09:23:31 -06:00
|
|
|
// ipMaskContains checks if testIp is contained by ip after applying a cidr
|
|
|
|
// zeros is 32 - bits from net.IPMask.Size()
|
|
|
|
func ipMaskContains(ip uint32, zeros uint32, testIp uint32) bool {
|
|
|
|
return (testIp^ip)>>zeros == 0
|
|
|
|
}
|