2020-06-21 18:32:08 +08:00
|
|
|
// Codehere is mostly taken from github.com/tailscale/tailscale
|
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package headscale
|
|
|
|
|
|
|
|
import (
|
2021-10-30 22:29:03 +08:00
|
|
|
"context"
|
2020-06-21 18:32:08 +08:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2021-10-30 22:29:03 +08:00
|
|
|
"net"
|
2021-08-13 17:33:19 +08:00
|
|
|
"strings"
|
2020-06-21 18:32:08 +08:00
|
|
|
|
2021-11-27 07:30:42 +08:00
|
|
|
"github.com/rs/zerolog/log"
|
2021-08-03 03:06:26 +08:00
|
|
|
"inet.af/netaddr"
|
2021-08-13 17:33:19 +08:00
|
|
|
"tailscale.com/tailcfg"
|
2021-11-27 07:30:42 +08:00
|
|
|
"tailscale.com/types/key"
|
2020-06-21 18:32:08 +08:00
|
|
|
)
|
|
|
|
|
2021-11-16 03:18:14 +08:00
|
|
|
const (
|
|
|
|
errCannotDecryptReponse = Error("cannot decrypt response")
|
|
|
|
errCouldNotAllocateIP = Error("could not find any suitable IP")
|
2021-11-27 07:30:42 +08:00
|
|
|
|
|
|
|
// These constants are copied from the upstream tailscale.com/types/key
|
|
|
|
// library, because they are not exported.
|
|
|
|
// https://github.com/tailscale/tailscale/tree/main/types/key
|
|
|
|
|
|
|
|
// nodePublicHexPrefix is the prefix used to identify a
|
|
|
|
// hex-encoded node public key.
|
|
|
|
//
|
|
|
|
// This prefix is used in the control protocol, so cannot be
|
|
|
|
// changed.
|
|
|
|
nodePublicHexPrefix = "nodekey:"
|
|
|
|
|
|
|
|
// machinePublicHexPrefix is the prefix used to identify a
|
|
|
|
// hex-encoded machine public key.
|
|
|
|
//
|
|
|
|
// This prefix is used in the control protocol, so cannot be
|
|
|
|
// changed.
|
|
|
|
machinePublicHexPrefix = "mkey:"
|
|
|
|
|
|
|
|
// discoPublicHexPrefix is the prefix used to identify a
|
|
|
|
// hex-encoded disco public key.
|
|
|
|
//
|
|
|
|
// This prefix is used in the control protocol, so cannot be
|
|
|
|
// changed.
|
|
|
|
discoPublicHexPrefix = "discokey:"
|
2021-11-16 03:18:14 +08:00
|
|
|
)
|
|
|
|
|
2021-11-27 07:30:42 +08:00
|
|
|
func MachinePublicKeyStripPrefix(machineKey key.MachinePublic) string {
|
|
|
|
return strings.TrimPrefix(machineKey.String(), machinePublicHexPrefix)
|
|
|
|
}
|
|
|
|
|
|
|
|
func NodePublicKeyStripPrefix(nodeKey key.NodePublic) string {
|
|
|
|
return strings.TrimPrefix(nodeKey.String(), nodePublicHexPrefix)
|
|
|
|
}
|
|
|
|
|
|
|
|
func DiscoPublicKeyStripPrefix(discoKey key.DiscoPublic) string {
|
|
|
|
return strings.TrimPrefix(discoKey.String(), discoPublicHexPrefix)
|
|
|
|
}
|
|
|
|
|
2021-05-06 07:01:45 +08:00
|
|
|
// Error is used to compare errors as per https://dave.cheney.net/2016/04/07/constant-errors
|
2021-05-06 05:00:04 +08:00
|
|
|
type Error string
|
|
|
|
|
|
|
|
func (e Error) Error() string { return string(e) }
|
|
|
|
|
2021-11-13 16:36:45 +08:00
|
|
|
func decode(
|
|
|
|
msg []byte,
|
2021-11-15 03:32:03 +08:00
|
|
|
output interface{},
|
2021-11-27 07:30:42 +08:00
|
|
|
pubKey *key.MachinePublic,
|
|
|
|
privKey *key.MachinePrivate,
|
2021-11-13 16:36:45 +08:00
|
|
|
) error {
|
2021-11-27 07:30:42 +08:00
|
|
|
log.Trace().Int("length", len(msg)).Msg("Trying to decrypt")
|
|
|
|
|
|
|
|
decrypted, ok := privKey.OpenFrom(*pubKey, msg)
|
|
|
|
if !ok {
|
|
|
|
return errCannotDecryptReponse
|
2020-06-21 18:32:08 +08:00
|
|
|
}
|
2021-11-27 07:30:42 +08:00
|
|
|
|
2021-11-15 03:32:03 +08:00
|
|
|
if err := json.Unmarshal(decrypted, output); err != nil {
|
2021-11-16 03:18:14 +08:00
|
|
|
return err
|
2020-06-21 18:32:08 +08:00
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2020-06-21 18:32:08 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-27 07:30:42 +08:00
|
|
|
func encode(
|
|
|
|
v interface{},
|
|
|
|
pubKey *key.MachinePublic,
|
|
|
|
privKey *key.MachinePrivate,
|
|
|
|
) ([]byte, error) {
|
2020-06-21 18:32:08 +08:00
|
|
|
b, err := json.Marshal(v)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-08-13 17:33:19 +08:00
|
|
|
|
2021-11-27 07:30:42 +08:00
|
|
|
return privKey.SealTo(*pubKey, b), nil
|
2020-06-21 18:32:08 +08:00
|
|
|
}
|
|
|
|
|
2021-08-03 04:57:45 +08:00
|
|
|
func (h *Headscale) getAvailableIP() (*netaddr.IP, error) {
|
|
|
|
ipPrefix := h.cfg.IPPrefix
|
|
|
|
|
|
|
|
usedIps, err := h.getUsedIPs()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the first IP in our prefix
|
|
|
|
ip := ipPrefix.IP()
|
|
|
|
|
2020-06-21 18:32:08 +08:00
|
|
|
for {
|
2021-08-03 04:57:45 +08:00
|
|
|
if !ipPrefix.Contains(ip) {
|
2021-11-16 03:18:14 +08:00
|
|
|
return nil, errCouldNotAllocateIP
|
2020-06-21 18:32:08 +08:00
|
|
|
}
|
2021-08-03 04:57:45 +08:00
|
|
|
|
2021-08-03 17:06:42 +08:00
|
|
|
// Some OS (including Linux) does not like when IPs ends with 0 or 255, which
|
|
|
|
// is typically called network or broadcast. Lets avoid them and continue
|
|
|
|
// to look when we get one of those traditionally reserved IPs.
|
|
|
|
ipRaw := ip.As4()
|
|
|
|
if ipRaw[3] == 0 || ipRaw[3] == 255 {
|
|
|
|
ip = ip.Next()
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-08-03 17:06:42 +08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-08-03 04:57:45 +08:00
|
|
|
if ip.IsZero() &&
|
|
|
|
ip.IsLoopback() {
|
2021-08-03 17:06:42 +08:00
|
|
|
ip = ip.Next()
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-08-03 04:57:45 +08:00
|
|
|
continue
|
2020-06-21 18:32:08 +08:00
|
|
|
}
|
2021-08-03 04:57:45 +08:00
|
|
|
|
|
|
|
if !containsIPs(usedIps, ip) {
|
|
|
|
return &ip, nil
|
2020-06-21 18:32:08 +08:00
|
|
|
}
|
2021-08-03 04:57:45 +08:00
|
|
|
|
|
|
|
ip = ip.Next()
|
2020-06-21 18:32:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-03 04:57:45 +08:00
|
|
|
func (h *Headscale) getUsedIPs() ([]netaddr.IP, error) {
|
|
|
|
var addresses []string
|
|
|
|
h.db.Model(&Machine{}).Pluck("ip_address", &addresses)
|
|
|
|
|
|
|
|
ips := make([]netaddr.IP, len(addresses))
|
|
|
|
for index, addr := range addresses {
|
2021-08-03 14:42:11 +08:00
|
|
|
if addr != "" {
|
|
|
|
ip, err := netaddr.ParseIP(addr)
|
|
|
|
if err != nil {
|
2021-11-16 03:18:14 +08:00
|
|
|
return nil, fmt.Errorf("failed to parse ip from database: %w", err)
|
2021-08-03 14:42:11 +08:00
|
|
|
}
|
2021-08-03 04:57:45 +08:00
|
|
|
|
2021-08-03 14:42:11 +08:00
|
|
|
ips[index] = ip
|
|
|
|
}
|
2021-08-03 04:57:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return ips, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func containsIPs(ips []netaddr.IP, ip netaddr.IP) bool {
|
|
|
|
for _, v := range ips {
|
|
|
|
if v == ip {
|
|
|
|
return true
|
2020-06-21 18:32:08 +08:00
|
|
|
}
|
|
|
|
}
|
2021-02-22 05:11:27 +08:00
|
|
|
|
2021-08-03 04:57:45 +08:00
|
|
|
return false
|
2020-06-21 18:32:08 +08:00
|
|
|
}
|
2021-08-13 17:33:19 +08:00
|
|
|
|
|
|
|
func tailNodesToString(nodes []*tailcfg.Node) string {
|
|
|
|
temp := make([]string, len(nodes))
|
|
|
|
|
|
|
|
for index, node := range nodes {
|
|
|
|
temp[index] = node.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf("[ %s ](%d)", strings.Join(temp, ", "), len(temp))
|
|
|
|
}
|
|
|
|
|
|
|
|
func tailMapResponseToString(resp tailcfg.MapResponse) string {
|
2021-11-13 16:36:45 +08:00
|
|
|
return fmt.Sprintf(
|
|
|
|
"{ Node: %s, Peers: %s }",
|
|
|
|
resp.Node.Name,
|
|
|
|
tailNodesToString(resp.Peers),
|
|
|
|
)
|
2021-08-13 17:33:19 +08:00
|
|
|
}
|
2021-10-30 22:29:03 +08:00
|
|
|
|
|
|
|
func GrpcSocketDialer(ctx context.Context, addr string) (net.Conn, error) {
|
|
|
|
var d net.Dialer
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-10-30 22:29:03 +08:00
|
|
|
return d.DialContext(ctx, "unix", addr)
|
|
|
|
}
|
2021-11-05 06:17:44 +08:00
|
|
|
|
|
|
|
func ipPrefixToString(prefixes []netaddr.IPPrefix) []string {
|
|
|
|
result := make([]string, len(prefixes))
|
|
|
|
|
|
|
|
for index, prefix := range prefixes {
|
|
|
|
result[index] = prefix.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2021-11-16 01:24:24 +08:00
|
|
|
func stringToIPPrefix(prefixes []string) ([]netaddr.IPPrefix, error) {
|
2021-11-05 06:17:44 +08:00
|
|
|
result := make([]netaddr.IPPrefix, len(prefixes))
|
|
|
|
|
|
|
|
for index, prefixStr := range prefixes {
|
|
|
|
prefix, err := netaddr.ParseIPPrefix(prefixStr)
|
|
|
|
if err != nil {
|
|
|
|
return []netaddr.IPPrefix{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
result[index] = prefix
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2021-11-16 01:24:24 +08:00
|
|
|
func containsIPPrefix(prefixes []netaddr.IPPrefix, prefix netaddr.IPPrefix) bool {
|
2021-11-05 06:17:44 +08:00
|
|
|
for _, p := range prefixes {
|
|
|
|
if prefix == p {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|