2019-11-19 10:00:20 -07:00
|
|
|
package nebula
|
|
|
|
|
|
|
|
import (
|
2021-11-02 12:14:26 -06:00
|
|
|
"context"
|
2019-11-19 10:00:20 -07:00
|
|
|
"errors"
|
2022-06-27 10:37:54 -06:00
|
|
|
"fmt"
|
2020-07-28 06:53:16 -06:00
|
|
|
"io"
|
2022-06-27 10:37:54 -06:00
|
|
|
"net"
|
2019-11-19 10:00:20 -07:00
|
|
|
"os"
|
2021-02-25 13:01:14 -07:00
|
|
|
"runtime"
|
2021-11-08 11:36:31 -07:00
|
|
|
"sync/atomic"
|
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"
|
2021-11-03 19:54:04 -06:00
|
|
|
"github.com/slackhq/nebula/config"
|
|
|
|
"github.com/slackhq/nebula/firewall"
|
2023-04-07 12:28:37 -06:00
|
|
|
"github.com/slackhq/nebula/header"
|
2021-11-03 19:54:04 -06:00
|
|
|
"github.com/slackhq/nebula/iputil"
|
2021-11-10 20:52:26 -07:00
|
|
|
"github.com/slackhq/nebula/overlay"
|
2021-11-03 19:54:04 -06:00
|
|
|
"github.com/slackhq/nebula/udp"
|
2019-11-19 10:00:20 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
const mtu = 9001
|
|
|
|
|
|
|
|
type InterfaceConfig struct {
|
2019-11-23 09:50:36 -07:00
|
|
|
HostMap *HostMap
|
2021-11-03 19:54:04 -06:00
|
|
|
Outside *udp.Conn
|
2021-11-10 20:52:26 -07:00
|
|
|
Inside overlay.Device
|
2019-11-23 09:50:36 -07:00
|
|
|
certState *CertState
|
|
|
|
Cipher string
|
|
|
|
Firewall *Firewall
|
|
|
|
ServeDns bool
|
|
|
|
HandshakeManager *HandshakeManager
|
|
|
|
lightHouse *LightHouse
|
2023-03-31 14:45:05 -06:00
|
|
|
checkInterval time.Duration
|
|
|
|
pendingDeletionInterval time.Duration
|
2019-11-23 09:50:36 -07:00
|
|
|
DropLocalBroadcast bool
|
|
|
|
DropMulticast bool
|
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-10-20 12:23:33 -06:00
|
|
|
disconnectInvalid bool
|
2022-06-21 12:35:23 -06:00
|
|
|
relayManager *relayManager
|
2023-03-31 14:45:05 -06:00
|
|
|
punchy *Punchy
|
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
|
2021-11-03 19:54:04 -06:00
|
|
|
outside *udp.Conn
|
2021-11-10 20:52:26 -07:00
|
|
|
inside overlay.Device
|
2023-03-30 12:04:09 -06:00
|
|
|
certState atomic.Pointer[CertState]
|
2019-11-23 09:50:36 -07:00
|
|
|
cipher string
|
|
|
|
firewall *Firewall
|
|
|
|
connectionManager *connectionManager
|
|
|
|
handshakeManager *HandshakeManager
|
|
|
|
serveDns bool
|
|
|
|
createTime time.Time
|
|
|
|
lightHouse *LightHouse
|
2021-11-03 19:54:04 -06:00
|
|
|
localBroadcast iputil.VpnIp
|
|
|
|
myVpnIp iputil.VpnIp
|
2019-11-23 09:50:36 -07:00
|
|
|
dropLocalBroadcast bool
|
|
|
|
dropMulticast bool
|
2021-02-25 13:01:14 -07:00
|
|
|
routines int
|
2021-03-29 11:10:19 -06:00
|
|
|
caPool *cert.NebulaCAPool
|
2021-10-20 12:23:33 -06:00
|
|
|
disconnectInvalid bool
|
2022-10-31 11:37:41 -06:00
|
|
|
closed atomic.Bool
|
2022-06-21 12:35:23 -06:00
|
|
|
relayManager *relayManager
|
2021-03-01 18:06:01 -07:00
|
|
|
|
2022-06-27 10:37:54 -06:00
|
|
|
sendRecvErrorConfig sendRecvErrorConfig
|
|
|
|
|
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-11-03 19:54:04 -06:00
|
|
|
writers []*udp.Conn
|
2021-02-25 13:01:14 -07:00
|
|
|
readers []io.ReadWriteCloser
|
|
|
|
|
2021-04-27 20:23:18 -06:00
|
|
|
metricHandshakes metrics.Histogram
|
|
|
|
messageMetrics *MessageMetrics
|
|
|
|
cachedPacketMetrics *cachedPacketMetrics
|
|
|
|
|
|
|
|
l *logrus.Logger
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
2023-04-07 12:28:37 -06:00
|
|
|
type EncWriter interface {
|
|
|
|
SendVia(via *HostInfo,
|
|
|
|
relay *Relay,
|
|
|
|
ad,
|
|
|
|
nb,
|
|
|
|
out []byte,
|
|
|
|
nocopy bool,
|
|
|
|
)
|
|
|
|
SendMessageToVpnIp(t header.MessageType, st header.MessageSubType, vpnIp iputil.VpnIp, p, nb, out []byte)
|
2023-05-04 14:16:37 -06:00
|
|
|
SendMessageToHostInfo(t header.MessageType, st header.MessageSubType, hostinfo *HostInfo, p, nb, out []byte)
|
2023-04-07 12:28:37 -06:00
|
|
|
Handshake(vpnIp iputil.VpnIp)
|
|
|
|
}
|
|
|
|
|
2022-06-27 10:37:54 -06:00
|
|
|
type sendRecvErrorConfig uint8
|
|
|
|
|
|
|
|
const (
|
|
|
|
sendRecvErrorAlways sendRecvErrorConfig = iota
|
|
|
|
sendRecvErrorNever
|
|
|
|
sendRecvErrorPrivate
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s sendRecvErrorConfig) ShouldSendRecvError(ip net.IP) bool {
|
|
|
|
switch s {
|
|
|
|
case sendRecvErrorPrivate:
|
|
|
|
return ip.IsPrivate()
|
|
|
|
case sendRecvErrorAlways:
|
|
|
|
return true
|
|
|
|
case sendRecvErrorNever:
|
|
|
|
return false
|
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("invalid sendRecvErrorConfig value: %d", s))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s sendRecvErrorConfig) String() string {
|
|
|
|
switch s {
|
|
|
|
case sendRecvErrorAlways:
|
|
|
|
return "always"
|
|
|
|
case sendRecvErrorNever:
|
|
|
|
return "never"
|
|
|
|
case sendRecvErrorPrivate:
|
|
|
|
return "private"
|
|
|
|
default:
|
|
|
|
return fmt.Sprintf("invalid(%d)", s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-02 12:14:26 -06:00
|
|
|
func NewInterface(ctx context.Context, c *InterfaceConfig) (*Interface, error) {
|
2019-11-19 10:00:20 -07:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
2021-11-03 19:54:04 -06:00
|
|
|
myVpnIp := iputil.Ip2VpnIp(c.certState.certificate.Details.Ips[0].IP)
|
2019-11-19 10:00:20 -07:00
|
|
|
ifce := &Interface{
|
2019-11-23 09:50:36 -07:00
|
|
|
hostMap: c.HostMap,
|
|
|
|
outside: c.Outside,
|
|
|
|
inside: c.Inside,
|
|
|
|
cipher: c.Cipher,
|
|
|
|
firewall: c.Firewall,
|
|
|
|
serveDns: c.ServeDns,
|
|
|
|
handshakeManager: c.HandshakeManager,
|
|
|
|
createTime: time.Now(),
|
|
|
|
lightHouse: c.lightHouse,
|
2021-11-03 19:54:04 -06:00
|
|
|
localBroadcast: myVpnIp | ^iputil.Ip2VpnIp(c.certState.certificate.Details.Ips[0].Mask),
|
2019-11-23 09:50:36 -07:00
|
|
|
dropLocalBroadcast: c.DropLocalBroadcast,
|
|
|
|
dropMulticast: c.DropMulticast,
|
2021-02-25 13:01:14 -07:00
|
|
|
routines: c.routines,
|
2020-09-18 08:20:09 -06:00
|
|
|
version: c.version,
|
2021-11-03 19:54:04 -06:00
|
|
|
writers: make([]*udp.Conn, c.routines),
|
2021-02-25 13:01:14 -07:00
|
|
|
readers: make([]io.ReadWriteCloser, c.routines),
|
2021-03-29 11:10:19 -06:00
|
|
|
caPool: c.caPool,
|
2021-10-20 12:23:33 -06:00
|
|
|
disconnectInvalid: c.disconnectInvalid,
|
2021-11-03 19:54:04 -06:00
|
|
|
myVpnIp: myVpnIp,
|
2022-06-21 12:35:23 -06:00
|
|
|
relayManager: c.relayManager,
|
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-04-27 20:23:18 -06:00
|
|
|
cachedPacketMetrics: &cachedPacketMetrics{
|
|
|
|
sent: metrics.GetOrRegisterCounter("hostinfo.cached_packets.sent", nil),
|
|
|
|
dropped: metrics.GetOrRegisterCounter("hostinfo.cached_packets.dropped", nil),
|
|
|
|
},
|
|
|
|
|
|
|
|
l: c.l,
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
2023-03-30 12:04:09 -06:00
|
|
|
ifce.certState.Store(c.certState)
|
2023-03-31 14:45:05 -06:00
|
|
|
ifce.connectionManager = newConnectionManager(ctx, c.l, ifce, c.checkInterval, c.pendingDeletionInterval, c.punchy)
|
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-11-12 11:47:09 -07:00
|
|
|
f.l.WithField("interface", f.inside.Name()).WithField("network", f.inside.Cidr().String()).
|
2020-09-18 08:20:09 -06:00
|
|
|
WithField("build", f.version).WithField("udpAddr", addr).
|
2023-05-04 13:42:45 -06:00
|
|
|
WithField("boringcrypto", boringEnabled()).
|
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-11-08 11:36:31 -07:00
|
|
|
f.inside.Close()
|
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
|
|
|
|
2021-11-03 19:54:04 -06:00
|
|
|
var li *udp.Conn
|
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-11-03 19:54:04 -06:00
|
|
|
|
|
|
|
lhh := f.lightHouse.NewRequestHandler()
|
|
|
|
conntrackCache := firewall.NewConntrackCacheTicker(f.conntrackCacheTimeout)
|
2023-04-07 12:28:37 -06:00
|
|
|
li.ListenOut(readOutsidePackets(f), lhHandleRequest(lhh, f), conntrackCache, 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)
|
2021-11-03 19:54:04 -06:00
|
|
|
fwPacket := &firewall.Packet{}
|
2019-11-19 10:00:20 -07:00
|
|
|
nb := make([]byte, 12, 12)
|
|
|
|
|
2021-11-03 19:54:04 -06:00
|
|
|
conntrackCache := firewall.NewConntrackCacheTicker(f.conntrackCacheTimeout)
|
2021-03-01 17:52:17 -07:00
|
|
|
|
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 {
|
2022-10-31 11:37:41 -06:00
|
|
|
if errors.Is(err, os.ErrClosed) && f.closed.Load() {
|
2021-11-08 11:36:31 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-03 19:54:04 -06:00
|
|
|
func (f *Interface) RegisterConfigChangeCallbacks(c *config.C) {
|
2019-11-19 10:00:20 -07:00
|
|
|
c.RegisterReloadCallback(f.reloadCA)
|
|
|
|
c.RegisterReloadCallback(f.reloadCertKey)
|
|
|
|
c.RegisterReloadCallback(f.reloadFirewall)
|
2022-06-27 10:37:54 -06:00
|
|
|
c.RegisterReloadCallback(f.reloadSendRecvError)
|
2021-02-25 13:01:14 -07:00
|
|
|
for _, udpConn := range f.writers {
|
2021-11-03 19:54:04 -06:00
|
|
|
c.RegisterReloadCallback(udpConn.ReloadConfig)
|
2021-02-25 13:01:14 -07:00
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
|
2021-11-03 19:54:04 -06:00
|
|
|
func (f *Interface) reloadCA(c *config.C) {
|
2019-11-19 10:00:20 -07:00
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2021-11-03 19:54:04 -06:00
|
|
|
func (f *Interface) reloadCertKey(c *config.C) {
|
2019-11-19 10:00:20 -07:00
|
|
|
// 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
|
2023-03-30 12:04:09 -06:00
|
|
|
currentCert := f.certState.Load().certificate
|
|
|
|
oldIPs := currentCert.Details.Ips
|
2019-11-19 10:00:20 -07:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2023-03-30 12:04:09 -06:00
|
|
|
f.certState.Store(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
|
|
|
}
|
|
|
|
|
2021-11-03 19:54:04 -06:00
|
|
|
func (f *Interface) reloadFirewall(c *config.C) {
|
2019-11-19 10:00:20 -07:00
|
|
|
//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
|
|
|
|
}
|
|
|
|
|
2023-03-30 12:04:09 -06:00
|
|
|
fw, err := NewFirewallFromConfig(f.l, f.certState.Load().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")
|
|
|
|
}
|
|
|
|
|
2022-06-27 10:37:54 -06:00
|
|
|
func (f *Interface) reloadSendRecvError(c *config.C) {
|
|
|
|
if c.InitialLoad() || c.HasChanged("listen.send_recv_error") {
|
|
|
|
stringValue := c.GetString("listen.send_recv_error", "always")
|
|
|
|
|
|
|
|
switch stringValue {
|
|
|
|
case "always":
|
|
|
|
f.sendRecvErrorConfig = sendRecvErrorAlways
|
|
|
|
case "never":
|
|
|
|
f.sendRecvErrorConfig = sendRecvErrorNever
|
|
|
|
case "private":
|
|
|
|
f.sendRecvErrorConfig = sendRecvErrorPrivate
|
|
|
|
default:
|
|
|
|
if c.GetBool("listen.send_recv_error", true) {
|
|
|
|
f.sendRecvErrorConfig = sendRecvErrorAlways
|
|
|
|
} else {
|
|
|
|
f.sendRecvErrorConfig = sendRecvErrorNever
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
f.l.WithField("sendRecvError", f.sendRecvErrorConfig.String()).
|
|
|
|
Info("Loaded send_recv_error config")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-02 12:14:26 -06:00
|
|
|
func (f *Interface) emitStats(ctx context.Context, i time.Duration) {
|
2019-11-19 10:00:20 -07:00
|
|
|
ticker := time.NewTicker(i)
|
2021-11-02 12:14:26 -06:00
|
|
|
defer ticker.Stop()
|
2021-03-01 17:51:33 -07:00
|
|
|
|
2021-11-03 19:54:04 -06:00
|
|
|
udpStats := udp.NewUDPStatsEmitter(f.writers)
|
2021-03-01 17:51:33 -07:00
|
|
|
|
2023-04-03 19:18:16 -06:00
|
|
|
certExpirationGauge := metrics.GetOrRegisterGauge("certificate.ttl_seconds", nil)
|
|
|
|
|
2021-11-02 12:14:26 -06:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
case <-ticker.C:
|
|
|
|
f.firewall.EmitStats()
|
|
|
|
f.handshakeManager.EmitStats()
|
|
|
|
udpStats()
|
2023-04-03 19:18:16 -06:00
|
|
|
certExpirationGauge.Update(int64(f.certState.Load().certificate.Details.NotAfter.Sub(time.Now()) / time.Second))
|
2021-11-02 12:14:26 -06:00
|
|
|
}
|
2019-11-19 10:00:20 -07:00
|
|
|
}
|
|
|
|
}
|
2021-11-08 11:36:31 -07:00
|
|
|
|
|
|
|
func (f *Interface) Close() error {
|
2022-10-31 11:37:41 -06:00
|
|
|
f.closed.Store(true)
|
2021-11-08 11:36:31 -07:00
|
|
|
|
|
|
|
// Release the tun device
|
|
|
|
return f.inside.Close()
|
|
|
|
}
|