netmaker/netclient/functions/daemon.go

271 lines
9 KiB
Go
Raw Normal View History

2022-01-03 00:02:59 +08:00
package functions
import (
"context"
2022-01-03 00:02:59 +08:00
"encoding/json"
"log"
"os"
"os/signal"
"runtime"
"syscall"
2022-01-03 00:02:59 +08:00
"time"
mqtt "github.com/eclipse/paho.mqtt.golang"
"github.com/gravitl/netmaker/models"
2022-01-03 00:02:59 +08:00
"github.com/gravitl/netmaker/netclient/config"
"github.com/gravitl/netmaker/netclient/ncutils"
"github.com/gravitl/netmaker/netclient/wireguard"
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
2022-01-03 00:02:59 +08:00
)
2022-01-04 07:27:13 +08:00
// Daemon runs netclient daemon from command line
2022-01-03 00:02:59 +08:00
func Daemon() error {
2022-01-04 05:26:40 +08:00
ctx, cancel := context.WithCancel(context.Background())
2022-01-03 00:02:59 +08:00
networks, err := ncutils.GetSystemNetworks()
if err != nil {
2022-01-04 07:27:13 +08:00
cancel()
2022-01-03 00:02:59 +08:00
return err
}
for _, network := range networks {
2022-01-16 07:16:44 +08:00
go MessageQueue(ctx, network)
2022-01-03 00:02:59 +08:00
}
2022-01-04 05:26:40 +08:00
quit := make(chan os.Signal, 1)
signal.Notify(quit, syscall.SIGTERM, os.Interrupt)
<-quit
cancel()
ncutils.Log("all done")
2022-01-03 00:02:59 +08:00
return nil
}
2022-01-04 07:27:13 +08:00
// SetupMQTT creates a connection to broker and return client
func SetupMQTT(cfg *config.ClientConfig) mqtt.Client {
2022-01-03 00:02:59 +08:00
opts := mqtt.NewClientOptions()
ncutils.Log("setting broker to " + cfg.Server.CoreDNSAddr + ":1883")
opts.AddBroker(cfg.Server.CoreDNSAddr + ":1883")
opts.SetDefaultPublishHandler(All)
client := mqtt.NewClient(opts)
if token := client.Connect(); token.Wait() && token.Error() != nil {
log.Fatal(token.Error())
}
return client
}
2022-01-16 07:16:44 +08:00
// MessageQueue sets up Message Queue and subsribes/publishes updates to/from server
func MessageQueue(ctx context.Context, network string) {
ncutils.Log("netclient go routine started for " + network)
2022-01-21 19:16:49 +08:00
var cfg config.ClientConfig
cfg.Network = network
cfg.ReadConfig()
ncutils.Log("daemon started for network:" + network)
2022-01-21 19:16:49 +08:00
client := SetupMQTT(&cfg)
if cfg.DebugOn {
if token := client.Subscribe("#", 0, nil); token.Wait() && token.Error() != nil {
log.Fatal(token.Error())
}
2022-01-03 00:02:59 +08:00
}
2022-01-20 04:00:03 +08:00
if token := client.Subscribe("update/"+cfg.Node.ID, 0, NodeUpdate); token.Wait() && token.Error() != nil {
log.Fatal(token.Error())
}
if token := client.Subscribe("/update/peers/"+cfg.Node.ID, 0, UpdatePeers); token.Wait() && token.Error() != nil {
log.Fatal(token.Error())
}
defer client.Disconnect(250)
2022-01-21 19:16:49 +08:00
go Checkin(ctx, &cfg, network)
<-ctx.Done()
ncutils.Log("shutting down daemon")
2022-01-03 00:02:59 +08:00
}
2022-01-04 07:27:13 +08:00
// All -- mqtt message hander for all ('#') topics
2022-01-03 00:02:59 +08:00
var All mqtt.MessageHandler = func(client mqtt.Client, msg mqtt.Message) {
2022-01-20 04:00:03 +08:00
ncutils.Log("default message handler -- received message but not handling")
2022-01-03 00:02:59 +08:00
ncutils.Log("Topic: " + string(msg.Topic()))
2022-01-20 04:00:03 +08:00
//ncutils.Log("Message: " + string(msg.Payload()))
2022-01-03 00:02:59 +08:00
}
2022-01-04 07:27:13 +08:00
// NodeUpdate -- mqtt message handler for /update/<NodeID> topic
2022-01-03 00:02:59 +08:00
var NodeUpdate mqtt.MessageHandler = func(client mqtt.Client, msg mqtt.Message) {
ncutils.Log("received message to update node " + string(msg.Payload()))
//potentiall blocking i/o so do this in a go routine
go func() {
var newNode models.Node
var cfg config.ClientConfig
cfg.Network = newNode.Network
cfg.ReadConfig()
err := json.Unmarshal(msg.Payload(), &newNode)
if err != nil {
ncutils.Log("error unmarshalling node update data" + err.Error())
return
}
//check if interface name has changed if so delete.
if cfg.Node.Interface != newNode.Interface {
if err = wireguard.RemoveConf(cfg.Node.Interface, true); err != nil {
2022-01-13 05:23:34 +08:00
ncutils.PrintLog("could not delete old interface "+cfg.Node.Interface+": "+err.Error(), 1)
}
}
newNode.PullChanges = "no"
//ensure that OS never changes
newNode.OS = runtime.GOOS
cfg.Node = newNode
switch newNode.Action {
case models.NODE_DELETE:
2022-01-13 05:23:34 +08:00
if err := RemoveLocalInstance(&cfg, cfg.Network); err != nil {
ncutils.PrintLog("error deleting local instance: "+err.Error(), 1)
return
}
case models.NODE_UPDATE_KEY:
2022-01-13 05:23:34 +08:00
UpdateKeys(&cfg, client)
case models.NODE_NOOP:
default:
}
//Save new config
if err := config.Write(&cfg, cfg.Network); err != nil {
ncutils.PrintLog("error updating node configuration: "+err.Error(), 1)
}
nameserver := cfg.Server.CoreDNSAddr
2022-01-13 05:23:34 +08:00
privateKey, err := wireguard.RetrievePrivKey(newNode.Network)
if err != nil {
ncutils.Log("error reading PrivateKey " + err.Error())
return
}
2022-01-13 05:23:34 +08:00
if err := wireguard.UpdateWgInterface(cfg.Node.Interface, privateKey, nameserver, newNode); err != nil {
ncutils.Log("error updating wireguard config " + err.Error())
return
}
file := ncutils.GetNetclientPathSpecific() + cfg.Node.Interface + ".conf"
ncutils.Log("applyWGQuickConf to " + file)
err = wireguard.ApplyWGQuickConf(file)
if err != nil {
ncutils.Log("error restarting wg after node update " + err.Error())
return
}
}()
2022-01-03 00:02:59 +08:00
}
2022-01-04 07:27:13 +08:00
// UpdatePeers -- mqtt message handler for /update/peers/<NodeID> topic
2022-01-03 00:02:59 +08:00
var UpdatePeers mqtt.MessageHandler = func(client mqtt.Client, msg mqtt.Message) {
go func() {
var peerUpdate models.PeerUpdate
err := json.Unmarshal(msg.Payload(), &peerUpdate)
if err != nil {
ncutils.Log("error unmarshalling peer data")
return
}
2022-01-20 04:00:03 +08:00
ncutils.Log("update peer handler")
var cfg config.ClientConfig
cfg.Network = peerUpdate.Network
cfg.ReadConfig()
2022-01-16 07:16:44 +08:00
err = wireguard.UpdateWgPeers(cfg.Node.Interface, peerUpdate.Peers)
if err != nil {
ncutils.Log("error updating wireguard peers" + err.Error())
return
}
2022-01-20 04:00:03 +08:00
file := ncutils.GetNetclientPathSpecific() + cfg.Node.Interface + ".conf"
ncutils.Log("applyWGQuickConf to " + file)
err = wireguard.ApplyWGQuickConf(file)
if err != nil {
ncutils.Log("error restarting wg after peer update " + err.Error())
return
}
}()
2022-01-03 00:02:59 +08:00
}
// UpdateKeys -- updates private key and returns new publickey
func UpdateKeys(cfg *config.ClientConfig, client mqtt.Client) (*config.ClientConfig, error) {
ncutils.Log("received message to update keys")
//potentiall blocking i/o so do this in a go routine
key, err := wgtypes.GeneratePrivateKey()
if err != nil {
ncutils.Log("error generating privatekey " + err.Error())
return cfg, err
}
2022-01-13 05:23:34 +08:00
if err := wireguard.UpdatePrivateKey(cfg.Node.Interface, key.String()); err != nil {
ncutils.Log("error updating wireguard key " + err.Error())
return cfg, err
}
publicKey := key.PublicKey()
if token := client.Publish("update/publickey/"+cfg.Node.ID, 0, false, publicKey.String()); token.Wait() && token.Error() != nil {
ncutils.Log("error publishing publickey update " + token.Error().Error())
client.Disconnect(250)
return cfg, err
}
if err := config.ModConfig(&cfg.Node); err != nil {
ncutils.Log("error updating local config " + err.Error())
}
return cfg, nil
2022-01-03 00:02:59 +08:00
}
2022-01-04 07:27:13 +08:00
// Checkin -- go routine that checks for public or local ip changes, publishes changes
// if there are no updates, simply "pings" the server as a checkin
func Checkin(ctx context.Context, cfg *config.ClientConfig, network string) {
for {
select {
case <-ctx.Done():
ncutils.Log("Checkin cancelled")
return
//delay should be configuraable -> use cfg.Node.NetworkSettings.DefaultCheckInInterval ??
2022-01-19 06:36:10 +08:00
case <-time.After(time.Second * 60):
ncutils.Log("Checkin running")
//read latest config
cfg.ReadConfig()
if cfg.Node.Roaming == "yes" && cfg.Node.IsStatic != "yes" {
extIP, err := ncutils.GetPublicIP()
if err != nil {
ncutils.PrintLog("error encountered checking ip addresses: "+err.Error(), 1)
}
if cfg.Node.Endpoint != extIP && extIP != "" {
ncutils.PrintLog("endpoint has changed from "+cfg.Node.Endpoint+" to "+extIP, 1)
cfg.Node.Endpoint = extIP
PublishNodeUpdate(cfg)
}
intIP, err := getPrivateAddr()
if err != nil {
ncutils.PrintLog("error encountered checking ip addresses: "+err.Error(), 1)
}
if cfg.Node.LocalAddress != intIP && intIP != "" {
ncutils.PrintLog("local Address has changed from "+cfg.Node.LocalAddress+" to "+intIP, 1)
cfg.Node.LocalAddress = intIP
PublishNodeUpdate(cfg)
}
} else {
localIP, err := ncutils.GetLocalIP(cfg.Node.LocalRange)
if err != nil {
ncutils.PrintLog("error encountered checking ip addresses: "+err.Error(), 1)
}
if cfg.Node.Endpoint != localIP && localIP != "" {
ncutils.PrintLog("endpoint has changed from "+cfg.Node.Endpoint+" to "+localIP, 1)
cfg.Node.Endpoint = localIP
PublishNodeUpdate(cfg)
}
2022-01-03 00:02:59 +08:00
}
Hello(cfg, network)
ncutils.Log("Checkin complete")
2022-01-03 00:02:59 +08:00
}
}
}
// PublishNodeUpdates -- saves node and pushes changes to broker
func PublishNodeUpdate(cfg *config.ClientConfig) {
if err := config.Write(cfg, cfg.Network); err != nil {
ncutils.Log("error saving configuration" + err.Error())
}
client := SetupMQTT(cfg)
data, err := json.Marshal(cfg.Node)
if err != nil {
ncutils.Log("error marshling node update " + err.Error())
2022-01-03 00:02:59 +08:00
}
if token := client.Publish("update/"+cfg.Node.ID, 0, false, data); token.Wait() && token.Error() != nil {
ncutils.Log("error publishing endpoint update " + token.Error().Error())
}
client.Disconnect(250)
}
2022-01-04 07:27:13 +08:00
// Hello -- ping the broker to let server know node is alive and doing fine
func Hello(cfg *config.ClientConfig, network string) {
client := SetupMQTT(cfg)
ncutils.Log("sending ping " + cfg.Node.ID)
if token := client.Publish("ping/"+cfg.Node.ID, 2, false, "hello world!"); token.Wait() && token.Error() != nil {
ncutils.Log("error publishing ping " + token.Error().Error())
}
client.Disconnect(250)
}