headscale/api.go

422 lines
12 KiB
Go
Raw Normal View History

2020-06-21 18:32:08 +08:00
package headscale
import (
"encoding/binary"
"encoding/json"
2021-06-24 21:44:19 +08:00
"errors"
2020-06-21 18:32:08 +08:00
"fmt"
"io"
"net/http"
"time"
2021-08-06 01:11:26 +08:00
"github.com/rs/zerolog/log"
2020-06-21 18:32:08 +08:00
"github.com/gin-gonic/gin"
"github.com/klauspost/compress/zstd"
2021-06-24 21:44:19 +08:00
"gorm.io/gorm"
2020-06-21 18:32:08 +08:00
"tailscale.com/tailcfg"
2021-06-26 00:57:08 +08:00
"tailscale.com/types/wgkey"
2020-06-21 18:32:08 +08:00
)
// KeyHandler provides the Headscale pub key
// Listens in /key
2020-06-21 18:32:08 +08:00
func (h *Headscale) KeyHandler(c *gin.Context) {
c.Data(200, "text/plain; charset=utf-8", []byte(h.publicKey.HexString()))
}
// RegisterWebAPI shows a simple message in the browser to point to the CLI
// Listens in /register
func (h *Headscale) RegisterWebAPI(c *gin.Context) {
mKeyStr := c.Query("key")
if mKeyStr == "" {
c.String(http.StatusBadRequest, "Wrong params")
return
}
c.Data(http.StatusOK, "text/html; charset=utf-8", []byte(fmt.Sprintf(`
<html>
<body>
<h1>headscale</h1>
<p>
2021-05-15 06:05:41 +08:00
Run the command below in the headscale server to add this machine to your network:
</p>
<p>
<code>
2021-07-11 21:05:32 +08:00
<b>headscale -n NAMESPACE nodes register %s</b>
</code>
</p>
</body>
</html>
2021-05-25 03:59:03 +08:00
`, mKeyStr)))
}
// RegistrationHandler handles the actual registration process of a machine
// Endpoint /machine/:id
2020-06-21 18:32:08 +08:00
func (h *Headscale) RegistrationHandler(c *gin.Context) {
2021-02-22 06:54:15 +08:00
body, _ := io.ReadAll(c.Request.Body)
2020-06-21 18:32:08 +08:00
mKeyStr := c.Param("id")
2021-06-26 00:57:08 +08:00
mKey, err := wgkey.ParseHex(mKeyStr)
2020-06-21 18:32:08 +08:00
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
2021-08-06 01:11:26 +08:00
Err(err).
Msg("Cannot parse machine key")
machineRegistrations.WithLabelValues("unkown", "web", "error", "unknown").Inc()
2020-06-21 18:32:08 +08:00
c.String(http.StatusInternalServerError, "Sad!")
return
}
req := tailcfg.RegisterRequest{}
err = decode(body, &req, &mKey, h.privateKey)
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
2021-08-06 01:11:26 +08:00
Err(err).
Msg("Cannot decode message")
machineRegistrations.WithLabelValues("unkown", "web", "error", "unknown").Inc()
2020-06-21 18:32:08 +08:00
c.String(http.StatusInternalServerError, "Very sad!")
return
}
2021-05-06 06:59:26 +08:00
now := time.Now().UTC()
var m Machine
if result := h.db.Preload("Namespace").First(&m, "machine_key = ?", mKey.HexString()); errors.Is(result.Error, gorm.ErrRecordNotFound) {
2021-08-06 03:57:47 +08:00
log.Info().Str("machine", req.Hostinfo.Hostname).Msg("New machine")
m = Machine{
Expiry: &req.Expiry,
MachineKey: mKey.HexString(),
Name: req.Hostinfo.Hostname,
NodeKey: wgkey.Key(req.NodeKey).HexString(),
LastSuccessfulUpdate: &now,
}
2021-07-05 03:40:46 +08:00
if err := h.db.Create(&m).Error; err != nil {
2021-08-06 01:16:21 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
2021-08-06 01:16:21 +08:00
Err(err).
Msg("Could not create row")
machineRegistrations.WithLabelValues("unkown", "web", "error", m.Namespace.Name).Inc()
return
}
}
if !m.Registered && req.Auth.AuthKey != "" {
2021-07-05 03:40:46 +08:00
h.handleAuthKey(c, h.db, mKey, req, m)
2020-06-21 18:32:08 +08:00
return
}
resp := tailcfg.RegisterResponse{}
// We have the updated key!
2021-06-26 00:57:08 +08:00
if m.NodeKey == wgkey.Key(req.NodeKey).HexString() {
2020-06-21 18:32:08 +08:00
if m.Registered {
2021-08-06 01:11:26 +08:00
log.Debug().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
Str("machine", m.Name).
2021-08-06 06:21:34 +08:00
Msg("Client is registered and we have the current NodeKey. All clear to /map")
2021-08-06 01:11:26 +08:00
2020-06-21 18:32:08 +08:00
resp.AuthURL = ""
resp.MachineAuthorized = true
resp.User = *m.Namespace.toUser()
2020-06-21 18:32:08 +08:00
respBody, err := encode(resp, &mKey, h.privateKey)
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
2021-08-06 01:11:26 +08:00
Err(err).
Msg("Cannot encode message")
machineRegistrations.WithLabelValues("update", "web", "error", m.Namespace.Name).Inc()
c.String(http.StatusInternalServerError, "")
2020-06-21 18:32:08 +08:00
return
}
machineRegistrations.WithLabelValues("update", "web", "success", m.Namespace.Name).Inc()
2020-06-21 18:32:08 +08:00
c.Data(200, "application/json; charset=utf-8", respBody)
return
}
2021-08-06 01:11:26 +08:00
log.Debug().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
Str("machine", m.Name).
2021-08-06 01:11:26 +08:00
Msg("Not registered and not NodeKey rotation. Sending a authurl to register")
2020-06-21 18:32:08 +08:00
resp.AuthURL = fmt.Sprintf("%s/register?key=%s",
h.cfg.ServerURL, mKey.HexString())
respBody, err := encode(resp, &mKey, h.privateKey)
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
2021-08-06 01:11:26 +08:00
Err(err).
Msg("Cannot encode message")
machineRegistrations.WithLabelValues("new", "web", "error", m.Namespace.Name).Inc()
c.String(http.StatusInternalServerError, "")
2020-06-21 18:32:08 +08:00
return
}
machineRegistrations.WithLabelValues("new", "web", "success", m.Namespace.Name).Inc()
2020-06-21 18:32:08 +08:00
c.Data(200, "application/json; charset=utf-8", respBody)
return
}
// The NodeKey we have matches OldNodeKey, which means this is a refresh after an key expiration
2021-06-26 00:57:08 +08:00
if m.NodeKey == wgkey.Key(req.OldNodeKey).HexString() {
2021-08-06 01:11:26 +08:00
log.Debug().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
Str("machine", m.Name).
2021-08-06 01:11:26 +08:00
Msg("We have the OldNodeKey in the database. This is a key refresh")
2021-06-26 00:57:08 +08:00
m.NodeKey = wgkey.Key(req.NodeKey).HexString()
2021-07-05 03:40:46 +08:00
h.db.Save(&m)
2020-06-21 18:32:08 +08:00
resp.AuthURL = ""
resp.User = *m.Namespace.toUser()
2020-06-21 18:32:08 +08:00
respBody, err := encode(resp, &mKey, h.privateKey)
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
2021-08-06 01:11:26 +08:00
Err(err).
Msg("Cannot encode message")
2020-06-21 18:32:08 +08:00
c.String(http.StatusInternalServerError, "Extremely sad!")
return
}
c.Data(200, "application/json; charset=utf-8", respBody)
return
}
// We arrive here after a client is restarted without finalizing the authentication flow or
// when headscale is stopped in the middle of the auth process.
if m.Registered {
2021-08-06 01:11:26 +08:00
log.Debug().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
Str("machine", m.Name).
2021-08-06 01:11:26 +08:00
Msg("The node is sending us a new NodeKey, but machine is registered. All clear for /map")
resp.AuthURL = ""
resp.MachineAuthorized = true
resp.User = *m.Namespace.toUser()
respBody, err := encode(resp, &mKey, h.privateKey)
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
2021-08-06 01:11:26 +08:00
Err(err).
Msg("Cannot encode message")
c.String(http.StatusInternalServerError, "")
return
}
c.Data(200, "application/json; charset=utf-8", respBody)
return
}
2021-08-06 01:11:26 +08:00
log.Debug().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
Str("machine", m.Name).
2021-08-06 01:11:26 +08:00
Msg("The node is sending us a new NodeKey, sending auth url")
resp.AuthURL = fmt.Sprintf("%s/register?key=%s",
h.cfg.ServerURL, mKey.HexString())
respBody, err := encode(resp, &mKey, h.privateKey)
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("handler", "Registration").
2021-08-06 01:11:26 +08:00
Err(err).
Msg("Cannot encode message")
c.String(http.StatusInternalServerError, "")
return
}
c.Data(200, "application/json; charset=utf-8", respBody)
2020-06-21 18:32:08 +08:00
}
func (h *Headscale) getMapResponse(mKey wgkey.Key, req tailcfg.MapRequest, m *Machine) ([]byte, error) {
2021-08-06 04:47:06 +08:00
log.Trace().
Str("func", "getMapResponse").
Str("machine", req.Hostinfo.Hostname).
Msg("Creating Map response")
2021-10-05 05:49:16 +08:00
node, err := m.toNode(h.cfg.BaseDomain, h.cfg.DNSConfig, true)
2020-06-21 18:32:08 +08:00
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("func", "getMapResponse").
2021-08-06 01:11:26 +08:00
Err(err).
Msg("Cannot convert to node")
2020-06-21 18:32:08 +08:00
return nil, err
}
2020-06-21 18:32:08 +08:00
peers, err := h.getPeers(m)
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("func", "getMapResponse").
2021-08-06 01:11:26 +08:00
Err(err).
Msg("Cannot fetch peers")
2020-06-21 18:32:08 +08:00
return nil, err
}
profile := tailcfg.UserProfile{
ID: tailcfg.UserID(m.NamespaceID),
LoginName: m.Namespace.Name,
DisplayName: m.Namespace.Name,
}
2021-10-05 05:49:16 +08:00
nodePeers, err := peers.toNodes(h.cfg.BaseDomain, h.cfg.DNSConfig, true)
if err != nil {
log.Error().
Str("func", "getMapResponse").
Err(err).
Msg("Failed to convert peers to Tailscale nodes")
return nil, err
}
dnsConfig, err := h.getMapResponseDNSConfig(*m, peers)
if err != nil {
log.Error().
Str("func", "getMapResponse").
Err(err).
Msg("Failed generate the DNSConfig")
return nil, err
2021-10-02 18:13:19 +08:00
}
2020-06-21 18:32:08 +08:00
resp := tailcfg.MapResponse{
KeepAlive: false,
Node: node,
2021-10-05 05:43:42 +08:00
Peers: nodePeers,
2021-10-02 18:13:19 +08:00
DNSConfig: dnsConfig,
Domain: h.cfg.BaseDomain,
2021-07-04 19:24:05 +08:00
PacketFilter: *h.aclRules,
2021-02-21 06:57:06 +08:00
DERPMap: h.cfg.DerpMap,
2021-10-05 05:43:42 +08:00
// TODO(juanfont): We should send the profiles of all the peers (this own namespace + those from the shared peers)
UserProfiles: []tailcfg.UserProfile{profile},
2021-02-24 07:31:58 +08:00
}
2021-08-13 17:33:19 +08:00
log.Trace().
Str("func", "getMapResponse").
Str("machine", req.Hostinfo.Hostname).
2021-10-06 00:51:42 +08:00
// Interface("payload", resp).
2021-08-13 17:33:19 +08:00
Msgf("Generated map response: %s", tailMapResponseToString(resp))
2020-06-21 18:32:08 +08:00
var respBody []byte
if req.Compress == "zstd" {
src, _ := json.Marshal(resp)
2021-08-13 17:33:19 +08:00
2020-06-21 18:32:08 +08:00
encoder, _ := zstd.NewWriter(nil)
srcCompressed := encoder.EncodeAll(src, nil)
respBody, err = encodeMsg(srcCompressed, &mKey, h.privateKey)
if err != nil {
return nil, err
}
} else {
respBody, err = encode(resp, &mKey, h.privateKey)
if err != nil {
return nil, err
}
}
// declare the incoming size on the first 4 bytes
data := make([]byte, 4)
binary.LittleEndian.PutUint32(data, uint32(len(respBody)))
data = append(data, respBody...)
return data, nil
2020-06-21 18:32:08 +08:00
}
func (h *Headscale) getMapKeepAliveResponse(mKey wgkey.Key, req tailcfg.MapRequest, m *Machine) ([]byte, error) {
2020-06-21 18:32:08 +08:00
resp := tailcfg.MapResponse{
KeepAlive: true,
}
var respBody []byte
var err error
if req.Compress == "zstd" {
src, _ := json.Marshal(resp)
encoder, _ := zstd.NewWriter(nil)
srcCompressed := encoder.EncodeAll(src, nil)
respBody, err = encodeMsg(srcCompressed, &mKey, h.privateKey)
if err != nil {
return nil, err
}
} else {
respBody, err = encode(resp, &mKey, h.privateKey)
if err != nil {
return nil, err
}
}
data := make([]byte, 4)
binary.LittleEndian.PutUint32(data, uint32(len(respBody)))
data = append(data, respBody...)
return data, nil
2020-06-21 18:32:08 +08:00
}
2021-06-26 00:57:08 +08:00
func (h *Headscale) handleAuthKey(c *gin.Context, db *gorm.DB, idKey wgkey.Key, req tailcfg.RegisterRequest, m Machine) {
2021-08-06 01:11:26 +08:00
log.Debug().
2021-08-06 03:57:47 +08:00
Str("func", "handleAuthKey").
Str("machine", req.Hostinfo.Hostname).
2021-08-06 01:11:26 +08:00
Msgf("Processing auth key for %s", req.Hostinfo.Hostname)
2021-05-06 06:59:26 +08:00
resp := tailcfg.RegisterResponse{}
pak, err := h.checkKeyValidity(req.Auth.AuthKey)
if err != nil {
2021-10-05 00:03:44 +08:00
log.Error().
Str("func", "handleAuthKey").
Str("machine", m.Name).
Err(err).
Msg("Failed authentication via AuthKey")
resp.MachineAuthorized = false
2021-05-06 06:59:26 +08:00
respBody, err := encode(resp, &idKey, h.privateKey)
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("func", "handleAuthKey").
Str("machine", m.Name).
2021-08-06 01:11:26 +08:00
Err(err).
Msg("Cannot encode message")
c.String(http.StatusInternalServerError, "")
machineRegistrations.WithLabelValues("new", "authkey", "error", m.Namespace.Name).Inc()
2021-05-06 06:59:26 +08:00
return
}
c.Data(401, "application/json; charset=utf-8", respBody)
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("func", "handleAuthKey").
Str("machine", m.Name).
2021-08-06 01:11:26 +08:00
Msg("Failed authentication via AuthKey")
machineRegistrations.WithLabelValues("new", "authkey", "error", m.Namespace.Name).Inc()
return
}
2021-08-06 01:11:26 +08:00
log.Debug().
2021-08-06 03:57:47 +08:00
Str("func", "handleAuthKey").
Str("machine", m.Name).
2021-08-06 01:11:26 +08:00
Msg("Authentication key was valid, proceeding to acquire an IP address")
ip, err := h.getAvailableIP()
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("func", "handleAuthKey").
Str("machine", m.Name).
2021-08-06 01:11:26 +08:00
Msg("Failed to find an available IP")
machineRegistrations.WithLabelValues("new", "authkey", "error", m.Namespace.Name).Inc()
2021-05-06 06:59:26 +08:00
return
2020-06-21 18:32:08 +08:00
}
2021-08-06 01:11:26 +08:00
log.Info().
2021-08-06 03:57:47 +08:00
Str("func", "handleAuthKey").
Str("machine", m.Name).
Str("ip", ip.String()).
Msgf("Assigning %s to %s", ip, m.Name)
2020-06-21 18:32:08 +08:00
m.AuthKeyID = uint(pak.ID)
m.IPAddress = ip.String()
m.NamespaceID = pak.NamespaceID
2021-06-26 00:57:08 +08:00
m.NodeKey = wgkey.Key(req.NodeKey).HexString() // we update it just in case
m.Registered = true
m.RegisterMethod = "authKey"
db.Save(&m)
2021-05-06 06:59:26 +08:00
pak.Used = true
db.Save(&pak)
resp.MachineAuthorized = true
resp.User = *pak.Namespace.toUser()
2020-06-21 18:32:08 +08:00
respBody, err := encode(resp, &idKey, h.privateKey)
if err != nil {
2021-08-06 01:11:26 +08:00
log.Error().
2021-08-06 03:57:47 +08:00
Str("func", "handleAuthKey").
Str("machine", m.Name).
2021-08-06 01:11:26 +08:00
Err(err).
Msg("Cannot encode message")
machineRegistrations.WithLabelValues("new", "authkey", "error", m.Namespace.Name).Inc()
2020-06-21 18:32:08 +08:00
c.String(http.StatusInternalServerError, "Extremely sad!")
return
}
machineRegistrations.WithLabelValues("new", "authkey", "success", m.Namespace.Name).Inc()
2020-06-21 18:32:08 +08:00
c.Data(200, "application/json; charset=utf-8", respBody)
2021-08-06 01:11:26 +08:00
log.Info().
2021-08-06 03:57:47 +08:00
Str("func", "handleAuthKey").
Str("machine", m.Name).
Str("ip", ip.String()).
2021-08-06 01:11:26 +08:00
Msg("Successfully authenticated via AuthKey")
2020-06-21 18:32:08 +08:00
}