1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00
juanfont.headscale/machine.go

236 lines
5.4 KiB
Go
Raw Normal View History

2020-06-21 12:32:08 +02:00
package headscale
import (
"encoding/json"
"fmt"
"log"
"sort"
2021-02-22 23:27:33 +01:00
"strconv"
2020-06-21 12:32:08 +02:00
"time"
2021-05-15 00:05:41 +02:00
"gorm.io/datatypes"
2021-02-20 22:43:07 +01:00
"inet.af/netaddr"
2020-06-21 12:32:08 +02:00
"tailscale.com/tailcfg"
2021-06-25 18:57:08 +02:00
"tailscale.com/types/wgkey"
2020-06-21 12:32:08 +02:00
)
// Machine is a Headscale client
2020-06-21 12:32:08 +02:00
type Machine struct {
ID uint64 `gorm:"primary_key"`
MachineKey string `gorm:"type:varchar(64);unique_index"`
NodeKey string
DiscoKey string
IPAddress string
Name string
NamespaceID uint
2021-06-25 18:57:08 +02:00
Namespace Namespace `gorm:"foreignKey:NamespaceID"`
2020-06-21 12:32:08 +02:00
Registered bool // temp
RegisterMethod string
AuthKeyID uint
AuthKey *PreAuthKey
LastSeen *time.Time
Expiry *time.Time
2020-06-21 12:32:08 +02:00
2021-05-15 00:05:41 +02:00
HostInfo datatypes.JSON
Endpoints datatypes.JSON
EnabledRoutes datatypes.JSON
2020-06-21 12:32:08 +02:00
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt *time.Time
}
// For the time being this method is rather naive
func (m Machine) isAlreadyRegistered() bool {
return m.Registered
}
func (m Machine) toNode() (*tailcfg.Node, error) {
2021-06-25 18:57:08 +02:00
nKey, err := wgkey.ParseHex(m.NodeKey)
2020-06-21 12:32:08 +02:00
if err != nil {
return nil, err
}
2021-06-25 18:57:08 +02:00
mKey, err := wgkey.ParseHex(m.MachineKey)
2020-06-21 12:32:08 +02:00
if err != nil {
return nil, err
}
var discoKey tailcfg.DiscoKey
if m.DiscoKey != "" {
2021-06-25 18:57:08 +02:00
dKey, err := wgkey.ParseHex(m.DiscoKey)
if err != nil {
return nil, err
}
discoKey = tailcfg.DiscoKey(dKey)
} else {
discoKey = tailcfg.DiscoKey{}
}
2021-02-20 22:43:07 +01:00
addrs := []netaddr.IPPrefix{}
ip, err := netaddr.ParseIPPrefix(fmt.Sprintf("%s/32", m.IPAddress))
2020-06-21 12:32:08 +02:00
if err != nil {
return nil, err
}
2021-03-14 11:38:42 +01:00
addrs = append(addrs, ip) // missing the ipv6 ?
allowedIPs := []netaddr.IPPrefix{}
2021-03-17 23:09:45 +01:00
allowedIPs = append(allowedIPs, ip) // we append the node own IP, as it is required by the clients
2021-03-14 11:38:42 +01:00
routesStr := []string{}
2021-05-15 00:05:41 +02:00
if len(m.EnabledRoutes) != 0 {
2021-03-14 11:38:42 +01:00
allwIps, err := m.EnabledRoutes.MarshalJSON()
if err != nil {
return nil, err
}
err = json.Unmarshal(allwIps, &routesStr)
if err != nil {
return nil, err
}
}
for _, aip := range routesStr {
ip, err := netaddr.ParseIPPrefix(aip)
if err != nil {
return nil, err
}
allowedIPs = append(allowedIPs, ip)
}
2020-06-21 12:32:08 +02:00
endpoints := []string{}
2021-05-15 00:05:41 +02:00
if len(m.Endpoints) != 0 {
be, err := m.Endpoints.MarshalJSON()
if err != nil {
return nil, err
}
err = json.Unmarshal(be, &endpoints)
if err != nil {
return nil, err
}
2020-06-21 12:32:08 +02:00
}
hostinfo := tailcfg.Hostinfo{}
2021-05-15 00:05:41 +02:00
if len(m.HostInfo) != 0 {
hi, err := m.HostInfo.MarshalJSON()
if err != nil {
return nil, err
}
err = json.Unmarshal(hi, &hostinfo)
if err != nil {
return nil, err
}
2020-06-21 12:32:08 +02:00
}
2021-02-24 23:45:27 +01:00
var derp string
if hostinfo.NetInfo != nil {
derp = fmt.Sprintf("127.3.3.40:%d", hostinfo.NetInfo.PreferredDERP)
} else {
derp = "127.3.3.40:0" // Zero means disconnected or unknown.
}
2020-06-21 12:32:08 +02:00
n := tailcfg.Node{
2021-02-22 23:27:33 +01:00
ID: tailcfg.NodeID(m.ID), // this is the actual ID
StableID: tailcfg.StableNodeID(strconv.FormatUint(m.ID, 10)), // in headscale, unlike tailcontrol server, IDs are permanent
Name: hostinfo.Hostname,
User: tailcfg.UserID(m.NamespaceID),
2020-06-21 12:32:08 +02:00
Key: tailcfg.NodeKey(nKey),
KeyExpiry: *m.Expiry,
Machine: tailcfg.MachineKey(mKey),
DiscoKey: discoKey,
2020-06-21 12:32:08 +02:00
Addresses: addrs,
AllowedIPs: allowedIPs,
Endpoints: endpoints,
2021-02-24 23:45:27 +01:00
DERP: derp,
2020-06-21 12:32:08 +02:00
Hostinfo: hostinfo,
Created: m.CreatedAt,
LastSeen: m.LastSeen,
KeepAlive: true,
2020-06-21 12:32:08 +02:00
MachineAuthorized: m.Registered,
}
return &n, nil
}
func (h *Headscale) getPeers(m Machine) (*[]*tailcfg.Node, error) {
machines := []Machine{}
2021-07-04 21:40:46 +02:00
if err := h.db.Where("namespace_id = ? AND machine_key <> ? AND registered",
m.NamespaceID, m.MachineKey).Find(&machines).Error; err != nil {
2020-06-21 12:32:08 +02:00
log.Printf("Error accessing db: %s", err)
return nil, err
}
peers := []*tailcfg.Node{}
for _, mn := range machines {
peer, err := mn.toNode()
if err != nil {
return nil, err
}
peers = append(peers, peer)
}
sort.Slice(peers, func(i, j int) bool { return peers[i].ID < peers[j].ID })
2020-06-21 12:32:08 +02:00
return &peers, nil
}
2021-03-14 11:38:42 +01:00
2021-04-24 17:26:50 +02:00
// GetMachine finds a Machine by name and namespace and returns the Machine struct
2021-03-14 11:38:42 +01:00
func (h *Headscale) GetMachine(namespace string, name string) (*Machine, error) {
machines, err := h.ListMachinesInNamespace(namespace)
if err != nil {
return nil, err
}
for _, m := range *machines {
if m.Name == name {
return &m, nil
}
}
return nil, fmt.Errorf("not found")
}
2021-07-17 00:14:22 +02:00
// GetMachineByID finds a Machine by ID and returns the Machine struct
func (h *Headscale) GetMachineByID(id uint64) (*Machine, error) {
m := Machine{}
if result := h.db.Find(&Machine{ID: id}).First(&m); result.Error != nil {
return nil, result.Error
}
return &m, nil
}
// DeleteMachine softs deletes a Machine from the database
2021-07-17 00:23:12 +02:00
func (h *Headscale) DeleteMachine(m *Machine) error {
m.Registered = false
namespaceID := m.NamespaceID
h.db.Save(&m) // we mark it as unregistered, just in case
2021-07-17 00:14:22 +02:00
if err := h.db.Delete(&m).Error; err != nil {
return err
}
return h.RequestMapUpdates(namespaceID)
2021-07-17 00:14:22 +02:00
}
// HardDeleteMachine hard deletes a Machine from the database
2021-07-17 00:23:12 +02:00
func (h *Headscale) HardDeleteMachine(m *Machine) error {
namespaceID := m.NamespaceID
2021-07-17 00:14:22 +02:00
if err := h.db.Unscoped().Delete(&m).Error; err != nil {
return err
}
return h.RequestMapUpdates(namespaceID)
2021-07-17 00:14:22 +02:00
}
2021-04-24 17:26:50 +02:00
// GetHostInfo returns a Hostinfo struct for the machine
2021-03-14 11:38:42 +01:00
func (m *Machine) GetHostInfo() (*tailcfg.Hostinfo, error) {
hostinfo := tailcfg.Hostinfo{}
2021-05-15 00:05:41 +02:00
if len(m.HostInfo) != 0 {
2021-03-14 11:38:42 +01:00
hi, err := m.HostInfo.MarshalJSON()
if err != nil {
return nil, err
}
err = json.Unmarshal(hi, &hostinfo)
if err != nil {
return nil, err
}
}
return &hostinfo, nil
}