netmaker/mq/mq.go

126 lines
4.1 KiB
Go
Raw Normal View History

2022-01-13 05:23:34 +08:00
package mq
import (
"context"
2023-03-16 19:09:41 +08:00
"fmt"
2023-02-20 18:26:11 +08:00
"log"
"time"
2022-01-13 05:23:34 +08:00
mqtt "github.com/eclipse/paho.mqtt.golang"
"github.com/gravitl/netmaker/logger"
2022-02-09 04:05:37 +08:00
"github.com/gravitl/netmaker/netclient/ncutils"
2022-01-19 06:32:12 +08:00
"github.com/gravitl/netmaker/servercfg"
2022-01-13 05:23:34 +08:00
)
2022-02-09 08:13:58 +08:00
// KEEPALIVE_TIMEOUT - time in seconds for timeout
2022-02-02 03:01:13 +08:00
const KEEPALIVE_TIMEOUT = 60 //timeout in seconds
2022-02-09 08:13:58 +08:00
// MQ_DISCONNECT - disconnects MQ
const MQ_DISCONNECT = 250
2022-05-16 21:38:47 +08:00
// MQ_TIMEOUT - timeout for MQ
const MQ_TIMEOUT = 30
2022-02-09 10:49:47 +08:00
var peer_force_send = 0
2022-08-30 02:08:01 +08:00
var mqclient mqtt.Client
2022-09-26 19:27:10 +08:00
func setMqOptions(user, password string, opts *mqtt.ClientOptions) {
2022-09-14 02:03:39 +08:00
broker, _ := servercfg.GetMessageQueueEndpoint()
opts.AddBroker(broker)
2022-02-09 04:05:37 +08:00
id := ncutils.MakeRandomString(23)
opts.ClientID = id
2022-09-26 19:27:10 +08:00
opts.SetUsername(user)
opts.SetPassword(password)
2022-02-09 08:13:58 +08:00
opts.SetAutoReconnect(true)
opts.SetConnectRetry(true)
opts.SetConnectRetryInterval(time.Second << 2)
opts.SetKeepAlive(time.Minute)
opts.SetWriteTimeout(time.Minute)
2022-09-26 19:27:10 +08:00
}
// SetupMQTT creates a connection to broker and return client
func SetupMQTT() {
if servercfg.GetBrokerType() == servercfg.EmqxBrokerType {
time.Sleep(10 * time.Second) // wait for the REST endpoint to be ready
2023-02-20 18:26:11 +08:00
// setup authenticator and create admin user
if err := CreateEmqxDefaultAuthenticator(); err != nil {
logger.Log(0, err.Error())
}
DeleteEmqxUser(servercfg.GetMqUserName())
2023-02-20 18:26:11 +08:00
if err := CreateEmqxUser(servercfg.GetMqUserName(), servercfg.GetMqPassword(), true); err != nil {
log.Fatal(err)
}
2023-03-03 19:31:20 +08:00
// create an ACL authorization source for the built in EMQX MNESIA database
if err := CreateEmqxDefaultAuthorizer(); err != nil {
logger.Log(0, err.Error())
}
// create a default deny ACL to all topics for all users
if err := CreateDefaultDenyRule(); err != nil {
log.Fatal(err)
}
2023-02-20 18:26:11 +08:00
}
2022-09-26 19:27:10 +08:00
opts := mqtt.NewClientOptions()
setMqOptions(servercfg.GetMqUserName(), servercfg.GetMqPassword(), opts)
2022-02-09 08:13:58 +08:00
opts.SetOnConnectHandler(func(client mqtt.Client) {
2023-03-16 19:09:41 +08:00
serverName := servercfg.GetServer()
if token := client.Subscribe(fmt.Sprintf("update/%s/#", serverName), 0, mqtt.MessageHandler(UpdateNode)); token.WaitTimeout(MQ_TIMEOUT*time.Second) && token.Error() != nil {
2022-08-30 02:08:01 +08:00
client.Disconnect(240)
logger.Log(0, "node update subscription failed")
}
2023-03-16 19:09:41 +08:00
if token := client.Subscribe(fmt.Sprintf("host/serverupdate/%s/#", serverName), 0, mqtt.MessageHandler(UpdateHost)); token.WaitTimeout(MQ_TIMEOUT*time.Second) && token.Error() != nil {
client.Disconnect(240)
logger.Log(0, "host update subscription failed")
}
2023-03-16 19:09:41 +08:00
if token := client.Subscribe(fmt.Sprintf("signal/%s/#", serverName), 0, mqtt.MessageHandler(ClientPeerUpdate)); token.WaitTimeout(MQ_TIMEOUT*time.Second) && token.Error() != nil {
2022-08-30 02:08:01 +08:00
client.Disconnect(240)
logger.Log(0, "node client subscription failed")
}
2023-03-16 19:09:41 +08:00
if token := client.Subscribe(fmt.Sprintf("metrics/%s/#", serverName), 0, mqtt.MessageHandler(UpdateMetrics)); token.WaitTimeout(MQ_TIMEOUT*time.Second) && token.Error() != nil {
client.Disconnect(240)
2022-09-14 03:25:56 +08:00
logger.Log(0, "node metrics subscription failed")
}
2022-08-30 02:08:01 +08:00
opts.SetOrderMatters(true)
opts.SetResumeSubs(true)
2022-02-09 08:13:58 +08:00
})
2022-08-30 02:29:28 +08:00
mqclient = mqtt.NewClient(opts)
2022-01-28 04:46:45 +08:00
tperiod := time.Now().Add(10 * time.Second)
for {
2022-08-30 02:08:01 +08:00
if token := mqclient.Connect(); !token.WaitTimeout(MQ_TIMEOUT*time.Second) || token.Error() != nil {
2022-01-28 04:46:45 +08:00
logger.Log(2, "unable to connect to broker, retrying ...")
2022-01-28 04:52:31 +08:00
if time.Now().After(tperiod) {
2022-05-16 21:38:47 +08:00
if token.Error() == nil {
2022-07-06 04:27:17 +08:00
logger.FatalLog("could not connect to broker, token timeout, exiting ...")
2022-05-16 21:38:47 +08:00
} else {
2022-07-06 04:27:17 +08:00
logger.FatalLog("could not connect to broker, exiting ...", token.Error().Error())
2022-05-16 21:38:47 +08:00
}
2022-01-28 04:46:45 +08:00
}
} else {
break
}
time.Sleep(2 * time.Second)
2022-01-19 06:32:12 +08:00
}
}
// Keepalive -- periodically pings all nodes to let them know server is still alive and doing well
func Keepalive(ctx context.Context) {
for {
select {
case <-ctx.Done():
return
case <-time.After(time.Second * KEEPALIVE_TIMEOUT):
2022-02-09 10:34:38 +08:00
sendPeers()
}
}
}
// IsConnected - function for determining if the mqclient is connected or not
func IsConnected() bool {
return mqclient != nil && mqclient.IsConnected()
}
// CloseClient - function to close the mq connection from server
func CloseClient() {
mqclient.Disconnect(250)
}