headscale/poll.go

637 lines
18 KiB
Go
Raw Normal View History

package headscale
import (
"context"
"errors"
"fmt"
"io"
"net/http"
"time"
"github.com/gin-gonic/gin"
"github.com/rs/zerolog/log"
"gorm.io/gorm"
"tailscale.com/tailcfg"
"tailscale.com/types/key"
)
const (
keepAliveInterval = 60 * time.Second
updateCheckInterval = 10 * time.Second
)
2022-05-16 20:59:46 +08:00
type contextKey string
const machineNameContextKey = contextKey("machineName")
// 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) {
log.Trace().
Str("handler", "PollNetMap").
2021-11-16 00:15:50 +08:00
Str("id", ctx.Param("id")).
Msg("PollNetMapHandler called")
2021-11-16 00:15:50 +08:00
body, _ := io.ReadAll(ctx.Request.Body)
machineKeyStr := ctx.Param("id")
var machineKey key.MachinePublic
err := machineKey.UnmarshalText([]byte(MachinePublicKeyEnsurePrefix(machineKeyStr)))
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
return
}
req := tailcfg.MapRequest{}
err = decode(body, &req, &machineKey, h.privateKey)
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
return
}
machine, err := h.GetMachineByMachineKey(machineKey)
if err != nil {
if errors.Is(err, gorm.ErrRecordNotFound) {
log.Warn().
Str("handler", "PollNetMap").
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
return
}
log.Error().
Str("handler", "PollNetMap").
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, "")
return
}
log.Trace().
Str("handler", "PollNetMap").
2021-11-16 00:15:50 +08:00
Str("id", ctx.Param("id")).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Found machine in database")
2022-04-25 03:55:54 +08:00
machine.Hostname = req.Hostinfo.Hostname
2022-03-02 00:34:24 +08:00
machine.HostInfo = HostInfo(*req.Hostinfo)
machine.DiscoKey = DiscoPublicKeyStripPrefix(req.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().
Str("func", "handleAuthKey").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Err(err)
}
}
// 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 {
2022-03-02 00:34:24 +08:00
machine.Endpoints = req.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").
Str("id", ctx.Param("id")).
Str("machine", machine.Name).
Err(err).
Msg("Failed to persist/update machine in the database")
ctx.String(http.StatusInternalServerError, ":(")
return
}
}
data, err := h.getMapResponse(machineKey, req, machine)
if err != nil {
log.Error().
Str("handler", "PollNetMap").
2021-11-16 00:15:50 +08:00
Str("id", ctx.Param("id")).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
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
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")).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
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").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
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
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)
// 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")).
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)
if req.OmitPeers && !req.Stream {
log.Info().
Str("handler", "PollNetMap").
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")
2021-11-16 00:15:50 +08:00
ctx.Data(http.StatusOK, "application/json; charset=utf-8", data)
// 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
} else if req.OmitPeers && req.Stream {
log.Warn().
Str("handler", "PollNetMap").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
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
return
}
log.Info().
Str("handler", "PollNetMap").
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-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Sending initial map")
pollDataChan <- data
log.Info().
Str("handler", "PollNetMap").
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{}{}
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,
machineKey,
2021-11-13 16:36:45 +08:00
pollDataChan,
keepAliveChan,
updateChan,
)
log.Trace().
Str("handler", "PollNetMap").
2021-11-16 00:15:50 +08:00
Str("id", ctx.Param("id")).
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Finished stream, closing PollNetMap session")
}
2021-09-02 22:59:03 +08:00
// PollNetMapStream takes care of /machine/:id/map
// stream logic, ensuring we communicate updates and data
// to the connected clients.
func (h *Headscale) PollNetMapStream(
2021-11-16 00:15:50 +08:00
ctx *gin.Context,
machine *Machine,
mapRequest tailcfg.MapRequest,
machineKey key.MachinePublic,
pollDataChan chan []byte,
keepAliveChan chan []byte,
updateChan chan struct{},
) {
{
machine, err := h.GetMachineByMachineKey(machineKey)
if err != nil {
if errors.Is(err, gorm.ErrRecordNotFound) {
log.Warn().
Str("handler", "PollNetMap").
Msgf("Ignoring request, cannot find machine with key %s", machineKey.String())
ctx.String(http.StatusUnauthorized, "")
return
}
log.Error().
Str("handler", "PollNetMap").
Msgf("Failed to fetch machine from the database with Machine key: %s", machineKey.String())
ctx.String(http.StatusInternalServerError, "")
return
}
2022-05-17 03:41:46 +08:00
ctx := context.WithValue(ctx.Request.Context(), machineNameContextKey, machine.Hostname)
ctx, cancel := context.WithCancel(ctx)
defer cancel()
go h.scheduledPollWorker(
ctx,
updateChan,
keepAliveChan,
machineKey,
mapRequest,
machine,
)
}
2021-11-16 00:15:50 +08:00
ctx.Stream(func(writer io.Writer) bool {
log.Trace().
Str("handler", "PollNetMapStream").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msg("Waiting for data to stream...")
log.Trace().
Str("handler", "PollNetMapStream").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Msgf("pollData is %#v, keepAliveChan is %#v, updateChan is %#v", pollDataChan, keepAliveChan, updateChan)
select {
case data := <-pollDataChan:
log.Trace().
Str("handler", "PollNetMapStream").
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")
_, err := writer.Write(data)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
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
return false
}
log.Trace().
Str("handler", "PollNetMapStream").
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-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.
return false
}
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-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "pollData").
Err(err).
Msg("Cannot update machine LastSuccessfulUpdate")
} else {
log.Trace().
Str("handler", "PollNetMapStream").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
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
return true
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")
_, err := writer.Write(data)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
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
return false
}
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("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-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.
return false
}
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-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "keepAlive").
Err(err).
Msg("Cannot update machine LastSeen")
} else {
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("Machine updated successfully after sending keep alive")
}
2021-11-14 23:46:09 +08:00
return true
case <-updateChan:
log.Trace().
Str("handler", "PollNetMapStream").
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()
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-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Time("last_successful_update", lastUpdate).
2021-11-16 00:15:50 +08:00
Time("last_state_change", h.getLastStateChange(machine.Namespace.Name)).
2022-04-25 03:55:54 +08:00
Msgf("There has been updates since the last successful update to %s", machine.Hostname)
2021-11-16 00:15:50 +08:00
data, err := h.getMapResponse(machineKey, mapRequest, machine)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "update").
Err(err).
Msg("Could not get the map update")
}
_, err = writer.Write(data)
if err != nil {
log.Error().
Str("handler", "PollNetMapStream").
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
return false
}
log.Trace().
Str("handler", "PollNetMapStream").
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-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.
return false
}
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-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "update").
Err(err).
Msg("Cannot update machine LastSuccessfulUpdate")
}
} else {
var lastUpdate time.Time
if machine.LastSuccessfulUpdate != nil {
lastUpdate = *machine.LastSuccessfulUpdate
}
log.Trace().
Str("handler", "PollNetMapStream").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Time("last_successful_update", lastUpdate).
2021-11-16 00:15:50 +08:00
Time("last_state_change", h.getLastStateChange(machine.Namespace.Name)).
2022-04-25 03:55:54 +08:00
Msgf("%s is up to date", machine.Hostname)
}
2021-11-14 23:46:09 +08:00
return true
2021-11-16 00:15:50 +08:00
case <-ctx.Request.Context().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-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.
return false
}
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-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
Str("channel", "Done").
Err(err).
Msg("Cannot update machine LastSeen")
}
return false
}
})
}
func (h *Headscale) scheduledPollWorker(
ctx context.Context,
updateChan chan struct{},
keepAliveChan chan []byte,
machineKey key.MachinePublic,
2021-11-16 00:15:50 +08:00
mapRequest tailcfg.MapRequest,
machine *Machine,
) {
keepAliveTicker := time.NewTicker(keepAliveInterval)
updateCheckerTicker := time.NewTicker(updateCheckInterval)
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)),
"updateChan",
)
for {
select {
case <-ctx.Done():
return
case <-keepAliveTicker.C:
2021-11-16 00:15:50 +08:00
data, err := h.getMapKeepAliveResponse(machineKey, mapRequest)
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
return
}
log.Debug().
Str("func", "keepAlive").
2022-04-25 03:55:54 +08:00
Str("machine", machine.Hostname).
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).
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)
}