2023-05-10 03:24:05 -04:00
package hscontrol
2021-08-13 05:33:50 -04:00
import (
2021-12-31 14:51:20 -05:00
"context"
"fmt"
2021-08-18 18:24:22 -04:00
"net/http"
2024-02-08 11:28:19 -05:00
"strings"
2021-08-13 05:33:50 -04:00
"time"
2024-02-08 11:28:19 -05:00
"github.com/juanfont/headscale/hscontrol/db"
2023-05-26 06:26:34 -04:00
"github.com/juanfont/headscale/hscontrol/mapper"
2023-05-21 12:37:59 -04:00
"github.com/juanfont/headscale/hscontrol/types"
2021-08-13 05:33:50 -04:00
"github.com/rs/zerolog/log"
2023-12-09 12:09:24 -05:00
xslices "golang.org/x/exp/slices"
2024-02-08 11:28:19 -05:00
"gorm.io/gorm"
2021-08-13 05:33:50 -04:00
"tailscale.com/tailcfg"
)
2021-11-14 12:31:51 -05:00
const (
2022-07-12 06:27:28 -04:00
keepAliveInterval = 60 * time . Second
2021-11-14 12:31:51 -05:00
)
2022-05-16 08:59:46 -04:00
type contextKey string
2023-09-24 07:42:05 -04:00
const nodeNameContextKey = contextKey ( "nodeName" )
2022-05-16 08:59:46 -04:00
2023-06-21 05:29:52 -04:00
type UpdateNode func ( )
func logPollFunc (
mapRequest tailcfg . MapRequest ,
2023-09-24 07:42:05 -04:00
node * types . Node ,
2023-06-21 05:29:52 -04:00
) ( func ( string ) , func ( error , string ) ) {
return func ( msg string ) {
log . Info ( ) .
Caller ( ) .
Bool ( "readOnly" , mapRequest . ReadOnly ) .
Bool ( "omitPeers" , mapRequest . OmitPeers ) .
Bool ( "stream" , mapRequest . Stream ) .
2023-11-19 16:37:04 -05:00
Str ( "node_key" , node . NodeKey . ShortString ( ) ) .
2023-09-24 07:42:05 -04:00
Str ( "node" , node . Hostname ) .
2023-06-21 05:29:52 -04:00
Msg ( msg )
} ,
func ( err error , msg string ) {
log . Error ( ) .
Caller ( ) .
Bool ( "readOnly" , mapRequest . ReadOnly ) .
Bool ( "omitPeers" , mapRequest . OmitPeers ) .
Bool ( "stream" , mapRequest . Stream ) .
2023-11-19 16:37:04 -05:00
Str ( "node_key" , node . NodeKey . ShortString ( ) ) .
2023-09-24 07:42:05 -04:00
Str ( "node" , node . Hostname ) .
2023-06-21 05:29:52 -04:00
Err ( err ) .
Msg ( msg )
}
}
2023-11-23 02:31:33 -05:00
// handlePoll ensures the node gets the appropriate updates from either
// polling or immediate responses.
2023-08-09 16:56:21 -04:00
//
//nolint:gocyclo
2023-06-06 11:14:56 -04:00
func ( h * Headscale ) handlePoll (
2022-06-26 06:06:25 -04:00
writer http . ResponseWriter ,
2022-09-04 09:14:12 -04:00
ctx context . Context ,
2023-09-24 07:42:05 -04:00
node * types . Node ,
2022-08-14 16:57:03 -04:00
mapRequest tailcfg . MapRequest ,
2022-06-20 06:30:51 -04:00
) {
2023-11-23 02:31:33 -05:00
logInfo , logErr := logPollFunc ( mapRequest , node )
2023-09-11 07:18:31 -04:00
2023-12-09 12:09:24 -05:00
// This is the mechanism where the node gives us information about its
2023-09-11 12:45:46 -04:00
// current configuration.
//
2023-09-11 07:18:31 -04:00
// If OmitPeers is true, Stream is false, and ReadOnly is false,
// then te server will let clients update their endpoints without
// breaking existing long-polling (Stream == true) connections.
// In this case, the server can omit the entire response; the client
// only checks the HTTP response status code.
2023-12-09 12:09:24 -05:00
// TODO(kradalby): remove ReadOnly when we only support capVer 68+
2023-09-11 07:18:31 -04:00
if mapRequest . OmitPeers && ! mapRequest . Stream && ! mapRequest . ReadOnly {
log . Info ( ) .
Caller ( ) .
Bool ( "readOnly" , mapRequest . ReadOnly ) .
Bool ( "omitPeers" , mapRequest . OmitPeers ) .
Bool ( "stream" , mapRequest . Stream ) .
2023-11-19 16:37:04 -05:00
Str ( "node_key" , node . NodeKey . ShortString ( ) ) .
2023-09-24 07:42:05 -04:00
Str ( "node" , node . Hostname ) .
2023-11-23 02:31:33 -05:00
Int ( "cap_ver" , int ( mapRequest . Version ) ) .
2023-12-09 12:09:24 -05:00
Msg ( "Received update" )
2023-09-11 07:18:31 -04:00
2023-12-09 12:09:24 -05:00
change := node . PeerChangeFromMapRequest ( mapRequest )
2023-09-24 07:42:05 -04:00
2023-12-09 12:09:24 -05:00
online := h . nodeNotifier . IsConnected ( node . MachineKey )
change . Online = & online
2023-09-11 07:18:31 -04:00
2023-12-09 12:09:24 -05:00
node . ApplyPeerChange ( & change )
hostInfoChange := node . Hostinfo . Equal ( mapRequest . Hostinfo )
logTracePeerChange ( node . Hostname , hostInfoChange , & change )
// Check if the Hostinfo of the node has changed.
// If it has changed, check if there has been a change tod
// the routable IPs of the host and update update them in
// the database. Then send a Changed update
// (containing the whole node object) to peers to inform about
// the route change.
// If the hostinfo has changed, but not the routes, just update
// hostinfo and let the function continue.
if ! hostInfoChange {
oldRoutes := node . Hostinfo . RoutableIPs
newRoutes := mapRequest . Hostinfo . RoutableIPs
oldServicesCount := len ( node . Hostinfo . Services )
newServicesCount := len ( mapRequest . Hostinfo . Services )
node . Hostinfo = mapRequest . Hostinfo
sendUpdate := false
// Route changes come as part of Hostinfo, which means that
// when an update comes, the Node Route logic need to run.
// This will require a "change" in comparison to a "patch",
// which is more costly.
if ! xslices . Equal ( oldRoutes , newRoutes ) {
var err error
sendUpdate , err = h . db . SaveNodeRoutes ( node )
if err != nil {
logErr ( err , "Error processing node routes" )
http . Error ( writer , "" , http . StatusInternalServerError )
return
}
2024-01-18 10:36:47 -05:00
if h . ACLPolicy != nil {
// update routes with peer information
2024-02-08 11:28:19 -05:00
update , err := h . db . EnableAutoApprovedRoutes ( h . ACLPolicy , node )
2024-01-18 10:36:47 -05:00
if err != nil {
logErr ( err , "Error running auto approved routes" )
}
2024-02-08 11:28:19 -05:00
if update != nil {
sendUpdate = true
}
2024-01-18 10:36:47 -05:00
}
2023-12-09 12:09:24 -05:00
}
// Services is mostly useful for discovery and not critical,
// except for peerapi, which is how nodes talk to eachother.
// If peerapi was not part of the initial mapresponse, we
// need to make sure its sent out later as it is needed for
// Taildrop.
// TODO(kradalby): Length comparison is a bit naive, replace.
if oldServicesCount != newServicesCount {
sendUpdate = true
}
if sendUpdate {
2024-02-08 11:28:19 -05:00
if err := h . db . DB . Save ( node ) . Error ; err != nil {
2023-12-09 12:09:24 -05:00
logErr ( err , "Failed to persist/update node in the database" )
http . Error ( writer , "" , http . StatusInternalServerError )
return
}
2024-01-18 11:30:25 -05:00
// Send an update to all peers to propagate the new routes
// available.
2023-12-09 12:09:24 -05:00
stateUpdate := types . StateUpdate {
Type : types . StatePeerChanged ,
ChangeNodes : types . Nodes { node } ,
Message : "called from handlePoll -> update -> new hostinfo" ,
}
if stateUpdate . Valid ( ) {
2024-02-08 11:28:19 -05:00
ctx := types . NotifyCtx ( context . Background ( ) , "poll-nodeupdate-peers-hostinfochange" , node . Hostname )
2023-12-09 12:09:24 -05:00
h . nodeNotifier . NotifyWithIgnore (
2024-02-08 11:28:19 -05:00
ctx ,
2023-12-09 12:09:24 -05:00
stateUpdate ,
node . MachineKey . String ( ) )
}
2024-01-18 11:30:25 -05:00
// Send an update to the node itself with to ensure it
// has an updated packetfilter allowing the new route
// if it is defined in the ACL.
selfUpdate := types . StateUpdate {
Type : types . StateSelfUpdate ,
ChangeNodes : types . Nodes { node } ,
}
if selfUpdate . Valid ( ) {
2024-02-08 11:28:19 -05:00
ctx := types . NotifyCtx ( context . Background ( ) , "poll-nodeupdate-self-hostinfochange" , node . Hostname )
2024-01-18 11:30:25 -05:00
h . nodeNotifier . NotifyByMachineKey (
2024-02-08 11:28:19 -05:00
ctx ,
2024-01-18 11:30:25 -05:00
selfUpdate ,
node . MachineKey )
}
2023-12-09 12:09:24 -05:00
return
}
2023-09-11 07:18:31 -04:00
}
2024-02-08 11:28:19 -05:00
if err := h . db . DB . Save ( node ) . Error ; err != nil {
2023-12-09 12:09:24 -05:00
logErr ( err , "Failed to persist/update node in the database" )
2023-09-11 12:45:46 -04:00
http . Error ( writer , "" , http . StatusInternalServerError )
return
}
2024-02-09 01:26:41 -05:00
// TODO(kradalby): Figure out why patch changes does
// not show up in output from `tailscale debug netmap`.
// stateUpdate := types.StateUpdate{
// Type: types.StatePeerChangedPatch,
// ChangePatches: []*tailcfg.PeerChange{&change},
// }
2023-12-09 12:09:24 -05:00
stateUpdate := types . StateUpdate {
2024-02-09 01:26:41 -05:00
Type : types . StatePeerChanged ,
ChangeNodes : types . Nodes { node } ,
2023-12-09 12:09:24 -05:00
}
if stateUpdate . Valid ( ) {
2024-02-08 11:28:19 -05:00
ctx := types . NotifyCtx ( context . Background ( ) , "poll-nodeupdate-peers-patch" , node . Hostname )
2023-12-09 12:09:24 -05:00
h . nodeNotifier . NotifyWithIgnore (
2024-02-08 11:28:19 -05:00
ctx ,
2023-12-09 12:09:24 -05:00
stateUpdate ,
node . MachineKey . String ( ) )
}
2023-09-11 07:18:31 -04:00
writer . WriteHeader ( http . StatusOK )
if f , ok := writer . ( http . Flusher ) ; ok {
f . Flush ( )
}
return
2023-12-09 12:09:24 -05:00
} else if mapRequest . OmitPeers && ! mapRequest . Stream && mapRequest . ReadOnly {
2023-09-11 07:18:31 -04:00
// 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.
} else if mapRequest . OmitPeers && ! mapRequest . Stream && mapRequest . ReadOnly {
2023-11-23 02:31:33 -05:00
h . handleLiteRequest ( writer , node , mapRequest )
2023-09-11 07:18:31 -04:00
return
} else if mapRequest . OmitPeers && mapRequest . Stream {
logErr ( nil , "Ignoring request, don't know how to handle it" )
return
2023-07-26 11:54:19 -04:00
}
2023-12-09 12:09:24 -05:00
change := node . PeerChangeFromMapRequest ( mapRequest )
// A stream is being set up, the node is Online
online := true
change . Online = & online
node . ApplyPeerChange ( & change )
// Only save HostInfo if changed, update routes if changed
// TODO(kradalby): Remove when capver is over 68
if ! node . Hostinfo . Equal ( mapRequest . Hostinfo ) {
oldRoutes := node . Hostinfo . RoutableIPs
newRoutes := mapRequest . Hostinfo . RoutableIPs
node . Hostinfo = mapRequest . Hostinfo
if ! xslices . Equal ( oldRoutes , newRoutes ) {
_ , err := h . db . SaveNodeRoutes ( node )
if err != nil {
logErr ( err , "Error processing node routes" )
http . Error ( writer , "" , http . StatusInternalServerError )
return
}
}
}
2024-02-08 11:28:19 -05:00
if err := h . db . DB . Save ( node ) . Error ; err != nil {
2023-12-09 12:09:24 -05:00
logErr ( err , "Failed to persist/update node in the database" )
http . Error ( writer , "" , http . StatusInternalServerError )
return
}
2023-06-21 05:29:52 -04:00
2023-08-09 16:20:05 -04:00
// When a node connects to control, list the peers it has at
// that given point, further updates are kept in memory in
// the Mapper, which lives for the duration of the polling
// session.
2023-09-24 07:42:05 -04:00
peers , err := h . db . ListPeers ( node )
2023-08-09 16:20:05 -04:00
if err != nil {
logErr ( err , "Failed to list peers when opening poller" )
http . Error ( writer , "" , http . StatusInternalServerError )
return
}
2023-12-09 12:09:24 -05:00
for _ , peer := range peers {
online := h . nodeNotifier . IsConnected ( peer . MachineKey )
peer . IsOnline = & online
}
2023-06-22 04:01:17 -04:00
mapp := mapper . NewMapper (
2023-09-24 07:42:05 -04:00
node ,
2023-08-09 16:20:05 -04:00
peers ,
2023-05-26 06:26:34 -04:00
h . DERPMap ,
h . cfg . BaseDomain ,
h . cfg . DNSConfig ,
h . cfg . LogTail . Enabled ,
h . cfg . RandomizeClientPort ,
)
2022-02-06 11:55:12 -05:00
// update ACLRules with peer informations (to update server tags if necessary)
2023-05-21 12:37:59 -04:00
if h . ACLPolicy != nil {
2022-08-24 06:53:55 -04:00
// update routes with peer information
2024-02-08 11:28:19 -05:00
// This state update is ignored as it will be sent
// as part of the whole node
// TODO(kradalby): figure out if that is actually correct
_ , err = h . db . EnableAutoApprovedRoutes ( h . ACLPolicy , node )
2022-11-25 10:29:45 -05:00
if err != nil {
2023-06-21 05:29:52 -04:00
logErr ( err , "Error running auto approved routes" )
2022-11-25 10:29:45 -05:00
}
2022-02-06 11:55:12 -05:00
}
2022-08-24 06:53:55 -04:00
2023-06-21 05:29:52 -04:00
logInfo ( "Sending initial map" )
2021-08-18 18:24:22 -04:00
2023-09-24 07:42:05 -04:00
mapResp , err := mapp . FullMapResponse ( mapRequest , node , h . ACLPolicy )
2023-07-26 07:55:03 -04:00
if err != nil {
logErr ( err , "Failed to create MapResponse" )
http . Error ( writer , "" , http . StatusInternalServerError )
return
}
2023-06-21 05:29:52 -04:00
// Send the client an update to make sure we send an initial mapresponse
_ , err = writer . Write ( mapResp )
if err != nil {
logErr ( err , "Could not write the map response" )
return
}
if flusher , ok := writer . ( http . Flusher ) ; ok {
flusher . Flush ( )
} else {
return
}
2021-08-18 18:24:22 -04:00
2023-12-09 12:09:24 -05:00
stateUpdate := types . StateUpdate {
Type : types . StatePeerChanged ,
ChangeNodes : types . Nodes { node } ,
Message : "called from handlePoll -> new node added" ,
}
if stateUpdate . Valid ( ) {
2024-02-08 11:28:19 -05:00
ctx := types . NotifyCtx ( context . Background ( ) , "poll-newnode-peers" , node . Hostname )
2023-12-09 12:09:24 -05:00
h . nodeNotifier . NotifyWithIgnore (
2024-02-08 11:28:19 -05:00
ctx ,
2023-12-09 12:09:24 -05:00
stateUpdate ,
node . MachineKey . String ( ) )
}
2023-09-11 07:18:31 -04:00
2024-02-08 11:28:19 -05:00
if len ( node . Routes ) > 0 {
go h . pollFailoverRoutes ( logErr , "new node" , node )
}
2023-09-11 07:18:31 -04:00
// Set up the client stream
h . pollNetMapStreamWG . Add ( 1 )
defer h . pollNetMapStreamWG . Done ( )
2023-12-09 12:09:24 -05:00
// Use a buffered channel in case a node is not fully ready
// to receive a message to make sure we dont block the entire
// notifier.
// 12 is arbitrarily chosen.
updateChan := make ( chan types . StateUpdate , 12 )
2023-09-24 07:42:05 -04:00
defer closeChanWithLog ( updateChan , node . Hostname , "updateChan" )
2023-09-11 07:18:31 -04:00
// Register the node's update channel
2023-09-24 07:42:05 -04:00
h . nodeNotifier . AddNode ( node . MachineKey , updateChan )
defer h . nodeNotifier . RemoveNode ( node . MachineKey )
2023-09-11 07:18:31 -04:00
2023-06-21 05:29:52 -04:00
keepAliveTicker := time . NewTicker ( keepAliveInterval )
2024-02-08 11:28:19 -05:00
ctx , cancel := context . WithCancel ( context . WithValue ( ctx , nodeNameContextKey , node . Hostname ) )
2022-06-20 06:30:51 -04:00
defer cancel ( )
2022-04-09 18:37:13 -04:00
2022-06-20 15:40:28 -04:00
for {
2023-07-24 02:58:51 -04:00
logInfo ( "Waiting for update on stream channel" )
2021-08-18 18:24:22 -04:00
select {
2023-06-21 05:29:52 -04:00
case <- keepAliveTicker . C :
2023-09-24 07:42:05 -04:00
data , err := mapp . KeepAliveResponse ( mapRequest , node )
2021-08-13 05:33:50 -04:00
if err != nil {
2023-06-21 05:29:52 -04:00
logErr ( err , "Error generating the keep alive msg" )
2021-11-14 10:46:09 -05:00
2022-06-20 15:40:28 -04:00
return
2021-08-13 05:33:50 -04:00
}
2023-06-21 05:29:52 -04:00
_ , err = writer . Write ( data )
if err != nil {
logErr ( err , "Cannot write keep alive message" )
2022-06-26 06:25:26 -04:00
2023-06-21 05:29:52 -04:00
return
2022-06-26 06:25:26 -04:00
}
2023-06-21 05:29:52 -04:00
if flusher , ok := writer . ( http . Flusher ) ; ok {
flusher . Flush ( )
} else {
2023-07-24 02:58:51 -04:00
log . Error ( ) . Msg ( "Failed to create http flusher" )
2022-06-20 15:40:28 -04:00
return
2021-08-21 11:52:19 -04:00
}
2021-10-04 12:28:07 -04:00
2023-09-11 07:18:31 -04:00
// This goroutine is not ideal, but we have a potential issue here
// where it blocks too long and that holds up updates.
// One alternative is to split these different channels into
// goroutines, but then you might have a problem without a lock
// if a keepalive is written at the same time as an update.
2023-12-09 12:09:24 -05:00
go h . updateNodeOnlineStatus ( true , node )
2021-11-14 10:46:09 -05:00
2023-06-29 06:20:22 -04:00
case update := <- updateChan :
2023-07-24 02:58:51 -04:00
logInfo ( "Received update" )
2023-09-11 07:18:31 -04:00
now := time . Now ( )
2023-07-24 02:58:51 -04:00
2023-06-29 06:20:22 -04:00
var data [ ] byte
var err error
2024-01-18 11:30:25 -05:00
// Ensure the node object is updated, for example, there
// might have been a hostinfo update in a sidechannel
// which contains data needed to generate a map response.
node , err = h . db . GetNodeByMachineKey ( node . MachineKey )
if err != nil {
logErr ( err , "Could not get machine from db" )
return
}
2024-02-08 11:28:19 -05:00
startMapResp := time . Now ( )
2023-06-29 06:20:22 -04:00
switch update . Type {
2023-12-09 12:09:24 -05:00
case types . StateFullUpdate :
logInfo ( "Sending Full MapResponse" )
data , err = mapp . FullMapResponse ( mapRequest , node , h . ACLPolicy )
2023-06-29 06:20:22 -04:00
case types . StatePeerChanged :
2023-12-09 12:09:24 -05:00
logInfo ( fmt . Sprintf ( "Sending Changed MapResponse: %s" , update . Message ) )
2024-02-08 11:28:19 -05:00
isConnectedMap := h . nodeNotifier . ConnectedMap ( )
2023-12-09 12:09:24 -05:00
for _ , node := range update . ChangeNodes {
// If a node is not reported to be online, it might be
// because the value is outdated, check with the notifier.
// However, if it is set to Online, and not in the notifier,
// this might be because it has announced itself, but not
// reached the stage to actually create the notifier channel.
if node . IsOnline != nil && ! * node . IsOnline {
2024-02-08 11:28:19 -05:00
isOnline := isConnectedMap [ node . MachineKey ]
2023-12-09 12:09:24 -05:00
node . IsOnline = & isOnline
}
}
data , err = mapp . PeerChangedResponse ( mapRequest , node , update . ChangeNodes , h . ACLPolicy , update . Message )
case types . StatePeerChangedPatch :
logInfo ( "Sending PeerChangedPatch MapResponse" )
data , err = mapp . PeerChangedPatchResponse ( mapRequest , node , update . ChangePatches , h . ACLPolicy )
2023-06-29 06:20:22 -04:00
case types . StatePeerRemoved :
2023-07-17 05:13:48 -04:00
logInfo ( "Sending PeerRemoved MapResponse" )
2023-09-24 07:42:05 -04:00
data , err = mapp . PeerRemovedResponse ( mapRequest , node , update . Removed )
2024-01-05 04:41:56 -05:00
case types . StateSelfUpdate :
if len ( update . ChangeNodes ) == 1 {
logInfo ( "Sending SelfUpdate MapResponse" )
node = update . ChangeNodes [ 0 ]
2024-02-08 11:28:19 -05:00
data , err = mapp . LiteMapResponse ( mapRequest , node , h . ACLPolicy , types . SelfUpdateIdentifier )
2024-01-05 04:41:56 -05:00
} else {
logInfo ( "SelfUpdate contained too many nodes, this is likely a bug in the code, please report." )
}
2023-06-29 06:20:22 -04:00
case types . StateDERPUpdated :
2023-07-17 05:13:48 -04:00
logInfo ( "Sending DERPUpdate MapResponse" )
2023-09-24 07:42:05 -04:00
data , err = mapp . DERPMapResponse ( mapRequest , node , update . DERPMap )
2023-06-29 06:20:22 -04:00
}
2021-08-13 05:33:50 -04:00
if err != nil {
2023-06-29 06:20:22 -04:00
logErr ( err , "Could not get the create map update" )
2021-11-14 10:46:09 -05:00
2022-06-20 15:40:28 -04:00
return
2021-08-13 05:33:50 -04:00
}
2022-06-20 15:40:28 -04:00
2024-02-08 11:28:19 -05:00
log . Trace ( ) . Str ( "node" , node . Hostname ) . TimeDiff ( "timeSpent" , time . Now ( ) , startMapResp ) . Str ( "mkey" , node . MachineKey . String ( ) ) . Int ( "type" , int ( update . Type ) ) . Msg ( "finished making map response" )
2023-12-09 12:09:24 -05:00
// Only send update if there is change
if data != nil {
2024-02-08 11:28:19 -05:00
startWrite := time . Now ( )
2023-12-09 12:09:24 -05:00
_ , err = writer . Write ( data )
if err != nil {
logErr ( err , "Could not write the map response" )
2021-11-14 10:46:09 -05:00
2023-12-09 12:09:24 -05:00
updateRequestsSentToNode . WithLabelValues ( node . User . Name , node . Hostname , "failed" ) .
Inc ( )
2023-07-24 02:58:51 -04:00
2023-12-09 12:09:24 -05:00
return
}
2021-11-14 10:46:09 -05:00
2023-12-09 12:09:24 -05:00
if flusher , ok := writer . ( http . Flusher ) ; ok {
flusher . Flush ( )
} else {
log . Error ( ) . Msg ( "Failed to create http flusher" )
2023-06-21 05:29:52 -04:00
2023-09-11 07:18:31 -04:00
return
}
2024-02-08 11:28:19 -05:00
log . Trace ( ) . Str ( "node" , node . Hostname ) . TimeDiff ( "timeSpent" , time . Now ( ) , startWrite ) . Str ( "mkey" , node . MachineKey . String ( ) ) . Int ( "type" , int ( update . Type ) ) . Msg ( "finished writing mapresp to node" )
2023-06-21 05:29:52 -04:00
2023-12-09 12:09:24 -05:00
log . Info ( ) .
Caller ( ) .
Bool ( "readOnly" , mapRequest . ReadOnly ) .
Bool ( "omitPeers" , mapRequest . OmitPeers ) .
Bool ( "stream" , mapRequest . Stream ) .
Str ( "node_key" , node . NodeKey . ShortString ( ) ) .
Str ( "machine_key" , node . MachineKey . ShortString ( ) ) .
Str ( "node" , node . Hostname ) .
TimeDiff ( "timeSpent" , time . Now ( ) , now ) .
Msg ( "update sent" )
}
2023-06-21 05:29:52 -04:00
case <- ctx . Done ( ) :
logInfo ( "The client has closed the connection" )
2023-12-09 12:09:24 -05:00
go h . updateNodeOnlineStatus ( false , node )
2023-09-11 07:18:31 -04:00
2023-12-09 12:09:24 -05:00
// Failover the node's routes if any.
2024-02-08 11:28:19 -05:00
go h . pollFailoverRoutes ( logErr , "node closing connection" , node )
2021-08-18 18:24:22 -04:00
2022-06-20 15:40:28 -04:00
// The connection has been closed, so we can stop polling.
return
2022-06-23 13:40:07 -04:00
case <- h . shutdownChan :
2023-06-21 05:29:52 -04:00
logInfo ( "The long-poll handler is shutting down" )
2022-06-26 06:06:25 -04:00
2022-06-23 13:40:07 -04:00
return
2021-08-13 05:33:50 -04:00
}
2022-06-20 06:30:51 -04:00
}
2021-08-13 05:33:50 -04:00
}
2021-08-18 18:24:22 -04:00
2024-02-08 11:28:19 -05:00
func ( h * Headscale ) pollFailoverRoutes ( logErr func ( error , string ) , where string , node * types . Node ) {
update , err := db . Write ( h . db . DB , func ( tx * gorm . DB ) ( * types . StateUpdate , error ) {
return db . EnsureFailoverRouteIsAvailable ( tx , h . nodeNotifier . ConnectedMap ( ) , node )
} )
if err != nil {
logErr ( err , fmt . Sprintf ( "failed to ensure failover routes, %s" , where ) )
return
}
if update != nil && ! update . Empty ( ) && update . Valid ( ) {
ctx := types . NotifyCtx ( context . Background ( ) , fmt . Sprintf ( "poll-%s-routes-ensurefailover" , strings . ReplaceAll ( where , " " , "-" ) ) , node . Hostname )
h . nodeNotifier . NotifyWithIgnore ( ctx , * update , node . MachineKey . String ( ) )
}
}
2023-12-09 12:09:24 -05:00
// updateNodeOnlineStatus records the last seen status of a node and notifies peers
// about change in their online/offline status.
// It takes a StateUpdateType of either StatePeerOnlineChanged or StatePeerOfflineChanged.
func ( h * Headscale ) updateNodeOnlineStatus ( online bool , node * types . Node ) {
now := time . Now ( )
node . LastSeen = & now
statusUpdate := types . StateUpdate {
Type : types . StatePeerChangedPatch ,
ChangePatches : [ ] * tailcfg . PeerChange {
{
NodeID : tailcfg . NodeID ( node . ID ) ,
Online : & online ,
LastSeen : & now ,
} ,
} ,
}
if statusUpdate . Valid ( ) {
2024-02-08 11:28:19 -05:00
ctx := types . NotifyCtx ( context . Background ( ) , "poll-nodeupdate-onlinestatus" , node . Hostname )
h . nodeNotifier . NotifyWithIgnore ( ctx , statusUpdate , node . MachineKey . String ( ) )
2023-12-09 12:09:24 -05:00
}
2024-02-08 11:28:19 -05:00
err := h . db . DB . Transaction ( func ( tx * gorm . DB ) error {
return db . UpdateLastSeen ( tx , node . ID , * node . LastSeen )
} )
2023-12-09 12:09:24 -05:00
if err != nil {
log . Error ( ) . Err ( err ) . Msg ( "Cannot update node LastSeen" )
return
}
}
2023-09-24 07:42:05 -04:00
func closeChanWithLog [ C chan [ ] byte | chan struct { } | chan types . StateUpdate ] ( channel C , node , name string ) {
2022-04-09 18:37:13 -04:00
log . Trace ( ) .
Str ( "handler" , "PollNetMap" ) .
2023-09-24 07:42:05 -04:00
Str ( "node" , node ) .
2022-04-09 18:37:13 -04:00
Str ( "channel" , "Done" ) .
Msg ( fmt . Sprintf ( "Closing %s channel" , name ) )
close ( channel )
}
2023-09-11 07:18:31 -04:00
func ( h * Headscale ) handleLiteRequest (
writer http . ResponseWriter ,
2023-09-24 07:42:05 -04:00
node * types . Node ,
2023-09-11 07:18:31 -04:00
mapRequest tailcfg . MapRequest ,
) {
2023-11-23 02:31:33 -05:00
logInfo , logErr := logPollFunc ( mapRequest , node )
2023-09-11 07:18:31 -04:00
mapp := mapper . NewMapper (
2023-09-24 07:42:05 -04:00
node ,
types . Nodes { } ,
2023-09-11 07:18:31 -04:00
h . DERPMap ,
h . cfg . BaseDomain ,
h . cfg . DNSConfig ,
h . cfg . LogTail . Enabled ,
h . cfg . RandomizeClientPort ,
)
logInfo ( "Client asked for a lite update, responding without peers" )
2023-09-24 07:42:05 -04:00
mapResp , err := mapp . LiteMapResponse ( mapRequest , node , h . ACLPolicy )
2023-09-11 07:18:31 -04:00
if err != nil {
logErr ( err , "Failed to create MapResponse" )
http . Error ( writer , "" , http . StatusInternalServerError )
return
}
writer . Header ( ) . Set ( "Content-Type" , "application/json; charset=utf-8" )
writer . WriteHeader ( http . StatusOK )
_ , err = writer . Write ( mapResp )
if err != nil {
logErr ( err , "Failed to write response" )
}
}
2023-12-09 12:09:24 -05:00
func logTracePeerChange ( hostname string , hostinfoChange bool , change * tailcfg . PeerChange ) {
trace := log . Trace ( ) . Str ( "node_id" , change . NodeID . String ( ) ) . Str ( "hostname" , hostname )
if change . Key != nil {
trace = trace . Str ( "node_key" , change . Key . ShortString ( ) )
}
if change . DiscoKey != nil {
trace = trace . Str ( "disco_key" , change . DiscoKey . ShortString ( ) )
}
if change . Online != nil {
trace = trace . Bool ( "online" , * change . Online )
}
if change . Endpoints != nil {
eps := make ( [ ] string , len ( change . Endpoints ) )
for idx , ep := range change . Endpoints {
eps [ idx ] = ep . String ( )
}
trace = trace . Strs ( "endpoints" , eps )
}
if hostinfoChange {
trace = trace . Bool ( "hostinfo_changed" , hostinfoChange )
}
if change . DERPRegion != 0 {
trace = trace . Int ( "derp_region" , change . DERPRegion )
}
trace . Time ( "last_seen" , * change . LastSeen ) . Msg ( "PeerChange received" )
}