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"
|
2021-11-05 06:14:39 +08:00
|
|
|
"strconv"
|
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"
|
2021-11-05 06:14:39 +08:00
|
|
|
"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
|
|
|
)
|
|
|
|
|
2021-11-05 06:14:39 +08:00
|
|
|
const (
|
2021-11-16 00:33:16 +08:00
|
|
|
errPreAuthKeyNotFound = Error("AuthKey not found")
|
|
|
|
errPreAuthKeyExpired = Error("AuthKey expired")
|
2021-11-05 06:14:39 +08:00
|
|
|
errSingleUseAuthKeyHasBeenUsed = Error("AuthKey has already been used")
|
2021-11-16 03:18:14 +08:00
|
|
|
errNamespaceMismatch = Error("namespace mismatch")
|
2021-11-05 06:14:39 +08:00
|
|
|
)
|
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
|
2021-05-23 08:15:29 +08:00
|
|
|
Ephemeral bool `gorm:"default:false"`
|
2021-10-14 05:28:47 +08:00
|
|
|
Used bool `gorm:"default:false"`
|
2021-04-23 06:25:01 +08:00
|
|
|
|
|
|
|
CreatedAt *time.Time
|
|
|
|
Expiration *time.Time
|
|
|
|
}
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// CreatePreAuthKey creates a new PreAuthKey in a namespace, and returns it.
|
2021-11-05 06:14:39 +08:00
|
|
|
func (h *Headscale) CreatePreAuthKey(
|
|
|
|
namespaceName string,
|
|
|
|
reusable bool,
|
|
|
|
ephemeral bool,
|
|
|
|
expiration *time.Time,
|
|
|
|
) (*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
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2021-05-23 08:15:29 +08:00
|
|
|
Ephemeral: ephemeral,
|
2021-04-23 06:25:01 +08:00
|
|
|
CreatedAt: &now,
|
|
|
|
Expiration: expiration,
|
|
|
|
}
|
2022-05-30 21:31:06 +08:00
|
|
|
|
|
|
|
if err := h.db.Save(&key).Error; err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to create key in the database: %w", err)
|
|
|
|
}
|
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.
|
2021-11-05 06:14:39 +08:00
|
|
|
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{}
|
2021-11-16 00:15:50 +08:00
|
|
|
if err := h.db.Preload("Namespace").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
|
|
|
|
2021-11-05 06:14:39 +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.
|
2021-08-08 06:10:30 +08:00
|
|
|
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 {
|
2021-11-16 03:18:14 +08:00
|
|
|
return nil, errNamespaceMismatch
|
2021-08-08 06:10:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return pak, nil
|
|
|
|
}
|
|
|
|
|
2021-11-14 03:01:05 +08:00
|
|
|
// 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 {
|
|
|
|
if result := h.db.Unscoped().Delete(pak); result.Error != nil {
|
2021-11-14 03:01:05 +08:00
|
|
|
return result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-14 16:32:58 +08:00
|
|
|
// MarkExpirePreAuthKey marks a PreAuthKey as expired.
|
2021-11-05 06:14:39 +08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2022-02-28 16:06:39 +08:00
|
|
|
// UsePreAuthKey marks a PreAuthKey as used.
|
2022-05-30 21:31:06 +08:00
|
|
|
func (h *Headscale) UsePreAuthKey(k *PreAuthKey) error {
|
2022-02-28 16:06:39 +08:00
|
|
|
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
|
2022-02-28 16:06:39 +08:00
|
|
|
}
|
|
|
|
|
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{}
|
2021-11-13 16:36:45 +08:00
|
|
|
if result := h.db.Preload("Namespace").First(&pak, "key = ?", k); errors.Is(
|
|
|
|
result.Error,
|
|
|
|
gorm.ErrRecordNotFound,
|
|
|
|
) {
|
2021-11-16 00:33:16 +08:00
|
|
|
return nil, errPreAuthKeyNotFound
|
2021-05-06 05:00:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if pak.Expiration != nil && pak.Expiration.Before(time.Now()) {
|
2021-11-16 00:33:16 +08:00
|
|
|
return nil, errPreAuthKeyExpired
|
2021-05-06 05:00:04 +08:00
|
|
|
}
|
|
|
|
|
2021-05-23 08:15:29 +08:00
|
|
|
if pak.Reusable || pak.Ephemeral { // we don't need to check if has been used before
|
2021-05-06 06:08:36 +08:00
|
|
|
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 {
|
2021-05-06 06:08:36 +08:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-10-14 04:51:55 +08:00
|
|
|
if len(machines) != 0 || pak.Used {
|
2021-10-14 05:23:07 +08:00
|
|
|
return nil, errSingleUseAuthKeyHasBeenUsed
|
2021-05-06 06:08:36 +08:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
2021-11-05 06:14:39 +08:00
|
|
|
|
|
|
|
func (key *PreAuthKey) toProto() *v1.PreAuthKey {
|
2021-11-09 04:48:20 +08:00
|
|
|
protoKey := v1.PreAuthKey{
|
|
|
|
Namespace: key.Namespace.Name,
|
2021-11-16 01:24:24 +08:00
|
|
|
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,
|
2021-11-05 06:14:39 +08:00
|
|
|
}
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &protoKey
|
2021-11-05 06:14:39 +08:00
|
|
|
}
|