2020-06-21 18:32:08 +08:00
|
|
|
package headscale
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-02-21 08:30:03 +08:00
|
|
|
"log"
|
2021-02-22 06:54:15 +08:00
|
|
|
"os"
|
2020-06-21 18:32:08 +08:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2021-02-21 06:57:06 +08:00
|
|
|
"tailscale.com/tailcfg"
|
2021-02-21 05:43:07 +08:00
|
|
|
"tailscale.com/wgengine/wgcfg"
|
2020-06-21 18:32:08 +08:00
|
|
|
)
|
|
|
|
|
2021-02-22 05:14:38 +08:00
|
|
|
// Config contains the initial Headscale configuration
|
2020-06-21 18:32:08 +08:00
|
|
|
type Config struct {
|
|
|
|
ServerURL string
|
|
|
|
Addr string
|
|
|
|
PrivateKeyPath string
|
2021-02-21 06:57:06 +08:00
|
|
|
DerpMap *tailcfg.DERPMap
|
2020-06-21 18:32:08 +08:00
|
|
|
|
|
|
|
DBhost string
|
|
|
|
DBport int
|
|
|
|
DBname string
|
|
|
|
DBuser string
|
|
|
|
DBpass string
|
|
|
|
}
|
|
|
|
|
2021-02-22 05:14:38 +08:00
|
|
|
// Headscale represents the base app of the service
|
2020-06-21 18:32:08 +08:00
|
|
|
type Headscale struct {
|
|
|
|
cfg Config
|
|
|
|
dbString string
|
|
|
|
publicKey *wgcfg.Key
|
|
|
|
privateKey *wgcfg.PrivateKey
|
|
|
|
}
|
|
|
|
|
2021-02-22 05:14:38 +08:00
|
|
|
// NewHeadscale returns the Headscale app
|
2020-06-21 18:32:08 +08:00
|
|
|
func NewHeadscale(cfg Config) (*Headscale, error) {
|
2021-02-22 06:54:15 +08:00
|
|
|
content, err := os.ReadFile(cfg.PrivateKeyPath)
|
2020-06-21 18:32:08 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
privKey, err := wgcfg.ParsePrivateKey(string(content))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
pubKey := privKey.Public()
|
|
|
|
h := Headscale{
|
|
|
|
cfg: cfg,
|
|
|
|
dbString: fmt.Sprintf("host=%s port=%d dbname=%s user=%s password=%s sslmode=disable", cfg.DBhost,
|
|
|
|
cfg.DBport, cfg.DBname, cfg.DBuser, cfg.DBpass),
|
|
|
|
privateKey: privKey,
|
|
|
|
publicKey: &pubKey,
|
|
|
|
}
|
|
|
|
err = h.initDB()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &h, nil
|
|
|
|
}
|
|
|
|
|
2021-02-22 05:14:38 +08:00
|
|
|
// Serve launches a GIN server with the Headscale API
|
2020-06-21 18:32:08 +08:00
|
|
|
func (h *Headscale) Serve() error {
|
|
|
|
r := gin.Default()
|
|
|
|
r.GET("/key", h.KeyHandler)
|
|
|
|
r.GET("/register", h.RegisterWebAPI)
|
|
|
|
r.POST("/machine/:id/map", h.PollNetMapHandler)
|
|
|
|
r.POST("/machine/:id", h.RegistrationHandler)
|
2020-07-04 19:38:58 +08:00
|
|
|
|
|
|
|
// r.LoadHTMLFiles("./frontend/build/index.html")
|
|
|
|
// r.Use(static.Serve("/", static.LocalFile("./frontend/build", true)))
|
2020-06-21 18:32:08 +08:00
|
|
|
err := r.Run(h.cfg.Addr)
|
|
|
|
return err
|
|
|
|
}
|
2021-02-21 08:30:03 +08:00
|
|
|
|
2021-02-22 05:14:38 +08:00
|
|
|
// RegisterMachine is executed from the CLI to register a new Machine using its MachineKey
|
2021-02-21 08:30:03 +08:00
|
|
|
func (h *Headscale) RegisterMachine(key string) error {
|
|
|
|
mKey, err := wgcfg.ParseHexKey(key)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Cannot parse client key: %s", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
db, err := h.db()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Cannot open DB: %s", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer db.Close()
|
|
|
|
m := Machine{}
|
|
|
|
if db.First(&m, "machine_key = ?", mKey.HexString()).RecordNotFound() {
|
|
|
|
log.Printf("Cannot find machine with machine key: %s", mKey.Base64())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.isAlreadyRegistered() {
|
|
|
|
fmt.Println("This machine already registered")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ip, err := h.getAvailableIP()
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.IPAddress = ip.String()
|
|
|
|
m.Registered = true
|
|
|
|
db.Save(&m)
|
|
|
|
fmt.Println("Machine registered 🎉")
|
|
|
|
return nil
|
|
|
|
}
|