2018-03-02 19:53:40 +00:00
|
|
|
package structs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sort"
|
2018-03-03 17:43:37 +00:00
|
|
|
"strings"
|
2018-03-02 19:53:40 +00:00
|
|
|
"testing"
|
2018-03-06 18:35:20 +00:00
|
|
|
|
2020-01-13 20:51:40 +00:00
|
|
|
"github.com/hashicorp/consul/acl"
|
2018-03-06 18:35:20 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2020-01-13 20:51:40 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2018-03-02 19:53:40 +00:00
|
|
|
)
|
|
|
|
|
2020-01-13 20:51:40 +00:00
|
|
|
func TestIntention_ACLs(t *testing.T) {
|
|
|
|
type testCase struct {
|
|
|
|
intention Intention
|
|
|
|
rules string
|
|
|
|
read bool
|
|
|
|
write bool
|
|
|
|
}
|
2018-03-05 02:46:33 +00:00
|
|
|
|
2020-01-13 20:51:40 +00:00
|
|
|
cases := map[string]testCase{
|
2020-06-16 17:19:31 +00:00
|
|
|
"all-denied": {
|
2020-01-13 20:51:40 +00:00
|
|
|
intention: Intention{
|
|
|
|
SourceNS: "default",
|
|
|
|
SourceName: "web",
|
|
|
|
DestinationNS: "default",
|
|
|
|
DestinationName: "api",
|
|
|
|
},
|
|
|
|
read: false,
|
|
|
|
write: false,
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"deny-write-read-dest": {
|
2020-01-13 20:51:40 +00:00
|
|
|
rules: `service "api" { policy = "deny" intentions = "read" }`,
|
|
|
|
intention: Intention{
|
|
|
|
SourceNS: "default",
|
|
|
|
SourceName: "web",
|
|
|
|
DestinationNS: "default",
|
|
|
|
DestinationName: "api",
|
|
|
|
},
|
|
|
|
read: true,
|
|
|
|
write: false,
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"deny-write-read-source": {
|
2020-01-13 20:51:40 +00:00
|
|
|
rules: `service "web" { policy = "deny" intentions = "read" }`,
|
|
|
|
intention: Intention{
|
|
|
|
SourceNS: "default",
|
|
|
|
SourceName: "web",
|
|
|
|
DestinationNS: "default",
|
|
|
|
DestinationName: "api",
|
|
|
|
},
|
|
|
|
read: true,
|
|
|
|
write: false,
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"allow-write-with-dest-write": {
|
2020-01-13 20:51:40 +00:00
|
|
|
rules: `service "api" { policy = "deny" intentions = "write" }`,
|
|
|
|
intention: Intention{
|
|
|
|
SourceNS: "default",
|
|
|
|
SourceName: "web",
|
|
|
|
DestinationNS: "default",
|
|
|
|
DestinationName: "api",
|
|
|
|
},
|
|
|
|
read: true,
|
|
|
|
write: true,
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"deny-write-with-source-write": {
|
2020-01-13 20:51:40 +00:00
|
|
|
rules: `service "web" { policy = "deny" intentions = "write" }`,
|
|
|
|
intention: Intention{
|
|
|
|
SourceNS: "default",
|
|
|
|
SourceName: "web",
|
|
|
|
DestinationNS: "default",
|
|
|
|
DestinationName: "api",
|
|
|
|
},
|
|
|
|
read: true,
|
|
|
|
write: false,
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"deny-wildcard-write-allow-read": {
|
2020-01-13 20:51:40 +00:00
|
|
|
rules: `service "*" { policy = "deny" intentions = "write" }`,
|
|
|
|
intention: Intention{
|
|
|
|
SourceNS: "default",
|
|
|
|
SourceName: "*",
|
|
|
|
DestinationNS: "default",
|
|
|
|
DestinationName: "*",
|
|
|
|
},
|
|
|
|
// technically having been granted read/write on any intention will allow
|
|
|
|
// read access for this rule
|
|
|
|
read: true,
|
|
|
|
write: false,
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"allow-wildcard-write": {
|
2020-01-13 20:51:40 +00:00
|
|
|
rules: `service_prefix "" { policy = "deny" intentions = "write" }`,
|
|
|
|
intention: Intention{
|
|
|
|
SourceNS: "default",
|
|
|
|
SourceName: "*",
|
|
|
|
DestinationNS: "default",
|
|
|
|
DestinationName: "*",
|
|
|
|
},
|
|
|
|
read: true,
|
|
|
|
write: true,
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
"allow-wildcard-read": {
|
2020-01-13 20:51:40 +00:00
|
|
|
rules: `service "foo" { policy = "deny" intentions = "read" }`,
|
|
|
|
intention: Intention{
|
|
|
|
SourceNS: "default",
|
|
|
|
SourceName: "*",
|
|
|
|
DestinationNS: "default",
|
|
|
|
DestinationName: "*",
|
|
|
|
},
|
|
|
|
read: true,
|
|
|
|
write: false,
|
2018-03-05 02:46:33 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-01-13 20:51:40 +00:00
|
|
|
config := acl.Config{
|
|
|
|
WildcardName: WildcardSpecifier,
|
|
|
|
}
|
2018-03-05 02:46:33 +00:00
|
|
|
|
2020-01-13 20:51:40 +00:00
|
|
|
for name, tcase := range cases {
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
authz, err := acl.NewAuthorizerFromRules("", 0, tcase.rules, acl.SyntaxCurrent, &config, nil)
|
|
|
|
require.NoError(t, err)
|
2018-03-05 02:46:33 +00:00
|
|
|
|
2020-01-13 20:51:40 +00:00
|
|
|
require.Equal(t, tcase.read, tcase.intention.CanRead(authz))
|
|
|
|
require.Equal(t, tcase.write, tcase.intention.CanWrite(authz))
|
2018-03-05 02:46:33 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-03 17:43:37 +00:00
|
|
|
func TestIntentionValidate(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
Name string
|
|
|
|
Modify func(*Intention)
|
|
|
|
Err string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"long description",
|
|
|
|
func(x *Intention) {
|
|
|
|
x.Description = strings.Repeat("x", metaValueMaxLength+1)
|
|
|
|
},
|
|
|
|
"description exceeds",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"no action set",
|
|
|
|
func(x *Intention) { x.Action = "" },
|
|
|
|
"action must be set",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"no SourceNS",
|
|
|
|
func(x *Intention) { x.SourceNS = "" },
|
|
|
|
"SourceNS must be set",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"no SourceName",
|
|
|
|
func(x *Intention) { x.SourceName = "" },
|
|
|
|
"SourceName must be set",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"no DestinationNS",
|
|
|
|
func(x *Intention) { x.DestinationNS = "" },
|
|
|
|
"DestinationNS must be set",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"no DestinationName",
|
|
|
|
func(x *Intention) { x.DestinationName = "" },
|
|
|
|
"DestinationName must be set",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"SourceNS partial wildcard",
|
|
|
|
func(x *Intention) { x.SourceNS = "foo*" },
|
|
|
|
"partial value",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"SourceName partial wildcard",
|
|
|
|
func(x *Intention) { x.SourceName = "foo*" },
|
|
|
|
"partial value",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"SourceName exact following wildcard",
|
|
|
|
func(x *Intention) {
|
|
|
|
x.SourceNS = "*"
|
|
|
|
x.SourceName = "foo"
|
|
|
|
},
|
|
|
|
"follow wildcard",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"DestinationNS partial wildcard",
|
|
|
|
func(x *Intention) { x.DestinationNS = "foo*" },
|
|
|
|
"partial value",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"DestinationName partial wildcard",
|
|
|
|
func(x *Intention) { x.DestinationName = "foo*" },
|
|
|
|
"partial value",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"DestinationName exact following wildcard",
|
|
|
|
func(x *Intention) {
|
|
|
|
x.DestinationNS = "*"
|
|
|
|
x.DestinationName = "foo"
|
|
|
|
},
|
|
|
|
"follow wildcard",
|
|
|
|
},
|
2018-03-03 17:55:27 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
"SourceType is not set",
|
|
|
|
func(x *Intention) { x.SourceType = "" },
|
|
|
|
"SourceType must",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
"SourceType is other",
|
|
|
|
func(x *Intention) { x.SourceType = IntentionSourceType("other") },
|
|
|
|
"SourceType must",
|
|
|
|
},
|
2018-03-03 17:43:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
t.Run(tc.Name, func(t *testing.T) {
|
2018-03-06 18:35:20 +00:00
|
|
|
assert := assert.New(t)
|
2018-03-03 17:43:37 +00:00
|
|
|
ixn := TestIntention(t)
|
|
|
|
tc.Modify(ixn)
|
|
|
|
|
|
|
|
err := ixn.Validate()
|
2018-03-06 18:35:20 +00:00
|
|
|
assert.Equal(err != nil, tc.Err != "", err)
|
2018-03-03 17:43:37 +00:00
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
2018-03-06 18:35:20 +00:00
|
|
|
|
|
|
|
assert.Contains(strings.ToLower(err.Error()), strings.ToLower(tc.Err))
|
2018-03-03 17:43:37 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-02 19:53:40 +00:00
|
|
|
func TestIntentionPrecedenceSorter(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
Name string
|
|
|
|
Input [][]string // SrcNS, SrcN, DstNS, DstN
|
|
|
|
Expected [][]string // Same structure as Input
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"exhaustive list",
|
|
|
|
[][]string{
|
|
|
|
{"*", "*", "exact", "*"},
|
|
|
|
{"*", "*", "*", "*"},
|
|
|
|
{"exact", "*", "exact", "exact"},
|
|
|
|
{"*", "*", "exact", "exact"},
|
|
|
|
{"exact", "exact", "*", "*"},
|
|
|
|
{"exact", "exact", "exact", "exact"},
|
|
|
|
{"exact", "exact", "exact", "*"},
|
|
|
|
{"exact", "*", "exact", "*"},
|
|
|
|
{"exact", "*", "*", "*"},
|
|
|
|
},
|
|
|
|
[][]string{
|
|
|
|
{"exact", "exact", "exact", "exact"},
|
|
|
|
{"exact", "*", "exact", "exact"},
|
|
|
|
{"*", "*", "exact", "exact"},
|
|
|
|
{"exact", "exact", "exact", "*"},
|
|
|
|
{"exact", "*", "exact", "*"},
|
|
|
|
{"*", "*", "exact", "*"},
|
|
|
|
{"exact", "exact", "*", "*"},
|
|
|
|
{"exact", "*", "*", "*"},
|
|
|
|
{"*", "*", "*", "*"},
|
|
|
|
},
|
|
|
|
},
|
2018-04-05 11:41:49 +00:00
|
|
|
{
|
|
|
|
"tiebreak deterministically",
|
|
|
|
[][]string{
|
|
|
|
{"a", "*", "a", "b"},
|
|
|
|
{"a", "*", "a", "a"},
|
|
|
|
{"b", "a", "a", "a"},
|
|
|
|
{"a", "b", "a", "a"},
|
|
|
|
{"a", "a", "b", "a"},
|
|
|
|
{"a", "a", "a", "b"},
|
|
|
|
{"a", "a", "a", "a"},
|
|
|
|
},
|
|
|
|
[][]string{
|
|
|
|
// Exact matches first in lexicographical order (arbitrary but
|
|
|
|
// deterministic)
|
|
|
|
{"a", "a", "a", "a"},
|
|
|
|
{"a", "a", "a", "b"},
|
|
|
|
{"a", "a", "b", "a"},
|
|
|
|
{"a", "b", "a", "a"},
|
|
|
|
{"b", "a", "a", "a"},
|
|
|
|
// Wildcards next, lexicographical
|
|
|
|
{"a", "*", "a", "a"},
|
|
|
|
{"a", "*", "a", "b"},
|
|
|
|
},
|
|
|
|
},
|
2018-03-02 19:53:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
t.Run(tc.Name, func(t *testing.T) {
|
2018-03-06 18:35:20 +00:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
2018-03-02 19:53:40 +00:00
|
|
|
var input Intentions
|
|
|
|
for _, v := range tc.Input {
|
|
|
|
input = append(input, &Intention{
|
|
|
|
SourceNS: v[0],
|
|
|
|
SourceName: v[1],
|
|
|
|
DestinationNS: v[2],
|
|
|
|
DestinationName: v[3],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-06-07 04:11:37 +00:00
|
|
|
// Set all the precedence values
|
|
|
|
for _, ixn := range input {
|
|
|
|
ixn.UpdatePrecedence()
|
|
|
|
}
|
|
|
|
|
2018-03-02 19:53:40 +00:00
|
|
|
// Sort
|
|
|
|
sort.Sort(IntentionPrecedenceSorter(input))
|
|
|
|
|
|
|
|
// Get back into a comparable form
|
|
|
|
var actual [][]string
|
|
|
|
for _, v := range input {
|
|
|
|
actual = append(actual, []string{
|
|
|
|
v.SourceNS,
|
|
|
|
v.SourceName,
|
|
|
|
v.DestinationNS,
|
|
|
|
v.DestinationName,
|
|
|
|
})
|
|
|
|
}
|
2018-03-06 18:35:20 +00:00
|
|
|
assert.Equal(tc.Expected, actual)
|
2018-03-02 19:53:40 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2020-05-15 01:10:03 +00:00
|
|
|
|
|
|
|
func TestIntention_SetHash(t *testing.T) {
|
|
|
|
i := Intention{
|
|
|
|
ID: "the-id",
|
|
|
|
Description: "the-description",
|
|
|
|
SourceNS: "source-ns",
|
|
|
|
SourceName: "source-name",
|
|
|
|
DestinationNS: "dest-ns",
|
|
|
|
DestinationName: "dest-name",
|
|
|
|
SourceType: "source-type",
|
|
|
|
Action: "action",
|
|
|
|
Precedence: 123,
|
|
|
|
Meta: map[string]string{
|
|
|
|
"meta1": "one",
|
|
|
|
"meta2": "two",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
i.SetHash()
|
|
|
|
expected := []byte{
|
|
|
|
0x20, 0x89, 0x55, 0xdb, 0x69, 0x34, 0xce, 0x89, 0xd8, 0xb9, 0x2e, 0x3a,
|
|
|
|
0x85, 0xb6, 0xea, 0x43, 0xb2, 0x23, 0x16, 0x93, 0x94, 0x13, 0x2a, 0xe4,
|
|
|
|
0x81, 0xfe, 0xe, 0x34, 0x91, 0x99, 0xe9, 0x8d,
|
|
|
|
}
|
|
|
|
require.Equal(t, expected, i.Hash)
|
|
|
|
}
|
2020-10-06 22:09:13 +00:00
|
|
|
|
|
|
|
func TestIntention_String(t *testing.T) {
|
|
|
|
type testcase struct {
|
|
|
|
ixn *Intention
|
|
|
|
expect string
|
|
|
|
}
|
|
|
|
|
|
|
|
testID := generateUUID()
|
|
|
|
|
|
|
|
cases := map[string]testcase{
|
|
|
|
"legacy allow": {
|
|
|
|
&Intention{
|
|
|
|
ID: testID,
|
|
|
|
SourceName: "foo",
|
|
|
|
DestinationName: "bar",
|
|
|
|
Action: IntentionActionAllow,
|
|
|
|
},
|
|
|
|
`default/foo => default/bar (ID: ` + testID + `, Precedence: 9, Action: ALLOW)`,
|
|
|
|
},
|
|
|
|
"legacy deny": {
|
|
|
|
&Intention{
|
|
|
|
ID: testID,
|
|
|
|
SourceName: "foo",
|
|
|
|
DestinationName: "bar",
|
|
|
|
Action: IntentionActionDeny,
|
|
|
|
},
|
|
|
|
`default/foo => default/bar (ID: ` + testID + `, Precedence: 9, Action: DENY)`,
|
|
|
|
},
|
|
|
|
"L4 allow": {
|
|
|
|
&Intention{
|
|
|
|
SourceName: "foo",
|
|
|
|
DestinationName: "bar",
|
|
|
|
Action: IntentionActionAllow,
|
|
|
|
},
|
|
|
|
`default/foo => default/bar (Precedence: 9, Action: ALLOW)`,
|
|
|
|
},
|
|
|
|
"L4 deny": {
|
|
|
|
&Intention{
|
|
|
|
SourceName: "foo",
|
|
|
|
DestinationName: "bar",
|
|
|
|
Action: IntentionActionDeny,
|
|
|
|
},
|
|
|
|
`default/foo => default/bar (Precedence: 9, Action: DENY)`,
|
|
|
|
},
|
|
|
|
"L7 one perm": {
|
|
|
|
&Intention{
|
|
|
|
SourceName: "foo",
|
|
|
|
DestinationName: "bar",
|
|
|
|
Permissions: []*IntentionPermission{
|
|
|
|
{
|
|
|
|
Action: IntentionActionAllow,
|
|
|
|
HTTP: &IntentionHTTPPermission{
|
|
|
|
PathPrefix: "/foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
`default/foo => default/bar (Precedence: 9, Permissions: 1)`,
|
|
|
|
},
|
|
|
|
"L7 two perms": {
|
|
|
|
&Intention{
|
|
|
|
SourceName: "foo",
|
|
|
|
DestinationName: "bar",
|
|
|
|
Permissions: []*IntentionPermission{
|
|
|
|
{
|
|
|
|
Action: IntentionActionDeny,
|
|
|
|
HTTP: &IntentionHTTPPermission{
|
|
|
|
PathExact: "/foo/admin",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Action: IntentionActionAllow,
|
|
|
|
HTTP: &IntentionHTTPPermission{
|
|
|
|
PathPrefix: "/foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
`default/foo => default/bar (Precedence: 9, Permissions: 2)`,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, tc := range cases {
|
|
|
|
tc := tc
|
|
|
|
// Add a bunch of required fields.
|
|
|
|
tc.ixn.DefaultNamespaces(DefaultEnterpriseMeta())
|
|
|
|
tc.ixn.UpdatePrecedence()
|
|
|
|
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
got := tc.ixn.String()
|
|
|
|
require.Equal(t, tc.expect, got)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|