2020-06-21 06:32:08 -04:00
|
|
|
package headscale
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
|
|
|
"encoding/json"
|
2021-06-24 09:44:19 -04:00
|
|
|
"errors"
|
2020-06-21 06:32:08 -04:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
2021-10-08 05:43:52 -04:00
|
|
|
"strings"
|
2020-06-21 06:32:08 -04:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/klauspost/compress/zstd"
|
2021-11-13 03:39:04 -05:00
|
|
|
"github.com/rs/zerolog/log"
|
2021-06-24 09:44:19 -04:00
|
|
|
"gorm.io/gorm"
|
2020-06-21 06:32:08 -04:00
|
|
|
"tailscale.com/tailcfg"
|
2021-06-25 12:57:08 -04:00
|
|
|
"tailscale.com/types/wgkey"
|
2020-06-21 06:32:08 -04:00
|
|
|
)
|
|
|
|
|
2021-11-15 12:24:24 -05:00
|
|
|
const reservedResponseHeaderSize = 4
|
2021-11-14 12:31:51 -05:00
|
|
|
|
2021-02-27 18:58:09 -05:00
|
|
|
// KeyHandler provides the Headscale pub key
|
2021-11-13 03:39:04 -05:00
|
|
|
// Listens in /key.
|
2021-11-14 14:32:03 -05:00
|
|
|
func (h *Headscale) KeyHandler(ctx *gin.Context) {
|
|
|
|
ctx.Data(
|
|
|
|
http.StatusOK,
|
|
|
|
"text/plain; charset=utf-8",
|
|
|
|
[]byte(h.publicKey.HexString()),
|
|
|
|
)
|
2020-06-21 06:32:08 -04:00
|
|
|
}
|
|
|
|
|
2021-02-27 18:58:09 -05:00
|
|
|
// RegisterWebAPI shows a simple message in the browser to point to the CLI
|
2021-11-13 03:39:04 -05:00
|
|
|
// Listens in /register.
|
2021-11-14 14:32:03 -05:00
|
|
|
func (h *Headscale) RegisterWebAPI(ctx *gin.Context) {
|
|
|
|
machineKeyStr := ctx.Query("key")
|
|
|
|
if machineKeyStr == "" {
|
|
|
|
ctx.String(http.StatusBadRequest, "Wrong params")
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2021-02-27 18:58:09 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-14 14:32:03 -05:00
|
|
|
ctx.Data(http.StatusOK, "text/html; charset=utf-8", []byte(fmt.Sprintf(`
|
2021-02-27 18:58:09 -05:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<h1>headscale</h1>
|
|
|
|
<p>
|
2021-05-14 18:05:41 -04:00
|
|
|
Run the command below in the headscale server to add this machine to your network:
|
2021-02-27 18:58:09 -05:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<code>
|
2021-11-04 18:18:06 -04:00
|
|
|
<b>headscale -n NAMESPACE nodes register --key %s</b>
|
2021-02-27 18:58:09 -05:00
|
|
|
</code>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
2021-05-24 15:59:03 -04:00
|
|
|
|
2021-11-14 14:32:03 -05:00
|
|
|
`, machineKeyStr)))
|
2021-02-27 18:58:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// RegistrationHandler handles the actual registration process of a machine
|
2021-11-13 03:39:04 -05:00
|
|
|
// Endpoint /machine/:id.
|
2021-11-14 14:32:03 -05:00
|
|
|
func (h *Headscale) RegistrationHandler(ctx *gin.Context) {
|
|
|
|
body, _ := io.ReadAll(ctx.Request.Body)
|
|
|
|
machineKeyStr := ctx.Param("id")
|
|
|
|
machineKey, err := wgkey.ParseHex(machineKeyStr)
|
2020-06-21 06:32:08 -04:00
|
|
|
if err != nil {
|
2021-08-05 13:11:26 -04:00
|
|
|
log.Error().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("handler", "Registration").
|
2021-08-05 13:11:26 -04:00
|
|
|
Err(err).
|
|
|
|
Msg("Cannot parse machine key")
|
2021-10-10 05:22:42 -04:00
|
|
|
machineRegistrations.WithLabelValues("unknown", "web", "error", "unknown").Inc()
|
2021-11-14 14:32:03 -05:00
|
|
|
ctx.String(http.StatusInternalServerError, "Sad!")
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2020-06-21 06:32:08 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
req := tailcfg.RegisterRequest{}
|
2021-11-14 14:32:03 -05:00
|
|
|
err = decode(body, &req, &machineKey, h.privateKey)
|
2020-06-21 06:32:08 -04:00
|
|
|
if err != nil {
|
2021-08-05 13:11:26 -04:00
|
|
|
log.Error().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("handler", "Registration").
|
2021-08-05 13:11:26 -04:00
|
|
|
Err(err).
|
|
|
|
Msg("Cannot decode message")
|
2021-10-10 05:22:42 -04:00
|
|
|
machineRegistrations.WithLabelValues("unknown", "web", "error", "unknown").Inc()
|
2021-11-14 14:32:03 -05:00
|
|
|
ctx.String(http.StatusInternalServerError, "Very sad!")
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2020-06-21 06:32:08 -04:00
|
|
|
return
|
|
|
|
}
|
2021-05-05 18:59:26 -04:00
|
|
|
|
2021-08-18 18:24:22 -04:00
|
|
|
now := time.Now().UTC()
|
2021-11-14 14:32:03 -05:00
|
|
|
machine, err := h.GetMachineByMachineKey(machineKey.HexString())
|
2021-10-10 05:22:42 -04:00
|
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
2021-08-05 15:57:47 -04:00
|
|
|
log.Info().Str("machine", req.Hostinfo.Hostname).Msg("New machine")
|
2021-10-10 05:22:42 -04:00
|
|
|
newMachine := Machine{
|
|
|
|
Expiry: &time.Time{},
|
2021-11-14 14:32:03 -05:00
|
|
|
MachineKey: machineKey.HexString(),
|
2021-10-10 05:22:42 -04:00
|
|
|
Name: req.Hostinfo.Hostname,
|
2021-06-05 06:13:55 -04:00
|
|
|
}
|
2021-10-10 05:22:42 -04:00
|
|
|
if err := h.db.Create(&newMachine).Error; err != nil {
|
2021-08-05 13:16:21 -04:00
|
|
|
log.Error().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("handler", "Registration").
|
2021-08-05 13:16:21 -04:00
|
|
|
Err(err).
|
|
|
|
Msg("Could not create row")
|
2021-11-14 14:32:03 -05:00
|
|
|
machineRegistrations.WithLabelValues("unknown", "web", "error", machine.Namespace.Name).
|
2021-11-13 03:36:45 -05:00
|
|
|
Inc()
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2021-06-05 06:13:55 -04:00
|
|
|
return
|
|
|
|
}
|
2021-11-14 14:32:03 -05:00
|
|
|
machine = &newMachine
|
2021-06-05 06:13:55 -04:00
|
|
|
}
|
|
|
|
|
2021-11-14 14:32:03 -05:00
|
|
|
if !machine.Registered && req.Auth.AuthKey != "" {
|
2021-11-17 17:39:41 -05:00
|
|
|
h.handleAuthKey(ctx, machineKey, req, *machine)
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2020-06-21 06:32:08 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-06-05 06:13:55 -04:00
|
|
|
// We have the updated key!
|
2021-11-14 14:32:03 -05:00
|
|
|
if machine.NodeKey == wgkey.Key(req.NodeKey).HexString() {
|
2021-10-29 09:35:07 -04:00
|
|
|
// The client sends an Expiry in the past if the client is requesting to expire the key (aka logout)
|
|
|
|
// https://github.com/tailscale/tailscale/blob/main/tailcfg/tailcfg.go#L648
|
2021-10-08 05:43:52 -04:00
|
|
|
if !req.Expiry.IsZero() && req.Expiry.UTC().Before(now) {
|
2021-11-17 17:39:41 -05:00
|
|
|
h.handleMachineLogOut(ctx, machineKey, req, *machine)
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2021-10-08 05:43:52 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-14 14:32:03 -05:00
|
|
|
if machine.Registered && machine.Expiry.UTC().After(now) {
|
2021-11-17 17:39:41 -05:00
|
|
|
h.handleMachineValidRegistration(ctx, machineKey, req, *machine)
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2020-06-21 06:32:08 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-17 17:39:41 -05:00
|
|
|
h.handleMachineExpired(ctx, machineKey, req, *machine)
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2020-06-21 06:32:08 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-08 05:43:52 -04:00
|
|
|
// The NodeKey we have matches OldNodeKey, which means this is a refresh after a key expiration
|
2021-11-14 14:32:03 -05:00
|
|
|
if machine.NodeKey == wgkey.Key(req.OldNodeKey).HexString() &&
|
2021-11-17 17:39:41 -05:00
|
|
|
!machine.isExpired() {
|
|
|
|
h.handleMachineRefreshKey(ctx, machineKey, req, *machine)
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2020-06-21 06:32:08 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-17 17:39:41 -05:00
|
|
|
h.handleMachineRegistrationNew(ctx, machineKey, req, *machine)
|
2020-06-21 06:32:08 -04:00
|
|
|
}
|
|
|
|
|
2021-11-13 03:36:45 -05:00
|
|
|
func (h *Headscale) getMapResponse(
|
2021-11-14 14:32:03 -05:00
|
|
|
machineKey wgkey.Key,
|
2021-11-13 03:36:45 -05:00
|
|
|
req tailcfg.MapRequest,
|
2021-11-14 14:32:03 -05:00
|
|
|
machine *Machine,
|
2021-11-13 03:36:45 -05:00
|
|
|
) ([]byte, error) {
|
2021-08-05 16:47:06 -04:00
|
|
|
log.Trace().
|
|
|
|
Str("func", "getMapResponse").
|
|
|
|
Str("machine", req.Hostinfo.Hostname).
|
|
|
|
Msg("Creating Map response")
|
2021-11-14 14:32:03 -05:00
|
|
|
node, err := machine.toNode(h.cfg.BaseDomain, h.cfg.DNSConfig, true)
|
2020-06-21 06:32:08 -04:00
|
|
|
if err != nil {
|
2021-08-05 13:11:26 -04:00
|
|
|
log.Error().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("func", "getMapResponse").
|
2021-08-05 13:11:26 -04:00
|
|
|
Err(err).
|
|
|
|
Msg("Cannot convert to node")
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2020-06-21 06:32:08 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-10-02 16:58:28 -04:00
|
|
|
|
2021-11-14 14:32:03 -05:00
|
|
|
peers, err := h.getPeers(machine)
|
2020-06-21 06:32:08 -04:00
|
|
|
if err != nil {
|
2021-08-05 13:11:26 -04:00
|
|
|
log.Error().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("func", "getMapResponse").
|
2021-08-05 13:11:26 -04:00
|
|
|
Err(err).
|
|
|
|
Msg("Cannot fetch peers")
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2020-06-21 06:32:08 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-07-11 10:39:19 -04:00
|
|
|
|
2021-11-14 14:32:03 -05:00
|
|
|
profiles := getMapResponseUserProfiles(*machine, peers)
|
2021-07-11 10:39:19 -04:00
|
|
|
|
2021-10-04 17:49:16 -04:00
|
|
|
nodePeers, err := peers.toNodes(h.cfg.BaseDomain, h.cfg.DNSConfig, true)
|
2021-10-02 17:03:34 -04:00
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("func", "getMapResponse").
|
|
|
|
Err(err).
|
|
|
|
Msg("Failed to convert peers to Tailscale nodes")
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2021-10-02 17:03:34 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-11-14 12:03:21 -05:00
|
|
|
dnsConfig := getMapResponseDNSConfig(
|
2021-11-13 03:36:45 -05:00
|
|
|
h.cfg.DNSConfig,
|
|
|
|
h.cfg.BaseDomain,
|
2021-11-14 14:32:03 -05:00
|
|
|
*machine,
|
2021-11-13 03:36:45 -05:00
|
|
|
peers,
|
|
|
|
)
|
2021-10-02 06:13:19 -04:00
|
|
|
|
2020-06-21 06:32:08 -04:00
|
|
|
resp := tailcfg.MapResponse{
|
2021-10-02 05:20:42 -04:00
|
|
|
KeepAlive: false,
|
|
|
|
Node: node,
|
2021-10-04 17:43:42 -04:00
|
|
|
Peers: nodePeers,
|
2021-10-02 06:13:19 -04:00
|
|
|
DNSConfig: dnsConfig,
|
2021-10-02 05:20:42 -04:00
|
|
|
Domain: h.cfg.BaseDomain,
|
2021-11-04 18:18:06 -04:00
|
|
|
PacketFilter: h.aclRules,
|
2021-10-22 12:56:00 -04:00
|
|
|
DERPMap: h.DERPMap,
|
2021-10-17 06:07:01 -04:00
|
|
|
UserProfiles: profiles,
|
2021-02-23 18:31:58 -05:00
|
|
|
}
|
2021-10-17 06:07:01 -04:00
|
|
|
|
2021-08-13 05:33:19 -04:00
|
|
|
log.Trace().
|
|
|
|
Str("func", "getMapResponse").
|
|
|
|
Str("machine", req.Hostinfo.Hostname).
|
2021-10-05 12:51:42 -04:00
|
|
|
// Interface("payload", resp).
|
2021-08-13 05:33:19 -04:00
|
|
|
Msgf("Generated map response: %s", tailMapResponseToString(resp))
|
2020-06-21 06:32:08 -04:00
|
|
|
|
|
|
|
var respBody []byte
|
|
|
|
if req.Compress == "zstd" {
|
|
|
|
src, _ := json.Marshal(resp)
|
2021-08-13 05:33:19 -04:00
|
|
|
|
2020-06-21 06:32:08 -04:00
|
|
|
encoder, _ := zstd.NewWriter(nil)
|
|
|
|
srcCompressed := encoder.EncodeAll(src, nil)
|
2021-11-14 14:32:03 -05:00
|
|
|
respBody, err = encodeMsg(srcCompressed, &machineKey, h.privateKey)
|
2020-06-21 06:32:08 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
} else {
|
2021-11-14 14:32:03 -05:00
|
|
|
respBody, err = encode(resp, &machineKey, h.privateKey)
|
2020-06-21 06:32:08 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// declare the incoming size on the first 4 bytes
|
2021-11-15 12:24:24 -05:00
|
|
|
data := make([]byte, reservedResponseHeaderSize)
|
2020-06-21 06:32:08 -04:00
|
|
|
binary.LittleEndian.PutUint32(data, uint32(len(respBody)))
|
|
|
|
data = append(data, respBody...)
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2021-10-04 13:39:01 -04:00
|
|
|
return data, nil
|
2020-06-21 06:32:08 -04:00
|
|
|
}
|
|
|
|
|
2021-11-13 03:36:45 -05:00
|
|
|
func (h *Headscale) getMapKeepAliveResponse(
|
2021-11-14 14:32:03 -05:00
|
|
|
machineKey wgkey.Key,
|
|
|
|
mapRequest tailcfg.MapRequest,
|
2021-11-13 03:36:45 -05:00
|
|
|
) ([]byte, error) {
|
2021-11-14 14:32:03 -05:00
|
|
|
mapResponse := tailcfg.MapResponse{
|
2020-06-21 06:32:08 -04:00
|
|
|
KeepAlive: true,
|
|
|
|
}
|
|
|
|
var respBody []byte
|
|
|
|
var err error
|
2021-11-14 14:32:03 -05:00
|
|
|
if mapRequest.Compress == "zstd" {
|
|
|
|
src, _ := json.Marshal(mapResponse)
|
2020-06-21 06:32:08 -04:00
|
|
|
encoder, _ := zstd.NewWriter(nil)
|
|
|
|
srcCompressed := encoder.EncodeAll(src, nil)
|
2021-11-14 14:32:03 -05:00
|
|
|
respBody, err = encodeMsg(srcCompressed, &machineKey, h.privateKey)
|
2020-06-21 06:32:08 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
} else {
|
2021-11-14 14:32:03 -05:00
|
|
|
respBody, err = encode(mapResponse, &machineKey, h.privateKey)
|
2020-06-21 06:32:08 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2021-11-15 12:24:24 -05:00
|
|
|
data := make([]byte, reservedResponseHeaderSize)
|
2020-06-21 06:32:08 -04:00
|
|
|
binary.LittleEndian.PutUint32(data, uint32(len(respBody)))
|
|
|
|
data = append(data, respBody...)
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2021-10-04 13:39:01 -04:00
|
|
|
return data, nil
|
2020-06-21 06:32:08 -04:00
|
|
|
}
|
|
|
|
|
2021-11-17 17:39:41 -05:00
|
|
|
func (h *Headscale) handleMachineLogOut(
|
|
|
|
ctx *gin.Context,
|
|
|
|
idKey wgkey.Key,
|
|
|
|
reqisterRequest tailcfg.RegisterRequest,
|
|
|
|
machine Machine,
|
|
|
|
) {
|
|
|
|
resp := tailcfg.RegisterResponse{}
|
|
|
|
|
|
|
|
log.Info().
|
|
|
|
Str("handler", "Registration").
|
|
|
|
Str("machine", machine.Name).
|
|
|
|
Msg("Client requested logout")
|
|
|
|
|
|
|
|
machine.Expiry = &reqisterRequest.Expiry // save the expiry so that the machine is marked as expired
|
|
|
|
h.db.Save(&machine)
|
|
|
|
|
|
|
|
resp.AuthURL = ""
|
|
|
|
resp.MachineAuthorized = false
|
|
|
|
resp.User = *machine.Namespace.toUser()
|
|
|
|
respBody, err := encode(resp, &idKey, h.privateKey)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "Registration").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot encode message")
|
|
|
|
ctx.String(http.StatusInternalServerError, "")
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data(http.StatusOK, "application/json; charset=utf-8", respBody)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Headscale) handleMachineValidRegistration(
|
|
|
|
ctx *gin.Context,
|
|
|
|
idKey wgkey.Key,
|
|
|
|
reqisterRequest tailcfg.RegisterRequest,
|
|
|
|
machine Machine,
|
|
|
|
) {
|
|
|
|
resp := tailcfg.RegisterResponse{}
|
|
|
|
|
|
|
|
// The machine registration is valid, respond with redirect to /map
|
|
|
|
log.Debug().
|
|
|
|
Str("handler", "Registration").
|
|
|
|
Str("machine", machine.Name).
|
|
|
|
Msg("Client is registered and we have the current NodeKey. All clear to /map")
|
|
|
|
|
|
|
|
resp.AuthURL = ""
|
|
|
|
resp.MachineAuthorized = true
|
|
|
|
resp.User = *machine.Namespace.toUser()
|
|
|
|
resp.Login = *machine.Namespace.toLogin()
|
|
|
|
|
|
|
|
respBody, err := encode(resp, &idKey, h.privateKey)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "Registration").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot encode message")
|
|
|
|
machineRegistrations.WithLabelValues("update", "web", "error", machine.Namespace.Name).
|
|
|
|
Inc()
|
|
|
|
ctx.String(http.StatusInternalServerError, "")
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
machineRegistrations.WithLabelValues("update", "web", "success", machine.Namespace.Name).
|
|
|
|
Inc()
|
|
|
|
ctx.Data(http.StatusOK, "application/json; charset=utf-8", respBody)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Headscale) handleMachineExpired(
|
|
|
|
ctx *gin.Context,
|
|
|
|
idKey wgkey.Key,
|
|
|
|
reqisterRequest tailcfg.RegisterRequest,
|
|
|
|
machine Machine,
|
|
|
|
) {
|
|
|
|
resp := tailcfg.RegisterResponse{}
|
|
|
|
|
|
|
|
// The client has registered before, but has expired
|
|
|
|
log.Debug().
|
|
|
|
Str("handler", "Registration").
|
|
|
|
Str("machine", machine.Name).
|
|
|
|
Msg("Machine registration has expired. Sending a authurl to register")
|
|
|
|
|
|
|
|
if h.cfg.OIDC.Issuer != "" {
|
|
|
|
resp.AuthURL = fmt.Sprintf("%s/oidc/register/%s",
|
|
|
|
strings.TrimSuffix(h.cfg.ServerURL, "/"), idKey.HexString())
|
|
|
|
} else {
|
|
|
|
resp.AuthURL = fmt.Sprintf("%s/register?key=%s",
|
|
|
|
strings.TrimSuffix(h.cfg.ServerURL, "/"), idKey.HexString())
|
|
|
|
}
|
|
|
|
|
|
|
|
// When a client connects, it may request a specific expiry time in its
|
|
|
|
// RegisterRequest (https://github.com/tailscale/tailscale/blob/main/tailcfg/tailcfg.go#L634)
|
|
|
|
// RequestedExpiry is used to store the clients requested expiry time since the authentication flow is broken
|
|
|
|
// into two steps (which cant pass arbitrary data between them easily) and needs to be
|
|
|
|
// retrieved again after the user has authenticated. After the authentication flow
|
|
|
|
// completes, RequestedExpiry is copied into Expiry.
|
|
|
|
machine.RequestedExpiry = &reqisterRequest.Expiry
|
|
|
|
|
|
|
|
h.db.Save(&machine)
|
|
|
|
|
|
|
|
respBody, err := encode(resp, &idKey, h.privateKey)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "Registration").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot encode message")
|
|
|
|
machineRegistrations.WithLabelValues("new", "web", "error", machine.Namespace.Name).
|
|
|
|
Inc()
|
|
|
|
ctx.String(http.StatusInternalServerError, "")
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
machineRegistrations.WithLabelValues("new", "web", "success", machine.Namespace.Name).
|
|
|
|
Inc()
|
|
|
|
ctx.Data(http.StatusOK, "application/json; charset=utf-8", respBody)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Headscale) handleMachineRefreshKey(
|
|
|
|
ctx *gin.Context,
|
|
|
|
idKey wgkey.Key,
|
|
|
|
reqisterRequest tailcfg.RegisterRequest,
|
|
|
|
machine Machine,
|
|
|
|
) {
|
|
|
|
resp := tailcfg.RegisterResponse{}
|
|
|
|
|
|
|
|
log.Debug().
|
|
|
|
Str("handler", "Registration").
|
|
|
|
Str("machine", machine.Name).
|
|
|
|
Msg("We have the OldNodeKey in the database. This is a key refresh")
|
|
|
|
machine.NodeKey = wgkey.Key(reqisterRequest.NodeKey).HexString()
|
|
|
|
h.db.Save(&machine)
|
|
|
|
|
|
|
|
resp.AuthURL = ""
|
|
|
|
resp.User = *machine.Namespace.toUser()
|
|
|
|
respBody, err := encode(resp, &idKey, h.privateKey)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "Registration").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot encode message")
|
|
|
|
ctx.String(http.StatusInternalServerError, "Extremely sad!")
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data(http.StatusOK, "application/json; charset=utf-8", respBody)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Headscale) handleMachineRegistrationNew(
|
|
|
|
ctx *gin.Context,
|
|
|
|
idKey wgkey.Key,
|
|
|
|
reqisterRequest tailcfg.RegisterRequest,
|
|
|
|
machine Machine,
|
|
|
|
) {
|
|
|
|
resp := tailcfg.RegisterResponse{}
|
|
|
|
|
|
|
|
// The machine registration is new, redirect the client to the registration URL
|
|
|
|
log.Debug().
|
|
|
|
Str("handler", "Registration").
|
|
|
|
Str("machine", machine.Name).
|
|
|
|
Msg("The node is sending us a new NodeKey, sending auth url")
|
|
|
|
if h.cfg.OIDC.Issuer != "" {
|
|
|
|
resp.AuthURL = fmt.Sprintf(
|
|
|
|
"%s/oidc/register/%s",
|
|
|
|
strings.TrimSuffix(h.cfg.ServerURL, "/"),
|
|
|
|
idKey.HexString(),
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
resp.AuthURL = fmt.Sprintf("%s/register?key=%s",
|
|
|
|
strings.TrimSuffix(h.cfg.ServerURL, "/"), idKey.HexString())
|
|
|
|
}
|
|
|
|
|
|
|
|
// save the requested expiry time for retrieval later in the authentication flow
|
|
|
|
machine.RequestedExpiry = &reqisterRequest.Expiry
|
|
|
|
machine.NodeKey = wgkey.Key(reqisterRequest.NodeKey).HexString() // save the NodeKey
|
|
|
|
h.db.Save(&machine)
|
|
|
|
|
|
|
|
respBody, err := encode(resp, &idKey, h.privateKey)
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Str("handler", "Registration").
|
|
|
|
Err(err).
|
|
|
|
Msg("Cannot encode message")
|
|
|
|
ctx.String(http.StatusInternalServerError, "")
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data(http.StatusOK, "application/json; charset=utf-8", respBody)
|
|
|
|
}
|
|
|
|
|
2021-10-22 12:56:00 -04:00
|
|
|
func (h *Headscale) handleAuthKey(
|
2021-11-14 14:32:03 -05:00
|
|
|
ctx *gin.Context,
|
2021-10-22 12:56:00 -04:00
|
|
|
idKey wgkey.Key,
|
2021-11-14 14:32:03 -05:00
|
|
|
reqisterRequest tailcfg.RegisterRequest,
|
|
|
|
machine Machine,
|
2021-10-22 12:56:00 -04:00
|
|
|
) {
|
2021-08-05 13:11:26 -04:00
|
|
|
log.Debug().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("func", "handleAuthKey").
|
2021-11-14 14:32:03 -05:00
|
|
|
Str("machine", reqisterRequest.Hostinfo.Hostname).
|
|
|
|
Msgf("Processing auth key for %s", reqisterRequest.Hostinfo.Hostname)
|
2021-05-05 18:59:26 -04:00
|
|
|
resp := tailcfg.RegisterResponse{}
|
2021-11-14 14:32:03 -05:00
|
|
|
pak, err := h.checkKeyValidity(reqisterRequest.Auth.AuthKey)
|
2021-06-05 06:13:55 -04:00
|
|
|
if err != nil {
|
2021-10-04 12:03:44 -04:00
|
|
|
log.Error().
|
|
|
|
Str("func", "handleAuthKey").
|
2021-11-14 14:32:03 -05:00
|
|
|
Str("machine", machine.Name).
|
2021-10-04 12:03:44 -04:00
|
|
|
Err(err).
|
|
|
|
Msg("Failed authentication via AuthKey")
|
2021-06-05 06:13:55 -04:00
|
|
|
resp.MachineAuthorized = false
|
2021-05-05 18:59:26 -04:00
|
|
|
respBody, err := encode(resp, &idKey, h.privateKey)
|
|
|
|
if err != nil {
|
2021-08-05 13:11:26 -04:00
|
|
|
log.Error().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("func", "handleAuthKey").
|
2021-11-14 14:32:03 -05:00
|
|
|
Str("machine", machine.Name).
|
2021-08-05 13:11:26 -04:00
|
|
|
Err(err).
|
|
|
|
Msg("Cannot encode message")
|
2021-11-14 14:32:03 -05:00
|
|
|
ctx.String(http.StatusInternalServerError, "")
|
|
|
|
machineRegistrations.WithLabelValues("new", "authkey", "error", machine.Namespace.Name).
|
2021-11-13 03:36:45 -05:00
|
|
|
Inc()
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2021-05-05 18:59:26 -04:00
|
|
|
return
|
|
|
|
}
|
2021-11-14 14:32:03 -05:00
|
|
|
ctx.Data(http.StatusUnauthorized, "application/json; charset=utf-8", respBody)
|
2021-08-05 13:11:26 -04:00
|
|
|
log.Error().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("func", "handleAuthKey").
|
2021-11-14 14:32:03 -05:00
|
|
|
Str("machine", machine.Name).
|
2021-08-05 13:11:26 -04:00
|
|
|
Msg("Failed authentication via AuthKey")
|
2021-11-14 14:32:03 -05:00
|
|
|
machineRegistrations.WithLabelValues("new", "authkey", "error", machine.Namespace.Name).
|
2021-11-13 03:36:45 -05:00
|
|
|
Inc()
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2021-06-05 06:13:55 -04:00
|
|
|
return
|
|
|
|
}
|
2021-08-05 13:11:26 -04:00
|
|
|
|
|
|
|
log.Debug().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("func", "handleAuthKey").
|
2021-11-14 14:32:03 -05:00
|
|
|
Str("machine", machine.Name).
|
2021-08-05 13:11:26 -04:00
|
|
|
Msg("Authentication key was valid, proceeding to acquire an IP address")
|
2021-06-05 06:13:55 -04:00
|
|
|
ip, err := h.getAvailableIP()
|
|
|
|
if err != nil {
|
2021-08-05 13:11:26 -04:00
|
|
|
log.Error().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("func", "handleAuthKey").
|
2021-11-14 14:32:03 -05:00
|
|
|
Str("machine", machine.Name).
|
2021-08-05 13:11:26 -04:00
|
|
|
Msg("Failed to find an available IP")
|
2021-11-14 14:32:03 -05:00
|
|
|
machineRegistrations.WithLabelValues("new", "authkey", "error", machine.Namespace.Name).
|
2021-11-13 03:36:45 -05:00
|
|
|
Inc()
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2021-05-05 18:59:26 -04:00
|
|
|
return
|
2020-06-21 06:32:08 -04:00
|
|
|
}
|
2021-08-05 13:11:26 -04:00
|
|
|
log.Info().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("func", "handleAuthKey").
|
2021-11-14 14:32:03 -05:00
|
|
|
Str("machine", machine.Name).
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("ip", ip.String()).
|
2021-11-14 14:32:03 -05:00
|
|
|
Msgf("Assigning %s to %s", ip, machine.Name)
|
|
|
|
|
|
|
|
machine.AuthKeyID = uint(pak.ID)
|
|
|
|
machine.IPAddress = ip.String()
|
|
|
|
machine.NamespaceID = pak.NamespaceID
|
|
|
|
machine.NodeKey = wgkey.Key(reqisterRequest.NodeKey).
|
|
|
|
HexString()
|
|
|
|
// we update it just in case
|
|
|
|
machine.Registered = true
|
|
|
|
machine.RegisterMethod = "authKey"
|
2021-11-17 17:39:41 -05:00
|
|
|
h.db.Save(&machine)
|
2021-05-05 18:59:26 -04:00
|
|
|
|
2021-10-13 16:51:55 -04:00
|
|
|
pak.Used = true
|
2021-11-17 17:39:41 -05:00
|
|
|
h.db.Save(&pak)
|
2021-10-10 05:22:42 -04:00
|
|
|
|
2021-06-05 06:13:55 -04:00
|
|
|
resp.MachineAuthorized = true
|
|
|
|
resp.User = *pak.Namespace.toUser()
|
2020-06-21 06:32:08 -04:00
|
|
|
respBody, err := encode(resp, &idKey, h.privateKey)
|
|
|
|
if err != nil {
|
2021-08-05 13:11:26 -04:00
|
|
|
log.Error().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("func", "handleAuthKey").
|
2021-11-14 14:32:03 -05:00
|
|
|
Str("machine", machine.Name).
|
2021-08-05 13:11:26 -04:00
|
|
|
Err(err).
|
|
|
|
Msg("Cannot encode message")
|
2021-11-14 14:32:03 -05:00
|
|
|
machineRegistrations.WithLabelValues("new", "authkey", "error", machine.Namespace.Name).
|
2021-11-13 03:36:45 -05:00
|
|
|
Inc()
|
2021-11-14 14:32:03 -05:00
|
|
|
ctx.String(http.StatusInternalServerError, "Extremely sad!")
|
2021-11-14 10:46:09 -05:00
|
|
|
|
2020-06-21 06:32:08 -04:00
|
|
|
return
|
|
|
|
}
|
2021-11-14 14:32:03 -05:00
|
|
|
machineRegistrations.WithLabelValues("new", "authkey", "success", machine.Namespace.Name).
|
2021-11-13 03:36:45 -05:00
|
|
|
Inc()
|
2021-11-14 14:32:03 -05:00
|
|
|
ctx.Data(http.StatusOK, "application/json; charset=utf-8", respBody)
|
2021-08-05 13:11:26 -04:00
|
|
|
log.Info().
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("func", "handleAuthKey").
|
2021-11-14 14:32:03 -05:00
|
|
|
Str("machine", machine.Name).
|
2021-08-05 15:57:47 -04:00
|
|
|
Str("ip", ip.String()).
|
2021-08-05 13:11:26 -04:00
|
|
|
Msg("Successfully authenticated via AuthKey")
|
2020-06-21 06:32:08 -04:00
|
|
|
}
|