headscale/preauth_keys.go

243 lines
5.9 KiB
Go
Raw Normal View History

2021-04-23 06:25:01 +08:00
package headscale
import (
"crypto/rand"
"encoding/hex"
2021-06-24 21:44:19 +08:00
"errors"
2022-05-30 21:31:06 +08:00
"fmt"
"strconv"
"strings"
2021-04-23 06:25:01 +08:00
"time"
2021-06-24 21:44:19 +08:00
2021-11-13 16:39:04 +08:00
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
"google.golang.org/protobuf/types/known/timestamppb"
2021-06-24 21:44:19 +08:00
"gorm.io/gorm"
2021-04-23 06:25:01 +08:00
)
const (
2022-07-29 23:35:21 +08:00
ErrPreAuthKeyNotFound = Error("AuthKey not found")
ErrPreAuthKeyExpired = Error("AuthKey expired")
ErrSingleUseAuthKeyHasBeenUsed = Error("AuthKey has already been used")
ErrNamespaceMismatch = Error("namespace mismatch")
2022-09-07 20:12:29 +08:00
ErrPreAuthKeyACLTagInvalid = Error("AuthKey tag is invalid")
)
2021-05-06 05:00:04 +08:00
2021-11-13 16:39:04 +08:00
// PreAuthKey describes a pre-authorization key usable in a particular namespace.
2021-04-23 06:25:01 +08:00
type PreAuthKey struct {
ID uint64 `gorm:"primary_key"`
Key string
NamespaceID uint
Namespace Namespace
Reusable bool
Ephemeral bool `gorm:"default:false"`
2021-10-14 05:28:47 +08:00
Used bool `gorm:"default:false"`
2022-09-07 20:12:29 +08:00
ACLTags []PreAuthKeyACLTag
2021-04-23 06:25:01 +08:00
CreatedAt *time.Time
Expiration *time.Time
}
2022-09-07 20:12:29 +08:00
// PreAuthKeyACLTag describes an autmatic tag applied to a node when registered with the associated PreAuthKey.
type PreAuthKeyACLTag struct {
ID uint64 `gorm:"primary_key"`
PreAuthKeyID uint64
Tag string
}
2021-11-13 16:39:04 +08:00
// CreatePreAuthKey creates a new PreAuthKey in a namespace, and returns it.
func (h *Headscale) CreatePreAuthKey(
namespaceName string,
reusable bool,
ephemeral bool,
expiration *time.Time,
aclTags []string,
) (*PreAuthKey, error) {
2021-11-16 00:15:50 +08:00
namespace, err := h.GetNamespace(namespaceName)
2021-04-23 06:25:01 +08:00
if err != nil {
return nil, err
}
for _, tag := range aclTags {
if !strings.HasPrefix(tag, "tag:") {
2022-09-07 20:12:29 +08:00
return nil, fmt.Errorf("%w: '%s' did not begin with 'tag:'", ErrPreAuthKeyACLTagInvalid, tag)
}
}
2021-04-23 06:25:01 +08:00
now := time.Now().UTC()
kstr, err := h.generateKey()
if err != nil {
return nil, err
}
2021-11-16 00:15:50 +08:00
key := PreAuthKey{
2021-04-23 06:25:01 +08:00
Key: kstr,
2021-11-16 00:15:50 +08:00
NamespaceID: namespace.ID,
Namespace: *namespace,
2021-04-23 06:25:01 +08:00
Reusable: reusable,
Ephemeral: ephemeral,
2021-04-23 06:25:01 +08:00
CreatedAt: &now,
Expiration: expiration,
}
2022-05-30 21:31:06 +08:00
err = h.db.Transaction(func(db *gorm.DB) error {
if err := db.Save(&key).Error; err != nil {
return fmt.Errorf("failed to create key in the database: %w", err)
}
if len(aclTags) > 0 {
seenTags := map[string]bool{}
for _, tag := range aclTags {
2022-09-07 20:12:29 +08:00
if !seenTags[tag] {
if err := db.Save(&PreAuthKeyACLTag{PreAuthKeyID: key.ID, Tag: tag}).Error; err != nil {
return fmt.Errorf(
"failed to ceate key tag in the database: %w",
err,
)
}
seenTags[tag] = true
}
}
}
2022-09-07 20:12:29 +08:00
return nil
})
if err != nil {
return nil, err
2022-05-30 21:31:06 +08:00
}
2021-04-23 06:25:01 +08:00
2021-11-16 00:15:50 +08:00
return &key, nil
2021-04-23 06:25:01 +08:00
}
2021-11-13 16:39:04 +08:00
// ListPreAuthKeys returns the list of PreAuthKeys for a namespace.
func (h *Headscale) ListPreAuthKeys(namespaceName string) ([]PreAuthKey, error) {
2021-11-16 00:15:50 +08:00
namespace, err := h.GetNamespace(namespaceName)
2021-04-23 06:25:01 +08:00
if err != nil {
return nil, err
}
keys := []PreAuthKey{}
2022-09-07 20:12:29 +08:00
if err := h.db.Preload("Namespace").Preload("ACLTags").Where(&PreAuthKey{NamespaceID: namespace.ID}).Find(&keys).Error; err != nil {
2021-04-23 06:25:01 +08:00
return nil, err
}
2021-11-14 23:46:09 +08:00
return keys, nil
2021-04-23 06:25:01 +08:00
}
2021-11-13 16:39:04 +08:00
// GetPreAuthKey returns a PreAuthKey for a given key.
func (h *Headscale) GetPreAuthKey(namespace string, key string) (*PreAuthKey, error) {
pak, err := h.checkKeyValidity(key)
if err != nil {
return nil, err
}
if pak.Namespace.Name != namespace {
2022-07-29 23:35:21 +08:00
return nil, ErrNamespaceMismatch
}
return pak, nil
}
// DestroyPreAuthKey destroys a preauthkey. Returns error if the PreAuthKey
// does not exist.
2021-11-16 02:31:52 +08:00
func (h *Headscale) DestroyPreAuthKey(pak PreAuthKey) error {
return h.db.Transaction(func(db *gorm.DB) error {
2022-09-07 20:12:29 +08:00
if result := db.Unscoped().Where(PreAuthKeyACLTag{PreAuthKeyID: pak.ID}).Delete(&PreAuthKeyACLTag{}); result.Error != nil {
return result.Error
}
if result := db.Unscoped().Delete(pak); result.Error != nil {
return result.Error
}
return nil
})
}
2021-11-14 16:32:58 +08:00
// MarkExpirePreAuthKey marks a PreAuthKey as expired.
func (h *Headscale) ExpirePreAuthKey(k *PreAuthKey) error {
2021-08-08 05:57:52 +08:00
if err := h.db.Model(&k).Update("Expiration", time.Now()).Error; err != nil {
return err
}
2021-11-14 23:46:09 +08:00
2021-08-08 05:57:52 +08:00
return nil
}
// UsePreAuthKey marks a PreAuthKey as used.
2022-05-30 21:31:06 +08:00
func (h *Headscale) UsePreAuthKey(k *PreAuthKey) error {
k.Used = true
2022-05-30 21:31:06 +08:00
if err := h.db.Save(k).Error; err != nil {
return fmt.Errorf("failed to update key used status in the database: %w", err)
}
return nil
}
2021-05-06 05:00:04 +08:00
// checkKeyValidity does the heavy lifting for validation of the PreAuthKey coming from a node
2021-11-13 16:39:04 +08:00
// If returns no error and a PreAuthKey, it can be used.
2021-05-06 05:00:04 +08:00
func (h *Headscale) checkKeyValidity(k string) (*PreAuthKey, error) {
pak := PreAuthKey{}
2022-09-07 20:12:29 +08:00
if result := h.db.Preload("Namespace").Preload("ACLTags").First(&pak, "key = ?", k); errors.Is(
2021-11-13 16:36:45 +08:00
result.Error,
gorm.ErrRecordNotFound,
) {
2022-07-29 23:35:21 +08:00
return nil, ErrPreAuthKeyNotFound
2021-05-06 05:00:04 +08:00
}
if pak.Expiration != nil && pak.Expiration.Before(time.Now()) {
2022-07-29 23:35:21 +08:00
return nil, ErrPreAuthKeyExpired
2021-05-06 05:00:04 +08:00
}
if pak.Reusable || pak.Ephemeral { // we don't need to check if has been used before
return &pak, nil
}
machines := []Machine{}
2021-07-05 03:40:46 +08:00
if err := h.db.Preload("AuthKey").Where(&Machine{AuthKeyID: uint(pak.ID)}).Find(&machines).Error; err != nil {
return nil, err
}
if len(machines) != 0 || pak.Used {
2022-07-29 23:35:21 +08:00
return nil, ErrSingleUseAuthKeyHasBeenUsed
}
2021-05-06 05:00:04 +08:00
return &pak, nil
}
2021-04-23 06:25:01 +08:00
func (h *Headscale) generateKey() (string, error) {
size := 24
bytes := make([]byte, size)
if _, err := rand.Read(bytes); err != nil {
return "", err
}
2021-11-14 23:46:09 +08:00
2021-04-23 06:25:01 +08:00
return hex.EncodeToString(bytes), nil
}
func (key *PreAuthKey) toProto() *v1.PreAuthKey {
2021-11-09 04:48:20 +08:00
protoKey := v1.PreAuthKey{
Namespace: key.Namespace.Name,
Id: strconv.FormatUint(key.ID, Base10),
2021-11-09 04:48:20 +08:00
Key: key.Key,
Ephemeral: key.Ephemeral,
Reusable: key.Reusable,
Used: key.Used,
2022-09-07 20:12:29 +08:00
AclTags: make([]string, len(key.ACLTags)),
}
2021-11-09 04:48:20 +08:00
if key.Expiration != nil {
protoKey.Expiration = timestamppb.New(*key.Expiration)
}
if key.CreatedAt != nil {
protoKey.CreatedAt = timestamppb.New(*key.CreatedAt)
}
2022-09-23 15:58:06 +08:00
for idx := range key.ACLTags {
protoKey.AclTags[idx] = key.ACLTags[idx].Tag
}
2021-11-09 04:48:20 +08:00
return &protoKey
}