2019-11-19 10:00:20 -07:00
|
|
|
package nebula
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2020-07-28 06:53:16 -06:00
|
|
|
"io"
|
|
|
|
"net"
|
2019-11-19 10:00:20 -07:00
|
|
|
"os"
|
2021-02-25 13:01:14 -07:00
|
|
|
"runtime"
|
2019-11-19 10:00:20 -07:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/rcrowley/go-metrics"
|
2021-03-26 08:46:30 -06:00
|
|
|
"github.com/sirupsen/logrus"
|
2021-03-29 11:10:19 -06:00
|
|
|
"github.com/slackhq/nebula/cert"
|
2019-11-19 10:00:20 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
const mtu = 9001
|
|
|
|
|
2020-07-28 06:53:16 -06:00
|
|
|
type Inside interface {
|
|
|
|
io.ReadWriteCloser
|
|
|
|
Activate() error
|
|
|
|
CidrNet() *net.IPNet
|
|
|
|
DeviceName() string
|
|
|
|
WriteRaw([]byte) error
|
2021-02-25 13:01:14 -07:00
|
|
|
NewMultiQueueReader() (io.ReadWriteCloser, error)
|
2020-07-28 06:53:16 -06:00
|
|
|
}
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
type InterfaceConfig struct {
|
2019-11-23 09:50:36 -07:00
|
|
|
HostMap *HostMap
|
|
|
|
Outside *udpConn
|
2020-07-28 06:53:16 -06:00
|
|
|
Inside Inside
|
2019-11-23 09:50:36 -07:00
|
|
|
certState *CertState
|
|
|
|
Cipher string
|
|
|
|
Firewall *Firewall
|
|
|
|
ServeDns bool
|
|
|
|
HandshakeManager *HandshakeManager
|
|
|
|
lightHouse *LightHouse
|
|
|
|
checkInterval int
|
|
|
|
pendingDeletionInterval int
|
|
|
|
DropLocalBroadcast bool
|
|
|
|
DropMulticast bool
|
|
|
|
UDPBatchSize int
|
2021-02-25 13:01:14 -07:00
|
|
|
routines int
|
2020-06-26 11:45:48 -06:00
|
|
|
MessageMetrics *MessageMetrics
|
2020-09-18 08:20:09 -06:00
|
|
|
version string
|
2021-03-29 11:10:19 -06:00
|
|
|
caPool *cert.NebulaCAPool
|
2021-03-01 17:52:17 -07:00
|
|
|
|
|
|
|
ConntrackCacheTimeout time.Duration
|
2021-03-26 08:46:30 -06:00
|
|
|
l *logrus.Logger
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
type Interface struct {
|
2019-11-23 09:50:36 -07:00
|
|
|
hostMap *HostMap
|
|
|
|
outside *udpConn
|
2020-07-28 06:53:16 -06:00
|
|
|
inside Inside
|
2019-11-23 09:50:36 -07:00
|
|
|
certState *CertState
|
|
|
|
cipher string
|
|
|
|
firewall *Firewall
|
|
|
|
connectionManager *connectionManager
|
|
|
|
handshakeManager *HandshakeManager
|
|
|
|
serveDns bool
|
|
|
|
createTime time.Time
|
|
|
|
lightHouse *LightHouse
|
|
|
|
localBroadcast uint32
|
2021-04-01 09:23:31 -06:00
|
|
|
myVpnIp uint32
|
2019-11-23 09:50:36 -07:00
|
|
|
dropLocalBroadcast bool
|
|
|
|
dropMulticast bool
|
|
|
|
udpBatchSize int
|
2021-02-25 13:01:14 -07:00
|
|
|
routines int
|
2021-03-29 11:10:19 -06:00
|
|
|
caPool *cert.NebulaCAPool
|
2021-03-01 18:06:01 -07:00
|
|
|
|
|
|
|
// rebindCount is used to decide if an active tunnel should trigger a punch notification through a lighthouse
|
|
|
|
rebindCount int8
|
|
|
|
version string
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-03-01 17:52:17 -07:00
|
|
|
conntrackCacheTimeout time.Duration
|
|
|
|
|
2021-02-25 13:01:14 -07:00
|
|
|
writers []*udpConn
|
|
|
|
readers []io.ReadWriteCloser
|
|
|
|
|
2020-06-26 11:45:48 -06:00
|
|
|
metricHandshakes metrics.Histogram
|
|
|
|
messageMetrics *MessageMetrics
|
2021-03-26 08:46:30 -06:00
|
|
|
l *logrus.Logger
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewInterface(c *InterfaceConfig) (*Interface, error) {
|
|
|
|
if c.Outside == nil {
|
|
|
|
return nil, errors.New("no outside connection")
|
|
|
|
}
|
|
|
|
if c.Inside == nil {
|
|
|
|
return nil, errors.New("no inside interface (tun)")
|
|
|
|
}
|
|
|
|
if c.certState == nil {
|
|
|
|
return nil, errors.New("no certificate state")
|
|
|
|
}
|
|
|
|
if c.Firewall == nil {
|
|
|
|
return nil, errors.New("no firewall rules")
|
|
|
|
}
|
|
|
|
|
|
|
|
ifce := &Interface{
|
2019-11-23 09:50:36 -07:00
|
|
|
hostMap: c.HostMap,
|
|
|
|
outside: c.Outside,
|
|
|
|
inside: c.Inside,
|
|
|
|
certState: c.certState,
|
|
|
|
cipher: c.Cipher,
|
|
|
|
firewall: c.Firewall,
|
|
|
|
serveDns: c.ServeDns,
|
|
|
|
handshakeManager: c.HandshakeManager,
|
|
|
|
createTime: time.Now(),
|
|
|
|
lightHouse: c.lightHouse,
|
|
|
|
localBroadcast: ip2int(c.certState.certificate.Details.Ips[0].IP) | ^ip2int(c.certState.certificate.Details.Ips[0].Mask),
|
|
|
|
dropLocalBroadcast: c.DropLocalBroadcast,
|
|
|
|
dropMulticast: c.DropMulticast,
|
|
|
|
udpBatchSize: c.UDPBatchSize,
|
2021-02-25 13:01:14 -07:00
|
|
|
routines: c.routines,
|
2020-09-18 08:20:09 -06:00
|
|
|
version: c.version,
|
2021-02-25 13:01:14 -07:00
|
|
|
writers: make([]*udpConn, c.routines),
|
|
|
|
readers: make([]io.ReadWriteCloser, c.routines),
|
2021-03-29 11:10:19 -06:00
|
|
|
caPool: c.caPool,
|
2021-04-01 09:23:31 -06:00
|
|
|
myVpnIp: ip2int(c.certState.certificate.Details.Ips[0].IP),
|
2019-11-19 10:00:20 -07:00
|
|
|
|
2021-03-01 17:52:17 -07:00
|
|
|
conntrackCacheTimeout: c.ConntrackCacheTimeout,
|
|
|
|
|
2020-06-26 11:45:48 -06:00
|
|
|
metricHandshakes: metrics.GetOrRegisterHistogram("handshakes", nil, metrics.NewExpDecaySample(1028, 0.015)),
|
|
|
|
messageMetrics: c.MessageMetrics,
|
2021-03-26 08:46:30 -06:00
|
|
|
l: c.l,
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
2021-03-26 08:46:30 -06:00
|
|
|
ifce.connectionManager = newConnectionManager(c.l, ifce, c.checkInterval, c.pendingDeletionInterval)
|
2019-11-19 10:00:20 -07:00
|
|
|
|
|
|
|
return ifce, nil
|
|
|
|
}
|
|
|
|
|
2021-04-16 09:34:28 -06:00
|
|
|
// activate creates the interface on the host. After the interface is created, any
|
|
|
|
// other services that want to bind listeners to its IP may do so successfully. However,
|
|
|
|
// the interface isn't going to process anything until run() is called.
|
|
|
|
func (f *Interface) activate() {
|
2019-11-19 10:00:20 -07:00
|
|
|
// actually turn on tun dev
|
|
|
|
|
2020-02-06 22:17:43 -07:00
|
|
|
addr, err := f.outside.LocalAddr()
|
|
|
|
if err != nil {
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.WithError(err).Error("Failed to get udp listen address")
|
2020-02-06 22:17:43 -07:00
|
|
|
}
|
|
|
|
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.WithField("interface", f.inside.DeviceName()).WithField("network", f.inside.CidrNet().String()).
|
2020-09-18 08:20:09 -06:00
|
|
|
WithField("build", f.version).WithField("udpAddr", addr).
|
2019-11-19 10:00:20 -07:00
|
|
|
Info("Nebula interface is active")
|
|
|
|
|
2021-02-25 13:01:14 -07:00
|
|
|
metrics.GetOrRegisterGauge("routines", nil).Update(int64(f.routines))
|
|
|
|
|
2021-03-01 14:57:05 -07:00
|
|
|
// Prepare n tun queues
|
2021-02-25 13:01:14 -07:00
|
|
|
var reader io.ReadWriteCloser = f.inside
|
|
|
|
for i := 0; i < f.routines; i++ {
|
|
|
|
if i > 0 {
|
|
|
|
reader, err = f.inside.NewMultiQueueReader()
|
|
|
|
if err != nil {
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.Fatal(err)
|
2021-02-25 13:01:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
f.readers[i] = reader
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := f.inside.Activate(); err != nil {
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.Fatal(err)
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
2021-04-16 09:34:28 -06:00
|
|
|
}
|
2021-03-01 14:57:05 -07:00
|
|
|
|
2021-04-16 09:34:28 -06:00
|
|
|
func (f *Interface) run() {
|
2021-03-05 19:18:33 -07:00
|
|
|
// Launch n queues to read packets from udp
|
|
|
|
for i := 0; i < f.routines; i++ {
|
|
|
|
go f.listenOut(i)
|
|
|
|
}
|
|
|
|
|
2021-03-01 14:57:05 -07:00
|
|
|
// Launch n queues to read packets from tun dev
|
|
|
|
for i := 0; i < f.routines; i++ {
|
|
|
|
go f.listenIn(f.readers[i], i)
|
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Interface) listenOut(i int) {
|
2021-02-25 13:01:14 -07:00
|
|
|
runtime.LockOSThread()
|
2019-11-19 10:00:20 -07:00
|
|
|
|
|
|
|
var li *udpConn
|
2021-02-25 13:01:14 -07:00
|
|
|
// TODO clean this up with a coherent interface for each outside connection
|
2019-11-19 10:00:20 -07:00
|
|
|
if i > 0 {
|
2021-02-25 13:01:14 -07:00
|
|
|
li = f.writers[i]
|
2019-11-19 10:00:20 -07:00
|
|
|
} else {
|
|
|
|
li = f.outside
|
|
|
|
}
|
2021-02-25 13:01:14 -07:00
|
|
|
li.ListenOut(f, i)
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
2021-02-25 13:01:14 -07:00
|
|
|
func (f *Interface) listenIn(reader io.ReadWriteCloser, i int) {
|
|
|
|
runtime.LockOSThread()
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
packet := make([]byte, mtu)
|
|
|
|
out := make([]byte, mtu)
|
|
|
|
fwPacket := &FirewallPacket{}
|
|
|
|
nb := make([]byte, 12, 12)
|
|
|
|
|
2021-03-01 17:52:17 -07:00
|
|
|
conntrackCache := NewConntrackCacheTicker(f.conntrackCacheTimeout)
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
for {
|
2021-02-25 13:01:14 -07:00
|
|
|
n, err := reader.Read(packet)
|
2019-11-19 10:00:20 -07:00
|
|
|
if err != nil {
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.WithError(err).Error("Error while reading outbound packet")
|
2019-11-19 10:00:20 -07:00
|
|
|
// This only seems to happen when something fatal happens to the fd, so exit.
|
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
|
2021-03-26 08:46:30 -06:00
|
|
|
f.consumeInsidePacket(packet[:n], fwPacket, nb, out, i, conntrackCache.Get(f.l))
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Interface) RegisterConfigChangeCallbacks(c *Config) {
|
|
|
|
c.RegisterReloadCallback(f.reloadCA)
|
|
|
|
c.RegisterReloadCallback(f.reloadCertKey)
|
|
|
|
c.RegisterReloadCallback(f.reloadFirewall)
|
2021-02-25 13:01:14 -07:00
|
|
|
for _, udpConn := range f.writers {
|
|
|
|
c.RegisterReloadCallback(udpConn.reloadConfig)
|
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Interface) reloadCA(c *Config) {
|
|
|
|
// reload and check regardless
|
|
|
|
// todo: need mutex?
|
2021-03-26 08:46:30 -06:00
|
|
|
newCAs, err := loadCAFromConfig(f.l, c)
|
2019-11-19 10:00:20 -07:00
|
|
|
if err != nil {
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.WithError(err).Error("Could not refresh trusted CA certificates")
|
2019-11-19 10:00:20 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-03-29 11:10:19 -06:00
|
|
|
f.caPool = newCAs
|
|
|
|
f.l.WithField("fingerprints", f.caPool.GetFingerprints()).Info("Trusted CA certificates refreshed")
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Interface) reloadCertKey(c *Config) {
|
|
|
|
// reload and check in all cases
|
|
|
|
cs, err := NewCertStateFromConfig(c)
|
|
|
|
if err != nil {
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.WithError(err).Error("Could not refresh client cert")
|
2019-11-19 10:00:20 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// did IP in cert change? if so, don't set
|
|
|
|
oldIPs := f.certState.certificate.Details.Ips
|
|
|
|
newIPs := cs.certificate.Details.Ips
|
|
|
|
if len(oldIPs) > 0 && len(newIPs) > 0 && oldIPs[0].String() != newIPs[0].String() {
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.WithField("new_ip", newIPs[0]).WithField("old_ip", oldIPs[0]).Error("IP in new cert was different from old")
|
2019-11-19 10:00:20 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
f.certState = cs
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.WithField("cert", cs.certificate).Info("Client cert refreshed from disk")
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Interface) reloadFirewall(c *Config) {
|
|
|
|
//TODO: need to trigger/detect if the certificate changed too
|
|
|
|
if c.HasChanged("firewall") == false {
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.Debug("No firewall config change detected")
|
2019-11-19 10:00:20 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-03-26 08:46:30 -06:00
|
|
|
fw, err := NewFirewallFromConfig(f.l, f.certState.certificate, c)
|
2019-11-19 10:00:20 -07:00
|
|
|
if err != nil {
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.WithError(err).Error("Error while creating firewall during reload")
|
2019-11-19 10:00:20 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
oldFw := f.firewall
|
2020-07-31 16:53:36 -06:00
|
|
|
conntrack := oldFw.Conntrack
|
|
|
|
conntrack.Lock()
|
|
|
|
defer conntrack.Unlock()
|
|
|
|
|
|
|
|
fw.rulesVersion = oldFw.rulesVersion + 1
|
|
|
|
// If rulesVersion is back to zero, we have wrapped all the way around. Be
|
|
|
|
// safe and just reset conntrack in this case.
|
|
|
|
if fw.rulesVersion == 0 {
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.WithField("firewallHash", fw.GetRuleHash()).
|
2020-07-31 16:53:36 -06:00
|
|
|
WithField("oldFirewallHash", oldFw.GetRuleHash()).
|
|
|
|
WithField("rulesVersion", fw.rulesVersion).
|
|
|
|
Warn("firewall rulesVersion has overflowed, resetting conntrack")
|
|
|
|
} else {
|
|
|
|
fw.Conntrack = conntrack
|
|
|
|
}
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
f.firewall = fw
|
|
|
|
|
|
|
|
oldFw.Destroy()
|
2021-03-26 08:46:30 -06:00
|
|
|
f.l.WithField("firewallHash", fw.GetRuleHash()).
|
2019-11-19 10:00:20 -07:00
|
|
|
WithField("oldFirewallHash", oldFw.GetRuleHash()).
|
2020-07-31 16:53:36 -06:00
|
|
|
WithField("rulesVersion", fw.rulesVersion).
|
2019-11-19 10:00:20 -07:00
|
|
|
Info("New firewall has been installed")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Interface) emitStats(i time.Duration) {
|
|
|
|
ticker := time.NewTicker(i)
|
2021-03-01 17:51:33 -07:00
|
|
|
|
|
|
|
udpStats := NewUDPStatsEmitter(f.writers)
|
|
|
|
|
2019-11-19 10:00:20 -07:00
|
|
|
for range ticker.C {
|
|
|
|
f.firewall.EmitStats()
|
|
|
|
f.handshakeManager.EmitStats()
|
2021-03-01 17:51:33 -07:00
|
|
|
|
|
|
|
udpStats()
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
}
|