2021-07-03 17:55:32 +08:00
|
|
|
package headscale
|
|
|
|
|
|
|
|
import (
|
2021-11-05 15:24:00 +08:00
|
|
|
"encoding/json"
|
2022-09-02 06:05:43 +08:00
|
|
|
"net/netip"
|
2021-07-03 17:55:32 +08:00
|
|
|
"strings"
|
|
|
|
|
2021-07-03 23:31:32 +08:00
|
|
|
"github.com/tailscale/hujson"
|
2022-02-27 16:04:48 +08:00
|
|
|
"gopkg.in/yaml.v3"
|
2021-07-03 17:55:32 +08:00
|
|
|
)
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// ACLPolicy represents a Tailscale ACL Policy.
|
2021-07-03 17:55:32 +08:00
|
|
|
type ACLPolicy struct {
|
2022-06-08 19:40:15 +08:00
|
|
|
Groups Groups `json:"groups" yaml:"groups"`
|
|
|
|
Hosts Hosts `json:"hosts" yaml:"hosts"`
|
|
|
|
TagOwners TagOwners `json:"tagOwners" yaml:"tagOwners"`
|
|
|
|
ACLs []ACL `json:"acls" yaml:"acls"`
|
|
|
|
Tests []ACLTest `json:"tests" yaml:"tests"`
|
2021-07-03 17:55:32 +08:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// ACL is a basic rule for the ACL Policy.
|
2021-07-03 17:55:32 +08:00
|
|
|
type ACL struct {
|
2022-06-08 19:40:15 +08:00
|
|
|
Action string `json:"action" yaml:"action"`
|
2022-08-04 16:47:00 +08:00
|
|
|
Protocol string `json:"proto" yaml:"proto"`
|
|
|
|
Sources []string `json:"src" yaml:"src"`
|
|
|
|
Destinations []string `json:"dst" yaml:"dst"`
|
2021-07-03 17:55:32 +08:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// Groups references a series of alias in the ACL rules.
|
2021-07-03 17:55:32 +08:00
|
|
|
type Groups map[string][]string
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// Hosts are alias for IP addresses or subnets.
|
2022-09-02 06:05:43 +08:00
|
|
|
type Hosts map[string]netip.Prefix
|
2021-07-03 17:55:32 +08:00
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// TagOwners specify what users (namespaces?) are allow to use certain tags.
|
2021-07-03 23:31:32 +08:00
|
|
|
type TagOwners map[string][]string
|
2021-07-03 17:55:32 +08:00
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// ACLTest is not implemented, but should be use to check if a certain rule is allowed.
|
2021-07-03 17:55:32 +08:00
|
|
|
type ACLTest struct {
|
2022-08-04 16:47:00 +08:00
|
|
|
Source string `json:"src" yaml:"src"`
|
|
|
|
Accept []string `json:"accept" yaml:"accept"`
|
2022-06-08 19:40:15 +08:00
|
|
|
Deny []string `json:"deny,omitempty" yaml:"deny,omitempty"`
|
2021-07-03 17:55:32 +08:00
|
|
|
}
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// UnmarshalJSON allows to parse the Hosts directly into netaddr objects.
|
2021-11-15 03:32:03 +08:00
|
|
|
func (hosts *Hosts) UnmarshalJSON(data []byte) error {
|
|
|
|
newHosts := Hosts{}
|
2021-11-16 01:24:24 +08:00
|
|
|
hostIPPrefixMap := make(map[string]string)
|
2021-11-05 15:24:00 +08:00
|
|
|
ast, err := hujson.Parse(data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ast.Standardize()
|
|
|
|
data = ast.Pack()
|
2021-11-16 01:24:24 +08:00
|
|
|
err = json.Unmarshal(data, &hostIPPrefixMap)
|
2021-07-03 23:31:32 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2021-07-03 17:55:32 +08:00
|
|
|
}
|
2021-11-16 01:24:24 +08:00
|
|
|
for host, prefixStr := range hostIPPrefixMap {
|
2021-11-15 03:32:03 +08:00
|
|
|
if !strings.Contains(prefixStr, "/") {
|
|
|
|
prefixStr += "/32"
|
2021-07-03 17:55:32 +08:00
|
|
|
}
|
2022-09-02 06:05:43 +08:00
|
|
|
prefix, err := netip.ParsePrefix(prefixStr)
|
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-15 03:32:03 +08:00
|
|
|
newHosts[host] = prefix
|
2021-07-03 17:55:32 +08:00
|
|
|
}
|
2021-11-15 03:32:03 +08:00
|
|
|
*hosts = newHosts
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-07-03 23:31:32 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-02-27 16:04:48 +08:00
|
|
|
// UnmarshalYAML allows to parse the Hosts directly into netaddr objects.
|
|
|
|
func (hosts *Hosts) UnmarshalYAML(data []byte) error {
|
|
|
|
newHosts := Hosts{}
|
|
|
|
hostIPPrefixMap := make(map[string]string)
|
|
|
|
|
|
|
|
err := yaml.Unmarshal(data, &hostIPPrefixMap)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for host, prefixStr := range hostIPPrefixMap {
|
2022-09-02 06:05:43 +08:00
|
|
|
prefix, err := netip.ParsePrefix(prefixStr)
|
2022-02-27 16:04:48 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
newHosts[host] = prefix
|
|
|
|
}
|
|
|
|
*hosts = newHosts
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-13 16:39:04 +08:00
|
|
|
// IsZero is perhaps a bit naive here.
|
2021-11-15 03:32:03 +08:00
|
|
|
func (policy ACLPolicy) IsZero() bool {
|
|
|
|
if len(policy.Groups) == 0 && len(policy.Hosts) == 0 && len(policy.ACLs) == 0 {
|
2021-07-03 23:31:32 +08:00
|
|
|
return true
|
|
|
|
}
|
2021-11-14 23:46:09 +08:00
|
|
|
|
2021-07-03 23:31:32 +08:00
|
|
|
return false
|
2021-07-03 17:55:32 +08:00
|
|
|
}
|