2014-08-06 22:08:17 +00:00
|
|
|
package acl
|
|
|
|
|
|
|
|
import (
|
2015-07-07 20:46:41 +00:00
|
|
|
"strings"
|
2014-08-06 22:08:17 +00:00
|
|
|
"testing"
|
2018-03-06 18:51:26 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2014-08-06 22:08:17 +00:00
|
|
|
)
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func errStartsWith(t *testing.T, actual error, expected string) {
|
|
|
|
t.Helper()
|
|
|
|
require.Error(t, actual)
|
|
|
|
require.Truef(t, strings.HasPrefix(actual.Error(), expected), "Received unexpected error: %#v\nExpecting an error with the prefix: %q", actual, expected)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPolicySourceParse(t *testing.T) {
|
|
|
|
ljoin := func(lines ...string) string {
|
|
|
|
return strings.Join(lines, "\n")
|
|
|
|
}
|
2018-03-04 00:14:33 +00:00
|
|
|
cases := []struct {
|
|
|
|
Name string
|
2018-10-19 16:04:07 +00:00
|
|
|
Syntax SyntaxVersion
|
|
|
|
Rules string
|
2018-03-04 00:14:33 +00:00
|
|
|
Expected *Policy
|
|
|
|
Err string
|
|
|
|
}{
|
|
|
|
{
|
2018-10-19 16:04:07 +00:00
|
|
|
"Legacy Basic",
|
|
|
|
SyntaxLegacy,
|
|
|
|
ljoin(
|
|
|
|
`agent "foo" { `,
|
|
|
|
` policy = "read" `,
|
|
|
|
`} `,
|
|
|
|
`agent "bar" { `,
|
|
|
|
` policy = "write" `,
|
|
|
|
`} `,
|
|
|
|
`event "" { `,
|
|
|
|
` policy = "read" `,
|
|
|
|
`} `,
|
|
|
|
`event "foo" { `,
|
|
|
|
` policy = "write" `,
|
|
|
|
`} `,
|
|
|
|
`event "bar" { `,
|
|
|
|
` policy = "deny" `,
|
|
|
|
`} `,
|
|
|
|
`key "" { `,
|
|
|
|
` policy = "read" `,
|
|
|
|
`} `,
|
|
|
|
`key "foo/" { `,
|
|
|
|
` policy = "write" `,
|
|
|
|
`} `,
|
|
|
|
`key "foo/bar/" { `,
|
|
|
|
` policy = "read" `,
|
|
|
|
`} `,
|
|
|
|
`key "foo/bar/baz" {`,
|
|
|
|
` policy = "deny" `,
|
|
|
|
`} `,
|
|
|
|
`keyring = "deny" `,
|
|
|
|
`node "" { `,
|
|
|
|
` policy = "read" `,
|
|
|
|
`} `,
|
|
|
|
`node "foo" { `,
|
|
|
|
` policy = "write" `,
|
|
|
|
`} `,
|
|
|
|
`node "bar" { `,
|
|
|
|
` policy = "deny" `,
|
|
|
|
`} `,
|
|
|
|
`operator = "deny" `,
|
|
|
|
`service "" { `,
|
|
|
|
` policy = "write" `,
|
|
|
|
`} `,
|
|
|
|
`service "foo" { `,
|
|
|
|
` policy = "read" `,
|
|
|
|
`} `,
|
|
|
|
`session "foo" { `,
|
|
|
|
` policy = "write" `,
|
|
|
|
`} `,
|
|
|
|
`session "bar" { `,
|
|
|
|
` policy = "deny" `,
|
|
|
|
`} `,
|
|
|
|
`query "" { `,
|
|
|
|
` policy = "read" `,
|
|
|
|
`} `,
|
|
|
|
`query "foo" { `,
|
|
|
|
` policy = "write" `,
|
|
|
|
`} `,
|
|
|
|
`query "bar" { `,
|
|
|
|
` policy = "deny" `,
|
|
|
|
`} `),
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
AgentPrefixes: []*AgentRule{
|
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "foo",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "bar",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
EventPrefixes: []*EventRule{
|
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "bar",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Keyring: PolicyDeny,
|
2019-10-15 20:58:50 +00:00
|
|
|
KeyPrefixes: []*KeyRule{
|
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo/",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo/bar/",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo/bar/baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
NodePrefixes: []*NodeRule{
|
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "bar",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Operator: PolicyDeny,
|
2019-10-15 20:58:50 +00:00
|
|
|
PreparedQueryPrefixes: []*PreparedQueryRule{
|
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "bar",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
ServicePrefixes: []*ServiceRule{
|
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
SessionPrefixes: []*SessionRule{
|
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "bar",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2018-10-19 16:04:07 +00:00
|
|
|
"",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Legacy (JSON)",
|
|
|
|
SyntaxLegacy,
|
|
|
|
ljoin(
|
|
|
|
`{ `,
|
|
|
|
` "agent": { `,
|
|
|
|
` "foo": { `,
|
|
|
|
` "policy": "write" `,
|
|
|
|
` }, `,
|
|
|
|
` "bar": { `,
|
|
|
|
` "policy": "deny" `,
|
|
|
|
` } `,
|
|
|
|
` }, `,
|
|
|
|
` "event": { `,
|
|
|
|
` "": { `,
|
|
|
|
` "policy": "read" `,
|
|
|
|
` }, `,
|
|
|
|
` "foo": { `,
|
|
|
|
` "policy": "write" `,
|
|
|
|
` }, `,
|
|
|
|
` "bar": { `,
|
|
|
|
` "policy": "deny" `,
|
|
|
|
` } `,
|
|
|
|
` }, `,
|
|
|
|
` "key": { `,
|
|
|
|
` "": { `,
|
|
|
|
` "policy": "read" `,
|
|
|
|
` }, `,
|
|
|
|
` "foo/": { `,
|
|
|
|
` "policy": "write" `,
|
|
|
|
` }, `,
|
|
|
|
` "foo/bar/": { `,
|
|
|
|
` "policy": "read" `,
|
|
|
|
` }, `,
|
|
|
|
` "foo/bar/baz": { `,
|
|
|
|
` "policy": "deny" `,
|
|
|
|
` } `,
|
|
|
|
` }, `,
|
|
|
|
` "keyring": "deny", `,
|
|
|
|
` "node": { `,
|
|
|
|
` "": { `,
|
|
|
|
` "policy": "read" `,
|
|
|
|
` }, `,
|
|
|
|
` "foo": { `,
|
|
|
|
` "policy": "write" `,
|
|
|
|
` }, `,
|
|
|
|
` "bar": { `,
|
|
|
|
` "policy": "deny" `,
|
|
|
|
` } `,
|
|
|
|
` }, `,
|
|
|
|
` "operator": "deny", `,
|
|
|
|
` "query": { `,
|
|
|
|
` "": { `,
|
|
|
|
` "policy": "read" `,
|
|
|
|
` }, `,
|
|
|
|
` "foo": { `,
|
|
|
|
` "policy": "write" `,
|
|
|
|
` }, `,
|
|
|
|
` "bar": { `,
|
|
|
|
` "policy": "deny" `,
|
|
|
|
` } `,
|
|
|
|
` }, `,
|
|
|
|
` "service": { `,
|
|
|
|
` "": { `,
|
|
|
|
` "policy": "write" `,
|
|
|
|
` }, `,
|
|
|
|
` "foo": { `,
|
|
|
|
` "policy": "read" `,
|
|
|
|
` } `,
|
|
|
|
` }, `,
|
|
|
|
` "session": { `,
|
|
|
|
` "foo": { `,
|
|
|
|
` "policy": "write" `,
|
|
|
|
` }, `,
|
|
|
|
` "bar": { `,
|
|
|
|
` "policy": "deny" `,
|
|
|
|
` } `,
|
|
|
|
` } `,
|
|
|
|
`} `),
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
AgentPrefixes: []*AgentRule{
|
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "bar",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
EventPrefixes: []*EventRule{
|
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "bar",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Keyring: PolicyDeny,
|
2019-10-15 20:58:50 +00:00
|
|
|
KeyPrefixes: []*KeyRule{
|
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo/",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo/bar/",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo/bar/baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
NodePrefixes: []*NodeRule{
|
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "bar",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Operator: PolicyDeny,
|
2019-10-15 20:58:50 +00:00
|
|
|
PreparedQueryPrefixes: []*PreparedQueryRule{
|
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "bar",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
ServicePrefixes: []*ServiceRule{
|
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
SessionPrefixes: []*SessionRule{
|
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "bar",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2018-10-19 16:04:07 +00:00
|
|
|
"",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Service No Intentions (Legacy)",
|
|
|
|
SyntaxLegacy,
|
|
|
|
ljoin(
|
|
|
|
`service "foo" { `,
|
|
|
|
` policy = "write"`,
|
|
|
|
`} `),
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
ServicePrefixes: []*ServiceRule{
|
2018-03-04 00:14:33 +00:00
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Policy: "write",
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2018-03-04 00:14:33 +00:00
|
|
|
"",
|
|
|
|
},
|
|
|
|
{
|
2018-10-19 16:04:07 +00:00
|
|
|
"Service Intentions (Legacy)",
|
|
|
|
SyntaxLegacy,
|
|
|
|
ljoin(
|
|
|
|
`service "foo" { `,
|
|
|
|
` policy = "write" `,
|
|
|
|
` intentions = "read"`,
|
|
|
|
`} `),
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
ServicePrefixes: []*ServiceRule{
|
2018-03-04 00:14:33 +00:00
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Policy: "write",
|
|
|
|
Intentions: "read",
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2018-03-04 00:14:33 +00:00
|
|
|
"",
|
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
{
|
|
|
|
"Service Intention: invalid value (Legacy)",
|
|
|
|
SyntaxLegacy,
|
|
|
|
ljoin(
|
|
|
|
`service "foo" { `,
|
|
|
|
` policy = "write" `,
|
|
|
|
` intentions = "foo"`,
|
|
|
|
`} `),
|
|
|
|
nil,
|
|
|
|
"Invalid service intentions policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - ACL",
|
2018-03-04 00:14:33 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
SyntaxCurrent,
|
2019-10-15 20:58:50 +00:00
|
|
|
`acl = "list"`, // there is no list policy but this helps to exercise another check in isPolicyValid
|
2018-10-19 16:04:07 +00:00
|
|
|
nil,
|
|
|
|
"Invalid acl policy",
|
|
|
|
},
|
2018-03-04 00:14:33 +00:00
|
|
|
{
|
2018-10-19 16:04:07 +00:00
|
|
|
"Bad Policy - Agent",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`agent "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid agent policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Agent Prefix",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`agent_prefix "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid agent_prefix policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Key",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`key "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid key policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Key Prefix",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`key_prefix "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid key_prefix policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Node",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`node "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid node policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Node Prefix",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`node_prefix "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid node_prefix policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Service",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`service "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid service policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Service Prefix",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`service_prefix "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid service_prefix policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Session",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`session "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid session policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Session Prefix",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`session_prefix "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid session_prefix policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Event",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`event "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid event policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Event Prefix",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`event_prefix "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid event_prefix policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Prepared Query",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`query "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid query policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Prepared Query Prefix",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`query_prefix "foo" { policy = "nope" }`,
|
|
|
|
nil,
|
|
|
|
"Invalid query_prefix policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Keyring",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`keyring = "nope"`,
|
2018-03-04 00:14:33 +00:00
|
|
|
nil,
|
2018-10-19 16:04:07 +00:00
|
|
|
"Invalid keyring policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Bad Policy - Operator",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`operator = "nope"`,
|
|
|
|
nil,
|
|
|
|
"Invalid operator policy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Keyring Empty",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`keyring = ""`,
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{Keyring: ""}},
|
2018-10-19 16:04:07 +00:00
|
|
|
"",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Operator Empty",
|
|
|
|
SyntaxCurrent,
|
|
|
|
`operator = ""`,
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{Operator: ""}},
|
2018-10-19 16:04:07 +00:00
|
|
|
"",
|
2018-03-04 00:14:33 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
t.Run(tc.Name, func(t *testing.T) {
|
2018-10-19 16:04:07 +00:00
|
|
|
req := require.New(t)
|
2019-10-24 18:38:09 +00:00
|
|
|
actual, err := NewPolicyFromSource("", 0, tc.Rules, tc.Syntax, nil, nil)
|
2018-10-19 16:04:07 +00:00
|
|
|
if tc.Err != "" {
|
|
|
|
errStartsWith(t, err, tc.Err)
|
|
|
|
} else {
|
|
|
|
req.Equal(tc.Expected, actual)
|
2018-03-04 00:14:33 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func TestMergePolicies(t *testing.T) {
|
|
|
|
type mergeTest struct {
|
|
|
|
name string
|
|
|
|
input []*Policy
|
|
|
|
expected *Policy
|
|
|
|
}
|
|
|
|
|
|
|
|
tests := []mergeTest{
|
|
|
|
{
|
|
|
|
name: "Agents",
|
|
|
|
input: []*Policy{
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Agents: []*AgentRule{
|
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "baz",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
AgentPrefixes: []*AgentRule{
|
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "222",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Agents: []*AgentRule{
|
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "foo",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
AgentPrefixes: []*AgentRule{
|
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "000",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
|
|
|
expected: &Policy{PolicyRules: PolicyRules{
|
|
|
|
Agents: []*AgentRule{
|
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
AgentPrefixes: []*AgentRule{
|
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&AgentRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2015-06-18 01:56:29 +00:00
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
{
|
|
|
|
name: "Events",
|
|
|
|
input: []*Policy{
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Events: []*EventRule{
|
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "baz",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
EventPrefixes: []*EventRule{
|
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "222",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Events: []*EventRule{
|
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "foo",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
EventPrefixes: []*EventRule{
|
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "000",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-02 04:31:50 +00:00
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
expected: &Policy{PolicyRules: PolicyRules{
|
|
|
|
Events: []*EventRule{
|
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
EventPrefixes: []*EventRule{
|
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&EventRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Event: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-02 04:31:50 +00:00
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
{
|
|
|
|
name: "Node",
|
|
|
|
input: []*Policy{
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Nodes: []*NodeRule{
|
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "baz",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
NodePrefixes: []*NodeRule{
|
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "222",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Nodes: []*NodeRule{
|
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
NodePrefixes: []*NodeRule{
|
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "000",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
|
|
|
expected: &Policy{PolicyRules: PolicyRules{
|
|
|
|
Nodes: []*NodeRule{
|
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
NodePrefixes: []*NodeRule{
|
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&NodeRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-13 04:20:28 +00:00
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
{
|
|
|
|
name: "Keys",
|
|
|
|
input: []*Policy{
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Keys: []*KeyRule{
|
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "baz",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "zoo",
|
|
|
|
Policy: PolicyList,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
KeyPrefixes: []*KeyRule{
|
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "222",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "333",
|
|
|
|
Policy: PolicyList,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Keys: []*KeyRule{
|
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "zoo",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
KeyPrefixes: []*KeyRule{
|
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "000",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "333",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-13 07:05:11 +00:00
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
expected: &Policy{PolicyRules: PolicyRules{
|
|
|
|
Keys: []*KeyRule{
|
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "zoo",
|
|
|
|
Policy: PolicyList,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
KeyPrefixes: []*KeyRule{
|
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&KeyRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "333",
|
|
|
|
Policy: PolicyList,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-13 07:05:11 +00:00
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
{
|
|
|
|
name: "Services",
|
|
|
|
input: []*Policy{
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Services: []*ServiceRule{
|
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
Intentions: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
Intentions: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "baz",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
Intentions: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
ServicePrefixes: []*ServiceRule{
|
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
Intentions: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
Intentions: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "222",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
Intentions: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Services: []*ServiceRule{
|
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
Intentions: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
Intentions: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
ServicePrefixes: []*ServiceRule{
|
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "000",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
Intentions: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
Intentions: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-02 04:31:50 +00:00
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
expected: &Policy{PolicyRules: PolicyRules{
|
|
|
|
Services: []*ServiceRule{
|
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
Intentions: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
Intentions: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
Intentions: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
ServicePrefixes: []*ServiceRule{
|
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
Intentions: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
Intentions: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&ServiceRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Name: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
Intentions: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-02 04:31:50 +00:00
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
{
|
|
|
|
name: "Sessions",
|
|
|
|
input: []*Policy{
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Sessions: []*SessionRule{
|
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "baz",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
SessionPrefixes: []*SessionRule{
|
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "222",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
Sessions: []*SessionRule{
|
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "foo",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
SessionPrefixes: []*SessionRule{
|
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "000",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2014-08-18 21:54:52 +00:00
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
expected: &Policy{PolicyRules: PolicyRules{
|
|
|
|
Sessions: []*SessionRule{
|
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
SessionPrefixes: []*SessionRule{
|
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&SessionRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Node: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2014-08-18 21:54:52 +00:00
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
{
|
|
|
|
name: "Prepared Queries",
|
|
|
|
input: []*Policy{
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
PreparedQueries: []*PreparedQueryRule{
|
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "baz",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
PreparedQueryPrefixes: []*PreparedQueryRule{
|
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "222",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
|
|
|
&Policy{PolicyRules: PolicyRules{
|
|
|
|
PreparedQueries: []*PreparedQueryRule{
|
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
PreparedQueryPrefixes: []*PreparedQueryRule{
|
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "000",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-07 04:05:15 +00:00
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
expected: &Policy{PolicyRules: PolicyRules{
|
|
|
|
PreparedQueries: []*PreparedQueryRule{
|
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "foo",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "bar",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "baz",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
PreparedQueryPrefixes: []*PreparedQueryRule{
|
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "000",
|
|
|
|
Policy: PolicyWrite,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "111",
|
|
|
|
Policy: PolicyRead,
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
&PreparedQueryRule{
|
2018-10-19 16:04:07 +00:00
|
|
|
Prefix: "222",
|
|
|
|
Policy: PolicyDeny,
|
|
|
|
},
|
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-07 04:05:15 +00:00
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
{
|
|
|
|
name: "Write Precedence",
|
|
|
|
input: []*Policy{
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
2018-10-19 16:04:07 +00:00
|
|
|
ACL: PolicyRead,
|
|
|
|
Keyring: PolicyRead,
|
|
|
|
Operator: PolicyRead,
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
|
|
|
&Policy{PolicyRules: PolicyRules{
|
2018-10-19 16:04:07 +00:00
|
|
|
ACL: PolicyWrite,
|
|
|
|
Keyring: PolicyWrite,
|
|
|
|
Operator: PolicyWrite,
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
expected: &Policy{PolicyRules: PolicyRules{
|
2018-10-19 16:04:07 +00:00
|
|
|
ACL: PolicyWrite,
|
|
|
|
Keyring: PolicyWrite,
|
|
|
|
Operator: PolicyWrite,
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
{
|
|
|
|
name: "Deny Precedence",
|
|
|
|
input: []*Policy{
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
2018-10-19 16:04:07 +00:00
|
|
|
ACL: PolicyWrite,
|
|
|
|
Keyring: PolicyWrite,
|
|
|
|
Operator: PolicyWrite,
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
|
|
|
&Policy{PolicyRules: PolicyRules{
|
2018-10-19 16:04:07 +00:00
|
|
|
ACL: PolicyDeny,
|
|
|
|
Keyring: PolicyDeny,
|
|
|
|
Operator: PolicyDeny,
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-02 04:31:50 +00:00
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
expected: &Policy{PolicyRules: PolicyRules{
|
2018-10-19 16:04:07 +00:00
|
|
|
ACL: PolicyDeny,
|
|
|
|
Keyring: PolicyDeny,
|
|
|
|
Operator: PolicyDeny,
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-02 04:31:50 +00:00
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
{
|
|
|
|
name: "Read Precedence",
|
|
|
|
input: []*Policy{
|
2019-10-15 20:58:50 +00:00
|
|
|
&Policy{PolicyRules: PolicyRules{
|
2018-10-19 16:04:07 +00:00
|
|
|
ACL: PolicyRead,
|
|
|
|
Keyring: PolicyRead,
|
|
|
|
Operator: PolicyRead,
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2018-10-19 16:04:07 +00:00
|
|
|
&Policy{},
|
2016-12-13 04:20:28 +00:00
|
|
|
},
|
2019-10-15 20:58:50 +00:00
|
|
|
expected: &Policy{PolicyRules: PolicyRules{
|
2018-10-19 16:04:07 +00:00
|
|
|
ACL: PolicyRead,
|
|
|
|
Keyring: PolicyRead,
|
|
|
|
Operator: PolicyRead,
|
2019-10-15 20:58:50 +00:00
|
|
|
}},
|
2016-12-13 04:20:28 +00:00
|
|
|
},
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
req := require.New(t)
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
for _, tcase := range tests {
|
|
|
|
t.Run(tcase.name, func(t *testing.T) {
|
|
|
|
act := MergePolicies(tcase.input)
|
|
|
|
exp := tcase.expected
|
|
|
|
req.Equal(exp.ACL, act.ACL)
|
|
|
|
req.Equal(exp.Keyring, act.Keyring)
|
|
|
|
req.Equal(exp.Operator, act.Operator)
|
|
|
|
req.ElementsMatch(exp.Agents, act.Agents)
|
|
|
|
req.ElementsMatch(exp.AgentPrefixes, act.AgentPrefixes)
|
|
|
|
req.ElementsMatch(exp.Events, act.Events)
|
|
|
|
req.ElementsMatch(exp.EventPrefixes, act.EventPrefixes)
|
|
|
|
req.ElementsMatch(exp.Keys, act.Keys)
|
|
|
|
req.ElementsMatch(exp.KeyPrefixes, act.KeyPrefixes)
|
|
|
|
req.ElementsMatch(exp.Nodes, act.Nodes)
|
|
|
|
req.ElementsMatch(exp.NodePrefixes, act.NodePrefixes)
|
|
|
|
req.ElementsMatch(exp.PreparedQueries, act.PreparedQueries)
|
|
|
|
req.ElementsMatch(exp.PreparedQueryPrefixes, act.PreparedQueryPrefixes)
|
|
|
|
req.ElementsMatch(exp.Services, act.Services)
|
|
|
|
req.ElementsMatch(exp.ServicePrefixes, act.ServicePrefixes)
|
|
|
|
req.ElementsMatch(exp.Sessions, act.Sessions)
|
|
|
|
req.ElementsMatch(exp.SessionPrefixes, act.SessionPrefixes)
|
|
|
|
})
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
}
|
2018-10-19 16:04:07 +00:00
|
|
|
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func TestRulesTranslate(t *testing.T) {
|
|
|
|
input := `
|
|
|
|
# top level comment
|
2014-08-18 21:54:52 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
# block comment
|
|
|
|
agent "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
2014-08-18 21:54:52 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
# block comment
|
|
|
|
key "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
2014-08-18 21:54:52 +00:00
|
|
|
}
|
2015-07-07 20:46:41 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
# block comment
|
|
|
|
node "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
2016-08-30 02:09:57 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
# block comment
|
|
|
|
event "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
2016-08-30 02:09:57 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
# block comment
|
|
|
|
service "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
|
|
|
|
# block comment
|
|
|
|
session "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
|
|
|
|
# block comment
|
|
|
|
query "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
|
|
|
|
# comment
|
|
|
|
keyring = "write"
|
|
|
|
|
|
|
|
# comment
|
|
|
|
operator = "write"
|
|
|
|
`
|
|
|
|
|
|
|
|
expected := `
|
|
|
|
# top level comment
|
|
|
|
|
|
|
|
# block comment
|
|
|
|
agent_prefix "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
|
|
|
|
# block comment
|
|
|
|
key_prefix "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
|
|
|
|
# block comment
|
|
|
|
node_prefix "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
|
|
|
|
# block comment
|
|
|
|
event_prefix "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
|
|
|
|
# block comment
|
|
|
|
service_prefix "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
|
|
|
|
# block comment
|
|
|
|
session_prefix "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
|
|
|
|
# block comment
|
|
|
|
query_prefix "" {
|
|
|
|
# policy comment
|
|
|
|
policy = "write"
|
2016-08-30 02:09:57 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
# comment
|
|
|
|
keyring = "write"
|
|
|
|
|
|
|
|
# comment
|
|
|
|
operator = "write"
|
|
|
|
`
|
|
|
|
|
|
|
|
output, err := TranslateLegacyRules([]byte(input))
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, strings.Trim(expected, "\n"), string(output))
|
|
|
|
}
|
|
|
|
|
2019-04-15 18:34:36 +00:00
|
|
|
func TestRulesTranslate_GH5493(t *testing.T) {
|
|
|
|
input := `
|
|
|
|
{
|
|
|
|
"key": {
|
|
|
|
"": {
|
|
|
|
"policy": "read"
|
|
|
|
},
|
|
|
|
"key": {
|
|
|
|
"policy": "read"
|
|
|
|
},
|
|
|
|
"policy": {
|
|
|
|
"policy": "read"
|
|
|
|
},
|
|
|
|
"privatething1/": {
|
|
|
|
"policy": "deny"
|
|
|
|
},
|
|
|
|
"anapplication/private/": {
|
|
|
|
"policy": "deny"
|
|
|
|
},
|
|
|
|
"privatething2/": {
|
|
|
|
"policy": "deny"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"session": {
|
|
|
|
"": {
|
|
|
|
"policy": "write"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"node": {
|
|
|
|
"": {
|
|
|
|
"policy": "read"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"agent": {
|
|
|
|
"": {
|
|
|
|
"policy": "read"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"service": {
|
|
|
|
"": {
|
|
|
|
"policy": "read"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"event": {
|
|
|
|
"": {
|
|
|
|
"policy": "read"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"query": {
|
|
|
|
"": {
|
|
|
|
"policy": "read"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}`
|
|
|
|
expected := `
|
|
|
|
key_prefix "" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
|
|
|
|
key_prefix "key" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
|
|
|
|
key_prefix "policy" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
|
|
|
|
key_prefix "privatething1/" {
|
|
|
|
policy = "deny"
|
|
|
|
}
|
|
|
|
|
|
|
|
key_prefix "anapplication/private/" {
|
|
|
|
policy = "deny"
|
|
|
|
}
|
|
|
|
|
|
|
|
key_prefix "privatething2/" {
|
|
|
|
policy = "deny"
|
|
|
|
}
|
|
|
|
|
|
|
|
session_prefix "" {
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
|
|
|
|
node_prefix "" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
|
|
|
|
agent_prefix "" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
|
|
|
|
service_prefix "" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
|
|
|
|
event_prefix "" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
|
|
|
|
query_prefix "" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
`
|
|
|
|
output, err := TranslateLegacyRules([]byte(input))
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, strings.Trim(expected, "\n"), string(output))
|
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func TestPrecedence(t *testing.T) {
|
|
|
|
type testCase struct {
|
|
|
|
name string
|
|
|
|
a string
|
|
|
|
b string
|
|
|
|
expected bool
|
2015-07-07 20:46:41 +00:00
|
|
|
}
|
2018-10-19 16:04:07 +00:00
|
|
|
|
|
|
|
cases := []testCase{
|
|
|
|
{
|
|
|
|
name: "Deny Over Write",
|
|
|
|
a: PolicyDeny,
|
|
|
|
b: PolicyWrite,
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Deny Over List",
|
|
|
|
a: PolicyDeny,
|
|
|
|
b: PolicyList,
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Deny Over Read",
|
|
|
|
a: PolicyDeny,
|
|
|
|
b: PolicyRead,
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Deny Over Unknown",
|
|
|
|
a: PolicyDeny,
|
|
|
|
b: "not a policy",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Write Over List",
|
|
|
|
a: PolicyWrite,
|
|
|
|
b: PolicyList,
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Write Over Read",
|
|
|
|
a: PolicyWrite,
|
|
|
|
b: PolicyRead,
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Write Over Unknown",
|
|
|
|
a: PolicyWrite,
|
|
|
|
b: "not a policy",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "List Over Read",
|
|
|
|
a: PolicyList,
|
|
|
|
b: PolicyRead,
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "List Over Unknown",
|
|
|
|
a: PolicyList,
|
|
|
|
b: "not a policy",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Read Over Unknown",
|
|
|
|
a: PolicyRead,
|
|
|
|
b: "not a policy",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Write Over Deny",
|
|
|
|
a: PolicyWrite,
|
|
|
|
b: PolicyDeny,
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "List Over Deny",
|
|
|
|
a: PolicyList,
|
|
|
|
b: PolicyDeny,
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Read Over Deny",
|
|
|
|
a: PolicyRead,
|
|
|
|
b: PolicyDeny,
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Deny Over Unknown",
|
|
|
|
a: PolicyDeny,
|
|
|
|
b: "not a policy",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "List Over Write",
|
|
|
|
a: PolicyList,
|
|
|
|
b: PolicyWrite,
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Read Over Write",
|
|
|
|
a: PolicyRead,
|
|
|
|
b: PolicyWrite,
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Unknown Over Write",
|
|
|
|
a: "not a policy",
|
|
|
|
b: PolicyWrite,
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Read Over List",
|
|
|
|
a: PolicyRead,
|
|
|
|
b: PolicyList,
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Unknown Over List",
|
|
|
|
a: "not a policy",
|
|
|
|
b: PolicyList,
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Unknown Over Read",
|
|
|
|
a: "not a policy",
|
|
|
|
b: PolicyRead,
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tcase := range cases {
|
|
|
|
t.Run(tcase.name, func(t *testing.T) {
|
|
|
|
require.Equal(t, tcase.expected, takesPrecedenceOver(tcase.a, tcase.b))
|
|
|
|
})
|
2015-07-07 20:46:41 +00:00
|
|
|
}
|
|
|
|
}
|