headscale/protocol_common_poll.go

674 lines
18 KiB
Go
Raw Normal View History

package headscale
import (
"context"
"fmt"
"net/http"
"time"
"github.com/rs/zerolog/log"
"tailscale.com/tailcfg"
)
const (
keepAliveInterval = 60 * time.Second
)
2022-05-16 20:59:46 +08:00
type contextKey string
const machineNameContextKey = contextKey("machineName")
2022-08-15 16:43:39 +08:00
// handlePollCommon is the common code for the legacy and Noise protocols to
// managed the poll loop.
func (h *Headscale) handlePollCommon(
2022-06-26 18:06:25 +08:00
writer http.ResponseWriter,
ctx context.Context,
machine *Machine,
mapRequest tailcfg.MapRequest,
isNoise bool,
2022-06-20 18:30:51 +08:00
) {
2022-06-26 18:06:25 +08:00
machine.Hostname = mapRequest.Hostinfo.Hostname
machine.HostInfo = HostInfo(*mapRequest.Hostinfo)
machine.DiscoKey = DiscoPublicKeyStripPrefix(mapRequest.DiscoKey)
now := time.Now().UTC()
// update ACLRules with peer informations (to update server tags if necessary)
if h.aclPolicy != nil {
err := h.UpdateACLRules()
if err != nil {
log.Error().
Caller().
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Err(err)
}
// update routes with peer information
2022-08-24 20:09:06 +08:00
h.EnableAutoApprovedRoutes(machine)
}
// From Tailscale client:
//
// ReadOnly is whether the client just wants to fetch the MapResponse,
// without updating their Endpoints. The Endpoints field will be ignored and
// LastSeen will not be updated and peers will not be notified of changes.
//
// The intended use is for clients to discover the DERP map at start-up
// before their first real endpoint update.
2022-06-26 18:06:25 +08:00
if !mapRequest.ReadOnly {
machine.Endpoints = mapRequest.Endpoints
2021-11-16 00:15:50 +08:00
machine.LastSeen = &now
}
2022-05-30 21:39:24 +08:00
if err := h.db.Updates(machine).Error; err != nil {
if err != nil {
log.Error().
Str("handler", "PollNetMap").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
Str("node_key", machine.NodeKey).
2022-05-31 17:03:08 +08:00
Str("machine", machine.Hostname).
2022-05-30 21:39:24 +08:00
Err(err).
Msg("Failed to persist/update machine in the database")
2022-06-26 18:06:25 +08:00
http.Error(writer, "", http.StatusInternalServerError)
2022-05-30 21:39:24 +08:00
return
}
}
mapResp, err := h.getMapResponseData(mapRequest, machine, isNoise)
if err != nil {
log.Error().
Str("handler", "PollNetMap").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
Str("node_key", machine.NodeKey).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Err(err).
Msg("Failed to get Map response")
2022-06-26 18:06:25 +08:00
http.Error(writer, "", http.StatusInternalServerError)
2021-11-14 23:46:09 +08:00
return
}
// We update our peers if the client is not sending ReadOnly in the MapRequest
// so we don't distribute its initial request (it comes with
// empty endpoints to peers)
// Details on the protocol can be found in https://github.com/tailscale/tailscale/blob/main/tailcfg/tailcfg.go#L696
log.Debug().
Str("handler", "PollNetMap").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
2022-06-26 18:06:25 +08:00
Bool("readOnly", mapRequest.ReadOnly).
Bool("omitPeers", mapRequest.OmitPeers).
Bool("stream", mapRequest.Stream).
Msg("Client map request processed")
2022-06-26 18:06:25 +08:00
if mapRequest.ReadOnly {
log.Info().
Str("handler", "PollNetMap").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Client is starting up. Probably interested in a DERP map")
2022-06-20 18:30:51 +08:00
2022-06-26 18:06:25 +08:00
writer.Header().Set("Content-Type", "application/json; charset=utf-8")
writer.WriteHeader(http.StatusOK)
_, err := writer.Write(mapResp)
2022-06-26 18:21:35 +08:00
if err != nil {
log.Error().
Caller().
Err(err).
Msg("Failed to write response")
}
2021-11-14 23:46:09 +08:00
if f, ok := writer.(http.Flusher); ok {
f.Flush()
}
return
}
// There has been an update to _any_ of the nodes that the other nodes would
// need to know about
2022-08-16 19:39:15 +08:00
h.setLastStateChangeToNow()
// The request is not ReadOnly, so we need to set up channels for updating
// peers via longpoll
// Only create update channel if it has not been created
log.Trace().
Caller().
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Loading or creating update channel")
const chanSize = 8
updateChan := make(chan struct{}, chanSize)
pollDataChan := make(chan []byte, chanSize)
2022-04-25 03:55:54 +08:00
defer closeChanWithLog(pollDataChan, machine.Hostname, "pollDataChan")
keepAliveChan := make(chan []byte)
2022-06-26 18:06:25 +08:00
if mapRequest.OmitPeers && !mapRequest.Stream {
log.Info().
Str("handler", "PollNetMap").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Client sent endpoint update and is ok with a response without peer list")
2022-06-26 18:06:25 +08:00
writer.Header().Set("Content-Type", "application/json; charset=utf-8")
writer.WriteHeader(http.StatusOK)
_, err := writer.Write(mapResp)
2022-06-26 18:21:35 +08:00
if err != nil {
log.Error().
Caller().
Err(err).
Msg("Failed to write response")
}
// It sounds like we should update the nodes when we have received a endpoint update
// even tho the comments in the tailscale code dont explicitly say so.
2022-04-25 03:55:54 +08:00
updateRequestsFromNode.WithLabelValues(machine.Namespace.Name, machine.Hostname, "endpoint-update").
2021-11-13 16:36:45 +08:00
Inc()
updateChan <- struct{}{}
2021-11-14 23:46:09 +08:00
return
2022-06-26 18:06:25 +08:00
} else if mapRequest.OmitPeers && mapRequest.Stream {
log.Warn().
Str("handler", "PollNetMap").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Ignoring request, don't know how to handle it")
2022-06-26 18:06:25 +08:00
http.Error(writer, "", http.StatusBadRequest)
2021-11-14 23:46:09 +08:00
return
}
log.Info().
Str("handler", "PollNetMap").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Client is ready to access the tailnet")
log.Info().
Str("handler", "PollNetMap").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Sending initial map")
pollDataChan <- mapResp
log.Info().
Str("handler", "PollNetMap").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Notifying peers")
2022-04-25 03:55:54 +08:00
updateRequestsFromNode.WithLabelValues(machine.Namespace.Name, machine.Hostname, "full-update").
2021-11-13 16:36:45 +08:00
Inc()
updateChan <- struct{}{}
h.pollNetMapStream(
2022-06-26 18:06:25 +08:00
writer,
ctx,
2022-06-26 18:06:25 +08:00
machine,
mapRequest,
2021-11-13 16:36:45 +08:00
pollDataChan,
keepAliveChan,
updateChan,
isNoise,
2021-11-13 16:36:45 +08:00
)
log.Trace().
Str("handler", "PollNetMap").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Finished stream, closing PollNetMap session")
}
// pollNetMapStream stream logic for /machine/map,
// ensuring we communicate updates and data to the connected clients.
func (h *Headscale) pollNetMapStream(
2022-06-26 18:06:25 +08:00
writer http.ResponseWriter,
ctxReq context.Context,
2021-11-16 00:15:50 +08:00
machine *Machine,
mapRequest tailcfg.MapRequest,
pollDataChan chan []byte,
keepAliveChan chan []byte,
updateChan chan struct{},
isNoise bool,
) {
2022-07-12 02:33:24 +08:00
h.pollNetMapStreamWG.Add(1)
defer h.pollNetMapStreamWG.Done()
2022-07-01 05:35:22 +08:00
ctx := context.WithValue(ctxReq, machineNameContextKey, machine.Hostname)
2022-06-20 18:30:51 +08:00
ctx, cancel := context.WithCancel(ctx)
defer cancel()
2022-06-20 18:30:51 +08:00
go h.scheduledPollWorker(
ctx,
updateChan,
keepAliveChan,
mapRequest,
machine,
isNoise,
2022-06-20 18:30:51 +08:00
)
2022-06-21 03:40:28 +08:00
log.Trace().
2022-08-15 16:43:39 +08:00
Str("handler", "pollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-06-21 03:40:28 +08:00
Str("machine", machine.Hostname).
Msg("Waiting for data to stream...")
2022-06-21 03:40:28 +08:00
log.Trace().
2022-08-15 16:43:39 +08:00
Str("handler", "pollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-06-21 03:40:28 +08:00
Str("machine", machine.Hostname).
Msgf("pollData is %#v, keepAliveChan is %#v, updateChan is %#v", pollDataChan, keepAliveChan, updateChan)
2022-06-21 03:40:28 +08:00
for {
select {
case data := <-pollDataChan:
log.Trace().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "pollData").
Int("bytes", len(data)).
Msg("Sending data received via pollData channel")
2022-06-26 18:06:25 +08:00
_, err := writer.Write(data)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "pollData").
Err(err).
Msg("Cannot write data")
2021-11-14 23:46:09 +08:00
2022-06-21 03:40:28 +08:00
return
}
2022-06-26 18:25:26 +08:00
flusher, ok := writer.(http.Flusher)
if !ok {
log.Error().
Caller().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-06-26 18:25:26 +08:00
Str("machine", machine.Hostname).
Str("channel", "pollData").
Msg("Cannot cast writer to http.Flusher")
} else {
flusher.Flush()
}
2022-06-21 03:40:28 +08:00
log.Trace().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "pollData").
Int("bytes", len(data)).
Msg("Data from pollData channel written successfully")
// TODO(kradalby): Abstract away all the database calls, this can cause race conditions
// when an outdated machine object is kept alive, e.g. db is update from
// command line, but then overwritten.
err = h.UpdateMachineFromDatabase(machine)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "pollData").
Err(err).
Msg("Cannot update machine from database")
// client has been removed from database
// since the stream opened, terminate connection.
2022-06-21 03:40:28 +08:00
return
}
now := time.Now().UTC()
2021-11-16 00:15:50 +08:00
machine.LastSeen = &now
2022-04-25 03:55:54 +08:00
lastStateUpdate.WithLabelValues(machine.Namespace.Name, machine.Hostname).
2021-11-13 16:36:45 +08:00
Set(float64(now.Unix()))
2021-11-16 00:15:50 +08:00
machine.LastSuccessfulUpdate = &now
err = h.TouchMachine(machine)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "pollData").
Err(err).
Msg("Cannot update machine LastSuccessfulUpdate")
2022-06-21 03:40:28 +08:00
return
}
2021-11-14 23:46:09 +08:00
2022-06-21 03:40:28 +08:00
log.Trace().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-06-21 03:40:28 +08:00
Str("machine", machine.Hostname).
Str("channel", "pollData").
Int("bytes", len(data)).
Msg("Machine entry in database updated successfully after sending data")
case data := <-keepAliveChan:
log.Trace().
Str("handler", "PollNetMapStream").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "keepAlive").
Int("bytes", len(data)).
Msg("Sending keep alive message")
2022-06-26 18:06:25 +08:00
_, err := writer.Write(data)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "keepAlive").
Err(err).
Msg("Cannot write keep alive message")
2021-11-14 23:46:09 +08:00
2022-06-21 03:40:28 +08:00
return
}
2022-06-26 18:25:26 +08:00
flusher, ok := writer.(http.Flusher)
if !ok {
log.Error().
Caller().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-06-26 18:25:26 +08:00
Str("machine", machine.Hostname).
Str("channel", "keepAlive").
Msg("Cannot cast writer to http.Flusher")
} else {
flusher.Flush()
}
2022-06-21 03:40:28 +08:00
log.Trace().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "keepAlive").
Int("bytes", len(data)).
Msg("Keep alive sent successfully")
// TODO(kradalby): Abstract away all the database calls, this can cause race conditions
// when an outdated machine object is kept alive, e.g. db is update from
// command line, but then overwritten.
err = h.UpdateMachineFromDatabase(machine)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "keepAlive").
Err(err).
Msg("Cannot update machine from database")
// client has been removed from database
// since the stream opened, terminate connection.
2022-06-21 03:40:28 +08:00
return
}
now := time.Now().UTC()
2021-11-16 00:15:50 +08:00
machine.LastSeen = &now
err = h.TouchMachine(machine)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "keepAlive").
Err(err).
Msg("Cannot update machine LastSeen")
2022-06-21 03:40:28 +08:00
return
}
2021-11-14 23:46:09 +08:00
2022-06-21 03:40:28 +08:00
log.Trace().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-06-21 03:40:28 +08:00
Str("machine", machine.Hostname).
Str("channel", "keepAlive").
Int("bytes", len(data)).
Msg("Machine updated successfully after sending keep alive")
case <-updateChan:
log.Trace().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "update").
Msg("Received a request for update")
2022-04-25 03:55:54 +08:00
updateRequestsReceivedOnChannel.WithLabelValues(machine.Namespace.Name, machine.Hostname).
2021-11-13 16:36:45 +08:00
Inc()
2022-06-21 03:40:28 +08:00
2021-11-16 00:15:50 +08:00
if h.isOutdated(machine) {
var lastUpdate time.Time
if machine.LastSuccessfulUpdate != nil {
lastUpdate = *machine.LastSuccessfulUpdate
}
log.Debug().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Time("last_successful_update", lastUpdate).
Time("last_state_change", h.getLastStateChange(machine.Namespace)).
2022-04-25 03:55:54 +08:00
Msgf("There has been updates since the last successful update to %s", machine.Hostname)
data, err := h.getMapResponseData(mapRequest, machine, isNoise)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "update").
Err(err).
Msg("Could not get the map update")
2022-06-21 03:40:28 +08:00
return
}
2022-06-26 18:06:25 +08:00
_, err = writer.Write(data)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "update").
Err(err).
Msg("Could not write the map response")
2022-04-25 03:55:54 +08:00
updateRequestsSentToNode.WithLabelValues(machine.Namespace.Name, machine.Hostname, "failed").
2021-11-13 16:36:45 +08:00
Inc()
2021-11-14 23:46:09 +08:00
2022-06-20 18:30:51 +08:00
return
}
2022-06-26 18:25:26 +08:00
flusher, ok := writer.(http.Flusher)
if !ok {
log.Error().
Caller().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-06-26 18:25:26 +08:00
Str("machine", machine.Hostname).
Str("channel", "update").
Msg("Cannot cast writer to http.Flusher")
} else {
flusher.Flush()
}
2022-06-26 02:47:42 +08:00
log.Trace().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "update").
Msg("Updated Map has been sent")
2022-04-25 03:55:54 +08:00
updateRequestsSentToNode.WithLabelValues(machine.Namespace.Name, machine.Hostname, "success").
2021-11-13 16:36:45 +08:00
Inc()
2021-10-06 05:59:15 +08:00
// Keep track of the last successful update,
// we sometimes end in a state were the update
// is not picked up by a client and we use this
// to determine if we should "force" an update.
// TODO(kradalby): Abstract away all the database calls, this can cause race conditions
// when an outdated machine object is kept alive, e.g. db is update from
// command line, but then overwritten.
err = h.UpdateMachineFromDatabase(machine)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "update").
Err(err).
Msg("Cannot update machine from database")
// client has been removed from database
// since the stream opened, terminate connection.
2022-06-20 18:30:51 +08:00
return
}
now := time.Now().UTC()
2022-04-25 03:55:54 +08:00
lastStateUpdate.WithLabelValues(machine.Namespace.Name, machine.Hostname).
2021-11-13 16:36:45 +08:00
Set(float64(now.Unix()))
2021-11-16 00:15:50 +08:00
machine.LastSuccessfulUpdate = &now
err = h.TouchMachine(machine)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "update").
Err(err).
Msg("Cannot update machine LastSuccessfulUpdate")
2022-06-21 03:40:28 +08:00
return
}
} else {
var lastUpdate time.Time
if machine.LastSuccessfulUpdate != nil {
lastUpdate = *machine.LastSuccessfulUpdate
}
log.Trace().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Time("last_successful_update", lastUpdate).
Time("last_state_change", h.getLastStateChange(machine.Namespace)).
2022-04-25 03:55:54 +08:00
Msgf("%s is up to date", machine.Hostname)
}
2021-11-14 23:46:09 +08:00
2022-06-20 18:30:51 +08:00
case <-ctx.Done():
log.Info().
Str("handler", "PollNetMapStream").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("The client has closed the connection")
// TODO: Abstract away all the database calls, this can cause race conditions
// when an outdated machine object is kept alive, e.g. db is update from
// command line, but then overwritten.
err := h.UpdateMachineFromDatabase(machine)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "Done").
Err(err).
Msg("Cannot update machine from database")
// client has been removed from database
// since the stream opened, terminate connection.
2022-06-21 03:40:28 +08:00
return
}
now := time.Now().UTC()
2021-11-16 00:15:50 +08:00
machine.LastSeen = &now
err = h.TouchMachine(machine)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "Done").
Err(err).
Msg("Cannot update machine LastSeen")
}
2022-06-21 03:40:28 +08:00
// The connection has been closed, so we can stop polling.
return
case <-h.shutdownChan:
log.Info().
Str("handler", "PollNetMapStream").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
Str("machine", machine.Hostname).
Msg("The long-poll handler is shutting down")
2022-06-26 18:06:25 +08:00
return
}
2022-06-20 18:30:51 +08:00
}
}
func (h *Headscale) scheduledPollWorker(
ctx context.Context,
updateChan chan struct{},
keepAliveChan chan []byte,
2021-11-16 00:15:50 +08:00
mapRequest tailcfg.MapRequest,
machine *Machine,
isNoise bool,
) {
keepAliveTicker := time.NewTicker(keepAliveInterval)
updateCheckerTicker := time.NewTicker(h.cfg.NodeUpdateCheckInterval)
defer closeChanWithLog(
updateChan,
2022-05-16 20:59:46 +08:00
fmt.Sprint(ctx.Value(machineNameContextKey)),
"updateChan",
)
defer closeChanWithLog(
keepAliveChan,
2022-05-16 20:59:46 +08:00
fmt.Sprint(ctx.Value(machineNameContextKey)),
"keepAliveChan",
)
for {
select {
case <-ctx.Done():
return
case <-keepAliveTicker.C:
data, err := h.getMapKeepAliveResponseData(mapRequest, machine, isNoise)
if err != nil {
log.Error().
Str("func", "keepAlive").
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
Err(err).
Msg("Error generating the keep alive msg")
2021-11-14 23:46:09 +08:00
return
}
log.Debug().
Str("func", "keepAlive").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
Msg("Sending keepalive")
keepAliveChan <- data
case <-updateCheckerTicker.C:
log.Debug().
Str("func", "scheduledPollWorker").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
2022-08-15 05:11:33 +08:00
Bool("noise", isNoise).
Msg("Sending update request")
2022-04-25 03:55:54 +08:00
updateRequestsFromNode.WithLabelValues(machine.Namespace.Name, machine.Hostname, "scheduled-update").
2021-11-13 16:36:45 +08:00
Inc()
updateChan <- struct{}{}
}
}
}
2022-04-26 04:33:53 +08:00
func closeChanWithLog[C chan []byte | chan struct{}](channel C, machine, name string) {
log.Trace().
Str("handler", "PollNetMap").
Str("machine", machine).
Str("channel", "Done").
Msg(fmt.Sprintf("Closing %s channel", name))
close(channel)
}