2020-06-21 10:32:08 +00:00
|
|
|
package headscale
|
|
|
|
|
|
|
|
import (
|
2021-10-26 20:42:56 +00:00
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
2021-04-24 02:54:15 +00:00
|
|
|
"errors"
|
2020-06-21 10:32:08 +00:00
|
|
|
"fmt"
|
2021-10-29 16:45:06 +00:00
|
|
|
"io"
|
2022-01-28 18:58:22 +00:00
|
|
|
"io/fs"
|
2021-10-26 20:42:56 +00:00
|
|
|
"net"
|
2021-04-24 02:54:15 +00:00
|
|
|
"net/http"
|
2021-10-22 16:55:14 +00:00
|
|
|
"net/url"
|
2021-02-21 22:54:15 +00:00
|
|
|
"os"
|
2021-11-02 21:46:15 +00:00
|
|
|
"os/signal"
|
2021-10-06 22:06:07 +00:00
|
|
|
"sort"
|
2022-03-05 15:22:02 +00:00
|
|
|
"strconv"
|
2021-04-23 20:54:35 +00:00
|
|
|
"strings"
|
2021-02-23 20:07:52 +00:00
|
|
|
"sync"
|
2021-11-02 21:46:15 +00:00
|
|
|
"syscall"
|
2021-05-23 00:15:29 +00:00
|
|
|
"time"
|
2020-06-21 10:32:08 +00:00
|
|
|
|
2021-10-18 19:27:52 +00:00
|
|
|
"github.com/coreos/go-oidc/v3/oidc"
|
2020-06-21 10:32:08 +00:00
|
|
|
"github.com/gin-gonic/gin"
|
2021-11-13 08:39:04 +00:00
|
|
|
grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware"
|
2021-10-26 20:42:56 +00:00
|
|
|
"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
|
2021-11-04 22:18:55 +00:00
|
|
|
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
|
2021-11-13 08:39:04 +00:00
|
|
|
"github.com/patrickmn/go-cache"
|
|
|
|
zerolog "github.com/philip-bui/grpc-zerolog"
|
2021-11-08 22:06:25 +00:00
|
|
|
zl "github.com/rs/zerolog"
|
2021-10-26 20:42:56 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2021-10-09 10:22:13 +00:00
|
|
|
ginprometheus "github.com/zsais/go-gin-prometheus"
|
2021-10-03 18:26:38 +00:00
|
|
|
"golang.org/x/crypto/acme"
|
2021-04-24 02:54:15 +00:00
|
|
|
"golang.org/x/crypto/acme/autocert"
|
2021-11-13 08:39:04 +00:00
|
|
|
"golang.org/x/oauth2"
|
2021-10-26 20:42:56 +00:00
|
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
"google.golang.org/grpc"
|
2021-10-29 16:45:06 +00:00
|
|
|
"google.golang.org/grpc/codes"
|
2022-02-12 17:05:30 +00:00
|
|
|
"google.golang.org/grpc/credentials"
|
2022-02-12 19:48:05 +00:00
|
|
|
"google.golang.org/grpc/credentials/insecure"
|
2021-10-29 16:45:06 +00:00
|
|
|
"google.golang.org/grpc/metadata"
|
|
|
|
"google.golang.org/grpc/peer"
|
|
|
|
"google.golang.org/grpc/reflection"
|
|
|
|
"google.golang.org/grpc/status"
|
2021-07-04 19:40:46 +00:00
|
|
|
"gorm.io/gorm"
|
2021-08-02 19:06:26 +00:00
|
|
|
"inet.af/netaddr"
|
2021-02-20 22:57:06 +00:00
|
|
|
"tailscale.com/tailcfg"
|
2021-10-02 10:13:05 +00:00
|
|
|
"tailscale.com/types/dnstype"
|
2021-11-26 23:28:06 +00:00
|
|
|
"tailscale.com/types/key"
|
2020-06-21 10:32:08 +00:00
|
|
|
)
|
|
|
|
|
2021-10-29 16:45:06 +00:00
|
|
|
const (
|
2021-11-28 09:17:18 +00:00
|
|
|
AuthPrefix = "Bearer "
|
|
|
|
Postgres = "postgres"
|
|
|
|
Sqlite = "sqlite3"
|
|
|
|
updateInterval = 5000
|
|
|
|
HTTPReadTimeout = 30 * time.Second
|
|
|
|
privateKeyFileMode = 0o600
|
2021-11-15 19:18:14 +00:00
|
|
|
|
2022-02-28 22:42:30 +00:00
|
|
|
registerCacheExpiration = time.Minute * 15
|
|
|
|
registerCacheCleanup = time.Minute * 20
|
2021-11-22 19:32:52 +00:00
|
|
|
|
2021-11-15 19:18:14 +00:00
|
|
|
errUnsupportedDatabase = Error("unsupported DB")
|
|
|
|
errUnsupportedLetsEncryptChallengeType = Error(
|
|
|
|
"unknown value for Lets Encrypt challenge type",
|
|
|
|
)
|
2022-01-30 15:46:57 +00:00
|
|
|
|
|
|
|
DisabledClientAuth = "disabled"
|
|
|
|
RelaxedClientAuth = "relaxed"
|
|
|
|
EnforcedClientAuth = "enforced"
|
2021-10-29 16:45:06 +00:00
|
|
|
)
|
|
|
|
|
2021-10-26 20:42:56 +00:00
|
|
|
// Config contains the initial Headscale configuration.
|
2020-06-21 10:32:08 +00:00
|
|
|
type Config struct {
|
2021-05-23 00:15:29 +00:00
|
|
|
ServerURL string
|
|
|
|
Addr string
|
2022-02-21 15:50:15 +00:00
|
|
|
MetricsAddr string
|
2022-02-12 16:15:26 +00:00
|
|
|
GRPCAddr string
|
2022-02-13 09:08:46 +00:00
|
|
|
GRPCAllowInsecure bool
|
2021-05-23 00:15:29 +00:00
|
|
|
EphemeralNodeInactivityTimeout time.Duration
|
2022-01-16 13:16:59 +00:00
|
|
|
IPPrefixes []netaddr.IPPrefix
|
2021-11-28 09:17:18 +00:00
|
|
|
PrivateKeyPath string
|
2021-10-02 09:20:42 +00:00
|
|
|
BaseDomain string
|
2020-06-21 10:32:08 +00:00
|
|
|
|
2021-10-22 16:55:14 +00:00
|
|
|
DERP DERPConfig
|
|
|
|
|
2021-05-15 12:32:26 +00:00
|
|
|
DBtype string
|
|
|
|
DBpath string
|
2020-06-21 10:32:08 +00:00
|
|
|
DBhost string
|
|
|
|
DBport int
|
|
|
|
DBname string
|
|
|
|
DBuser string
|
|
|
|
DBpass string
|
2021-04-23 20:54:35 +00:00
|
|
|
|
2021-07-23 22:12:01 +00:00
|
|
|
TLSLetsEncryptListen string
|
2021-04-24 02:54:15 +00:00
|
|
|
TLSLetsEncryptHostname string
|
|
|
|
TLSLetsEncryptCacheDir string
|
|
|
|
TLSLetsEncryptChallengeType string
|
|
|
|
|
2022-01-29 19:15:33 +00:00
|
|
|
TLSCertPath string
|
|
|
|
TLSKeyPath string
|
2022-02-20 14:06:14 +00:00
|
|
|
TLSClientAuthMode tls.ClientAuthType
|
2021-08-24 06:09:47 +00:00
|
|
|
|
2021-10-03 18:26:38 +00:00
|
|
|
ACMEURL string
|
|
|
|
ACMEEmail string
|
|
|
|
|
2021-08-24 06:09:47 +00:00
|
|
|
DNSConfig *tailcfg.DNSConfig
|
2021-10-30 14:08:16 +00:00
|
|
|
|
2022-01-28 18:58:22 +00:00
|
|
|
UnixSocket string
|
|
|
|
UnixSocketPermission fs.FileMode
|
2021-10-31 09:40:43 +00:00
|
|
|
|
2021-10-18 19:27:52 +00:00
|
|
|
OIDC OIDCConfig
|
2021-10-08 09:43:52 +00:00
|
|
|
|
2021-11-07 09:41:14 +00:00
|
|
|
CLI CLIConfig
|
2020-06-21 10:32:08 +00:00
|
|
|
}
|
|
|
|
|
2021-10-18 19:27:52 +00:00
|
|
|
type OIDCConfig struct {
|
2022-02-23 13:03:07 +00:00
|
|
|
Issuer string
|
|
|
|
ClientID string
|
|
|
|
ClientSecret string
|
|
|
|
StripEmaildomain bool
|
2020-06-21 10:32:08 +00:00
|
|
|
}
|
|
|
|
|
2021-10-22 16:55:14 +00:00
|
|
|
type DERPConfig struct {
|
2022-03-05 15:22:02 +00:00
|
|
|
ServerEnabled bool
|
2021-10-22 16:55:14 +00:00
|
|
|
URLs []url.URL
|
|
|
|
Paths []string
|
|
|
|
AutoUpdate bool
|
|
|
|
UpdateFrequency time.Duration
|
|
|
|
}
|
|
|
|
|
2021-11-07 09:41:14 +00:00
|
|
|
type CLIConfig struct {
|
2022-02-13 08:41:49 +00:00
|
|
|
Address string
|
|
|
|
APIKey string
|
|
|
|
Timeout time.Duration
|
|
|
|
Insecure bool
|
2021-11-07 09:41:14 +00:00
|
|
|
}
|
|
|
|
|
2021-10-26 20:42:56 +00:00
|
|
|
// Headscale represents the base app of the service.
|
2020-06-21 10:32:08 +00:00
|
|
|
type Headscale struct {
|
|
|
|
cfg Config
|
2021-07-04 19:40:46 +00:00
|
|
|
db *gorm.DB
|
2020-06-21 10:32:08 +00:00
|
|
|
dbString string
|
2021-05-02 18:47:36 +00:00
|
|
|
dbType string
|
|
|
|
dbDebug bool
|
2021-11-26 23:28:06 +00:00
|
|
|
privateKey *key.MachinePrivate
|
2021-02-23 20:07:52 +00:00
|
|
|
|
2022-03-05 15:22:02 +00:00
|
|
|
DERPMap *tailcfg.DERPMap
|
|
|
|
DERPServer *DERPServer
|
2021-10-22 16:55:14 +00:00
|
|
|
|
2021-07-03 15:31:32 +00:00
|
|
|
aclPolicy *ACLPolicy
|
2021-11-04 22:18:55 +00:00
|
|
|
aclRules []tailcfg.FilterRule
|
2021-07-03 15:31:32 +00:00
|
|
|
|
2021-08-19 17:19:26 +00:00
|
|
|
lastStateChange sync.Map
|
2021-10-08 09:43:52 +00:00
|
|
|
|
2022-02-28 22:42:30 +00:00
|
|
|
oidcProvider *oidc.Provider
|
|
|
|
oauth2Config *oauth2.Config
|
2022-02-24 13:18:18 +00:00
|
|
|
|
2022-02-28 08:06:39 +00:00
|
|
|
registrationCache *cache.Cache
|
|
|
|
|
2022-02-24 13:18:18 +00:00
|
|
|
ipAllocationMutex sync.Mutex
|
2020-06-21 10:32:08 +00:00
|
|
|
}
|
|
|
|
|
2022-02-20 14:06:14 +00:00
|
|
|
// Look up the TLS constant relative to user-supplied TLS client
|
|
|
|
// authentication mode. If an unknown mode is supplied, the default
|
|
|
|
// value, tls.RequireAnyClientCert, is returned. The returned boolean
|
|
|
|
// indicates if the supplied mode was valid.
|
|
|
|
func LookupTLSClientAuthMode(mode string) (tls.ClientAuthType, bool) {
|
|
|
|
switch mode {
|
|
|
|
case DisabledClientAuth:
|
|
|
|
// Client cert is _not_ required.
|
|
|
|
return tls.NoClientCert, true
|
|
|
|
case RelaxedClientAuth:
|
|
|
|
// Client cert required, but _not verified_.
|
|
|
|
return tls.RequireAnyClientCert, true
|
|
|
|
case EnforcedClientAuth:
|
|
|
|
// Client cert is _required and verified_.
|
|
|
|
return tls.RequireAndVerifyClientCert, true
|
|
|
|
default:
|
2022-02-21 15:09:23 +00:00
|
|
|
// Return the default when an unknown value is supplied.
|
2022-02-20 14:06:14 +00:00
|
|
|
return tls.RequireAnyClientCert, false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-21 10:32:08 +00:00
|
|
|
func NewHeadscale(cfg Config) (*Headscale, error) {
|
2021-11-28 09:17:18 +00:00
|
|
|
privKey, err := readOrCreatePrivateKey(cfg.PrivateKeyPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to read or create private key: %w", err)
|
|
|
|
}
|
2021-05-15 12:32:26 +00:00
|
|
|
|
|
|
|
var dbString string
|
|
|
|
switch cfg.DBtype {
|
2021-11-15 17:24:24 +00:00
|
|
|
case Postgres:
|
2021-11-13 08:36:45 +00:00
|
|
|
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,
|
|
|
|
)
|
2021-11-15 17:24:24 +00:00
|
|
|
case Sqlite:
|
2021-05-15 12:32:26 +00:00
|
|
|
dbString = cfg.DBpath
|
|
|
|
default:
|
2021-11-15 19:18:14 +00:00
|
|
|
return nil, errUnsupportedDatabase
|
2021-05-15 12:32:26 +00:00
|
|
|
}
|
|
|
|
|
2022-02-28 08:06:39 +00:00
|
|
|
registrationCache := cache.New(
|
2022-02-28 22:42:30 +00:00
|
|
|
registerCacheExpiration,
|
|
|
|
registerCacheCleanup,
|
2022-02-28 08:06:39 +00:00
|
|
|
)
|
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
app := Headscale{
|
2022-02-28 22:42:30 +00:00
|
|
|
cfg: cfg,
|
|
|
|
dbType: cfg.DBtype,
|
|
|
|
dbString: dbString,
|
|
|
|
privateKey: privKey,
|
|
|
|
aclRules: tailcfg.FilterAllowAll, // default allowall
|
|
|
|
registrationCache: registrationCache,
|
2020-06-21 10:32:08 +00:00
|
|
|
}
|
2021-07-04 11:24:05 +00:00
|
|
|
|
2021-11-28 09:17:18 +00:00
|
|
|
err = app.initDB()
|
2020-06-21 10:32:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-07-04 19:40:46 +00:00
|
|
|
|
2021-10-18 19:27:52 +00:00
|
|
|
if cfg.OIDC.Issuer != "" {
|
2021-11-14 19:32:03 +00:00
|
|
|
err = app.initOIDC()
|
2021-10-08 09:43:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-10-18 19:27:52 +00:00
|
|
|
}
|
2021-10-16 14:31:37 +00:00
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
if app.cfg.DNSConfig != nil && app.cfg.DNSConfig.Proxied { // if MagicDNS
|
2022-01-16 13:16:59 +00:00
|
|
|
magicDNSDomains := generateMagicDNSRootDomains(app.cfg.IPPrefixes)
|
2021-10-20 07:35:56 +00:00
|
|
|
// we might have routes already from Split DNS
|
2021-11-14 19:32:03 +00:00
|
|
|
if app.cfg.DNSConfig.Routes == nil {
|
|
|
|
app.cfg.DNSConfig.Routes = make(map[string][]dnstype.Resolver)
|
2021-10-19 18:51:43 +00:00
|
|
|
}
|
2021-10-10 10:43:41 +00:00
|
|
|
for _, d := range magicDNSDomains {
|
2021-11-14 19:32:03 +00:00
|
|
|
app.cfg.DNSConfig.Routes[d.WithoutTrailingDot()] = nil
|
2021-10-02 10:13:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-05 15:22:02 +00:00
|
|
|
if cfg.DERP.ServerEnabled {
|
|
|
|
embeddedDERPServer, err := app.NewDERPServer()
|
2022-03-03 23:01:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-03-05 15:22:02 +00:00
|
|
|
app.DERPServer = embeddedDERPServer
|
2022-03-03 23:01:31 +00:00
|
|
|
|
|
|
|
serverURL, err := url.Parse(app.cfg.ServerURL)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-03-05 15:22:02 +00:00
|
|
|
var host string
|
|
|
|
var port int
|
|
|
|
host, portStr, err := net.SplitHostPort(serverURL.Host)
|
|
|
|
if err != nil {
|
|
|
|
if serverURL.Scheme == "https" {
|
|
|
|
host = serverURL.Host
|
|
|
|
port = 443
|
|
|
|
} else {
|
|
|
|
host = serverURL.Host
|
|
|
|
port = 80
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
port, err = strconv.Atoi(portStr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-03 23:01:31 +00:00
|
|
|
app.DERPMap = &tailcfg.DERPMap{
|
|
|
|
Regions: map[int]*tailcfg.DERPRegion{
|
2022-03-05 15:22:02 +00:00
|
|
|
999: {
|
|
|
|
RegionID: 999,
|
2022-03-03 23:01:31 +00:00
|
|
|
RegionCode: "headscale",
|
|
|
|
RegionName: "Headscale Embedded DERP",
|
|
|
|
Avoid: false,
|
|
|
|
Nodes: []*tailcfg.DERPNode{
|
|
|
|
{
|
2022-03-05 18:19:21 +00:00
|
|
|
Name: "999a",
|
|
|
|
RegionID: 999,
|
|
|
|
HostName: host,
|
|
|
|
DERPPort: port,
|
2022-03-03 23:01:31 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
OmitDefaultRegions: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
return &app, nil
|
2020-06-21 10:32:08 +00:00
|
|
|
}
|
|
|
|
|
2021-10-26 20:42:56 +00:00
|
|
|
// Redirect to our TLS url.
|
2021-04-24 02:54:15 +00:00
|
|
|
func (h *Headscale) redirect(w http.ResponseWriter, req *http.Request) {
|
|
|
|
target := h.cfg.ServerURL + req.URL.RequestURI()
|
|
|
|
http.Redirect(w, req, target, http.StatusFound)
|
|
|
|
}
|
|
|
|
|
2021-08-12 19:45:40 +00:00
|
|
|
// expireEphemeralNodes deletes ephemeral machine records that have not been
|
2021-10-26 20:42:56 +00:00
|
|
|
// seen for longer than h.cfg.EphemeralNodeInactivityTimeout.
|
2021-08-12 19:45:40 +00:00
|
|
|
func (h *Headscale) expireEphemeralNodes(milliSeconds int64) {
|
2021-05-23 00:15:29 +00:00
|
|
|
ticker := time.NewTicker(time.Duration(milliSeconds) * time.Millisecond)
|
|
|
|
for range ticker.C {
|
|
|
|
h.expireEphemeralNodesWorker()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Headscale) expireEphemeralNodesWorker() {
|
|
|
|
namespaces, err := h.ListNamespaces()
|
|
|
|
if err != nil {
|
2021-08-05 17:11:26 +00:00
|
|
|
log.Error().Err(err).Msg("Error listing namespaces")
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2021-05-23 00:15:29 +00:00
|
|
|
return
|
|
|
|
}
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
for _, namespace := range namespaces {
|
|
|
|
machines, err := h.ListMachinesInNamespace(namespace.Name)
|
2021-05-23 00:15:29 +00:00
|
|
|
if err != nil {
|
2021-11-13 08:36:45 +00:00
|
|
|
log.Error().
|
|
|
|
Err(err).
|
2021-11-14 19:32:03 +00:00
|
|
|
Str("namespace", namespace.Name).
|
2021-11-13 08:36:45 +00:00
|
|
|
Msg("Error listing machines in namespace")
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2021-05-23 00:15:29 +00:00
|
|
|
return
|
|
|
|
}
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
for _, machine := range machines {
|
|
|
|
if machine.AuthKey != nil && machine.LastSeen != nil &&
|
|
|
|
machine.AuthKey.Ephemeral &&
|
|
|
|
time.Now().
|
|
|
|
After(machine.LastSeen.Add(h.cfg.EphemeralNodeInactivityTimeout)) {
|
2021-11-13 08:36:45 +00:00
|
|
|
log.Info().
|
2021-11-14 19:32:03 +00:00
|
|
|
Str("machine", machine.Name).
|
2021-11-13 08:36:45 +00:00
|
|
|
Msg("Ephemeral client removed from database")
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
err = h.db.Unscoped().Delete(machine).Error
|
2021-05-23 00:15:29 +00:00
|
|
|
if err != nil {
|
2021-10-22 16:55:14 +00:00
|
|
|
log.Error().
|
|
|
|
Err(err).
|
2021-11-14 19:32:03 +00:00
|
|
|
Str("machine", machine.Name).
|
2021-10-22 16:55:14 +00:00
|
|
|
Msg("🤮 Cannot delete ephemeral machine from the database")
|
2021-05-23 00:15:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
h.setLastStateChangeToNow(namespace.Name)
|
2021-05-23 00:15:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-29 16:45:06 +00:00
|
|
|
func (h *Headscale) grpcAuthenticationInterceptor(ctx context.Context,
|
|
|
|
req interface{},
|
|
|
|
info *grpc.UnaryServerInfo,
|
|
|
|
handler grpc.UnaryHandler) (interface{}, error) {
|
|
|
|
// Check if the request is coming from the on-server client.
|
|
|
|
// This is not secure, but it is to maintain maintainability
|
|
|
|
// with the "legacy" database-based client
|
|
|
|
// It is also neede for grpc-gateway to be able to connect to
|
|
|
|
// the server
|
2021-11-14 19:32:03 +00:00
|
|
|
client, _ := peer.FromContext(ctx)
|
2021-10-29 16:45:06 +00:00
|
|
|
|
2021-11-13 08:36:45 +00:00
|
|
|
log.Trace().
|
|
|
|
Caller().
|
2021-11-14 19:32:03 +00:00
|
|
|
Str("client_address", client.Addr.String()).
|
2021-11-13 08:36:45 +00:00
|
|
|
Msg("Client is trying to authenticate")
|
2021-10-29 16:45:06 +00:00
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
meta, ok := metadata.FromIncomingContext(ctx)
|
2021-10-29 16:45:06 +00:00
|
|
|
if !ok {
|
2021-11-13 08:36:45 +00:00
|
|
|
log.Error().
|
|
|
|
Caller().
|
2021-11-14 19:32:03 +00:00
|
|
|
Str("client_address", client.Addr.String()).
|
2021-11-13 08:36:45 +00:00
|
|
|
Msg("Retrieving metadata is failed")
|
2021-11-14 15:46:09 +00:00
|
|
|
|
2021-11-13 08:36:45 +00:00
|
|
|
return ctx, status.Errorf(
|
|
|
|
codes.InvalidArgument,
|
|
|
|
"Retrieving metadata is failed",
|
|
|
|
)
|
2021-10-29 16:45:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
authHeader, ok := meta["authorization"]
|
2021-10-29 16:45:06 +00:00
|
|
|
if !ok {
|
2021-11-13 08:36:45 +00:00
|
|
|
log.Error().
|
|
|
|
Caller().
|
2021-11-14 19:32:03 +00:00
|
|
|
Str("client_address", client.Addr.String()).
|
2021-11-13 08:36:45 +00:00
|
|
|
Msg("Authorization token is not supplied")
|
2021-11-14 15:46:09 +00:00
|
|
|
|
2021-11-13 08:36:45 +00:00
|
|
|
return ctx, status.Errorf(
|
|
|
|
codes.Unauthenticated,
|
|
|
|
"Authorization token is not supplied",
|
|
|
|
)
|
2021-10-29 16:45:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
token := authHeader[0]
|
|
|
|
|
2021-11-15 17:24:24 +00:00
|
|
|
if !strings.HasPrefix(token, AuthPrefix) {
|
2021-10-29 16:45:06 +00:00
|
|
|
log.Error().
|
|
|
|
Caller().
|
2021-11-14 19:32:03 +00:00
|
|
|
Str("client_address", client.Addr.String()).
|
2021-10-29 16:45:06 +00:00
|
|
|
Msg(`missing "Bearer " prefix in "Authorization" header`)
|
2021-11-14 15:46:09 +00:00
|
|
|
|
2021-11-13 08:36:45 +00:00
|
|
|
return ctx, status.Error(
|
|
|
|
codes.Unauthenticated,
|
|
|
|
`missing "Bearer " prefix in "Authorization" header`,
|
|
|
|
)
|
2021-10-29 16:45:06 +00:00
|
|
|
}
|
|
|
|
|
2022-01-25 22:11:15 +00:00
|
|
|
valid, err := h.ValidateAPIKey(strings.TrimPrefix(token, AuthPrefix))
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Caller().
|
|
|
|
Err(err).
|
|
|
|
Str("client_address", client.Addr.String()).
|
|
|
|
Msg("failed to validate token")
|
|
|
|
|
|
|
|
return ctx, status.Error(codes.Internal, "failed to validate token")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !valid {
|
|
|
|
log.Info().
|
|
|
|
Str("client_address", client.Addr.String()).
|
|
|
|
Msg("invalid token")
|
2021-10-29 16:45:06 +00:00
|
|
|
|
2022-01-25 22:11:15 +00:00
|
|
|
return ctx, status.Error(codes.Unauthenticated, "invalid token")
|
|
|
|
}
|
2021-10-29 16:45:06 +00:00
|
|
|
|
2022-01-25 22:11:15 +00:00
|
|
|
return handler(ctx, req)
|
2021-10-29 16:45:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
func (h *Headscale) httpAuthenticationMiddleware(ctx *gin.Context) {
|
2021-10-29 16:45:06 +00:00
|
|
|
log.Trace().
|
|
|
|
Caller().
|
2021-11-14 19:32:03 +00:00
|
|
|
Str("client_address", ctx.ClientIP()).
|
2021-10-29 16:45:06 +00:00
|
|
|
Msg("HTTP authentication invoked")
|
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
authHeader := ctx.GetHeader("authorization")
|
2021-10-29 16:45:06 +00:00
|
|
|
|
2021-11-15 17:24:24 +00:00
|
|
|
if !strings.HasPrefix(authHeader, AuthPrefix) {
|
2021-10-29 16:45:06 +00:00
|
|
|
log.Error().
|
|
|
|
Caller().
|
2021-11-14 19:32:03 +00:00
|
|
|
Str("client_address", ctx.ClientIP()).
|
2021-10-29 16:45:06 +00:00
|
|
|
Msg(`missing "Bearer " prefix in "Authorization" header`)
|
2021-11-14 19:32:03 +00:00
|
|
|
ctx.AbortWithStatus(http.StatusUnauthorized)
|
2021-10-29 16:45:06 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
ctx.AbortWithStatus(http.StatusUnauthorized)
|
2021-10-29 16:45:06 +00:00
|
|
|
|
2022-01-25 22:11:15 +00:00
|
|
|
valid, err := h.ValidateAPIKey(strings.TrimPrefix(authHeader, AuthPrefix))
|
|
|
|
if err != nil {
|
|
|
|
log.Error().
|
|
|
|
Caller().
|
|
|
|
Err(err).
|
|
|
|
Str("client_address", ctx.ClientIP()).
|
|
|
|
Msg("failed to validate token")
|
|
|
|
|
|
|
|
ctx.AbortWithStatus(http.StatusInternalServerError)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !valid {
|
|
|
|
log.Info().
|
|
|
|
Str("client_address", ctx.ClientIP()).
|
|
|
|
Msg("invalid token")
|
|
|
|
|
|
|
|
ctx.AbortWithStatus(http.StatusUnauthorized)
|
2021-10-29 16:45:06 +00:00
|
|
|
|
2022-01-25 22:11:15 +00:00
|
|
|
return
|
|
|
|
}
|
2021-10-29 16:45:06 +00:00
|
|
|
|
2022-01-25 22:11:15 +00:00
|
|
|
ctx.Next()
|
2021-10-29 16:45:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-07 09:55:32 +00:00
|
|
|
// ensureUnixSocketIsAbsent will check if the given path for headscales unix socket is clear
|
|
|
|
// and will remove it if it is not.
|
|
|
|
func (h *Headscale) ensureUnixSocketIsAbsent() error {
|
|
|
|
// File does not exist, all fine
|
|
|
|
if _, err := os.Stat(h.cfg.UnixSocket); errors.Is(err, os.ErrNotExist) {
|
|
|
|
return nil
|
|
|
|
}
|
2021-11-14 15:46:09 +00:00
|
|
|
|
2021-11-07 09:55:32 +00:00
|
|
|
return os.Remove(h.cfg.UnixSocket)
|
|
|
|
}
|
|
|
|
|
2022-02-21 15:50:15 +00:00
|
|
|
func (h *Headscale) createPrometheusRouter() *gin.Engine {
|
|
|
|
promRouter := gin.Default()
|
2022-02-12 13:25:27 +00:00
|
|
|
|
|
|
|
prometheus := ginprometheus.NewPrometheus("gin")
|
2022-02-21 15:50:15 +00:00
|
|
|
prometheus.Use(promRouter)
|
|
|
|
|
|
|
|
return promRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Headscale) createRouter(grpcMux *runtime.ServeMux) *gin.Engine {
|
|
|
|
router := gin.Default()
|
2022-02-12 13:25:27 +00:00
|
|
|
|
|
|
|
router.GET(
|
|
|
|
"/health",
|
|
|
|
func(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"healthy": "ok"}) },
|
|
|
|
)
|
|
|
|
router.GET("/key", h.KeyHandler)
|
|
|
|
router.GET("/register", h.RegisterWebAPI)
|
|
|
|
router.POST("/machine/:id/map", h.PollNetMapHandler)
|
|
|
|
router.POST("/machine/:id", h.RegistrationHandler)
|
|
|
|
router.GET("/oidc/register/:mkey", h.RegisterOIDC)
|
|
|
|
router.GET("/oidc/callback", h.OIDCCallback)
|
2022-03-04 07:56:54 +00:00
|
|
|
router.GET("/apple", h.AppleConfigMessage)
|
2022-02-12 13:25:27 +00:00
|
|
|
router.GET("/apple/:platform", h.ApplePlatformConfig)
|
2022-03-04 09:37:55 +00:00
|
|
|
router.GET("/windows", h.WindowsConfigMessage)
|
|
|
|
router.GET("/windows/tailscale.reg", h.WindowsRegConfig)
|
2022-02-12 13:25:27 +00:00
|
|
|
router.GET("/swagger", SwaggerUI)
|
|
|
|
router.GET("/swagger/v1/openapiv2.json", SwaggerAPIv1)
|
|
|
|
|
2022-03-05 15:22:02 +00:00
|
|
|
if h.cfg.DERP.ServerEnabled {
|
2022-03-05 18:19:21 +00:00
|
|
|
router.Any("/derp", h.DERPHandler)
|
|
|
|
router.Any("/derp/probe", h.DERPProbeHandler)
|
|
|
|
router.Any("/bootstrap-dns", h.DERPBootstrapDNSHandler)
|
2022-03-03 23:01:31 +00:00
|
|
|
}
|
|
|
|
|
2022-02-12 13:25:27 +00:00
|
|
|
api := router.Group("/api")
|
|
|
|
api.Use(h.httpAuthenticationMiddleware)
|
|
|
|
{
|
|
|
|
api.Any("/v1/*any", gin.WrapF(grpcMux.ServeHTTP))
|
|
|
|
}
|
|
|
|
|
|
|
|
router.NoRoute(stdoutHandler)
|
|
|
|
|
|
|
|
return router
|
|
|
|
}
|
|
|
|
|
2021-10-26 20:42:56 +00:00
|
|
|
// Serve launches a GIN server with the Headscale API.
|
2020-06-21 10:32:08 +00:00
|
|
|
func (h *Headscale) Serve() error {
|
2021-10-26 20:42:56 +00:00
|
|
|
var err error
|
|
|
|
|
2022-03-05 15:22:02 +00:00
|
|
|
if h.cfg.DERP.ServerEnabled {
|
2022-03-03 23:01:31 +00:00
|
|
|
go h.ServeSTUN()
|
|
|
|
} else {
|
|
|
|
// Fetch an initial DERP Map before we start serving
|
|
|
|
h.DERPMap = GetDERPMap(h.cfg.DERP)
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2022-03-03 23:01:31 +00:00
|
|
|
if h.cfg.DERP.AutoUpdate {
|
|
|
|
derpMapCancelChannel := make(chan struct{})
|
|
|
|
defer func() { derpMapCancelChannel <- struct{}{} }()
|
|
|
|
go h.scheduledDERPMapUpdateWorker(derpMapCancelChannel)
|
|
|
|
}
|
2022-02-12 13:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
go h.expireEphemeralNodes(updateInterval)
|
|
|
|
|
|
|
|
if zl.GlobalLevel() == zl.TraceLevel {
|
|
|
|
zerolog.RespLog = true
|
|
|
|
} else {
|
|
|
|
zerolog.RespLog = false
|
|
|
|
}
|
|
|
|
|
2022-02-12 17:05:30 +00:00
|
|
|
// Prepare group for running listeners
|
|
|
|
errorGroup := new(errgroup.Group)
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
defer cancel()
|
|
|
|
|
2022-02-12 13:25:27 +00:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Set up LOCAL listeners
|
|
|
|
//
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2021-11-07 09:55:32 +00:00
|
|
|
err = h.ensureUnixSocketIsAbsent()
|
|
|
|
if err != nil {
|
2021-12-07 07:46:55 +00:00
|
|
|
return fmt.Errorf("unable to remove old socket file: %w", err)
|
2021-11-07 09:55:32 +00:00
|
|
|
}
|
|
|
|
|
2021-10-30 14:08:16 +00:00
|
|
|
socketListener, err := net.Listen("unix", h.cfg.UnixSocket)
|
|
|
|
if err != nil {
|
2021-12-07 10:44:00 +00:00
|
|
|
return fmt.Errorf("failed to set up gRPC socket: %w", err)
|
2021-10-30 14:08:16 +00:00
|
|
|
}
|
|
|
|
|
2022-01-28 18:58:22 +00:00
|
|
|
// Change socket permissions
|
|
|
|
if err := os.Chmod(h.cfg.UnixSocket, h.cfg.UnixSocketPermission); err != nil {
|
|
|
|
return fmt.Errorf("failed change permission of gRPC socket: %w", err)
|
|
|
|
}
|
|
|
|
|
2021-11-02 21:46:15 +00:00
|
|
|
// Handle common process-killing signals so we can gracefully shut down:
|
|
|
|
sigc := make(chan os.Signal, 1)
|
2021-11-02 21:49:19 +00:00
|
|
|
signal.Notify(sigc, os.Interrupt, syscall.SIGTERM)
|
2021-11-02 21:46:15 +00:00
|
|
|
go func(c chan os.Signal) {
|
|
|
|
// Wait for a SIGINT or SIGKILL:
|
|
|
|
sig := <-c
|
|
|
|
log.Printf("Caught signal %s: shutting down.", sig)
|
|
|
|
// Stop listening (and unlink the socket if unix type):
|
|
|
|
socketListener.Close()
|
|
|
|
// And we're done:
|
|
|
|
os.Exit(0)
|
|
|
|
}(sigc)
|
|
|
|
|
2021-10-26 20:42:56 +00:00
|
|
|
grpcGatewayMux := runtime.NewServeMux()
|
|
|
|
|
2021-10-30 14:08:16 +00:00
|
|
|
// Make the grpc-gateway connect to grpc over socket
|
|
|
|
grpcGatewayConn, err := grpc.Dial(
|
|
|
|
h.cfg.UnixSocket,
|
|
|
|
[]grpc.DialOption{
|
2022-02-12 19:48:05 +00:00
|
|
|
grpc.WithTransportCredentials(insecure.NewCredentials()),
|
2021-10-30 14:29:03 +00:00
|
|
|
grpc.WithContextDialer(GrpcSocketDialer),
|
2021-10-30 14:08:16 +00:00
|
|
|
}...,
|
|
|
|
)
|
2021-10-29 16:45:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2021-10-29 16:45:06 +00:00
|
|
|
// Connect to the gRPC server over localhost to skip
|
|
|
|
// the authentication.
|
2021-11-04 22:18:55 +00:00
|
|
|
err = v1.RegisterHeadscaleServiceHandler(ctx, grpcGatewayMux, grpcGatewayConn)
|
2021-10-26 20:42:56 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-10-31 19:52:34 +00:00
|
|
|
// Start the local gRPC server without TLS and without authentication
|
2021-11-04 22:18:55 +00:00
|
|
|
grpcSocket := grpc.NewServer(zerolog.UnaryInterceptor())
|
2021-10-31 19:52:34 +00:00
|
|
|
|
2021-11-04 22:18:55 +00:00
|
|
|
v1.RegisterHeadscaleServiceServer(grpcSocket, newHeadscaleV1APIServer(h))
|
2021-10-31 19:52:34 +00:00
|
|
|
reflection.Register(grpcSocket)
|
2021-10-29 16:45:06 +00:00
|
|
|
|
2022-02-12 17:05:30 +00:00
|
|
|
errorGroup.Go(func() error { return grpcSocket.Serve(socketListener) })
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Set up REMOTE listeners
|
|
|
|
//
|
|
|
|
|
|
|
|
tlsConfig, err := h.getTLSSettings()
|
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("Failed to set up TLS configuration")
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// gRPC setup
|
|
|
|
//
|
|
|
|
|
2022-02-12 19:48:05 +00:00
|
|
|
// We are sadly not able to run gRPC and HTTPS (2.0) on the same
|
|
|
|
// port because the connection mux does not support matching them
|
|
|
|
// since they are so similar. There is multiple issues open and we
|
|
|
|
// can revisit this if changes:
|
|
|
|
// https://github.com/soheilhy/cmux/issues/68
|
|
|
|
// https://github.com/soheilhy/cmux/issues/91
|
|
|
|
|
2022-02-13 09:08:46 +00:00
|
|
|
if tlsConfig != nil || h.cfg.GRPCAllowInsecure {
|
2022-02-12 17:05:30 +00:00
|
|
|
log.Info().Msgf("Enabling remote gRPC at %s", h.cfg.GRPCAddr)
|
|
|
|
|
|
|
|
grpcOptions := []grpc.ServerOption{
|
|
|
|
grpc.UnaryInterceptor(
|
|
|
|
grpc_middleware.ChainUnaryServer(
|
|
|
|
h.grpcAuthenticationInterceptor,
|
|
|
|
zerolog.NewUnaryServerInterceptor(),
|
|
|
|
),
|
|
|
|
),
|
2022-02-13 09:08:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if tlsConfig != nil {
|
|
|
|
grpcOptions = append(grpcOptions,
|
|
|
|
grpc.Creds(credentials.NewTLS(tlsConfig)),
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
log.Warn().Msg("gRPC is running without security")
|
2022-02-12 17:05:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
grpcServer := grpc.NewServer(grpcOptions...)
|
|
|
|
|
|
|
|
v1.RegisterHeadscaleServiceServer(grpcServer, newHeadscaleV1APIServer(h))
|
|
|
|
reflection.Register(grpcServer)
|
|
|
|
|
2022-02-13 09:08:46 +00:00
|
|
|
grpcListener, err := net.Listen("tcp", h.cfg.GRPCAddr)
|
2022-02-12 17:05:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to bind to TCP address: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
errorGroup.Go(func() error { return grpcServer.Serve(grpcListener) })
|
2022-02-12 19:30:25 +00:00
|
|
|
|
|
|
|
log.Info().
|
|
|
|
Msgf("listening and serving gRPC on: %s", h.cfg.GRPCAddr)
|
2022-02-12 16:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// HTTP setup
|
|
|
|
//
|
|
|
|
|
|
|
|
router := h.createRouter(grpcGatewayMux)
|
|
|
|
|
|
|
|
httpServer := &http.Server{
|
|
|
|
Addr: h.cfg.Addr,
|
|
|
|
Handler: router,
|
|
|
|
ReadTimeout: HTTPReadTimeout,
|
|
|
|
// Go does not handle timeouts in HTTP very well, and there is
|
|
|
|
// no good way to handle streaming timeouts, therefore we need to
|
|
|
|
// keep this at unlimited and be careful to clean up connections
|
|
|
|
// https://blog.cloudflare.com/the-complete-guide-to-golang-net-http-timeouts/#aboutstreaming
|
|
|
|
WriteTimeout: 0,
|
|
|
|
}
|
|
|
|
|
2022-02-12 16:33:18 +00:00
|
|
|
var httpListener net.Listener
|
2022-02-12 16:15:26 +00:00
|
|
|
if tlsConfig != nil {
|
|
|
|
httpServer.TLSConfig = tlsConfig
|
2022-02-12 16:33:18 +00:00
|
|
|
httpListener, err = tls.Listen("tcp", h.cfg.Addr, tlsConfig)
|
|
|
|
} else {
|
|
|
|
httpListener, err = net.Listen("tcp", h.cfg.Addr)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to bind to TCP address: %w", err)
|
2022-02-12 16:15:26 +00:00
|
|
|
}
|
|
|
|
|
2022-02-12 16:33:18 +00:00
|
|
|
errorGroup.Go(func() error { return httpServer.Serve(httpListener) })
|
2022-02-12 13:25:27 +00:00
|
|
|
|
2021-11-13 08:36:45 +00:00
|
|
|
log.Info().
|
2022-02-12 19:30:25 +00:00
|
|
|
Msgf("listening and serving HTTP on: %s", h.cfg.Addr)
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2022-02-28 13:40:02 +00:00
|
|
|
promRouter := h.createPrometheusRouter()
|
2022-02-21 15:50:15 +00:00
|
|
|
|
2022-02-28 13:40:02 +00:00
|
|
|
promHTTPServer := &http.Server{
|
|
|
|
Addr: h.cfg.MetricsAddr,
|
|
|
|
Handler: promRouter,
|
|
|
|
ReadTimeout: HTTPReadTimeout,
|
|
|
|
WriteTimeout: 0,
|
|
|
|
}
|
2022-02-21 15:50:15 +00:00
|
|
|
|
2022-02-28 13:40:02 +00:00
|
|
|
var promHTTPListener net.Listener
|
|
|
|
promHTTPListener, err = net.Listen("tcp", h.cfg.MetricsAddr)
|
2022-02-21 15:50:15 +00:00
|
|
|
|
2022-02-28 13:40:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to bind to TCP address: %w", err)
|
|
|
|
}
|
2022-02-21 15:50:15 +00:00
|
|
|
|
2022-02-28 13:40:02 +00:00
|
|
|
errorGroup.Go(func() error { return promHTTPServer.Serve(promHTTPListener) })
|
2022-02-21 15:50:15 +00:00
|
|
|
|
2022-02-28 13:40:02 +00:00
|
|
|
log.Info().
|
|
|
|
Msgf("listening and serving metrics on: %s", h.cfg.MetricsAddr)
|
2022-02-21 15:50:15 +00:00
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
return errorGroup.Wait()
|
2021-10-26 20:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Headscale) getTLSSettings() (*tls.Config, error) {
|
2021-11-14 16:51:34 +00:00
|
|
|
var err error
|
2021-04-24 02:54:15 +00:00
|
|
|
if h.cfg.TLSLetsEncryptHostname != "" {
|
|
|
|
if !strings.HasPrefix(h.cfg.ServerURL, "https://") {
|
2021-11-13 08:36:45 +00:00
|
|
|
log.Warn().
|
|
|
|
Msg("Listening with TLS but ServerURL does not start with https://")
|
2021-04-24 02:54:15 +00:00
|
|
|
}
|
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
certManager := autocert.Manager{
|
2021-04-24 02:54:15 +00:00
|
|
|
Prompt: autocert.AcceptTOS,
|
|
|
|
HostPolicy: autocert.HostWhitelist(h.cfg.TLSLetsEncryptHostname),
|
|
|
|
Cache: autocert.DirCache(h.cfg.TLSLetsEncryptCacheDir),
|
2021-10-03 18:26:38 +00:00
|
|
|
Client: &acme.Client{
|
|
|
|
DirectoryURL: h.cfg.ACMEURL,
|
|
|
|
},
|
|
|
|
Email: h.cfg.ACMEEmail,
|
2021-04-24 02:54:15 +00:00
|
|
|
}
|
2021-10-02 14:29:27 +00:00
|
|
|
|
2021-11-14 17:44:37 +00:00
|
|
|
switch h.cfg.TLSLetsEncryptChallengeType {
|
|
|
|
case "TLS-ALPN-01":
|
2021-04-24 02:54:15 +00:00
|
|
|
// Configuration via autocert with TLS-ALPN-01 (https://tools.ietf.org/html/rfc8737)
|
|
|
|
// The RFC requires that the validation is done on port 443; in other words, headscale
|
2021-07-24 13:01:20 +00:00
|
|
|
// must be reachable on port 443.
|
2021-11-14 19:32:03 +00:00
|
|
|
return certManager.TLSConfig(), nil
|
2021-11-14 17:44:37 +00:00
|
|
|
|
|
|
|
case "HTTP-01":
|
2021-04-24 02:54:15 +00:00
|
|
|
// Configuration via autocert with HTTP-01. This requires listening on
|
|
|
|
// port 80 for the certificate validation in addition to the headscale
|
|
|
|
// service, which can be configured to run on any other port.
|
|
|
|
go func() {
|
2021-08-05 17:11:26 +00:00
|
|
|
log.Fatal().
|
2022-01-25 22:11:15 +00:00
|
|
|
Caller().
|
2021-11-14 19:32:03 +00:00
|
|
|
Err(http.ListenAndServe(h.cfg.TLSLetsEncryptListen, certManager.HTTPHandler(http.HandlerFunc(h.redirect)))).
|
2021-08-05 17:11:26 +00:00
|
|
|
Msg("failed to set up a HTTP server")
|
2021-04-24 02:54:15 +00:00
|
|
|
}()
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
return certManager.TLSConfig(), nil
|
2021-11-14 17:44:37 +00:00
|
|
|
|
|
|
|
default:
|
2021-11-15 19:18:14 +00:00
|
|
|
return nil, errUnsupportedLetsEncryptChallengeType
|
2021-04-24 02:54:15 +00:00
|
|
|
}
|
|
|
|
} else if h.cfg.TLSCertPath == "" {
|
2021-04-23 20:54:35 +00:00
|
|
|
if !strings.HasPrefix(h.cfg.ServerURL, "http://") {
|
2021-08-05 17:11:26 +00:00
|
|
|
log.Warn().Msg("Listening without TLS but ServerURL does not start with http://")
|
2021-04-23 20:54:35 +00:00
|
|
|
}
|
2021-10-26 20:42:56 +00:00
|
|
|
|
2021-11-14 16:51:34 +00:00
|
|
|
return nil, err
|
2021-04-23 20:54:35 +00:00
|
|
|
} else {
|
|
|
|
if !strings.HasPrefix(h.cfg.ServerURL, "https://") {
|
2021-08-05 17:11:26 +00:00
|
|
|
log.Warn().Msg("Listening with TLS but ServerURL does not start with https://")
|
2021-04-23 20:54:35 +00:00
|
|
|
}
|
2022-01-29 17:59:31 +00:00
|
|
|
|
2022-01-29 19:15:33 +00:00
|
|
|
log.Info().Msg(fmt.Sprintf(
|
|
|
|
"Client authentication (mTLS) is \"%s\". See the docs to learn about configuring this setting.",
|
|
|
|
h.cfg.TLSClientAuthMode))
|
2022-01-29 18:35:08 +00:00
|
|
|
|
2021-11-15 18:31:52 +00:00
|
|
|
tlsConfig := &tls.Config{
|
2022-02-20 14:06:14 +00:00
|
|
|
ClientAuth: h.cfg.TLSClientAuthMode,
|
2021-11-15 18:31:52 +00:00
|
|
|
NextProtos: []string{"http/1.1"},
|
|
|
|
Certificates: make([]tls.Certificate, 1),
|
|
|
|
MinVersion: tls.VersionTLS12,
|
|
|
|
}
|
2022-01-29 17:59:31 +00:00
|
|
|
|
2021-10-26 20:42:56 +00:00
|
|
|
tlsConfig.Certificates[0], err = tls.LoadX509KeyPair(h.cfg.TLSCertPath, h.cfg.TLSKeyPath)
|
|
|
|
|
|
|
|
return tlsConfig, err
|
2021-04-23 20:54:35 +00:00
|
|
|
}
|
2020-06-21 10:32:08 +00:00
|
|
|
}
|
2021-08-18 22:21:11 +00:00
|
|
|
|
2021-08-19 17:19:26 +00:00
|
|
|
func (h *Headscale) setLastStateChangeToNow(namespace string) {
|
2021-08-18 22:21:11 +00:00
|
|
|
now := time.Now().UTC()
|
2021-10-04 16:28:07 +00:00
|
|
|
lastStateUpdate.WithLabelValues("", "headscale").Set(float64(now.Unix()))
|
2021-08-19 17:19:26 +00:00
|
|
|
h.lastStateChange.Store(namespace, now)
|
2021-08-18 22:21:11 +00:00
|
|
|
}
|
|
|
|
|
2021-10-06 22:06:07 +00:00
|
|
|
func (h *Headscale) getLastStateChange(namespaces ...string) time.Time {
|
|
|
|
times := []time.Time{}
|
|
|
|
|
|
|
|
for _, namespace := range namespaces {
|
|
|
|
if wrapped, ok := h.lastStateChange.Load(namespace); ok {
|
|
|
|
lastChange, _ := wrapped.(time.Time)
|
|
|
|
|
|
|
|
times = append(times, lastChange)
|
|
|
|
}
|
2021-08-19 17:19:26 +00:00
|
|
|
}
|
|
|
|
|
2021-10-06 22:06:07 +00:00
|
|
|
sort.Slice(times, func(i, j int) bool {
|
|
|
|
return times[i].After(times[j])
|
|
|
|
})
|
|
|
|
|
|
|
|
log.Trace().Msgf("Latest times %#v", times)
|
|
|
|
|
|
|
|
if len(times) == 0 {
|
|
|
|
return time.Now().UTC()
|
|
|
|
} else {
|
|
|
|
return times[0]
|
|
|
|
}
|
2021-08-18 22:21:11 +00:00
|
|
|
}
|
2021-10-29 16:45:06 +00:00
|
|
|
|
2021-11-14 19:32:03 +00:00
|
|
|
func stdoutHandler(ctx *gin.Context) {
|
|
|
|
body, _ := io.ReadAll(ctx.Request.Body)
|
2021-10-29 16:45:06 +00:00
|
|
|
|
|
|
|
log.Trace().
|
2021-11-14 19:32:03 +00:00
|
|
|
Interface("header", ctx.Request.Header).
|
|
|
|
Interface("proto", ctx.Request.Proto).
|
|
|
|
Interface("url", ctx.Request.URL).
|
|
|
|
Bytes("body", body).
|
2021-10-29 16:45:06 +00:00
|
|
|
Msg("Request did not match")
|
|
|
|
}
|
2021-11-28 09:17:18 +00:00
|
|
|
|
|
|
|
func readOrCreatePrivateKey(path string) (*key.MachinePrivate, error) {
|
|
|
|
privateKey, err := os.ReadFile(path)
|
|
|
|
if errors.Is(err, os.ErrNotExist) {
|
|
|
|
log.Info().Str("path", path).Msg("No private key file at path, creating...")
|
|
|
|
|
|
|
|
machineKey := key.NewMachine()
|
|
|
|
|
|
|
|
machineKeyStr, err := machineKey.MarshalText()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"failed to convert private key to string for saving: %w",
|
|
|
|
err,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
err = os.WriteFile(path, machineKeyStr, privateKeyFileMode)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"failed to save private key to disk: %w",
|
|
|
|
err,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &machineKey, nil
|
|
|
|
} else if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to read private key file: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-01-28 17:23:01 +00:00
|
|
|
trimmedPrivateKey := strings.TrimSpace(string(privateKey))
|
|
|
|
privateKeyEnsurePrefix := PrivateKeyEnsurePrefix(trimmedPrivateKey)
|
2021-11-28 09:17:18 +00:00
|
|
|
|
|
|
|
var machineKey key.MachinePrivate
|
|
|
|
if err = machineKey.UnmarshalText([]byte(privateKeyEnsurePrefix)); err != nil {
|
|
|
|
log.Info().
|
|
|
|
Str("path", path).
|
|
|
|
Msg("This might be due to a legacy (headscale pre-0.12) private key. " +
|
|
|
|
"If the key is in WireGuard format, delete the key and restart headscale. " +
|
|
|
|
"A new key will automatically be generated. All Tailscale clients will have to be restarted")
|
|
|
|
|
|
|
|
return nil, fmt.Errorf("failed to parse private key: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &machineKey, nil
|
|
|
|
}
|