2021-08-13 17:33:50 +08:00
|
|
|
package headscale
|
|
|
|
|
|
|
|
import (
|
2021-08-19 06:24:22 +08:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
2021-08-13 17:33:50 +08:00
|
|
|
"io"
|
2021-08-19 06:24:22 +08:00
|
|
|
"net/http"
|
2021-08-13 17:33:50 +08:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/rs/zerolog/log"
|
2021-08-19 06:24:22 +08:00
|
|
|
"gorm.io/datatypes"
|
|
|
|
"gorm.io/gorm"
|
2021-08-13 17:33:50 +08:00
|
|
|
"tailscale.com/tailcfg"
|
|
|
|
"tailscale.com/types/wgkey"
|
|
|
|
)
|
|
|
|
|
2021-08-19 06:24:22 +08:00
|
|
|
// PollNetMapHandler takes care of /machine/:id/map
|
|
|
|
//
|
|
|
|
// This is the busiest endpoint, as it keeps the HTTP long poll that updates
|
|
|
|
// the clients when something in the network changes.
|
|
|
|
//
|
|
|
|
// The clients POST stuff like HostInfo and their Endpoints here, but
|
|
|
|
// only after their first request (marked with the ReadOnly field).
|
|
|
|
//
|
|
|
|
// At this moment the updates are sent in a quite horrendous way, but they kinda work.
|
|
|
|
func (h *Headscale) PollNetMapHandler(c *gin.Context) {
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Str("id", c.Param("id")).
|
|
|
|
Msg("PollNetMapHandler called")
|
|
|
|
body, _ := io.ReadAll(c.Request.Body)
|
|
|
|
mKeyStr := c.Param("id")
|
|
|
|
mKey, err := wgkey.ParseHex(mKeyStr)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot parse client key")
|
|
|
|
c.String(http.StatusBadRequest, "")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req := tailcfg.MapRequest{}
|
|
|
|
err = decode(body, &req, &mKey, h.privateKey)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot decode message")
|
|
|
|
c.String(http.StatusBadRequest, "")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-03 04:58:28 +08:00
|
|
|
m, err := h.GetMachineByMachineKey(mKey.HexString())
|
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
|
log.Warn().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Msgf("Ignoring request, cannot find machine with key %s", mKey.HexString())
|
|
|
|
c.String(http.StatusUnauthorized, "")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Error().
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("handler", "PollNetMap").
|
2021-10-03 04:58:28 +08:00
|
|
|
Msgf("Failed to fetch machine from the database with Machine key: %s", mKey.HexString())
|
|
|
|
c.String(http.StatusInternalServerError, "")
|
2021-08-19 06:24:22 +08:00
|
|
|
}
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Str("id", c.Param("id")).
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Found machine in database")
|
|
|
|
|
|
|
|
hostinfo, _ := json.Marshal(req.Hostinfo)
|
|
|
|
m.Name = req.Hostinfo.Hostname
|
|
|
|
m.HostInfo = datatypes.JSON(hostinfo)
|
|
|
|
m.DiscoKey = wgkey.Key(req.DiscoKey).HexString()
|
|
|
|
now := time.Now().UTC()
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
if !req.ReadOnly {
|
|
|
|
endpoints, _ := json.Marshal(req.Endpoints)
|
|
|
|
m.Endpoints = datatypes.JSON(endpoints)
|
|
|
|
m.LastSeen = &now
|
|
|
|
}
|
|
|
|
h.db.Save(&m)
|
|
|
|
|
|
|
|
data, err := h.getMapResponse(mKey, req, m)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Str("id", c.Param("id")).
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Err(err).
|
|
|
|
Msg("Failed to get Map response")
|
|
|
|
c.String(http.StatusInternalServerError, ":(")
|
|
|
|
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").
|
|
|
|
Str("id", c.Param("id")).
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Bool("readOnly", req.ReadOnly).
|
|
|
|
Bool("omitPeers", req.OmitPeers).
|
|
|
|
Bool("stream", req.Stream).
|
|
|
|
Msg("Client map request processed")
|
|
|
|
|
|
|
|
if req.ReadOnly {
|
|
|
|
log.Info().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Client is starting up. Probably interested in a DERP map")
|
2021-10-05 01:39:01 +08:00
|
|
|
c.Data(200, "application/json; charset=utf-8", data)
|
2021-08-19 06:24:22 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// There has been an update to _any_ of the nodes that the other nodes would
|
|
|
|
// need to know about
|
2021-08-20 01:19:26 +08:00
|
|
|
h.setLastStateChangeToNow(m.Namespace.Name)
|
2021-08-19 06:24:22 +08:00
|
|
|
|
|
|
|
// 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().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Str("id", c.Param("id")).
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Loading or creating update channel")
|
2021-10-06 00:17:18 +08:00
|
|
|
updateChan := make(chan struct{})
|
2021-08-19 06:24:22 +08:00
|
|
|
|
|
|
|
pollDataChan := make(chan []byte)
|
|
|
|
|
|
|
|
keepAliveChan := make(chan []byte)
|
|
|
|
|
|
|
|
cancelKeepAlive := make(chan struct{})
|
|
|
|
defer close(cancelKeepAlive)
|
|
|
|
|
|
|
|
if req.OmitPeers && !req.Stream {
|
|
|
|
log.Info().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Client sent endpoint update and is ok with a response without peer list")
|
2021-10-05 01:39:01 +08:00
|
|
|
c.Data(200, "application/json; charset=utf-8", data)
|
2021-08-19 06:24:22 +08:00
|
|
|
|
|
|
|
// 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.
|
2021-10-06 05:59:15 +08:00
|
|
|
updateRequestsFromNode.WithLabelValues(m.Name, m.Namespace.Name, "endpoint-update").Inc()
|
2021-10-06 00:17:18 +08:00
|
|
|
go func() { updateChan <- struct{}{} }()
|
2021-08-19 06:24:22 +08:00
|
|
|
return
|
|
|
|
} else if req.OmitPeers && req.Stream {
|
|
|
|
log.Warn().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Ignoring request, don't know how to handle it")
|
|
|
|
c.String(http.StatusBadRequest, "")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Info().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Client is ready to access the tailnet")
|
|
|
|
log.Info().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Sending initial map")
|
2021-10-05 01:39:01 +08:00
|
|
|
go func() { pollDataChan <- data }()
|
2021-08-19 06:24:22 +08:00
|
|
|
|
|
|
|
log.Info().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Notifying peers")
|
2021-10-06 05:59:15 +08:00
|
|
|
updateRequestsFromNode.WithLabelValues(m.Name, m.Namespace.Name, "full-update").Inc()
|
2021-10-06 00:17:18 +08:00
|
|
|
go func() { updateChan <- struct{}{} }()
|
2021-08-19 06:24:22 +08:00
|
|
|
|
|
|
|
h.PollNetMapStream(c, m, req, mKey, pollDataChan, keepAliveChan, updateChan, cancelKeepAlive)
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Str("id", c.Param("id")).
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Finished stream, closing PollNetMap session")
|
|
|
|
}
|
|
|
|
|
2021-09-02 22:59:03 +08:00
|
|
|
// PollNetMapStream takes care of /machine/:id/map
|
2021-08-23 14:38:14 +08:00
|
|
|
// stream logic, ensuring we communicate updates and data
|
|
|
|
// to the connected clients.
|
2021-08-13 17:33:50 +08:00
|
|
|
func (h *Headscale) PollNetMapStream(
|
|
|
|
c *gin.Context,
|
2021-10-03 05:00:09 +08:00
|
|
|
m *Machine,
|
2021-08-13 17:33:50 +08:00
|
|
|
req tailcfg.MapRequest,
|
|
|
|
mKey wgkey.Key,
|
2021-08-19 06:24:22 +08:00
|
|
|
pollDataChan chan []byte,
|
|
|
|
keepAliveChan chan []byte,
|
2021-10-06 00:17:18 +08:00
|
|
|
updateChan chan struct{},
|
2021-08-19 06:24:22 +08:00
|
|
|
cancelKeepAlive chan struct{},
|
2021-08-13 17:33:50 +08:00
|
|
|
) {
|
2021-10-06 00:17:18 +08:00
|
|
|
go h.scheduledPollWorker(cancelKeepAlive, updateChan, keepAliveChan, mKey, req, m)
|
2021-08-13 17:33:50 +08:00
|
|
|
|
|
|
|
c.Stream(func(w io.Writer) bool {
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Waiting for data to stream...")
|
|
|
|
|
2021-08-19 06:24:22 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msgf("pollData is %#v, keepAliveChan is %#v, updateChan is %#v", pollDataChan, keepAliveChan, updateChan)
|
|
|
|
|
|
|
|
select {
|
|
|
|
case data := <-pollDataChan:
|
2021-08-13 17:33:50 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("channel", "pollData").
|
2021-08-13 17:33:50 +08:00
|
|
|
Int("bytes", len(data)).
|
|
|
|
Msg("Sending data received via pollData channel")
|
|
|
|
_, err := w.Write(data)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("channel", "pollData").
|
2021-08-13 17:33:50 +08:00
|
|
|
Err(err).
|
|
|
|
Msg("Cannot write data")
|
2021-10-02 22:28:19 +08:00
|
|
|
return false
|
2021-08-13 17:33:50 +08:00
|
|
|
}
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("channel", "pollData").
|
2021-08-13 17:33:50 +08:00
|
|
|
Int("bytes", len(data)).
|
|
|
|
Msg("Data from pollData channel written successfully")
|
2021-10-02 22:28:19 +08:00
|
|
|
// TODO(kradalby): Abstract away all the database calls, this can cause race conditions
|
2021-08-21 23:52:19 +08:00
|
|
|
// when an outdated machine object is kept alive, e.g. db is update from
|
|
|
|
// command line, but then overwritten.
|
2021-10-03 05:00:09 +08:00
|
|
|
err = h.UpdateMachine(m)
|
2021-08-21 23:52:19 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "pollData").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine from database")
|
|
|
|
}
|
2021-08-13 17:33:50 +08:00
|
|
|
now := time.Now().UTC()
|
|
|
|
m.LastSeen = &now
|
2021-10-05 00:28:07 +08:00
|
|
|
|
|
|
|
lastStateUpdate.WithLabelValues(m.Namespace.Name, m.Name).Set(float64(now.Unix()))
|
2021-08-19 06:24:22 +08:00
|
|
|
m.LastSuccessfulUpdate = &now
|
2021-10-05 00:28:07 +08:00
|
|
|
|
2021-08-13 17:33:50 +08:00
|
|
|
h.db.Save(&m)
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("channel", "pollData").
|
2021-08-13 17:33:50 +08:00
|
|
|
Int("bytes", len(data)).
|
2021-10-02 22:30:41 +08:00
|
|
|
Msg("Machine entry in database updated successfully after sending pollData")
|
2021-08-13 17:33:50 +08:00
|
|
|
return true
|
|
|
|
|
2021-08-19 06:24:22 +08:00
|
|
|
case data := <-keepAliveChan:
|
|
|
|
log.Trace().
|
2021-08-13 17:33:50 +08:00
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("channel", "keepAlive").
|
|
|
|
Int("bytes", len(data)).
|
|
|
|
Msg("Sending keep alive message")
|
|
|
|
_, err := w.Write(data)
|
2021-08-13 17:33:50 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("channel", "keepAlive").
|
2021-08-13 17:33:50 +08:00
|
|
|
Err(err).
|
2021-08-19 06:24:22 +08:00
|
|
|
Msg("Cannot write keep alive message")
|
2021-10-02 22:28:19 +08:00
|
|
|
return false
|
2021-08-13 17:33:50 +08:00
|
|
|
}
|
2021-08-19 06:24:22 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "keepAlive").
|
|
|
|
Int("bytes", len(data)).
|
|
|
|
Msg("Keep alive sent successfully")
|
2021-10-02 22:28:19 +08:00
|
|
|
// TODO(kradalby): Abstract away all the database calls, this can cause race conditions
|
2021-08-21 23:52:19 +08:00
|
|
|
// when an outdated machine object is kept alive, e.g. db is update from
|
|
|
|
// command line, but then overwritten.
|
2021-10-03 05:00:09 +08:00
|
|
|
err = h.UpdateMachine(m)
|
2021-08-21 23:52:19 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "keepAlive").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine from database")
|
|
|
|
}
|
2021-08-19 06:24:22 +08:00
|
|
|
now := time.Now().UTC()
|
|
|
|
m.LastSeen = &now
|
|
|
|
h.db.Save(&m)
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "keepAlive").
|
|
|
|
Int("bytes", len(data)).
|
|
|
|
Msg("Machine updated successfully after sending keep alive")
|
|
|
|
return true
|
|
|
|
|
|
|
|
case <-updateChan:
|
2021-08-20 01:05:33 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "update").
|
|
|
|
Msg("Received a request for update")
|
2021-10-06 05:59:15 +08:00
|
|
|
updateRequestsReceivedOnChannel.WithLabelValues(m.Name, m.Namespace.Name).Inc()
|
2021-10-03 05:00:09 +08:00
|
|
|
if h.isOutdated(m) {
|
2021-08-20 01:05:33 +08:00
|
|
|
log.Debug().
|
2021-08-13 17:33:50 +08:00
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
2021-08-20 01:05:33 +08:00
|
|
|
Time("last_successful_update", *m.LastSuccessfulUpdate).
|
2021-08-20 01:19:26 +08:00
|
|
|
Time("last_state_change", h.getLastStateChange(m.Namespace.Name)).
|
2021-08-20 01:05:33 +08:00
|
|
|
Msgf("There has been updates since the last successful update to %s", m.Name)
|
2021-08-19 06:24:22 +08:00
|
|
|
data, err := h.getMapResponse(mKey, req, m)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "update").
|
|
|
|
Err(err).
|
|
|
|
Msg("Could not get the map update")
|
|
|
|
}
|
2021-10-05 01:39:01 +08:00
|
|
|
_, err = w.Write(data)
|
2021-08-19 06:24:22 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "update").
|
|
|
|
Err(err).
|
|
|
|
Msg("Could not write the map response")
|
2021-10-06 05:59:15 +08:00
|
|
|
updateRequestsSentToNode.WithLabelValues(m.Name, m.Namespace.Name, "failed").Inc()
|
2021-10-02 22:28:19 +08:00
|
|
|
return false
|
2021-08-19 06:24:22 +08:00
|
|
|
}
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "update").
|
|
|
|
Msg("Updated Map has been sent")
|
2021-10-06 05:59:15 +08:00
|
|
|
updateRequestsSentToNode.WithLabelValues(m.Name, m.Namespace.Name, "success").Inc()
|
2021-08-19 06:24:22 +08:00
|
|
|
|
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.
|
2021-10-03 05:00:09 +08:00
|
|
|
err = h.UpdateMachine(m)
|
2021-08-21 23:52:19 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "update").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine from database")
|
|
|
|
}
|
2021-08-19 06:24:22 +08:00
|
|
|
now := time.Now().UTC()
|
2021-10-05 00:28:07 +08:00
|
|
|
|
|
|
|
lastStateUpdate.WithLabelValues(m.Namespace.Name, m.Name).Set(float64(now.Unix()))
|
2021-08-19 06:24:22 +08:00
|
|
|
m.LastSuccessfulUpdate = &now
|
2021-10-05 00:28:07 +08:00
|
|
|
|
2021-08-19 06:24:22 +08:00
|
|
|
h.db.Save(&m)
|
2021-08-20 01:05:33 +08:00
|
|
|
} else {
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Time("last_successful_update", *m.LastSuccessfulUpdate).
|
2021-08-20 01:19:26 +08:00
|
|
|
Time("last_state_change", h.getLastStateChange(m.Namespace.Name)).
|
2021-08-20 01:05:33 +08:00
|
|
|
Msgf("%s is up to date", m.Name)
|
2021-08-13 17:33:50 +08:00
|
|
|
}
|
|
|
|
return true
|
|
|
|
|
|
|
|
case <-c.Request.Context().Done():
|
|
|
|
log.Info().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("The client has closed the connection")
|
2021-08-21 23:52:19 +08:00
|
|
|
// 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.
|
2021-10-03 05:00:09 +08:00
|
|
|
err := h.UpdateMachine(m)
|
2021-08-21 23:52:19 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "Done").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine from database")
|
|
|
|
}
|
2021-08-13 17:33:50 +08:00
|
|
|
now := time.Now().UTC()
|
|
|
|
m.LastSeen = &now
|
|
|
|
h.db.Save(&m)
|
2021-08-19 06:24:22 +08:00
|
|
|
|
2021-10-02 22:30:41 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "Done").
|
2021-10-03 00:35:39 +08:00
|
|
|
Msg("Cancelling keepAlive channel")
|
2021-08-19 06:24:22 +08:00
|
|
|
cancelKeepAlive <- struct{}{}
|
|
|
|
|
2021-10-02 22:30:41 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "Done").
|
|
|
|
Msg("Closing update channel")
|
2021-10-06 00:17:18 +08:00
|
|
|
//h.closeUpdateChannel(m)
|
|
|
|
close(updateChan)
|
2021-08-19 06:24:22 +08:00
|
|
|
|
2021-10-02 22:30:41 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "Done").
|
|
|
|
Msg("Closing pollData channel")
|
2021-08-19 06:24:22 +08:00
|
|
|
close(pollDataChan)
|
|
|
|
|
2021-10-02 22:30:41 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Str("channel", "Done").
|
|
|
|
Msg("Closing keepAliveChan channel")
|
2021-08-19 06:24:22 +08:00
|
|
|
close(keepAliveChan)
|
|
|
|
|
2021-08-13 17:33:50 +08:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2021-08-19 06:24:22 +08:00
|
|
|
|
2021-08-20 01:06:57 +08:00
|
|
|
func (h *Headscale) scheduledPollWorker(
|
2021-08-19 06:24:22 +08:00
|
|
|
cancelChan <-chan struct{},
|
2021-10-06 00:17:18 +08:00
|
|
|
updateChan chan<- struct{},
|
2021-08-19 06:24:22 +08:00
|
|
|
keepAliveChan chan<- []byte,
|
|
|
|
mKey wgkey.Key,
|
|
|
|
req tailcfg.MapRequest,
|
2021-10-03 05:00:09 +08:00
|
|
|
m *Machine,
|
2021-08-19 06:24:22 +08:00
|
|
|
) {
|
|
|
|
keepAliveTicker := time.NewTicker(60 * time.Second)
|
2021-10-06 00:17:18 +08:00
|
|
|
updateCheckerTicker := time.NewTicker(10 * time.Second)
|
2021-08-19 06:24:22 +08:00
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-cancelChan:
|
|
|
|
return
|
|
|
|
|
|
|
|
case <-keepAliveTicker.C:
|
|
|
|
data, err := h.getMapKeepAliveResponse(mKey, req, m)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("func", "keepAlive").
|
|
|
|
Err(err).
|
|
|
|
Msg("Error generating the keep alive msg")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debug().
|
|
|
|
Str("func", "keepAlive").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Sending keepalive")
|
2021-10-05 01:39:01 +08:00
|
|
|
keepAliveChan <- data
|
2021-08-19 06:24:22 +08:00
|
|
|
|
|
|
|
case <-updateCheckerTicker.C:
|
2021-10-06 00:17:18 +08:00
|
|
|
log.Debug().
|
|
|
|
Str("func", "scheduledPollWorker").
|
|
|
|
Str("machine", m.Name).
|
|
|
|
Msg("Sending update request")
|
2021-10-06 05:59:15 +08:00
|
|
|
updateRequestsFromNode.WithLabelValues(m.Name, m.Namespace.Name, "scheduled-update").Inc()
|
2021-10-06 00:17:18 +08:00
|
|
|
updateChan <- struct{}{}
|
2021-08-19 06:24:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|