2021-02-28 07:58:09 +08:00
|
|
|
package headscale
|
|
|
|
|
|
|
|
import (
|
2021-07-25 23:59:48 +08:00
|
|
|
"encoding/json"
|
2021-06-24 21:44:19 +08:00
|
|
|
"errors"
|
2021-07-25 23:59:48 +08:00
|
|
|
"fmt"
|
2021-11-05 06:15:17 +08:00
|
|
|
"strconv"
|
2021-02-28 07:58:09 +08:00
|
|
|
"time"
|
|
|
|
|
2021-11-05 06:15:17 +08:00
|
|
|
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
|
2021-08-06 01:23:02 +08:00
|
|
|
"github.com/rs/zerolog/log"
|
2021-11-05 06:15:17 +08:00
|
|
|
"google.golang.org/protobuf/types/known/timestamppb"
|
2021-06-24 21:44:19 +08:00
|
|
|
"gorm.io/gorm"
|
2021-02-28 07:58:09 +08:00
|
|
|
"tailscale.com/tailcfg"
|
|
|
|
)
|
|
|
|
|
2021-11-05 06:15:17 +08:00
|
|
|
const (
|
2021-11-16 00:33:16 +08:00
|
|
|
errNamespaceExists = Error("Namespace already exists")
|
|
|
|
errNamespaceNotFound = Error("Namespace not found")
|
|
|
|
errNamespaceNotEmptyOfNodes = Error("Namespace not empty: node(s) found")
|
2021-11-05 06:15:17 +08:00
|
|
|
)
|
2021-05-09 23:12:05 +08:00
|
|
|
|
2021-02-28 07:58:09 +08:00
|
|
|
// Namespace is the way Headscale implements the concept of users in Tailscale
|
|
|
|
//
|
|
|
|
// At the end of the day, users in Tailscale are some kind of 'bubbles' or namespaces
|
|
|
|
// that contain our machines.
|
|
|
|
type Namespace struct {
|
|
|
|
gorm.Model
|
|
|
|
Name string `gorm:"unique"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateNamespace creates a new Namespace. Returns error if could not be created
|
2021-11-13 16:39:04 +08:00
|
|
|
// or another namespace already exists.
|
2021-02-28 07:58:09 +08:00
|
|
|
func (h *Headscale) CreateNamespace(name string) (*Namespace, error) {
|
2021-11-15 03:32:03 +08:00
|
|
|
namespace := Namespace{}
|
|
|
|
if err := h.db.Where("name = ?", name).First(&namespace).Error; err == nil {
|
2021-11-16 00:33:16 +08:00
|
|
|
return nil, errNamespaceExists
|
2021-02-28 07:58:09 +08:00
|
|
|
}
|
2021-11-15 03:32:03 +08:00
|
|
|
namespace.Name = name
|
|
|
|
if err := h.db.Create(&namespace).Error; err != nil {
|
2021-08-06 01:23:02 +08:00
|
|
|
log.Error().
|
2021-08-06 03:57:47 +08:00
|
|
|
Str("func", "CreateNamespace").
|
2021-08-06 01:23:02 +08:00
|
|
|
Err(err).
|
|
|
|
Msg("Could not create row")
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-02-28 07:58:09 +08:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
return &namespace, nil
|
2021-02-28 07:58:09 +08:00
|
|
|
}
|
|
|
|
|
2021-05-09 23:12:05 +08:00
|
|
|
// DestroyNamespace destroys a Namespace. Returns error if the Namespace does
|
|
|
|
// not exist or if there are machines associated with it.
|
|
|
|
func (h *Headscale) DestroyNamespace(name string) error {
|
2021-11-15 03:32:03 +08:00
|
|
|
namespace, err := h.GetNamespace(name)
|
2021-05-09 23:12:05 +08:00
|
|
|
if err != nil {
|
2021-11-16 00:33:16 +08:00
|
|
|
return errNamespaceNotFound
|
2021-05-09 23:12:05 +08:00
|
|
|
}
|
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
machines, err := h.ListMachinesInNamespace(name)
|
2021-05-09 23:12:05 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-11-15 03:32:03 +08:00
|
|
|
if len(machines) > 0 {
|
2021-11-16 00:33:16 +08:00
|
|
|
return errNamespaceNotEmptyOfNodes
|
2021-11-14 03:01:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
keys, err := h.ListPreAuthKeys(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-11-15 03:32:03 +08:00
|
|
|
for _, key := range keys {
|
2021-11-16 02:31:52 +08:00
|
|
|
err = h.DestroyPreAuthKey(key)
|
2021-11-14 04:24:32 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-05-09 23:12:05 +08:00
|
|
|
}
|
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
if result := h.db.Unscoped().Delete(&namespace); result.Error != nil {
|
2021-10-16 23:14:37 +08:00
|
|
|
return result.Error
|
2021-05-09 23:12:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-10-16 23:20:06 +08:00
|
|
|
// RenameNamespace renames a Namespace. Returns error if the Namespace does
|
|
|
|
// not exist or if another Namespace exists with the new name.
|
|
|
|
func (h *Headscale) RenameNamespace(oldName, newName string) error {
|
2021-11-15 03:32:03 +08:00
|
|
|
oldNamespace, err := h.GetNamespace(oldName)
|
2021-10-16 23:20:06 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, err = h.GetNamespace(newName)
|
|
|
|
if err == nil {
|
2021-11-16 00:33:16 +08:00
|
|
|
return errNamespaceExists
|
2021-10-16 23:20:06 +08:00
|
|
|
}
|
2021-11-16 00:33:16 +08:00
|
|
|
if !errors.Is(err, errNamespaceNotFound) {
|
2021-10-16 23:20:06 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
oldNamespace.Name = newName
|
2021-10-16 23:20:06 +08:00
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
if result := h.db.Save(&oldNamespace); result.Error != nil {
|
2021-10-16 23:20:06 +08:00
|
|
|
return result.Error
|
|
|
|
}
|
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
err = h.RequestMapUpdates(oldNamespace.ID)
|
2021-10-16 23:20:06 +08:00
|
|
|
if err != nil {
|
2021-05-09 23:12:05 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// GetNamespace fetches a namespace by name.
|
2021-02-28 07:58:09 +08:00
|
|
|
func (h *Headscale) GetNamespace(name string) (*Namespace, error) {
|
2021-11-15 03:32:03 +08:00
|
|
|
namespace := Namespace{}
|
|
|
|
if result := h.db.First(&namespace, "name = ?", name); errors.Is(
|
2021-11-13 16:36:45 +08:00
|
|
|
result.Error,
|
|
|
|
gorm.ErrRecordNotFound,
|
|
|
|
) {
|
2021-11-16 00:33:16 +08:00
|
|
|
return nil, errNamespaceNotFound
|
2021-02-28 07:58:09 +08:00
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
return &namespace, nil
|
2021-02-28 07:58:09 +08:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// ListNamespaces gets all the existing namespaces.
|
2021-11-05 06:15:17 +08:00
|
|
|
func (h *Headscale) ListNamespaces() ([]Namespace, error) {
|
2021-02-28 07:58:09 +08:00
|
|
|
namespaces := []Namespace{}
|
2021-07-05 03:40:46 +08:00
|
|
|
if err := h.db.Find(&namespaces).Error; err != nil {
|
2021-02-28 07:58:09 +08:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-11-05 06:15:17 +08:00
|
|
|
return namespaces, nil
|
2021-02-28 07:58:09 +08:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// ListMachinesInNamespace gets all the nodes in a given namespace.
|
2021-11-05 06:15:17 +08:00
|
|
|
func (h *Headscale) ListMachinesInNamespace(name string) ([]Machine, error) {
|
2021-11-15 03:32:03 +08:00
|
|
|
namespace, err := h.GetNamespace(name)
|
2021-02-28 07:58:09 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
machines := []Machine{}
|
2021-11-15 03:32:03 +08:00
|
|
|
if err := h.db.Preload("AuthKey").Preload("AuthKey.Namespace").Preload("Namespace").Where(&Machine{NamespaceID: namespace.ID}).Find(&machines).Error; err != nil {
|
2021-02-28 07:58:09 +08:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-11-05 06:15:17 +08:00
|
|
|
return machines, nil
|
2021-02-28 07:58:09 +08:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// ListSharedMachinesInNamespace returns all the machines that are shared to the specified namespace.
|
2021-11-05 06:15:17 +08:00
|
|
|
func (h *Headscale) ListSharedMachinesInNamespace(name string) ([]Machine, error) {
|
2021-09-10 06:26:46 +08:00
|
|
|
namespace, err := h.GetNamespace(name)
|
2021-09-02 22:59:50 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-09-10 06:26:46 +08:00
|
|
|
sharedMachines := []SharedMachine{}
|
|
|
|
if err := h.db.Preload("Namespace").Where(&SharedMachine{NamespaceID: namespace.ID}).Find(&sharedMachines).Error; err != nil {
|
2021-09-02 22:59:50 +08:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
machines := []Machine{}
|
2021-09-10 06:26:46 +08:00
|
|
|
for _, sharedMachine := range sharedMachines {
|
2021-11-13 16:36:45 +08:00
|
|
|
machine, err := h.GetMachineByID(
|
|
|
|
sharedMachine.MachineID,
|
|
|
|
) // otherwise not everything comes filled
|
2021-09-03 16:23:26 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-09-10 06:26:46 +08:00
|
|
|
machines = append(machines, *machine)
|
2021-09-02 22:59:50 +08:00
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-11-05 06:15:17 +08:00
|
|
|
return machines, nil
|
2021-09-02 22:59:50 +08:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// SetMachineNamespace assigns a Machine to a namespace.
|
2021-11-15 03:32:03 +08:00
|
|
|
func (h *Headscale) SetMachineNamespace(machine *Machine, namespaceName string) error {
|
|
|
|
namespace, err := h.GetNamespace(namespaceName)
|
2021-02-28 07:58:09 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-11-15 03:32:03 +08:00
|
|
|
machine.NamespaceID = namespace.ID
|
|
|
|
h.db.Save(&machine)
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-02-28 07:58:09 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
// TODO(kradalby): Remove the need for this.
|
2021-11-13 16:39:04 +08:00
|
|
|
// RequestMapUpdates signals the KV worker to update the maps for this namespace.
|
2021-07-25 23:59:48 +08:00
|
|
|
func (h *Headscale) RequestMapUpdates(namespaceID uint) error {
|
|
|
|
namespace := Namespace{}
|
|
|
|
if err := h.db.First(&namespace, namespaceID).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
namespacesPendingUpdates, err := h.getValue("namespaces_pending_updates")
|
|
|
|
if err != nil || namespacesPendingUpdates == "" {
|
2021-11-13 16:36:45 +08:00
|
|
|
err = h.setValue(
|
|
|
|
"namespaces_pending_updates",
|
|
|
|
fmt.Sprintf(`["%s"]`, namespace.Name),
|
|
|
|
)
|
2021-07-25 23:59:48 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-07-25 23:59:48 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
names := []string{}
|
2021-11-15 03:32:03 +08:00
|
|
|
err = json.Unmarshal([]byte(namespacesPendingUpdates), &names)
|
2021-07-25 23:59:48 +08:00
|
|
|
if err != nil {
|
2021-11-13 16:36:45 +08:00
|
|
|
err = h.setValue(
|
|
|
|
"namespaces_pending_updates",
|
|
|
|
fmt.Sprintf(`["%s"]`, namespace.Name),
|
|
|
|
)
|
2021-07-25 23:59:48 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-07-25 23:59:48 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
names = append(names, namespace.Name)
|
|
|
|
data, err := json.Marshal(names)
|
|
|
|
if err != nil {
|
2021-08-06 01:23:02 +08:00
|
|
|
log.Error().
|
2021-08-06 03:57:47 +08:00
|
|
|
Str("func", "RequestMapUpdates").
|
2021-08-06 01:23:02 +08:00
|
|
|
Err(err).
|
|
|
|
Msg("Could not marshal namespaces_pending_updates")
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-07-25 23:59:48 +08:00
|
|
|
return err
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-07-25 23:59:48 +08:00
|
|
|
return h.setValue("namespaces_pending_updates", string(data))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Headscale) checkForNamespacesPendingUpdates() {
|
2021-11-15 03:32:03 +08:00
|
|
|
namespacesPendingUpdates, err := h.getValue("namespaces_pending_updates")
|
2021-07-25 23:59:48 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2021-11-15 03:32:03 +08:00
|
|
|
if namespacesPendingUpdates == "" {
|
2021-07-25 23:59:48 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-06 00:24:46 +08:00
|
|
|
namespaces := []string{}
|
2021-11-15 03:32:03 +08:00
|
|
|
err = json.Unmarshal([]byte(namespacesPendingUpdates), &namespaces)
|
2021-07-25 23:59:48 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2021-10-06 00:24:46 +08:00
|
|
|
for _, namespace := range namespaces {
|
2021-08-06 01:23:02 +08:00
|
|
|
log.Trace().
|
2021-08-06 03:57:47 +08:00
|
|
|
Str("func", "RequestMapUpdates").
|
2021-10-06 00:24:46 +08:00
|
|
|
Str("machine", namespace).
|
|
|
|
Msg("Sending updates to nodes in namespacespace")
|
|
|
|
h.setLastStateChangeToNow(namespace)
|
2021-07-25 23:59:48 +08:00
|
|
|
}
|
2021-11-15 03:32:03 +08:00
|
|
|
newPendingUpdateValue, err := h.getValue("namespaces_pending_updates")
|
2021-07-25 23:59:48 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2021-11-15 03:32:03 +08:00
|
|
|
if namespacesPendingUpdates == newPendingUpdateValue { // only clear when no changes, so we notified everybody
|
2021-07-25 23:59:48 +08:00
|
|
|
err = h.setValue("namespaces_pending_updates", "")
|
|
|
|
if err != nil {
|
2021-08-06 01:23:02 +08:00
|
|
|
log.Error().
|
2021-08-06 03:57:47 +08:00
|
|
|
Str("func", "checkForNamespacesPendingUpdates").
|
2021-08-06 01:23:02 +08:00
|
|
|
Err(err).
|
|
|
|
Msg("Could not save to KV")
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-07-25 23:59:48 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-28 07:58:09 +08:00
|
|
|
func (n *Namespace) toUser() *tailcfg.User {
|
2021-11-15 03:32:03 +08:00
|
|
|
user := tailcfg.User{
|
2021-02-28 07:58:09 +08:00
|
|
|
ID: tailcfg.UserID(n.ID),
|
2021-07-11 22:39:19 +08:00
|
|
|
LoginName: n.Name,
|
2021-02-28 07:58:09 +08:00
|
|
|
DisplayName: n.Name,
|
|
|
|
ProfilePicURL: "",
|
2021-07-11 22:39:19 +08:00
|
|
|
Domain: "headscale.net",
|
2021-02-28 07:58:09 +08:00
|
|
|
Logins: []tailcfg.LoginID{},
|
|
|
|
Created: time.Time{},
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
return &user
|
2021-02-28 07:58:09 +08:00
|
|
|
}
|
2021-10-15 23:09:55 +08:00
|
|
|
|
|
|
|
func (n *Namespace) toLogin() *tailcfg.Login {
|
2021-11-15 03:32:03 +08:00
|
|
|
login := tailcfg.Login{
|
2021-10-15 23:09:55 +08:00
|
|
|
ID: tailcfg.LoginID(n.ID),
|
|
|
|
LoginName: n.Name,
|
|
|
|
DisplayName: n.Name,
|
|
|
|
ProfilePicURL: "",
|
|
|
|
Domain: "headscale.net",
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
return &login
|
2021-10-15 23:09:55 +08:00
|
|
|
}
|
2021-10-19 22:26:18 +08:00
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
func getMapResponseUserProfiles(machine Machine, peers Machines) []tailcfg.UserProfile {
|
2021-10-18 05:58:09 +08:00
|
|
|
namespaceMap := make(map[string]Namespace)
|
2021-11-15 03:32:03 +08:00
|
|
|
namespaceMap[machine.Namespace.Name] = machine.Namespace
|
|
|
|
for _, peer := range peers {
|
|
|
|
namespaceMap[peer.Namespace.Name] = peer.Namespace // not worth checking if already is there
|
2021-10-18 05:58:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
profiles := []tailcfg.UserProfile{}
|
|
|
|
for _, namespace := range namespaceMap {
|
|
|
|
profiles = append(profiles,
|
|
|
|
tailcfg.UserProfile{
|
|
|
|
ID: tailcfg.UserID(namespace.ID),
|
|
|
|
LoginName: namespace.Name,
|
|
|
|
DisplayName: namespace.Name,
|
|
|
|
})
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-10-18 05:58:09 +08:00
|
|
|
return profiles
|
|
|
|
}
|
2021-11-05 06:15:17 +08:00
|
|
|
|
|
|
|
func (n *Namespace) toProto() *v1.Namespace {
|
|
|
|
return &v1.Namespace{
|
2021-11-16 01:24:24 +08:00
|
|
|
Id: strconv.FormatUint(uint64(n.ID), Base10),
|
2021-11-05 06:15:17 +08:00
|
|
|
Name: n.Name,
|
|
|
|
CreatedAt: timestamppb.New(n.CreatedAt),
|
|
|
|
}
|
|
|
|
}
|