headscale/acls.go

306 lines
6.3 KiB
Go
Raw Normal View History

2021-07-03 17:55:32 +08:00
package headscale
import (
"encoding/json"
2021-07-03 23:31:32 +08:00
"fmt"
2021-07-03 17:55:32 +08:00
"io"
"os"
"strconv"
2021-07-03 23:31:32 +08:00
"strings"
2021-07-03 17:55:32 +08:00
2021-08-06 01:18:18 +08:00
"github.com/rs/zerolog/log"
2021-07-03 17:55:32 +08:00
"github.com/tailscale/hujson"
2021-07-03 23:31:32 +08:00
"inet.af/netaddr"
"tailscale.com/tailcfg"
2021-07-03 17:55:32 +08:00
)
const (
2021-11-16 00:33:16 +08:00
errEmptyPolicy = Error("empty policy")
errInvalidAction = Error("invalid action")
errInvalidUserSection = Error("invalid user section")
errInvalidGroup = Error("invalid group")
errInvalidTag = Error("invalid tag")
errInvalidNamespace = Error("invalid namespace")
errInvalidPortFormat = Error("invalid port format")
)
2021-07-03 17:55:32 +08:00
const (
Base10 = 10
BitSize16 = 16
portRangeBegin = 0
portRangeEnd = 65535
expectedTokenItems = 2
)
2021-11-13 16:39:04 +08:00
// LoadACLPolicy loads the ACL policy from the specify path, and generates the ACL rules.
2021-07-04 19:33:00 +08:00
func (h *Headscale) LoadACLPolicy(path string) error {
log.Debug().
Str("func", "LoadACLPolicy").
Str("path", path).
Msg("Loading ACL policy from path")
2021-07-03 17:55:32 +08:00
policyFile, err := os.Open(path)
if err != nil {
2021-07-03 23:31:32 +08:00
return err
2021-07-03 17:55:32 +08:00
}
defer policyFile.Close()
var policy ACLPolicy
policyBytes, err := io.ReadAll(policyFile)
2021-07-03 17:55:32 +08:00
if err != nil {
2021-07-03 23:31:32 +08:00
return err
2021-07-03 17:55:32 +08:00
}
2021-11-05 15:24:00 +08:00
ast, err := hujson.Parse(policyBytes)
2021-11-05 15:24:00 +08:00
if err != nil {
return err
}
ast.Standardize()
policyBytes = ast.Pack()
err = json.Unmarshal(policyBytes, &policy)
2021-07-04 19:33:00 +08:00
if err != nil {
return err
}
2021-07-03 17:55:32 +08:00
if policy.IsZero() {
2021-11-16 00:33:16 +08:00
return errEmptyPolicy
2021-07-03 17:55:32 +08:00
}
2021-07-03 23:31:32 +08:00
h.aclPolicy = &policy
2021-07-04 19:24:05 +08:00
rules, err := h.generateACLRules()
if err != nil {
return err
}
h.aclRules = rules
2021-11-14 23:46:09 +08:00
log.Trace().Interface("ACL", rules).Msg("ACL rules generated")
2021-07-04 19:24:05 +08:00
return nil
2021-07-03 23:31:32 +08:00
}
func (h *Headscale) generateACLRules() ([]tailcfg.FilterRule, error) {
2021-07-03 23:31:32 +08:00
rules := []tailcfg.FilterRule{}
for index, acl := range h.aclPolicy.ACLs {
if acl.Action != "accept" {
2021-11-16 00:33:16 +08:00
return nil, errInvalidAction
2021-07-03 23:31:32 +08:00
}
filterRule := tailcfg.FilterRule{}
2021-07-03 23:31:32 +08:00
srcIPs := []string{}
for innerIndex, user := range acl.Users {
srcs, err := h.generateACLPolicySrcIP(user)
2021-07-03 23:31:32 +08:00
if err != nil {
2021-08-06 01:18:18 +08:00
log.Error().
Msgf("Error parsing ACL %d, User %d", index, innerIndex)
2021-11-14 23:46:09 +08:00
2021-07-03 23:31:32 +08:00
return nil, err
}
srcIPs = append(srcIPs, srcs...)
2021-07-03 23:31:32 +08:00
}
filterRule.SrcIPs = srcIPs
2021-07-03 23:31:32 +08:00
destPorts := []tailcfg.NetPortRange{}
for innerIndex, ports := range acl.Ports {
dests, err := h.generateACLPolicyDestPorts(ports)
if err != nil {
2021-08-06 01:18:18 +08:00
log.Error().
Msgf("Error parsing ACL %d, Port %d", index, innerIndex)
2021-11-14 23:46:09 +08:00
return nil, err
}
destPorts = append(destPorts, dests...)
}
rules = append(rules, tailcfg.FilterRule{
SrcIPs: srcIPs,
DstPorts: destPorts,
})
2021-07-03 23:31:32 +08:00
}
return rules, nil
2021-07-03 23:31:32 +08:00
}
func (h *Headscale) generateACLPolicySrcIP(u string) ([]string, error) {
return h.expandAlias(u)
}
2021-11-13 16:36:45 +08:00
func (h *Headscale) generateACLPolicyDestPorts(
d string,
) ([]tailcfg.NetPortRange, error) {
tokens := strings.Split(d, ":")
if len(tokens) < expectedTokenItems || len(tokens) > 3 {
2021-11-16 00:33:16 +08:00
return nil, errInvalidPortFormat
}
var alias string
// We can have here stuff like:
// git-server:*
// 192.168.1.0/24:22
// tag:montreal-webserver:80,443
// tag:api-server:443
// example-host-1:*
if len(tokens) == expectedTokenItems {
alias = tokens[0]
} else {
alias = fmt.Sprintf("%s:%s", tokens[0], tokens[1])
}
expanded, err := h.expandAlias(alias)
if err != nil {
return nil, err
}
ports, err := h.expandPorts(tokens[len(tokens)-1])
if err != nil {
return nil, err
}
dests := []tailcfg.NetPortRange{}
for _, d := range expanded {
for _, p := range *ports {
pr := tailcfg.NetPortRange{
IP: d,
Ports: p,
}
dests = append(dests, pr)
}
}
2021-11-14 23:46:09 +08:00
return dests, nil
}
func (h *Headscale) expandAlias(alias string) ([]string, error) {
if alias == "*" {
return []string{"*"}, nil
2021-07-03 23:31:32 +08:00
}
if strings.HasPrefix(alias, "group:") {
if _, ok := h.aclPolicy.Groups[alias]; !ok {
2021-11-16 00:33:16 +08:00
return nil, errInvalidGroup
2021-07-03 23:31:32 +08:00
}
ips := []string{}
for _, n := range h.aclPolicy.Groups[alias] {
nodes, err := h.ListMachinesInNamespace(n)
if err != nil {
2021-11-16 00:33:16 +08:00
return nil, errInvalidNamespace
}
for _, node := range nodes {
ips = append(ips, node.IPAddress)
}
}
2021-11-14 23:46:09 +08:00
return ips, nil
2021-07-03 23:31:32 +08:00
}
if strings.HasPrefix(alias, "tag:") {
if _, ok := h.aclPolicy.TagOwners[alias]; !ok {
2021-11-16 00:33:16 +08:00
return nil, errInvalidTag
}
// This will have HORRIBLE performance.
// We need to change the data model to better store tags
machines := []Machine{}
2021-07-05 03:56:13 +08:00
if err := h.db.Where("registered").Find(&machines).Error; err != nil {
return nil, err
}
ips := []string{}
for _, machine := range machines {
hostinfo := tailcfg.Hostinfo{}
if len(machine.HostInfo) != 0 {
hi, err := machine.HostInfo.MarshalJSON()
if err != nil {
return nil, err
}
err = json.Unmarshal(hi, &hostinfo)
if err != nil {
return nil, err
}
// FIXME: Check TagOwners allows this
for _, t := range hostinfo.RequestTags {
if alias[4:] == t {
ips = append(ips, machine.IPAddress)
2021-11-14 23:46:09 +08:00
break
}
}
}
}
2021-11-14 23:46:09 +08:00
return ips, nil
2021-07-03 23:31:32 +08:00
}
n, err := h.GetNamespace(alias)
2021-07-03 23:31:32 +08:00
if err == nil {
nodes, err := h.ListMachinesInNamespace(n.Name)
if err != nil {
return nil, err
}
ips := []string{}
for _, n := range nodes {
2021-07-03 23:31:32 +08:00
ips = append(ips, n.IPAddress)
}
2021-11-14 23:46:09 +08:00
return ips, nil
2021-07-03 23:31:32 +08:00
}
if h, ok := h.aclPolicy.Hosts[alias]; ok {
return []string{h.String()}, nil
2021-07-03 23:31:32 +08:00
}
ip, err := netaddr.ParseIP(alias)
2021-07-03 23:31:32 +08:00
if err == nil {
return []string{ip.String()}, nil
2021-07-03 23:31:32 +08:00
}
cidr, err := netaddr.ParseIPPrefix(alias)
2021-07-03 23:31:32 +08:00
if err == nil {
return []string{cidr.String()}, nil
2021-07-03 23:31:32 +08:00
}
2021-11-16 00:33:16 +08:00
return nil, errInvalidUserSection
2021-07-03 17:55:32 +08:00
}
func (h *Headscale) expandPorts(portsStr string) (*[]tailcfg.PortRange, error) {
if portsStr == "*" {
return &[]tailcfg.PortRange{
{First: portRangeBegin, Last: portRangeEnd},
}, nil
}
ports := []tailcfg.PortRange{}
for _, portStr := range strings.Split(portsStr, ",") {
rang := strings.Split(portStr, "-")
2021-11-15 01:44:37 +08:00
switch len(rang) {
case 1:
port, err := strconv.ParseUint(rang[0], Base10, BitSize16)
if err != nil {
return nil, err
}
ports = append(ports, tailcfg.PortRange{
First: uint16(port),
Last: uint16(port),
})
2021-11-15 01:44:37 +08:00
case expectedTokenItems:
start, err := strconv.ParseUint(rang[0], Base10, BitSize16)
if err != nil {
return nil, err
}
last, err := strconv.ParseUint(rang[1], Base10, BitSize16)
if err != nil {
return nil, err
}
ports = append(ports, tailcfg.PortRange{
First: uint16(start),
Last: uint16(last),
})
2021-11-15 01:44:37 +08:00
default:
2021-11-16 00:33:16 +08:00
return nil, errInvalidPortFormat
}
}
2021-11-14 23:46:09 +08:00
return &ports, nil
}