2019-11-19 10:00:20 -07:00
|
|
|
package nebula
|
|
|
|
|
|
|
|
import (
|
2021-11-02 12:14:26 -06:00
|
|
|
"context"
|
2021-10-20 12:23:33 -06:00
|
|
|
"crypto/ed25519"
|
|
|
|
"crypto/rand"
|
2019-11-19 10:00:20 -07:00
|
|
|
"net"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/flynn/noise"
|
|
|
|
"github.com/slackhq/nebula/cert"
|
2023-03-31 14:45:05 -06:00
|
|
|
"github.com/slackhq/nebula/config"
|
2021-11-03 19:54:04 -06:00
|
|
|
"github.com/slackhq/nebula/iputil"
|
2021-11-10 20:47:38 -07:00
|
|
|
"github.com/slackhq/nebula/test"
|
2021-11-03 19:54:04 -06:00
|
|
|
"github.com/slackhq/nebula/udp"
|
2019-12-09 17:53:56 -07:00
|
|
|
"github.com/stretchr/testify/assert"
|
2019-11-19 10:00:20 -07:00
|
|
|
)
|
|
|
|
|
2021-11-03 19:54:04 -06:00
|
|
|
var vpnIp iputil.VpnIp
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2022-10-31 11:37:41 -06:00
|
|
|
func newTestLighthouse() *LightHouse {
|
|
|
|
lh := &LightHouse{
|
2023-12-19 10:58:31 -07:00
|
|
|
l: test.NewLogger(),
|
|
|
|
addrMap: map[iputil.VpnIp]*RemoteList{},
|
|
|
|
queryChan: make(chan iputil.VpnIp, 10),
|
2022-10-31 11:37:41 -06:00
|
|
|
}
|
|
|
|
lighthouses := map[iputil.VpnIp]struct{}{}
|
|
|
|
staticList := map[iputil.VpnIp]struct{}{}
|
|
|
|
|
|
|
|
lh.lighthouses.Store(&lighthouses)
|
|
|
|
lh.staticList.Store(&staticList)
|
|
|
|
|
|
|
|
return lh
|
|
|
|
}
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
func Test_NewConnectionManagerTest(t *testing.T) {
|
2021-11-10 20:47:38 -07:00
|
|
|
l := test.NewLogger()
|
2019-11-19 10:00:20 -07:00
|
|
|
//_, tuncidr, _ := net.ParseCIDR("1.1.1.1/24")
|
|
|
|
_, vpncidr, _ := net.ParseCIDR("172.1.1.1/24")
|
|
|
|
_, localrange, _ := net.ParseCIDR("10.1.1.1/24")
|
2021-11-03 19:54:04 -06:00
|
|
|
vpnIp = iputil.Ip2VpnIp(net.ParseIP("172.1.1.2"))
|
2019-11-19 10:00:20 -07:00
|
|
|
preferredRanges := []*net.IPNet{localrange}
|
|
|
|
|
|
|
|
// Very incomplete mock objects
|
2024-04-03 21:14:51 -06:00
|
|
|
hostMap := newHostMap(l, vpncidr)
|
|
|
|
hostMap.preferredRanges.Store(&preferredRanges)
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
cs := &CertState{
|
2023-08-14 20:32:40 -06:00
|
|
|
RawCertificate: []byte{},
|
|
|
|
PrivateKey: []byte{},
|
|
|
|
Certificate: &cert.NebulaCertificate{},
|
|
|
|
RawCertificateNoKey: []byte{},
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
2022-10-31 11:37:41 -06:00
|
|
|
lh := newTestLighthouse()
|
2019-11-19 10:00:20 -07:00
|
|
|
ifce := &Interface{
|
|
|
|
hostMap: hostMap,
|
2021-11-12 09:47:36 -07:00
|
|
|
inside: &test.NoopTun{},
|
2023-06-14 09:48:52 -06:00
|
|
|
outside: &udp.NoopConn{},
|
2019-11-19 10:00:20 -07:00
|
|
|
firewall: &Firewall{},
|
|
|
|
lightHouse: lh,
|
2023-08-14 20:32:40 -06:00
|
|
|
pki: &PKI{},
|
2023-08-21 17:51:45 -06:00
|
|
|
handshakeManager: NewHandshakeManager(l, hostMap, lh, &udp.NoopConn{}, defaultHandshakeConfig),
|
2021-03-26 08:46:30 -06:00
|
|
|
l: l,
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
2023-08-14 20:32:40 -06:00
|
|
|
ifce.pki.cs.Store(cs)
|
2019-11-19 10:00:20 -07:00
|
|
|
|
|
|
|
// Create manager
|
2021-11-02 12:14:26 -06:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
2023-03-31 14:45:05 -06:00
|
|
|
punchy := NewPunchyFromConfig(l, config.NewC(l))
|
|
|
|
nc := newConnectionManager(ctx, l, ifce, 5, 10, punchy)
|
2020-11-19 16:44:05 -07:00
|
|
|
p := []byte("")
|
|
|
|
nb := make([]byte, 12, 12)
|
|
|
|
out := make([]byte, mtu)
|
2023-03-31 14:45:05 -06:00
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
// Add an ip we have established a connection w/ to hostmap
|
2023-02-13 13:41:05 -07:00
|
|
|
hostinfo := &HostInfo{
|
|
|
|
vpnIp: vpnIp,
|
|
|
|
localIndexId: 1099,
|
|
|
|
remoteIndexId: 9901,
|
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
hostinfo.ConnectionState = &ConnectionState{
|
2023-08-21 13:11:06 -06:00
|
|
|
myCert: &cert.NebulaCertificate{},
|
|
|
|
H: &noise.HandshakeState{},
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
2023-03-13 11:35:14 -06:00
|
|
|
nc.hostMap.unlockedAddHostInfo(hostinfo, ifce)
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-11-03 19:54:04 -06:00
|
|
|
// We saw traffic out to vpnIp
|
2023-02-13 13:41:05 -07:00
|
|
|
nc.Out(hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
nc.In(hostinfo.localIndexId)
|
2023-02-13 13:41:05 -07:00
|
|
|
assert.NotContains(t, nc.pendingDeletion, hostinfo.localIndexId)
|
|
|
|
assert.Contains(t, nc.hostMap.Hosts, hostinfo.vpnIp)
|
|
|
|
assert.Contains(t, nc.hostMap.Indexes, hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
assert.Contains(t, nc.out, hostinfo.localIndexId)
|
|
|
|
|
|
|
|
// Do a traffic check tick, should not be pending deletion but should not have any in/out packets recorded
|
|
|
|
nc.doTrafficCheck(hostinfo.localIndexId, p, nb, out, time.Now())
|
|
|
|
assert.NotContains(t, nc.pendingDeletion, hostinfo.localIndexId)
|
|
|
|
assert.NotContains(t, nc.out, hostinfo.localIndexId)
|
|
|
|
assert.NotContains(t, nc.in, hostinfo.localIndexId)
|
|
|
|
|
|
|
|
// Do another traffic check tick, this host should be pending deletion now
|
2023-04-04 12:42:24 -06:00
|
|
|
nc.Out(hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
nc.doTrafficCheck(hostinfo.localIndexId, p, nb, out, time.Now())
|
2023-02-13 13:41:05 -07:00
|
|
|
assert.Contains(t, nc.pendingDeletion, hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
assert.NotContains(t, nc.out, hostinfo.localIndexId)
|
|
|
|
assert.NotContains(t, nc.in, hostinfo.localIndexId)
|
2023-02-13 13:41:05 -07:00
|
|
|
assert.Contains(t, nc.hostMap.Indexes, hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
assert.Contains(t, nc.hostMap.Hosts, hostinfo.vpnIp)
|
|
|
|
|
|
|
|
// Do a final traffic check tick, the host should now be removed
|
|
|
|
nc.doTrafficCheck(hostinfo.localIndexId, p, nb, out, time.Now())
|
2023-02-13 13:41:05 -07:00
|
|
|
assert.NotContains(t, nc.pendingDeletion, hostinfo.localIndexId)
|
|
|
|
assert.NotContains(t, nc.hostMap.Hosts, hostinfo.vpnIp)
|
|
|
|
assert.NotContains(t, nc.hostMap.Indexes, hostinfo.localIndexId)
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func Test_NewConnectionManagerTest2(t *testing.T) {
|
2021-11-10 20:47:38 -07:00
|
|
|
l := test.NewLogger()
|
2019-11-19 10:00:20 -07:00
|
|
|
//_, tuncidr, _ := net.ParseCIDR("1.1.1.1/24")
|
|
|
|
_, vpncidr, _ := net.ParseCIDR("172.1.1.1/24")
|
|
|
|
_, localrange, _ := net.ParseCIDR("10.1.1.1/24")
|
|
|
|
preferredRanges := []*net.IPNet{localrange}
|
|
|
|
|
|
|
|
// Very incomplete mock objects
|
2024-04-03 21:14:51 -06:00
|
|
|
hostMap := newHostMap(l, vpncidr)
|
|
|
|
hostMap.preferredRanges.Store(&preferredRanges)
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
cs := &CertState{
|
2023-08-14 20:32:40 -06:00
|
|
|
RawCertificate: []byte{},
|
|
|
|
PrivateKey: []byte{},
|
|
|
|
Certificate: &cert.NebulaCertificate{},
|
|
|
|
RawCertificateNoKey: []byte{},
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
2022-10-31 11:37:41 -06:00
|
|
|
lh := newTestLighthouse()
|
2019-11-19 10:00:20 -07:00
|
|
|
ifce := &Interface{
|
|
|
|
hostMap: hostMap,
|
2021-11-12 09:47:36 -07:00
|
|
|
inside: &test.NoopTun{},
|
2023-06-14 09:48:52 -06:00
|
|
|
outside: &udp.NoopConn{},
|
2019-11-19 10:00:20 -07:00
|
|
|
firewall: &Firewall{},
|
|
|
|
lightHouse: lh,
|
2023-08-14 20:32:40 -06:00
|
|
|
pki: &PKI{},
|
2023-08-21 17:51:45 -06:00
|
|
|
handshakeManager: NewHandshakeManager(l, hostMap, lh, &udp.NoopConn{}, defaultHandshakeConfig),
|
2021-03-26 08:46:30 -06:00
|
|
|
l: l,
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
2023-08-14 20:32:40 -06:00
|
|
|
ifce.pki.cs.Store(cs)
|
2019-11-19 10:00:20 -07:00
|
|
|
|
|
|
|
// Create manager
|
2021-11-02 12:14:26 -06:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
2023-03-31 14:45:05 -06:00
|
|
|
punchy := NewPunchyFromConfig(l, config.NewC(l))
|
|
|
|
nc := newConnectionManager(ctx, l, ifce, 5, 10, punchy)
|
2020-11-19 16:44:05 -07:00
|
|
|
p := []byte("")
|
|
|
|
nb := make([]byte, 12, 12)
|
|
|
|
out := make([]byte, mtu)
|
2023-03-31 14:45:05 -06:00
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
// Add an ip we have established a connection w/ to hostmap
|
2023-02-13 13:41:05 -07:00
|
|
|
hostinfo := &HostInfo{
|
|
|
|
vpnIp: vpnIp,
|
|
|
|
localIndexId: 1099,
|
|
|
|
remoteIndexId: 9901,
|
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
hostinfo.ConnectionState = &ConnectionState{
|
2023-08-21 13:11:06 -06:00
|
|
|
myCert: &cert.NebulaCertificate{},
|
|
|
|
H: &noise.HandshakeState{},
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
2023-03-13 11:35:14 -06:00
|
|
|
nc.hostMap.unlockedAddHostInfo(hostinfo, ifce)
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-11-03 19:54:04 -06:00
|
|
|
// We saw traffic out to vpnIp
|
2023-02-13 13:41:05 -07:00
|
|
|
nc.Out(hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
nc.In(hostinfo.localIndexId)
|
|
|
|
assert.NotContains(t, nc.pendingDeletion, hostinfo.vpnIp)
|
|
|
|
assert.Contains(t, nc.hostMap.Hosts, hostinfo.vpnIp)
|
|
|
|
assert.Contains(t, nc.hostMap.Indexes, hostinfo.localIndexId)
|
|
|
|
|
|
|
|
// Do a traffic check tick, should not be pending deletion but should not have any in/out packets recorded
|
|
|
|
nc.doTrafficCheck(hostinfo.localIndexId, p, nb, out, time.Now())
|
|
|
|
assert.NotContains(t, nc.pendingDeletion, hostinfo.localIndexId)
|
|
|
|
assert.NotContains(t, nc.out, hostinfo.localIndexId)
|
|
|
|
assert.NotContains(t, nc.in, hostinfo.localIndexId)
|
|
|
|
|
|
|
|
// Do another traffic check tick, this host should be pending deletion now
|
2023-04-04 12:42:24 -06:00
|
|
|
nc.Out(hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
nc.doTrafficCheck(hostinfo.localIndexId, p, nb, out, time.Now())
|
2023-02-13 13:41:05 -07:00
|
|
|
assert.Contains(t, nc.pendingDeletion, hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
assert.NotContains(t, nc.out, hostinfo.localIndexId)
|
|
|
|
assert.NotContains(t, nc.in, hostinfo.localIndexId)
|
2023-02-13 13:41:05 -07:00
|
|
|
assert.Contains(t, nc.hostMap.Indexes, hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
assert.Contains(t, nc.hostMap.Hosts, hostinfo.vpnIp)
|
|
|
|
|
|
|
|
// We saw traffic, should no longer be pending deletion
|
2023-02-13 13:41:05 -07:00
|
|
|
nc.In(hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
nc.doTrafficCheck(hostinfo.localIndexId, p, nb, out, time.Now())
|
2023-02-13 13:41:05 -07:00
|
|
|
assert.NotContains(t, nc.pendingDeletion, hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
assert.NotContains(t, nc.out, hostinfo.localIndexId)
|
|
|
|
assert.NotContains(t, nc.in, hostinfo.localIndexId)
|
2023-02-13 13:41:05 -07:00
|
|
|
assert.Contains(t, nc.hostMap.Indexes, hostinfo.localIndexId)
|
2023-03-31 14:45:05 -06:00
|
|
|
assert.Contains(t, nc.hostMap.Hosts, hostinfo.vpnIp)
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
2021-10-20 12:23:33 -06:00
|
|
|
|
|
|
|
// Check if we can disconnect the peer.
|
|
|
|
// Validate if the peer's certificate is invalid (expired, etc.)
|
|
|
|
// Disconnect only if disconnectInvalid: true is set.
|
|
|
|
func Test_NewConnectionManagerTest_DisconnectInvalid(t *testing.T) {
|
|
|
|
now := time.Now()
|
2021-11-10 20:47:38 -07:00
|
|
|
l := test.NewLogger()
|
2021-10-20 12:23:33 -06:00
|
|
|
ipNet := net.IPNet{
|
|
|
|
IP: net.IPv4(172, 1, 1, 2),
|
|
|
|
Mask: net.IPMask{255, 255, 255, 0},
|
|
|
|
}
|
|
|
|
_, vpncidr, _ := net.ParseCIDR("172.1.1.1/24")
|
|
|
|
_, localrange, _ := net.ParseCIDR("10.1.1.1/24")
|
|
|
|
preferredRanges := []*net.IPNet{localrange}
|
2024-04-03 21:14:51 -06:00
|
|
|
hostMap := newHostMap(l, vpncidr)
|
|
|
|
hostMap.preferredRanges.Store(&preferredRanges)
|
2021-10-20 12:23:33 -06:00
|
|
|
|
|
|
|
// Generate keys for CA and peer's cert.
|
|
|
|
pubCA, privCA, _ := ed25519.GenerateKey(rand.Reader)
|
|
|
|
caCert := cert.NebulaCertificate{
|
|
|
|
Details: cert.NebulaCertificateDetails{
|
|
|
|
Name: "ca",
|
|
|
|
NotBefore: now,
|
|
|
|
NotAfter: now.Add(1 * time.Hour),
|
|
|
|
IsCA: true,
|
|
|
|
PublicKey: pubCA,
|
|
|
|
},
|
|
|
|
}
|
2023-08-21 13:11:06 -06:00
|
|
|
|
|
|
|
assert.NoError(t, caCert.Sign(cert.Curve_CURVE25519, privCA))
|
2021-10-20 12:23:33 -06:00
|
|
|
ncp := &cert.NebulaCAPool{
|
|
|
|
CAs: cert.NewCAPool().CAs,
|
|
|
|
}
|
|
|
|
ncp.CAs["ca"] = &caCert
|
|
|
|
|
|
|
|
pubCrt, _, _ := ed25519.GenerateKey(rand.Reader)
|
|
|
|
peerCert := cert.NebulaCertificate{
|
|
|
|
Details: cert.NebulaCertificateDetails{
|
|
|
|
Name: "host",
|
|
|
|
Ips: []*net.IPNet{&ipNet},
|
|
|
|
Subnets: []*net.IPNet{},
|
|
|
|
NotBefore: now,
|
|
|
|
NotAfter: now.Add(60 * time.Second),
|
|
|
|
PublicKey: pubCrt,
|
|
|
|
IsCA: false,
|
|
|
|
Issuer: "ca",
|
|
|
|
},
|
|
|
|
}
|
2023-08-21 13:11:06 -06:00
|
|
|
assert.NoError(t, peerCert.Sign(cert.Curve_CURVE25519, privCA))
|
2021-10-20 12:23:33 -06:00
|
|
|
|
|
|
|
cs := &CertState{
|
2023-08-14 20:32:40 -06:00
|
|
|
RawCertificate: []byte{},
|
|
|
|
PrivateKey: []byte{},
|
|
|
|
Certificate: &cert.NebulaCertificate{},
|
|
|
|
RawCertificateNoKey: []byte{},
|
2021-10-20 12:23:33 -06:00
|
|
|
}
|
|
|
|
|
2022-10-31 11:37:41 -06:00
|
|
|
lh := newTestLighthouse()
|
2021-10-20 12:23:33 -06:00
|
|
|
ifce := &Interface{
|
2023-11-13 11:39:38 -07:00
|
|
|
hostMap: hostMap,
|
|
|
|
inside: &test.NoopTun{},
|
|
|
|
outside: &udp.NoopConn{},
|
|
|
|
firewall: &Firewall{},
|
|
|
|
lightHouse: lh,
|
|
|
|
handshakeManager: NewHandshakeManager(l, hostMap, lh, &udp.NoopConn{}, defaultHandshakeConfig),
|
|
|
|
l: l,
|
|
|
|
pki: &PKI{},
|
2021-10-20 12:23:33 -06:00
|
|
|
}
|
2023-08-14 20:32:40 -06:00
|
|
|
ifce.pki.cs.Store(cs)
|
|
|
|
ifce.pki.caPool.Store(ncp)
|
2023-11-13 11:39:38 -07:00
|
|
|
ifce.disconnectInvalid.Store(true)
|
2021-10-20 12:23:33 -06:00
|
|
|
|
|
|
|
// Create manager
|
2021-11-02 12:14:26 -06:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
2023-03-31 14:45:05 -06:00
|
|
|
punchy := NewPunchyFromConfig(l, config.NewC(l))
|
|
|
|
nc := newConnectionManager(ctx, l, ifce, 5, 10, punchy)
|
2021-10-20 12:23:33 -06:00
|
|
|
ifce.connectionManager = nc
|
2023-07-24 11:37:52 -06:00
|
|
|
|
|
|
|
hostinfo := &HostInfo{
|
|
|
|
vpnIp: vpnIp,
|
|
|
|
ConnectionState: &ConnectionState{
|
2023-08-21 13:11:06 -06:00
|
|
|
myCert: &cert.NebulaCertificate{},
|
|
|
|
peerCert: &peerCert,
|
|
|
|
H: &noise.HandshakeState{},
|
2023-07-24 11:37:52 -06:00
|
|
|
},
|
2021-10-20 12:23:33 -06:00
|
|
|
}
|
2023-07-24 11:37:52 -06:00
|
|
|
nc.hostMap.unlockedAddHostInfo(hostinfo, ifce)
|
2021-10-20 12:23:33 -06:00
|
|
|
|
|
|
|
// Move ahead 45s.
|
|
|
|
// Check if to disconnect with invalid certificate.
|
|
|
|
// Should be alive.
|
|
|
|
nextTick := now.Add(45 * time.Second)
|
2023-05-04 14:16:37 -06:00
|
|
|
invalid := nc.isInvalidCertificate(nextTick, hostinfo)
|
|
|
|
assert.False(t, invalid)
|
2021-10-20 12:23:33 -06:00
|
|
|
|
|
|
|
// Move ahead 61s.
|
|
|
|
// Check if to disconnect with invalid certificate.
|
|
|
|
// Should be disconnected.
|
|
|
|
nextTick = now.Add(61 * time.Second)
|
2023-05-04 14:16:37 -06:00
|
|
|
invalid = nc.isInvalidCertificate(nextTick, hostinfo)
|
|
|
|
assert.True(t, invalid)
|
2021-10-20 12:23:33 -06:00
|
|
|
}
|