headscale/hscontrol/db/preauth_keys.go

230 lines
5.3 KiB
Go
Raw Normal View History

package db
2021-04-22 18:25:01 -04:00
import (
"crypto/rand"
"encoding/hex"
2021-06-24 09:44:19 -04:00
"errors"
2022-05-30 09:31:06 -04:00
"fmt"
"strings"
2021-04-22 18:25:01 -04:00
"time"
2021-06-24 09:44:19 -04:00
"github.com/juanfont/headscale/hscontrol/types"
2021-06-24 09:44:19 -04:00
"gorm.io/gorm"
2021-04-22 18:25:01 -04:00
)
var (
ErrPreAuthKeyNotFound = errors.New("AuthKey not found")
ErrPreAuthKeyExpired = errors.New("AuthKey expired")
ErrSingleUseAuthKeyHasBeenUsed = errors.New("AuthKey has already been used")
ErrUserMismatch = errors.New("user mismatch")
ErrPreAuthKeyACLTagInvalid = errors.New("AuthKey tag is invalid")
)
2021-05-05 17:00:04 -04:00
// CreatePreAuthKey creates a new PreAuthKey in a user, and returns it.
func (hsdb *HSDatabase) CreatePreAuthKey(
userName string,
reusable bool,
ephemeral bool,
expiration *time.Time,
aclTags []string,
) (*types.PreAuthKey, error) {
// TODO(kradalby): figure out this lock
// hsdb.mu.Lock()
// defer hsdb.mu.Unlock()
user, err := hsdb.GetUser(userName)
2021-04-22 18:25:01 -04:00
if err != nil {
return nil, err
}
for _, tag := range aclTags {
if !strings.HasPrefix(tag, "tag:") {
return nil, fmt.Errorf(
"%w: '%s' did not begin with 'tag:'",
ErrPreAuthKeyACLTagInvalid,
tag,
)
}
}
2021-04-22 18:25:01 -04:00
now := time.Now().UTC()
kstr, err := hsdb.generateKey()
2021-04-22 18:25:01 -04:00
if err != nil {
return nil, err
}
key := types.PreAuthKey{
Key: kstr,
UserID: user.ID,
User: *user,
Reusable: reusable,
Ephemeral: ephemeral,
CreatedAt: &now,
Expiration: expiration,
2021-04-22 18:25:01 -04:00
}
2022-05-30 09:31:06 -04:00
err = hsdb.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 08:12:29 -04:00
if !seenTags[tag] {
if err := db.Save(&types.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 08:12:29 -04:00
return nil
})
if err != nil {
return nil, err
2022-05-30 09:31:06 -04:00
}
2021-04-22 18:25:01 -04:00
2021-11-15 11:15:50 -05:00
return &key, nil
2021-04-22 18:25:01 -04:00
}
// ListPreAuthKeys returns the list of PreAuthKeys for a user.
func (hsdb *HSDatabase) ListPreAuthKeys(userName string) ([]types.PreAuthKey, error) {
hsdb.mu.RLock()
defer hsdb.mu.RUnlock()
return hsdb.listPreAuthKeys(userName)
}
func (hsdb *HSDatabase) listPreAuthKeys(userName string) ([]types.PreAuthKey, error) {
user, err := hsdb.getUser(userName)
2021-04-22 18:25:01 -04:00
if err != nil {
return nil, err
}
keys := []types.PreAuthKey{}
if err := hsdb.db.Preload("User").Preload("ACLTags").Where(&types.PreAuthKey{UserID: user.ID}).Find(&keys).Error; err != nil {
2021-04-22 18:25:01 -04:00
return nil, err
}
2021-11-14 10:46:09 -05:00
return keys, nil
2021-04-22 18:25:01 -04:00
}
2021-11-13 03:39:04 -05:00
// GetPreAuthKey returns a PreAuthKey for a given key.
func (hsdb *HSDatabase) GetPreAuthKey(user string, key string) (*types.PreAuthKey, error) {
hsdb.mu.RLock()
defer hsdb.mu.RUnlock()
pak, err := hsdb.ValidatePreAuthKey(key)
if err != nil {
return nil, err
}
if pak.User.Name != user {
return nil, ErrUserMismatch
}
return pak, nil
}
// DestroyPreAuthKey destroys a preauthkey. Returns error if the PreAuthKey
// does not exist.
func (hsdb *HSDatabase) DestroyPreAuthKey(pak types.PreAuthKey) error {
hsdb.mu.Lock()
defer hsdb.mu.Unlock()
return hsdb.destroyPreAuthKey(pak)
}
func (hsdb *HSDatabase) destroyPreAuthKey(pak types.PreAuthKey) error {
return hsdb.db.Transaction(func(db *gorm.DB) error {
if result := db.Unscoped().Where(types.PreAuthKeyACLTag{PreAuthKeyID: pak.ID}).Delete(&types.PreAuthKeyACLTag{}); result.Error != nil {
return result.Error
}
if result := db.Unscoped().Delete(pak); result.Error != nil {
return result.Error
}
return nil
})
}
2021-11-14 03:32:58 -05:00
// MarkExpirePreAuthKey marks a PreAuthKey as expired.
func (hsdb *HSDatabase) ExpirePreAuthKey(k *types.PreAuthKey) error {
hsdb.mu.Lock()
defer hsdb.mu.Unlock()
if err := hsdb.db.Model(&k).Update("Expiration", time.Now()).Error; err != nil {
2021-08-07 17:57:52 -04:00
return err
}
2021-11-14 10:46:09 -05:00
2021-08-07 17:57:52 -04:00
return nil
}
// UsePreAuthKey marks a PreAuthKey as used.
func (hsdb *HSDatabase) UsePreAuthKey(k *types.PreAuthKey) error {
hsdb.mu.Lock()
defer hsdb.mu.Unlock()
k.Used = true
if err := hsdb.db.Save(k).Error; err != nil {
2022-05-30 09:31:06 -04:00
return fmt.Errorf("failed to update key used status in the database: %w", err)
}
return nil
}
// ValidatePreAuthKey does the heavy lifting for validation of the PreAuthKey coming from a node
2021-11-13 03:39:04 -05:00
// If returns no error and a PreAuthKey, it can be used.
func (hsdb *HSDatabase) ValidatePreAuthKey(k string) (*types.PreAuthKey, error) {
hsdb.mu.RLock()
defer hsdb.mu.RUnlock()
pak := types.PreAuthKey{}
if result := hsdb.db.Preload("User").Preload("ACLTags").First(&pak, "key = ?", k); errors.Is(
2021-11-13 03:36:45 -05:00
result.Error,
gorm.ErrRecordNotFound,
) {
2022-07-29 11:35:21 -04:00
return nil, ErrPreAuthKeyNotFound
2021-05-05 17:00:04 -04:00
}
if pak.Expiration != nil && pak.Expiration.Before(time.Now()) {
2022-07-29 11:35:21 -04:00
return nil, ErrPreAuthKeyExpired
2021-05-05 17:00:04 -04:00
}
if pak.Reusable || pak.Ephemeral { // we don't need to check if has been used before
return &pak, nil
}
machines := types.Machines{}
if err := hsdb.db.
Preload("AuthKey").
Where(&types.Machine{AuthKeyID: uint(pak.ID)}).
Find(&machines).Error; err != nil {
return nil, err
}
if len(machines) != 0 || pak.Used {
2022-07-29 11:35:21 -04:00
return nil, ErrSingleUseAuthKeyHasBeenUsed
}
2021-05-05 17:00:04 -04:00
return &pak, nil
}
func (hsdb *HSDatabase) generateKey() (string, error) {
2021-04-22 18:25:01 -04:00
size := 24
bytes := make([]byte, size)
if _, err := rand.Read(bytes); err != nil {
return "", err
}
2021-11-14 10:46:09 -05:00
2021-04-22 18:25:01 -04:00
return hex.EncodeToString(bytes), nil
}