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"
|
2021-11-27 07:30:42 +08:00
|
|
|
"tailscale.com/types/key"
|
2021-08-13 17:33:50 +08:00
|
|
|
)
|
|
|
|
|
2021-11-15 01:31:51 +08:00
|
|
|
const (
|
2021-11-16 01:24:24 +08:00
|
|
|
keepAliveInterval = 60 * time.Second
|
|
|
|
updateCheckInterval = 10 * time.Second
|
2021-11-15 01:31:51 +08:00
|
|
|
)
|
|
|
|
|
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.
|
2021-11-16 00:15:50 +08:00
|
|
|
func (h *Headscale) PollNetMapHandler(ctx *gin.Context) {
|
2021-08-19 06:24:22 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMap").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("id", ctx.Param("id")).
|
2021-08-19 06:24:22 +08:00
|
|
|
Msg("PollNetMapHandler called")
|
2021-11-16 00:15:50 +08:00
|
|
|
body, _ := io.ReadAll(ctx.Request.Body)
|
2021-11-27 07:50:42 +08:00
|
|
|
machineKeyStr := ctx.Param("id")
|
|
|
|
|
|
|
|
var machineKey key.MachinePublic
|
2021-11-28 04:25:12 +08:00
|
|
|
err := machineKey.UnmarshalText([]byte(MachinePublicKeyEnsurePrefix(machineKeyStr)))
|
2021-08-19 06:24:22 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot parse client key")
|
2021-11-16 00:15:50 +08:00
|
|
|
ctx.String(http.StatusBadRequest, "")
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-08-19 06:24:22 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
req := tailcfg.MapRequest{}
|
2021-11-27 07:50:42 +08:00
|
|
|
err = decode(body, &req, &machineKey, h.privateKey)
|
2021-08-19 06:24:22 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMap").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot decode message")
|
2021-11-16 00:15:50 +08:00
|
|
|
ctx.String(http.StatusBadRequest, "")
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-08-19 06:24:22 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-27 07:50:42 +08:00
|
|
|
machine, err := h.GetMachineByMachineKey(machineKey)
|
2021-10-03 04:58:28 +08:00
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
|
log.Warn().
|
|
|
|
Str("handler", "PollNetMap").
|
2021-11-27 07:50:42 +08:00
|
|
|
Msgf("Ignoring request, cannot find machine with key %s", machineKey.String())
|
2021-11-16 00:15:50 +08:00
|
|
|
ctx.String(http.StatusUnauthorized, "")
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-10-03 04:58:28 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Error().
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("handler", "PollNetMap").
|
2021-11-27 07:50:42 +08:00
|
|
|
Msgf("Failed to fetch machine from the database with Machine key: %s", machineKey.String())
|
2021-11-16 00:15:50 +08:00
|
|
|
ctx.String(http.StatusInternalServerError, "")
|
2022-01-22 13:48:58 +08:00
|
|
|
|
|
|
|
return
|
2021-08-19 06:24:22 +08:00
|
|
|
}
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMap").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("id", ctx.Param("id")).
|
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Msg("Found machine in database")
|
|
|
|
|
|
|
|
hostinfo, _ := json.Marshal(req.Hostinfo)
|
2021-11-16 00:15:50 +08:00
|
|
|
machine.Name = req.Hostinfo.Hostname
|
|
|
|
machine.HostInfo = datatypes.JSON(hostinfo)
|
2021-11-27 07:30:42 +08:00
|
|
|
machine.DiscoKey = DiscoPublicKeyStripPrefix(req.DiscoKey)
|
2021-08-19 06:24:22 +08:00
|
|
|
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)
|
2021-11-16 00:15:50 +08:00
|
|
|
machine.Endpoints = datatypes.JSON(endpoints)
|
|
|
|
machine.LastSeen = &now
|
2021-08-19 06:24:22 +08:00
|
|
|
}
|
2022-01-16 18:59:03 +08:00
|
|
|
h.db.Updates(machine)
|
2021-08-19 06:24:22 +08:00
|
|
|
|
2021-11-27 07:50:42 +08:00
|
|
|
data, err := h.getMapResponse(machineKey, req, machine)
|
2021-08-19 06:24:22 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMap").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("id", ctx.Param("id")).
|
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Err(err).
|
|
|
|
Msg("Failed to get Map response")
|
2021-11-16 00:15:50 +08:00
|
|
|
ctx.String(http.StatusInternalServerError, ":(")
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-08-19 06:24:22 +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").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("id", ctx.Param("id")).
|
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
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").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Msg("Client is starting up. Probably interested in a DERP map")
|
2021-11-16 00:15:50 +08:00
|
|
|
ctx.Data(http.StatusOK, "application/json; charset=utf-8", data)
|
2021-11-14 23:46:09 +08:00
|
|
|
|
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-11-16 00:15:50 +08:00
|
|
|
h.setLastStateChangeToNow(machine.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").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("id", ctx.Param("id")).
|
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
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").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Msg("Client sent endpoint update and is ok with a response without peer list")
|
2021-11-16 00:15:50 +08:00
|
|
|
ctx.Data(http.StatusOK, "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-11-16 00:15:50 +08:00
|
|
|
updateRequestsFromNode.WithLabelValues(machine.Name, machine.Namespace.Name, "endpoint-update").
|
2021-11-13 16:36:45 +08:00
|
|
|
Inc()
|
2021-10-06 00:17:18 +08:00
|
|
|
go func() { updateChan <- struct{}{} }()
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-08-19 06:24:22 +08:00
|
|
|
return
|
|
|
|
} else if req.OmitPeers && req.Stream {
|
|
|
|
log.Warn().
|
|
|
|
Str("handler", "PollNetMap").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Msg("Ignoring request, don't know how to handle it")
|
2021-11-16 00:15:50 +08:00
|
|
|
ctx.String(http.StatusBadRequest, "")
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-08-19 06:24:22 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Info().
|
|
|
|
Str("handler", "PollNetMap").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Msg("Client is ready to access the tailnet")
|
|
|
|
log.Info().
|
|
|
|
Str("handler", "PollNetMap").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
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").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Msg("Notifying peers")
|
2021-11-16 00:15:50 +08:00
|
|
|
updateRequestsFromNode.WithLabelValues(machine.Name, machine.Namespace.Name, "full-update").
|
2021-11-13 16:36:45 +08:00
|
|
|
Inc()
|
2021-10-06 00:17:18 +08:00
|
|
|
go func() { updateChan <- struct{}{} }()
|
2021-08-19 06:24:22 +08:00
|
|
|
|
2021-11-13 16:36:45 +08:00
|
|
|
h.PollNetMapStream(
|
2021-11-16 00:15:50 +08:00
|
|
|
ctx,
|
|
|
|
machine,
|
2021-11-13 16:36:45 +08:00
|
|
|
req,
|
2021-11-27 07:50:42 +08:00
|
|
|
machineKey,
|
2021-11-13 16:36:45 +08:00
|
|
|
pollDataChan,
|
|
|
|
keepAliveChan,
|
|
|
|
updateChan,
|
|
|
|
cancelKeepAlive,
|
|
|
|
)
|
2021-08-19 06:24:22 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMap").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("id", ctx.Param("id")).
|
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
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(
|
2021-11-16 00:15:50 +08:00
|
|
|
ctx *gin.Context,
|
|
|
|
machine *Machine,
|
|
|
|
mapRequest tailcfg.MapRequest,
|
2021-11-27 07:30:42 +08:00
|
|
|
machineKey key.MachinePublic,
|
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-11-16 00:15:50 +08:00
|
|
|
go h.scheduledPollWorker(
|
|
|
|
cancelKeepAlive,
|
|
|
|
updateChan,
|
|
|
|
keepAliveChan,
|
|
|
|
machineKey,
|
|
|
|
mapRequest,
|
|
|
|
machine,
|
|
|
|
)
|
2021-08-13 17:33:50 +08:00
|
|
|
|
2021-11-16 00:15:50 +08:00
|
|
|
ctx.Stream(func(writer io.Writer) bool {
|
2021-08-13 17:33:50 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-13 17:33:50 +08:00
|
|
|
Msg("Waiting for data to stream...")
|
|
|
|
|
2021-08-19 06:24:22 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
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").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.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")
|
2021-11-15 03:32:03 +08:00
|
|
|
_, err := writer.Write(data)
|
2021-08-13 17:33:50 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.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-11-14 23:46:09 +08:00
|
|
|
|
2021-10-02 22:28:19 +08:00
|
|
|
return false
|
2021-08-13 17:33:50 +08:00
|
|
|
}
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.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-11-16 00:15:50 +08:00
|
|
|
err = h.UpdateMachine(machine)
|
2021-08-21 23:52:19 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-21 23:52:19 +08:00
|
|
|
Str("channel", "pollData").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine from database")
|
2022-01-16 18:59:03 +08:00
|
|
|
|
|
|
|
// client has been removed from database
|
|
|
|
// since the stream opened, terminate connection.
|
|
|
|
return false
|
2021-08-21 23:52:19 +08:00
|
|
|
}
|
2021-08-13 17:33:50 +08:00
|
|
|
now := time.Now().UTC()
|
2021-11-16 00:15:50 +08:00
|
|
|
machine.LastSeen = &now
|
2021-10-05 00:28:07 +08:00
|
|
|
|
2021-11-16 00:15:50 +08:00
|
|
|
lastStateUpdate.WithLabelValues(machine.Namespace.Name, machine.Name).
|
2021-11-13 16:36:45 +08:00
|
|
|
Set(float64(now.Unix()))
|
2021-11-16 00:15:50 +08:00
|
|
|
machine.LastSuccessfulUpdate = &now
|
2021-10-05 00:28:07 +08:00
|
|
|
|
2022-01-16 18:59:03 +08:00
|
|
|
err = h.TouchMachine(machine)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", machine.Name).
|
|
|
|
Str("channel", "pollData").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine LastSuccessfulUpdate")
|
|
|
|
} else {
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", machine.Name).
|
|
|
|
Str("channel", "pollData").
|
|
|
|
Int("bytes", len(data)).
|
|
|
|
Msg("Machine entry in database updated successfully after sending pollData")
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
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").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("channel", "keepAlive").
|
|
|
|
Int("bytes", len(data)).
|
|
|
|
Msg("Sending keep alive message")
|
2021-11-15 03:32:03 +08:00
|
|
|
_, err := writer.Write(data)
|
2021-08-13 17:33:50 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.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-11-14 23:46:09 +08:00
|
|
|
|
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").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
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-11-16 00:15:50 +08:00
|
|
|
err = h.UpdateMachine(machine)
|
2021-08-21 23:52:19 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-21 23:52:19 +08:00
|
|
|
Str("channel", "keepAlive").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine from database")
|
2022-01-16 18:59:03 +08:00
|
|
|
|
|
|
|
// client has been removed from database
|
|
|
|
// since the stream opened, terminate connection.
|
|
|
|
return false
|
2021-08-21 23:52:19 +08:00
|
|
|
}
|
2021-08-19 06:24:22 +08:00
|
|
|
now := time.Now().UTC()
|
2021-11-16 00:15:50 +08:00
|
|
|
machine.LastSeen = &now
|
2022-01-16 18:59:03 +08:00
|
|
|
err = h.TouchMachine(machine)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", machine.Name).
|
|
|
|
Str("channel", "keepAlive").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine LastSeen")
|
|
|
|
} else {
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", machine.Name).
|
|
|
|
Str("channel", "keepAlive").
|
|
|
|
Int("bytes", len(data)).
|
|
|
|
Msg("Machine updated successfully after sending keep alive")
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-08-19 06:24:22 +08:00
|
|
|
return true
|
|
|
|
|
|
|
|
case <-updateChan:
|
2021-08-20 01:05:33 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-20 01:05:33 +08:00
|
|
|
Str("channel", "update").
|
|
|
|
Msg("Received a request for update")
|
2021-11-16 00:15:50 +08:00
|
|
|
updateRequestsReceivedOnChannel.WithLabelValues(machine.Name, machine.Namespace.Name).
|
2021-11-13 16:36:45 +08:00
|
|
|
Inc()
|
2021-11-16 00:15:50 +08:00
|
|
|
if h.isOutdated(machine) {
|
2021-08-20 01:05:33 +08:00
|
|
|
log.Debug().
|
2021-08-13 17:33:50 +08:00
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
|
|
|
Time("last_successful_update", *machine.LastSuccessfulUpdate).
|
|
|
|
Time("last_state_change", h.getLastStateChange(machine.Namespace.Name)).
|
|
|
|
Msgf("There has been updates since the last successful update to %s", machine.Name)
|
|
|
|
data, err := h.getMapResponse(machineKey, mapRequest, machine)
|
2021-08-19 06:24:22 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("channel", "update").
|
|
|
|
Err(err).
|
|
|
|
Msg("Could not get the map update")
|
|
|
|
}
|
2021-11-15 03:32:03 +08:00
|
|
|
_, err = writer.Write(data)
|
2021-08-19 06:24:22 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("channel", "update").
|
|
|
|
Err(err).
|
|
|
|
Msg("Could not write the map response")
|
2021-11-16 00:15:50 +08:00
|
|
|
updateRequestsSentToNode.WithLabelValues(machine.Name, machine.Namespace.Name, "failed").
|
2021-11-13 16:36:45 +08:00
|
|
|
Inc()
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-10-02 22:28:19 +08:00
|
|
|
return false
|
2021-08-19 06:24:22 +08:00
|
|
|
}
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
Str("channel", "update").
|
|
|
|
Msg("Updated Map has been sent")
|
2021-11-16 00:15:50 +08:00
|
|
|
updateRequestsSentToNode.WithLabelValues(machine.Name, machine.Namespace.Name, "success").
|
2021-11-13 16:36:45 +08:00
|
|
|
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-11-16 00:15:50 +08:00
|
|
|
err = h.UpdateMachine(machine)
|
2021-08-21 23:52:19 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-21 23:52:19 +08:00
|
|
|
Str("channel", "update").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine from database")
|
2022-01-16 18:59:03 +08:00
|
|
|
|
|
|
|
// client has been removed from database
|
|
|
|
// since the stream opened, terminate connection.
|
|
|
|
return false
|
2021-08-21 23:52:19 +08:00
|
|
|
}
|
2021-08-19 06:24:22 +08:00
|
|
|
now := time.Now().UTC()
|
2021-10-05 00:28:07 +08:00
|
|
|
|
2021-11-16 00:15:50 +08:00
|
|
|
lastStateUpdate.WithLabelValues(machine.Namespace.Name, machine.Name).
|
2021-11-13 16:36:45 +08:00
|
|
|
Set(float64(now.Unix()))
|
2021-11-16 00:15:50 +08:00
|
|
|
machine.LastSuccessfulUpdate = &now
|
2021-10-05 00:28:07 +08:00
|
|
|
|
2022-01-16 18:59:03 +08:00
|
|
|
err = h.TouchMachine(machine)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", machine.Name).
|
|
|
|
Str("channel", "update").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine LastSuccessfulUpdate")
|
|
|
|
}
|
2021-08-20 01:05:33 +08:00
|
|
|
} else {
|
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
|
|
|
Time("last_successful_update", *machine.LastSuccessfulUpdate).
|
|
|
|
Time("last_state_change", h.getLastStateChange(machine.Namespace.Name)).
|
|
|
|
Msgf("%s is up to date", machine.Name)
|
2021-08-13 17:33:50 +08:00
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-08-13 17:33:50 +08:00
|
|
|
return true
|
|
|
|
|
2021-11-16 00:15:50 +08:00
|
|
|
case <-ctx.Request.Context().Done():
|
2021-08-13 17:33:50 +08:00
|
|
|
log.Info().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-13 17:33:50 +08:00
|
|
|
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-11-16 00:15:50 +08:00
|
|
|
err := h.UpdateMachine(machine)
|
2021-08-21 23:52:19 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-21 23:52:19 +08:00
|
|
|
Str("channel", "Done").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine from database")
|
2022-01-16 18:59:03 +08:00
|
|
|
|
|
|
|
// client has been removed from database
|
|
|
|
// since the stream opened, terminate connection.
|
|
|
|
return false
|
2021-08-21 23:52:19 +08:00
|
|
|
}
|
2021-08-13 17:33:50 +08:00
|
|
|
now := time.Now().UTC()
|
2021-11-16 00:15:50 +08:00
|
|
|
machine.LastSeen = &now
|
2022-01-16 18:59:03 +08:00
|
|
|
err = h.TouchMachine(machine)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "PollNetMapStream").
|
|
|
|
Str("machine", machine.Name).
|
|
|
|
Str("channel", "Done").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot update machine LastSeen")
|
|
|
|
}
|
2021-08-19 06:24:22 +08:00
|
|
|
|
2021-10-02 22:30:41 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-10-02 22:30:41 +08:00
|
|
|
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").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-10-02 22:30:41 +08:00
|
|
|
Str("channel", "Done").
|
|
|
|
Msg("Closing update channel")
|
2021-11-13 16:36:45 +08:00
|
|
|
// h.closeUpdateChannel(m)
|
2021-10-06 00:17:18 +08:00
|
|
|
close(updateChan)
|
2021-08-19 06:24:22 +08:00
|
|
|
|
2021-10-02 22:30:41 +08:00
|
|
|
log.Trace().
|
|
|
|
Str("handler", "PollNetMapStream").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-10-02 22:30:41 +08:00
|
|
|
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").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-10-02 22:30:41 +08:00
|
|
|
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,
|
2021-11-27 07:30:42 +08:00
|
|
|
machineKey key.MachinePublic,
|
2021-11-16 00:15:50 +08:00
|
|
|
mapRequest tailcfg.MapRequest,
|
|
|
|
machine *Machine,
|
2021-08-19 06:24:22 +08:00
|
|
|
) {
|
2021-11-16 01:24:24 +08:00
|
|
|
keepAliveTicker := time.NewTicker(keepAliveInterval)
|
|
|
|
updateCheckerTicker := time.NewTicker(updateCheckInterval)
|
2021-08-19 06:24:22 +08:00
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-cancelChan:
|
|
|
|
return
|
|
|
|
|
|
|
|
case <-keepAliveTicker.C:
|
2021-11-16 00:15:50 +08:00
|
|
|
data, err := h.getMapKeepAliveResponse(machineKey, mapRequest)
|
2021-08-19 06:24:22 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("func", "keepAlive").
|
|
|
|
Err(err).
|
|
|
|
Msg("Error generating the keep alive msg")
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-08-19 06:24:22 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debug().
|
|
|
|
Str("func", "keepAlive").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-08-19 06:24:22 +08:00
|
|
|
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").
|
2021-11-16 00:15:50 +08:00
|
|
|
Str("machine", machine.Name).
|
2021-10-06 00:17:18 +08:00
|
|
|
Msg("Sending update request")
|
2021-11-16 00:15:50 +08:00
|
|
|
updateRequestsFromNode.WithLabelValues(machine.Name, machine.Namespace.Name, "scheduled-update").
|
2021-11-13 16:36:45 +08:00
|
|
|
Inc()
|
2021-10-06 00:17:18 +08:00
|
|
|
updateChan <- struct{}{}
|
2021-08-19 06:24:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|