2014-08-11 21:01:45 +00:00
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
2018-10-19 16:04:07 +00:00
|
|
|
"fmt"
|
2014-08-11 21:01:45 +00:00
|
|
|
"os"
|
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
|
|
|
"reflect"
|
2021-09-16 14:17:02 +00:00
|
|
|
"strings"
|
2019-01-22 18:14:43 +00:00
|
|
|
"sync/atomic"
|
2014-08-11 21:01:45 +00:00
|
|
|
"testing"
|
2019-01-22 18:14:43 +00:00
|
|
|
"time"
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2020-11-17 23:15:07 +00:00
|
|
|
"github.com/mitchellh/copystructure"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
2014-08-11 21:18:51 +00:00
|
|
|
"github.com/hashicorp/consul/acl"
|
2017-07-06 10:34:00 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2021-04-14 16:39:35 +00:00
|
|
|
"github.com/hashicorp/consul/agent/token"
|
2020-03-09 20:59:02 +00:00
|
|
|
"github.com/hashicorp/consul/api"
|
2019-04-26 17:49:28 +00:00
|
|
|
"github.com/hashicorp/consul/sdk/testutil"
|
2019-03-27 12:54:56 +00:00
|
|
|
"github.com/hashicorp/consul/sdk/testutil/retry"
|
2014-08-11 21:01:45 +00:00
|
|
|
)
|
|
|
|
|
2016-12-09 00:01:01 +00:00
|
|
|
var testACLPolicy = `
|
|
|
|
key "" {
|
|
|
|
policy = "deny"
|
|
|
|
}
|
|
|
|
key "foo/" {
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
var testACLPolicyNew = `
|
|
|
|
key_prefix "" {
|
|
|
|
policy = "deny"
|
|
|
|
}
|
|
|
|
key_prefix "foo/" {
|
|
|
|
policy = "write"
|
|
|
|
}
|
|
|
|
`
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2019-01-22 18:14:43 +00:00
|
|
|
type asyncResolutionResult struct {
|
|
|
|
authz acl.Authorizer
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
2019-10-25 15:06:16 +00:00
|
|
|
func verifyAuthorizerChain(t *testing.T, expected acl.Authorizer, actual acl.Authorizer) {
|
|
|
|
expectedChainAuthz, ok := expected.(*acl.ChainedAuthorizer)
|
|
|
|
require.True(t, ok, "expected Authorizer is not a ChainedAuthorizer")
|
|
|
|
actualChainAuthz, ok := actual.(*acl.ChainedAuthorizer)
|
|
|
|
require.True(t, ok, "actual Authorizer is not a ChainedAuthorizer")
|
|
|
|
|
|
|
|
expectedChain := expectedChainAuthz.AuthorizerChain()
|
|
|
|
actualChain := actualChainAuthz.AuthorizerChain()
|
|
|
|
|
|
|
|
require.Equal(t, len(expectedChain), len(actualChain), "ChainedAuthorizers have different length chains")
|
|
|
|
for idx, expectedAuthz := range expectedChain {
|
|
|
|
actualAuthz := actualChain[idx]
|
|
|
|
|
|
|
|
// pointer equality - because we want to verify authorizer reuse
|
|
|
|
require.True(t, expectedAuthz == actualAuthz, "Authorizer pointers are not equal")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-22 18:14:43 +00:00
|
|
|
func resolveTokenAsync(r *ACLResolver, token string, ch chan *asyncResolutionResult) {
|
2020-11-17 23:15:07 +00:00
|
|
|
_, authz, err := r.ResolveTokenToIdentityAndAuthorizer(token)
|
2019-01-22 18:14:43 +00:00
|
|
|
ch <- &asyncResolutionResult{authz: authz, err: err}
|
|
|
|
}
|
|
|
|
|
2020-11-17 23:15:07 +00:00
|
|
|
// Deprecated: use resolveToken or ACLResolver.ResolveTokenToIdentityAndAuthorizer instead
|
|
|
|
func (r *ACLResolver) ResolveToken(token string) (acl.Authorizer, error) {
|
|
|
|
_, authz, err := r.ResolveTokenToIdentityAndAuthorizer(token)
|
|
|
|
return authz, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func resolveToken(t *testing.T, r *ACLResolver, token string) acl.Authorizer {
|
|
|
|
t.Helper()
|
|
|
|
_, authz, err := r.ResolveTokenToIdentityAndAuthorizer(token)
|
|
|
|
require.NoError(t, err)
|
|
|
|
return authz
|
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func testIdentityForToken(token string) (bool, structs.ACLIdentity, error) {
|
|
|
|
switch token {
|
2019-04-15 20:43:19 +00:00
|
|
|
case "missing-role":
|
|
|
|
return true, &structs.ACLToken{
|
|
|
|
AccessorID: "435a75af-1763-4980-89f4-f0951dda53b4",
|
|
|
|
SecretID: "b1b6be70-ed2e-4c80-8495-bdb3db110b1e",
|
|
|
|
Roles: []structs.ACLTokenRoleLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "not-found",
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "acl-ro",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
2018-10-19 16:04:07 +00:00
|
|
|
case "found":
|
|
|
|
return true, &structs.ACLToken{
|
|
|
|
AccessorID: "5f57c1f6-6a89-4186-9445-531b316e01df",
|
|
|
|
SecretID: "a1a54629-5050-4d17-8a4e-560d2423f835",
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2018-10-19 16:04:07 +00:00
|
|
|
ID: "node-wr",
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2018-10-19 16:04:07 +00:00
|
|
|
ID: "dc2-key-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
2019-04-15 20:43:19 +00:00
|
|
|
case "found-role":
|
|
|
|
// This should be permission-wise identical to "found", except it
|
|
|
|
// gets it's policies indirectly by way of a Role.
|
|
|
|
return true, &structs.ACLToken{
|
|
|
|
AccessorID: "5f57c1f6-6a89-4186-9445-531b316e01df",
|
|
|
|
SecretID: "a1a54629-5050-4d17-8a4e-560d2423f835",
|
|
|
|
Roles: []structs.ACLTokenRoleLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "found",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
case "found-policy-and-role":
|
|
|
|
return true, &structs.ACLToken{
|
|
|
|
AccessorID: "5f57c1f6-6a89-4186-9445-531b316e01df",
|
|
|
|
SecretID: "a1a54629-5050-4d17-8a4e-560d2423f835",
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "node-wr",
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "dc2-key-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Roles: []structs.ACLTokenRoleLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "service-ro",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
2020-06-16 16:54:27 +00:00
|
|
|
case "found-role-node-identity":
|
|
|
|
return true, &structs.ACLToken{
|
|
|
|
AccessorID: "f3f47a09-de29-4c57-8f54-b65a9be79641",
|
|
|
|
SecretID: "e96aca00-5951-4b97-b0e5-5816f42dfb93",
|
|
|
|
Roles: []structs.ACLTokenRoleLink{
|
|
|
|
{
|
|
|
|
ID: "node-identity",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
2018-10-19 16:04:07 +00:00
|
|
|
case "acl-ro":
|
|
|
|
return true, &structs.ACLToken{
|
|
|
|
AccessorID: "435a75af-1763-4980-89f4-f0951dda53b4",
|
|
|
|
SecretID: "b1b6be70-ed2e-4c80-8495-bdb3db110b1e",
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2018-10-19 16:04:07 +00:00
|
|
|
ID: "acl-ro",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
case "acl-wr":
|
|
|
|
return true, &structs.ACLToken{
|
|
|
|
AccessorID: "435a75af-1763-4980-89f4-f0951dda53b4",
|
|
|
|
SecretID: "b1b6be70-ed2e-4c80-8495-bdb3db110b1e",
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2018-10-19 16:04:07 +00:00
|
|
|
ID: "acl-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
2019-01-22 18:14:43 +00:00
|
|
|
case "racey-unmodified":
|
|
|
|
return true, &structs.ACLToken{
|
|
|
|
AccessorID: "5f57c1f6-6a89-4186-9445-531b316e01df",
|
|
|
|
SecretID: "a1a54629-5050-4d17-8a4e-560d2423f835",
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-01-22 18:14:43 +00:00
|
|
|
ID: "node-wr",
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-01-22 18:14:43 +00:00
|
|
|
ID: "acl-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
case "racey-modified":
|
|
|
|
return true, &structs.ACLToken{
|
|
|
|
AccessorID: "5f57c1f6-6a89-4186-9445-531b316e01df",
|
|
|
|
SecretID: "a1a54629-5050-4d17-8a4e-560d2423f835",
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-01-22 18:14:43 +00:00
|
|
|
ID: "node-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
2019-03-14 14:35:34 +00:00
|
|
|
case "concurrent-resolve":
|
2019-01-22 18:14:43 +00:00
|
|
|
return true, &structs.ACLToken{
|
|
|
|
AccessorID: "5f57c1f6-6a89-4186-9445-531b316e01df",
|
|
|
|
SecretID: "a1a54629-5050-4d17-8a4e-560d2423f835",
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-01-22 18:14:43 +00:00
|
|
|
ID: "node-wr",
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-01-22 18:14:43 +00:00
|
|
|
ID: "acl-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
2018-10-19 16:04:07 +00:00
|
|
|
default:
|
2021-09-16 14:17:02 +00:00
|
|
|
return true, nil, acl.ErrNotFound
|
2014-08-11 21:01:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func testPolicyForID(policyID string) (bool, *structs.ACLPolicy, error) {
|
|
|
|
switch policyID {
|
|
|
|
case "acl-ro":
|
2021-07-16 21:59:56 +00:00
|
|
|
p := &structs.ACLPolicy{
|
2018-10-19 16:04:07 +00:00
|
|
|
ID: "acl-ro",
|
|
|
|
Name: "acl-ro",
|
|
|
|
Description: "acl-ro",
|
|
|
|
Rules: `acl = "read"`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
2021-07-16 21:59:56 +00:00
|
|
|
}
|
|
|
|
p.SetHash(false)
|
|
|
|
return true, p, nil
|
2018-10-19 16:04:07 +00:00
|
|
|
case "acl-wr":
|
2021-06-09 22:14:36 +00:00
|
|
|
p := &structs.ACLPolicy{
|
2018-10-19 16:04:07 +00:00
|
|
|
ID: "acl-wr",
|
|
|
|
Name: "acl-wr",
|
|
|
|
Description: "acl-wr",
|
|
|
|
Rules: `acl = "write"`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
2021-06-09 22:14:36 +00:00
|
|
|
}
|
|
|
|
p.SetHash(false)
|
|
|
|
return true, p, nil
|
2019-04-15 20:43:19 +00:00
|
|
|
case "service-ro":
|
2021-07-16 21:59:56 +00:00
|
|
|
p := &structs.ACLPolicy{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "service-ro",
|
|
|
|
Name: "service-ro",
|
|
|
|
Description: "service-ro",
|
|
|
|
Rules: `service_prefix "" { policy = "read" }`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
2021-07-16 21:59:56 +00:00
|
|
|
}
|
|
|
|
p.SetHash(false)
|
|
|
|
return true, p, nil
|
2019-04-15 20:43:19 +00:00
|
|
|
case "service-wr":
|
2021-07-16 21:59:56 +00:00
|
|
|
p := &structs.ACLPolicy{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "service-wr",
|
|
|
|
Name: "service-wr",
|
|
|
|
Description: "service-wr",
|
|
|
|
Rules: `service_prefix "" { policy = "write" }`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
2021-07-16 21:59:56 +00:00
|
|
|
}
|
|
|
|
p.SetHash(false)
|
|
|
|
return true, p, nil
|
2018-10-19 16:04:07 +00:00
|
|
|
case "node-wr":
|
2021-06-09 22:14:36 +00:00
|
|
|
p := &structs.ACLPolicy{
|
2018-10-19 16:04:07 +00:00
|
|
|
ID: "node-wr",
|
|
|
|
Name: "node-wr",
|
|
|
|
Description: "node-wr",
|
|
|
|
Rules: `node_prefix "" { policy = "write"}`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
Datacenters: []string{"dc1"},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
2021-06-09 22:14:36 +00:00
|
|
|
}
|
|
|
|
p.SetHash(false)
|
|
|
|
return true, p, nil
|
2018-10-19 16:04:07 +00:00
|
|
|
case "dc2-key-wr":
|
2021-07-16 21:59:56 +00:00
|
|
|
p := &structs.ACLPolicy{
|
2018-10-19 16:04:07 +00:00
|
|
|
ID: "dc2-key-wr",
|
|
|
|
Name: "dc2-key-wr",
|
|
|
|
Description: "dc2-key-wr",
|
|
|
|
Rules: `key_prefix "" { policy = "write"}`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
Datacenters: []string{"dc2"},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
2021-07-16 21:59:56 +00:00
|
|
|
}
|
|
|
|
p.SetHash(false)
|
|
|
|
return true, p, nil
|
2018-10-19 16:04:07 +00:00
|
|
|
default:
|
2021-09-16 14:17:02 +00:00
|
|
|
return true, nil, acl.ErrNotFound
|
2014-08-12 17:58:02 +00:00
|
|
|
}
|
2018-10-19 16:04:07 +00:00
|
|
|
}
|
2014-08-12 17:58:02 +00:00
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
func testRoleForID(roleID string) (bool, *structs.ACLRole, error) {
|
|
|
|
switch roleID {
|
|
|
|
case "service-ro":
|
|
|
|
return true, &structs.ACLRole{
|
|
|
|
ID: "service-ro",
|
|
|
|
Name: "service-ro",
|
|
|
|
Description: "service-ro",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "service-ro",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
}, nil
|
|
|
|
case "service-wr":
|
|
|
|
return true, &structs.ACLRole{
|
|
|
|
ID: "service-wr",
|
|
|
|
Name: "service-wr",
|
|
|
|
Description: "service-wr",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "service-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
}, nil
|
|
|
|
case "found":
|
|
|
|
return true, &structs.ACLRole{
|
|
|
|
ID: "found",
|
|
|
|
Name: "found",
|
|
|
|
Description: "found",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "node-wr",
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "dc2-key-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
case "acl-ro":
|
|
|
|
return true, &structs.ACLRole{
|
|
|
|
ID: "acl-ro",
|
|
|
|
Name: "acl-ro",
|
|
|
|
Description: "acl-ro",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "acl-ro",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
case "acl-wr":
|
|
|
|
return true, &structs.ACLRole{
|
|
|
|
ID: "acl-rw",
|
|
|
|
Name: "acl-rw",
|
|
|
|
Description: "acl-rw",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "acl-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
case "racey-unmodified":
|
|
|
|
return true, &structs.ACLRole{
|
|
|
|
ID: "racey-unmodified",
|
|
|
|
Name: "racey-unmodified",
|
|
|
|
Description: "racey-unmodified",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "node-wr",
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "acl-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
case "racey-modified":
|
|
|
|
return true, &structs.ACLRole{
|
|
|
|
ID: "racey-modified",
|
|
|
|
Name: "racey-modified",
|
|
|
|
Description: "racey-modified",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "node-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
case "concurrent-resolve-1":
|
|
|
|
return true, &structs.ACLRole{
|
|
|
|
ID: "concurrent-resolve-1",
|
|
|
|
Name: "concurrent-resolve-1",
|
|
|
|
Description: "concurrent-resolve-1",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "node-wr",
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "acl-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
case "concurrent-resolve-2":
|
|
|
|
return true, &structs.ACLRole{
|
|
|
|
ID: "concurrent-resolve-2",
|
|
|
|
Name: "concurrent-resolve-2",
|
|
|
|
Description: "concurrent-resolve-2",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "node-wr",
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-04-15 20:43:19 +00:00
|
|
|
ID: "acl-wr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
2020-06-16 16:54:27 +00:00
|
|
|
case "node-identity":
|
|
|
|
return true, &structs.ACLRole{
|
|
|
|
ID: "node-identity",
|
|
|
|
Name: "node-identity",
|
|
|
|
Description: "node-identity",
|
|
|
|
NodeIdentities: []*structs.ACLNodeIdentity{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2020-06-16 16:54:27 +00:00
|
|
|
NodeName: "test-node",
|
|
|
|
Datacenter: "dc1",
|
|
|
|
},
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2020-06-16 16:54:27 +00:00
|
|
|
NodeName: "test-node-dc2",
|
|
|
|
Datacenter: "dc2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
2019-04-15 20:43:19 +00:00
|
|
|
default:
|
2021-09-16 14:17:02 +00:00
|
|
|
return true, nil, acl.ErrNotFound
|
2019-04-15 20:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
// ACLResolverTestDelegate is used to test
|
|
|
|
// the ACLResolver without running Agents
|
|
|
|
type ACLResolverTestDelegate struct {
|
2020-07-03 20:52:08 +00:00
|
|
|
// enabled is no longer part of the delegate. It is still here as a field on
|
|
|
|
// the fake delegate because many tests use this field to enable ACLs. This field
|
|
|
|
// is now used to set ACLResolverConfig.Config.ACLsEnabled.
|
2018-10-19 16:04:07 +00:00
|
|
|
enabled bool
|
|
|
|
datacenter string
|
|
|
|
legacy bool
|
|
|
|
localTokens bool
|
|
|
|
localPolicies bool
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles bool
|
2018-10-19 16:04:07 +00:00
|
|
|
getPolicyFn func(*structs.ACLPolicyResolveLegacyRequest, *structs.ACLPolicyResolveLegacyResponse) error
|
2018-10-31 20:00:46 +00:00
|
|
|
tokenReadFn func(*structs.ACLTokenGetRequest, *structs.ACLTokenResponse) error
|
|
|
|
policyResolveFn func(*structs.ACLPolicyBatchGetRequest, *structs.ACLPolicyBatchResponse) error
|
2019-04-15 20:43:19 +00:00
|
|
|
roleResolveFn func(*structs.ACLRoleBatchGetRequest, *structs.ACLRoleBatchResponse) error
|
|
|
|
|
2021-09-16 14:17:02 +00:00
|
|
|
// testTokens is used by plainTokenReadFn if not nil
|
|
|
|
testTokens map[string]*structs.ACLToken
|
|
|
|
// testPolicies is used by plainPolicyResolveFn if not nil
|
|
|
|
testPolicies map[string]*structs.ACLPolicy
|
|
|
|
// testRoles is used by plainRoleResolveFn if not nil
|
|
|
|
testRoles map[string]*structs.ACLRole
|
|
|
|
|
2020-05-13 17:00:08 +00:00
|
|
|
localTokenResolutions int32
|
|
|
|
remoteTokenResolutions int32
|
|
|
|
localPolicyResolutions int32
|
|
|
|
remotePolicyResolutions int32
|
|
|
|
localRoleResolutions int32
|
|
|
|
remoteRoleResolutions int32
|
|
|
|
remoteLegacyResolutions int32
|
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
// state for the optional default resolver function defaultTokenReadFn
|
|
|
|
tokenCached bool
|
|
|
|
// state for the optional default resolver function defaultPolicyResolveFn
|
|
|
|
policyCached bool
|
|
|
|
// state for the optional default resolver function defaultRoleResolveFn
|
|
|
|
roleCached bool
|
2019-10-25 15:06:16 +00:00
|
|
|
|
|
|
|
EnterpriseACLResolverTestDelegate
|
2019-04-15 20:43:19 +00:00
|
|
|
}
|
|
|
|
|
2021-09-16 14:17:02 +00:00
|
|
|
// UseTestLocalData will force delegate-local maps to be used in lieu of the
|
|
|
|
// global factory functions.
|
|
|
|
func (d *ACLResolverTestDelegate) UseTestLocalData(data []interface{}) {
|
|
|
|
d.testTokens = make(map[string]*structs.ACLToken)
|
|
|
|
d.testPolicies = make(map[string]*structs.ACLPolicy)
|
|
|
|
d.testRoles = make(map[string]*structs.ACLRole)
|
|
|
|
|
|
|
|
var rest []interface{}
|
|
|
|
for _, item := range data {
|
|
|
|
switch x := item.(type) {
|
|
|
|
case *structs.ACLToken:
|
|
|
|
d.testTokens[x.SecretID] = x
|
|
|
|
case *structs.ACLPolicy:
|
|
|
|
d.testPolicies[x.ID] = x
|
|
|
|
case *structs.ACLRole:
|
|
|
|
d.testRoles[x.ID] = x
|
|
|
|
case string:
|
|
|
|
parts := strings.SplitN(x, ":", 2)
|
|
|
|
switch parts[0] {
|
|
|
|
case "token-not-found":
|
|
|
|
d.testTokens[parts[1]] = nil
|
|
|
|
case "policy-not-found":
|
|
|
|
d.testPolicies[parts[1]] = nil
|
|
|
|
case "role-not-found":
|
|
|
|
d.testRoles[parts[1]] = nil
|
|
|
|
default:
|
|
|
|
rest = append(rest, item)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
rest = append(rest, item)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
d.EnterpriseACLResolverTestDelegate.UseTestLocalData(rest)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UseDefaultData will force the global factory functions to be used instead of
|
|
|
|
// delegate-local maps.
|
|
|
|
func (d *ACLResolverTestDelegate) UseDefaultData() {
|
|
|
|
d.testTokens = nil
|
|
|
|
d.testPolicies = nil
|
|
|
|
d.testRoles = nil
|
|
|
|
d.EnterpriseACLResolverTestDelegate.UseDefaultData()
|
|
|
|
}
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
func (d *ACLResolverTestDelegate) Reset() {
|
|
|
|
d.tokenCached = false
|
|
|
|
d.policyCached = false
|
|
|
|
d.roleCached = false
|
2021-09-16 20:53:10 +00:00
|
|
|
d.EnterpriseACLResolverTestDelegate.Reset()
|
2019-04-26 17:49:28 +00:00
|
|
|
}
|
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
var errRPC = fmt.Errorf("Induced RPC Error")
|
|
|
|
|
|
|
|
func (d *ACLResolverTestDelegate) defaultTokenReadFn(errAfterCached error) func(*structs.ACLTokenGetRequest, *structs.ACLTokenResponse) error {
|
|
|
|
return func(args *structs.ACLTokenGetRequest, reply *structs.ACLTokenResponse) error {
|
|
|
|
if !d.tokenCached {
|
2019-04-26 17:49:28 +00:00
|
|
|
err := d.plainTokenReadFn(args, reply)
|
2019-04-15 20:43:19 +00:00
|
|
|
d.tokenCached = true
|
2019-04-26 17:49:28 +00:00
|
|
|
return err
|
2019-04-15 20:43:19 +00:00
|
|
|
}
|
|
|
|
return errAfterCached
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
func (d *ACLResolverTestDelegate) plainTokenReadFn(args *structs.ACLTokenGetRequest, reply *structs.ACLTokenResponse) error {
|
2021-09-16 14:17:02 +00:00
|
|
|
if d.testTokens != nil {
|
|
|
|
token, ok := d.testTokens[args.TokenID]
|
|
|
|
if ok {
|
|
|
|
if token == nil {
|
|
|
|
return acl.ErrNotFound
|
|
|
|
}
|
|
|
|
reply.Token = token
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
_, token, err := testIdentityForToken(args.TokenID)
|
|
|
|
if token != nil {
|
|
|
|
reply.Token = token.(*structs.ACLToken)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
func (d *ACLResolverTestDelegate) defaultPolicyResolveFn(errAfterCached error) func(*structs.ACLPolicyBatchGetRequest, *structs.ACLPolicyBatchResponse) error {
|
|
|
|
return func(args *structs.ACLPolicyBatchGetRequest, reply *structs.ACLPolicyBatchResponse) error {
|
|
|
|
if !d.policyCached {
|
2019-04-26 17:49:28 +00:00
|
|
|
err := d.plainPolicyResolveFn(args, reply)
|
2019-04-15 20:43:19 +00:00
|
|
|
d.policyCached = true
|
2019-04-26 17:49:28 +00:00
|
|
|
return err
|
2019-04-15 20:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return errAfterCached
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
func (d *ACLResolverTestDelegate) plainPolicyResolveFn(args *structs.ACLPolicyBatchGetRequest, reply *structs.ACLPolicyBatchResponse) error {
|
|
|
|
// TODO: if we were being super correct about it, we'd verify the token first
|
|
|
|
// TODO: and possibly return a not-found or permission-denied here
|
|
|
|
|
|
|
|
for _, policyID := range args.PolicyIDs {
|
2021-09-16 14:17:02 +00:00
|
|
|
if d.testPolicies != nil {
|
|
|
|
if policy := d.testPolicies[policyID]; policy != nil {
|
|
|
|
reply.Policies = append(reply.Policies, policy)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_, policy, _ := testPolicyForID(policyID)
|
|
|
|
if policy != nil {
|
|
|
|
reply.Policies = append(reply.Policies, policy)
|
|
|
|
}
|
2019-04-26 17:49:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
func (d *ACLResolverTestDelegate) defaultRoleResolveFn(errAfterCached error) func(*structs.ACLRoleBatchGetRequest, *structs.ACLRoleBatchResponse) error {
|
|
|
|
return func(args *structs.ACLRoleBatchGetRequest, reply *structs.ACLRoleBatchResponse) error {
|
|
|
|
if !d.roleCached {
|
2019-04-26 17:49:28 +00:00
|
|
|
err := d.plainRoleResolveFn(args, reply)
|
2019-04-15 20:43:19 +00:00
|
|
|
d.roleCached = true
|
2019-04-26 17:49:28 +00:00
|
|
|
return err
|
2019-04-15 20:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return errAfterCached
|
|
|
|
}
|
2014-08-12 17:58:02 +00:00
|
|
|
}
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
// plainRoleResolveFn tries to follow the normal logic of ACL.RoleResolve using
|
|
|
|
// the test fixtures.
|
|
|
|
func (d *ACLResolverTestDelegate) plainRoleResolveFn(args *structs.ACLRoleBatchGetRequest, reply *structs.ACLRoleBatchResponse) error {
|
|
|
|
// TODO: if we were being super correct about it, we'd verify the token first
|
|
|
|
// TODO: and possibly return a not-found or permission-denied here
|
|
|
|
|
|
|
|
for _, roleID := range args.RoleIDs {
|
2021-09-16 14:17:02 +00:00
|
|
|
if d.testRoles != nil {
|
|
|
|
if role := d.testRoles[roleID]; role != nil {
|
|
|
|
reply.Roles = append(reply.Roles, role)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_, role, _ := testRoleForID(roleID)
|
|
|
|
if role != nil {
|
|
|
|
reply.Roles = append(reply.Roles, role)
|
|
|
|
}
|
2019-04-26 17:49:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func (d *ACLResolverTestDelegate) ACLDatacenter(legacy bool) string {
|
|
|
|
return d.datacenter
|
|
|
|
}
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func (d *ACLResolverTestDelegate) UseLegacyACLs() bool {
|
|
|
|
return d.legacy
|
2014-08-11 21:01:45 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func (d *ACLResolverTestDelegate) ResolveIdentityFromToken(token string) (bool, structs.ACLIdentity, error) {
|
|
|
|
if !d.localTokens {
|
|
|
|
return false, nil, nil
|
|
|
|
}
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2020-05-13 17:00:08 +00:00
|
|
|
atomic.AddInt32(&d.localTokenResolutions, 1)
|
2021-09-16 14:17:02 +00:00
|
|
|
if d.testTokens != nil {
|
|
|
|
if token, ok := d.testTokens[token]; ok {
|
|
|
|
if token != nil {
|
|
|
|
return true, token, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true, nil, acl.ErrNotFound
|
|
|
|
}
|
2018-10-19 16:04:07 +00:00
|
|
|
return testIdentityForToken(token)
|
|
|
|
}
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func (d *ACLResolverTestDelegate) ResolvePolicyFromID(policyID string) (bool, *structs.ACLPolicy, error) {
|
|
|
|
if !d.localPolicies {
|
|
|
|
return false, nil, nil
|
2014-08-11 21:01:45 +00:00
|
|
|
}
|
|
|
|
|
2020-05-13 17:00:08 +00:00
|
|
|
atomic.AddInt32(&d.localPolicyResolutions, 1)
|
2021-09-16 14:17:02 +00:00
|
|
|
if d.testPolicies != nil {
|
|
|
|
if policy, ok := d.testPolicies[policyID]; ok {
|
|
|
|
if policy != nil {
|
|
|
|
return true, policy, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true, nil, acl.ErrNotFound
|
|
|
|
}
|
2018-10-19 16:04:07 +00:00
|
|
|
return testPolicyForID(policyID)
|
|
|
|
}
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
func (d *ACLResolverTestDelegate) ResolveRoleFromID(roleID string) (bool, *structs.ACLRole, error) {
|
|
|
|
if !d.localRoles {
|
|
|
|
return false, nil, nil
|
|
|
|
}
|
|
|
|
|
2020-05-13 17:00:08 +00:00
|
|
|
atomic.AddInt32(&d.localRoleResolutions, 1)
|
2021-09-16 14:17:02 +00:00
|
|
|
if d.testRoles != nil {
|
|
|
|
if role, ok := d.testRoles[roleID]; ok {
|
|
|
|
if role != nil {
|
|
|
|
return true, role, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true, nil, acl.ErrNotFound
|
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
return testRoleForID(roleID)
|
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func (d *ACLResolverTestDelegate) RPC(method string, args interface{}, reply interface{}) error {
|
|
|
|
switch method {
|
|
|
|
case "ACL.GetPolicy":
|
2020-05-13 17:00:08 +00:00
|
|
|
atomic.AddInt32(&d.remoteLegacyResolutions, 1)
|
2018-10-19 16:04:07 +00:00
|
|
|
if d.getPolicyFn != nil {
|
|
|
|
return d.getPolicyFn(args.(*structs.ACLPolicyResolveLegacyRequest), reply.(*structs.ACLPolicyResolveLegacyResponse))
|
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
panic("Bad Test Implementation: should provide a getPolicyFn to the ACLResolverTestDelegate")
|
2018-10-19 16:04:07 +00:00
|
|
|
case "ACL.TokenRead":
|
2020-05-13 17:00:08 +00:00
|
|
|
atomic.AddInt32(&d.remoteTokenResolutions, 1)
|
2018-10-19 16:04:07 +00:00
|
|
|
if d.tokenReadFn != nil {
|
2018-10-31 20:00:46 +00:00
|
|
|
return d.tokenReadFn(args.(*structs.ACLTokenGetRequest), reply.(*structs.ACLTokenResponse))
|
2018-10-19 16:04:07 +00:00
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
panic("Bad Test Implementation: should provide a tokenReadFn to the ACLResolverTestDelegate")
|
2018-10-19 16:04:07 +00:00
|
|
|
case "ACL.PolicyResolve":
|
2020-05-13 17:00:08 +00:00
|
|
|
atomic.AddInt32(&d.remotePolicyResolutions, 1)
|
2018-10-19 16:04:07 +00:00
|
|
|
if d.policyResolveFn != nil {
|
2018-10-31 20:00:46 +00:00
|
|
|
return d.policyResolveFn(args.(*structs.ACLPolicyBatchGetRequest), reply.(*structs.ACLPolicyBatchResponse))
|
2018-10-19 16:04:07 +00:00
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
panic("Bad Test Implementation: should provide a policyResolveFn to the ACLResolverTestDelegate")
|
|
|
|
case "ACL.RoleResolve":
|
2020-05-13 17:00:08 +00:00
|
|
|
atomic.AddInt32(&d.remoteRoleResolutions, 1)
|
2019-04-15 20:43:19 +00:00
|
|
|
if d.roleResolveFn != nil {
|
|
|
|
return d.roleResolveFn(args.(*structs.ACLRoleBatchGetRequest), reply.(*structs.ACLRoleBatchResponse))
|
|
|
|
}
|
|
|
|
panic("Bad Test Implementation: should provide a roleResolveFn to the ACLResolverTestDelegate")
|
2014-08-11 21:01:45 +00:00
|
|
|
}
|
2019-10-25 15:06:16 +00:00
|
|
|
if handled, err := d.EnterpriseACLResolverTestDelegate.RPC(method, args, reply); handled {
|
|
|
|
return err
|
|
|
|
}
|
2018-10-19 16:04:07 +00:00
|
|
|
panic("Bad Test Implementation: Was the ACLResolver updated to use new RPC methods")
|
2014-08-11 21:01:45 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 20:52:08 +00:00
|
|
|
func newTestACLResolver(t *testing.T, delegate *ACLResolverTestDelegate, cb func(*ACLResolverConfig)) *ACLResolver {
|
2018-10-19 16:04:07 +00:00
|
|
|
config := DefaultConfig()
|
2021-08-06 22:39:39 +00:00
|
|
|
config.ACLResolverSettings.ACLDefaultPolicy = "deny"
|
|
|
|
config.ACLResolverSettings.ACLDownPolicy = "extend-cache"
|
|
|
|
config.ACLResolverSettings.ACLsEnabled = delegate.enabled
|
2018-10-19 16:04:07 +00:00
|
|
|
rconf := &ACLResolverConfig{
|
2021-08-06 22:39:39 +00:00
|
|
|
Config: config.ACLResolverSettings,
|
2020-05-06 20:40:16 +00:00
|
|
|
Logger: testutil.Logger(t),
|
2018-10-19 16:04:07 +00:00
|
|
|
CacheConfig: &structs.ACLCachesConfig{
|
|
|
|
Identities: 4,
|
|
|
|
Policies: 4,
|
|
|
|
ParsedPolicies: 4,
|
|
|
|
Authorizers: 4,
|
2019-04-15 20:43:19 +00:00
|
|
|
Roles: 4,
|
2018-10-19 16:04:07 +00:00
|
|
|
},
|
2021-08-09 20:29:21 +00:00
|
|
|
DisableDuration: aclClientDisabledTTL,
|
|
|
|
Delegate: delegate,
|
2014-08-11 21:54:18 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
if cb != nil {
|
|
|
|
cb(rconf)
|
2014-08-11 21:54:18 +00:00
|
|
|
}
|
2018-10-19 16:04:07 +00:00
|
|
|
|
|
|
|
resolver, err := NewACLResolver(rconf)
|
|
|
|
require.NoError(t, err)
|
|
|
|
return resolver
|
2014-08-11 21:54:18 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func TestACLResolver_Disabled(t *testing.T) {
|
2017-06-27 13:22:18 +00:00
|
|
|
t.Parallel()
|
2014-08-11 21:54:18 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: false,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
2014-08-11 21:54:18 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
r := newTestACLResolver(t, delegate, nil)
|
|
|
|
|
|
|
|
authz, err := r.ResolveToken("does not exist")
|
2021-07-15 21:17:49 +00:00
|
|
|
require.Equal(t, acl.ManageAll(), authz)
|
2018-10-19 16:04:07 +00:00
|
|
|
require.Nil(t, err)
|
2014-08-11 21:54:18 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func TestACLResolver_ResolveRootACL(t *testing.T) {
|
2017-06-27 13:22:18 +00:00
|
|
|
t.Parallel()
|
2018-10-19 16:04:07 +00:00
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, delegate, nil)
|
|
|
|
|
|
|
|
t.Run("Allow", func(t *testing.T) {
|
|
|
|
authz, err := r.ResolveToken("allow")
|
|
|
|
require.Nil(t, authz)
|
|
|
|
require.Error(t, err)
|
|
|
|
require.True(t, acl.IsErrRootDenied(err))
|
2014-08-12 17:38:57 +00:00
|
|
|
})
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Deny", func(t *testing.T) {
|
|
|
|
authz, err := r.ResolveToken("deny")
|
|
|
|
require.Nil(t, authz)
|
|
|
|
require.Error(t, err)
|
|
|
|
require.True(t, acl.IsErrRootDenied(err))
|
|
|
|
})
|
2014-08-12 17:38:57 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Manage", func(t *testing.T) {
|
|
|
|
authz, err := r.ResolveToken("manage")
|
|
|
|
require.Nil(t, authz)
|
|
|
|
require.Error(t, err)
|
|
|
|
require.True(t, acl.IsErrRootDenied(err))
|
|
|
|
})
|
2014-08-12 17:38:57 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func TestACLResolver_DownPolicy(t *testing.T) {
|
2017-06-27 13:22:18 +00:00
|
|
|
t.Parallel()
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2019-10-25 17:05:43 +00:00
|
|
|
requireIdentityCached := func(t *testing.T, r *ACLResolver, id string, present bool, msg string) {
|
2019-03-12 15:23:43 +00:00
|
|
|
t.Helper()
|
|
|
|
|
2019-10-25 17:05:43 +00:00
|
|
|
cacheVal := r.cache.GetIdentity(id)
|
2019-03-12 15:23:43 +00:00
|
|
|
require.NotNil(t, cacheVal)
|
|
|
|
if present {
|
|
|
|
require.NotNil(t, cacheVal.Identity, msg)
|
|
|
|
} else {
|
|
|
|
require.Nil(t, cacheVal.Identity, msg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
requirePolicyCached := func(t *testing.T, r *ACLResolver, policyID string, present bool, msg string) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
cacheVal := r.cache.GetPolicy(policyID)
|
|
|
|
require.NotNil(t, cacheVal)
|
|
|
|
if present {
|
|
|
|
require.NotNil(t, cacheVal.Policy, msg)
|
|
|
|
} else {
|
|
|
|
require.Nil(t, cacheVal.Policy, msg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Deny", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: true,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: true,
|
2018-10-31 20:00:46 +00:00
|
|
|
tokenReadFn: func(*structs.ACLTokenGetRequest, *structs.ACLTokenResponse) error {
|
2019-04-15 20:43:19 +00:00
|
|
|
return errRPC
|
2018-10-19 16:04:07 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "deny"
|
|
|
|
})
|
|
|
|
|
|
|
|
authz, err := r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.Equal(t, authz, acl.DenyAll())
|
2019-03-12 15:23:43 +00:00
|
|
|
|
2019-10-25 17:05:43 +00:00
|
|
|
requireIdentityCached(t, r, tokenSecretCacheID("foo"), false, "not present")
|
2014-08-11 21:01:45 +00:00
|
|
|
})
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Allow", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: true,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: true,
|
2018-10-31 20:00:46 +00:00
|
|
|
tokenReadFn: func(*structs.ACLTokenGetRequest, *structs.ACLTokenResponse) error {
|
2019-04-15 20:43:19 +00:00
|
|
|
return errRPC
|
2018-10-19 16:04:07 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "allow"
|
|
|
|
})
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.Equal(t, authz, acl.AllowAll())
|
2019-03-12 15:23:43 +00:00
|
|
|
|
2019-10-25 17:05:43 +00:00
|
|
|
requireIdentityCached(t, r, tokenSecretCacheID("foo"), false, "not present")
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Expired-Policy", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: true,
|
|
|
|
localPolicies: false,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: false,
|
2018-10-19 16:04:07 +00:00
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
delegate.policyResolveFn = delegate.defaultPolicyResolveFn(errRPC)
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "deny"
|
|
|
|
config.Config.ACLPolicyTTL = 0
|
2019-04-15 20:43:19 +00:00
|
|
|
config.Config.ACLRoleTTL = 0
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("found")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
2019-03-12 15:23:43 +00:00
|
|
|
requirePolicyCached(t, r, "node-wr", true, "cached") // from "found" token
|
|
|
|
requirePolicyCached(t, r, "dc2-key-wr", true, "cached") // from "found" token
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
// policy cache expired - so we will fail to resolve that policy and use the default policy only
|
|
|
|
authz2, err := r.ResolveToken("found")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz2)
|
2019-10-25 15:06:16 +00:00
|
|
|
require.NotEqual(t, authz, authz2)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz2.NodeWrite("foo", nil))
|
2019-03-12 15:23:43 +00:00
|
|
|
|
|
|
|
requirePolicyCached(t, r, "node-wr", false, "expired") // from "found" token
|
|
|
|
requirePolicyCached(t, r, "dc2-key-wr", false, "expired") // from "found" token
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
t.Run("Expired-Role", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: true,
|
|
|
|
localPolicies: false,
|
|
|
|
localRoles: false,
|
|
|
|
}
|
|
|
|
delegate.policyResolveFn = delegate.defaultPolicyResolveFn(errRPC)
|
|
|
|
delegate.roleResolveFn = delegate.defaultRoleResolveFn(errRPC)
|
|
|
|
|
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "deny"
|
|
|
|
config.Config.ACLPolicyTTL = 0
|
|
|
|
config.Config.ACLRoleTTL = 0
|
|
|
|
})
|
|
|
|
|
|
|
|
authz, err := r.ResolveToken("found-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
|
|
|
|
// role cache expired - so we will fail to resolve that role and use the default policy only
|
|
|
|
authz2, err := r.ResolveToken("found-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz2)
|
|
|
|
require.False(t, authz == authz2)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz2.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Extend-Cache-Policy", func(t *testing.T) {
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: true,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: true,
|
2018-10-19 16:04:07 +00:00
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
delegate.tokenReadFn = delegate.defaultTokenReadFn(errRPC)
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "extend-cache"
|
|
|
|
config.Config.ACLTokenTTL = 0
|
|
|
|
})
|
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
authz, err := r.ResolveToken("found")
|
2018-10-19 16:04:07 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
2019-10-25 17:05:43 +00:00
|
|
|
requireIdentityCached(t, r, tokenSecretCacheID("found"), true, "cached")
|
2019-03-12 15:23:43 +00:00
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
authz2, err := r.ResolveToken("found")
|
2018-10-19 16:04:07 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz2)
|
2019-10-25 15:06:16 +00:00
|
|
|
verifyAuthorizerChain(t, authz, authz2)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz2.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Extend-Cache-Role", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: true,
|
|
|
|
localRoles: true,
|
|
|
|
}
|
|
|
|
delegate.tokenReadFn = delegate.defaultTokenReadFn(errRPC)
|
|
|
|
|
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "extend-cache"
|
|
|
|
config.Config.ACLTokenTTL = 0
|
|
|
|
})
|
|
|
|
|
|
|
|
authz, err := r.ResolveToken("found-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2019-03-12 15:23:43 +00:00
|
|
|
|
2019-10-25 17:05:43 +00:00
|
|
|
requireIdentityCached(t, r, tokenSecretCacheID("found-role"), true, "still cached")
|
2019-04-15 20:43:19 +00:00
|
|
|
|
|
|
|
authz2, err := r.ResolveToken("found-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz2)
|
|
|
|
// testing pointer equality - these will be the same object because it is cached.
|
2019-10-25 15:06:16 +00:00
|
|
|
verifyAuthorizerChain(t, authz, authz2)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz2.NodeWrite("foo", nil))
|
2014-08-11 21:01:45 +00:00
|
|
|
})
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Extend-Cache-Expired-Policy", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: true,
|
|
|
|
localPolicies: false,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: false,
|
2018-10-19 16:04:07 +00:00
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
delegate.policyResolveFn = delegate.defaultPolicyResolveFn(errRPC)
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "extend-cache"
|
|
|
|
config.Config.ACLPolicyTTL = 0
|
2019-04-15 20:43:19 +00:00
|
|
|
config.Config.ACLRoleTTL = 0
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
authz, err := r.ResolveToken("found")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
2019-03-12 15:23:43 +00:00
|
|
|
requirePolicyCached(t, r, "node-wr", true, "cached") // from "found" token
|
|
|
|
requirePolicyCached(t, r, "dc2-key-wr", true, "cached") // from "found" token
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
// Will just use the policy cache
|
|
|
|
authz2, err := r.ResolveToken("found")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz2)
|
2019-10-25 15:06:16 +00:00
|
|
|
verifyAuthorizerChain(t, authz, authz2)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2019-03-12 15:23:43 +00:00
|
|
|
|
|
|
|
requirePolicyCached(t, r, "node-wr", true, "still cached") // from "found" token
|
|
|
|
requirePolicyCached(t, r, "dc2-key-wr", true, "still cached") // from "found" token
|
2014-08-11 21:01:45 +00:00
|
|
|
})
|
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
t.Run("Extend-Cache-Expired-Role", func(t *testing.T) {
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: true,
|
|
|
|
localPolicies: false,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: false,
|
|
|
|
}
|
|
|
|
delegate.policyResolveFn = delegate.defaultPolicyResolveFn(errRPC)
|
|
|
|
delegate.roleResolveFn = delegate.defaultRoleResolveFn(errRPC)
|
2018-10-19 16:04:07 +00:00
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "extend-cache"
|
|
|
|
config.Config.ACLPolicyTTL = 0
|
|
|
|
config.Config.ACLRoleTTL = 0
|
|
|
|
})
|
2018-10-19 16:04:07 +00:00
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
authz, err := r.ResolveToken("found-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
|
|
|
|
// Will just use the policy cache
|
|
|
|
authz2, err := r.ResolveToken("found-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz2)
|
2019-10-25 15:06:16 +00:00
|
|
|
verifyAuthorizerChain(t, authz, authz2)
|
|
|
|
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Async-Cache-Expired-Policy", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: true,
|
|
|
|
localPolicies: false,
|
|
|
|
localRoles: false,
|
2018-10-19 16:04:07 +00:00
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
// We don't need to return acl.ErrNotFound here but we could. The ACLResolver will search for any
|
|
|
|
// policies not in the response and emit an ACL not found for any not-found within the result set.
|
|
|
|
delegate.policyResolveFn = delegate.defaultPolicyResolveFn(nil)
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "async-cache"
|
|
|
|
config.Config.ACLPolicyTTL = 0
|
2019-04-15 20:43:19 +00:00
|
|
|
config.Config.ACLRoleTTL = 0
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("found")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
2019-03-12 15:23:43 +00:00
|
|
|
requirePolicyCached(t, r, "node-wr", true, "cached") // from "found" token
|
|
|
|
requirePolicyCached(t, r, "dc2-key-wr", true, "cached") // from "found" token
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
// The identity should have been cached so this should still be valid
|
|
|
|
authz2, err := r.ResolveToken("found")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz2)
|
|
|
|
// testing pointer equality - these will be the same object because it is cached.
|
2019-10-25 15:06:16 +00:00
|
|
|
verifyAuthorizerChain(t, authz, authz2)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
|
|
|
// the go routine spawned will eventually return with a authz that doesn't have the policy
|
|
|
|
retry.Run(t, func(t *retry.R) {
|
|
|
|
authz3, err := r.ResolveToken("found")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NotNil(t, authz3)
|
2019-10-15 20:58:50 +00:00
|
|
|
assert.Equal(t, acl.Deny, authz3.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2019-03-12 15:23:43 +00:00
|
|
|
|
|
|
|
requirePolicyCached(t, r, "node-wr", false, "no longer cached") // from "found" token
|
|
|
|
requirePolicyCached(t, r, "dc2-key-wr", false, "no longer cached") // from "found" token
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
t.Run("Async-Cache-Expired-Role", func(t *testing.T) {
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
2019-04-15 20:43:19 +00:00
|
|
|
localTokens: true,
|
2018-10-19 16:04:07 +00:00
|
|
|
localPolicies: false,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: false,
|
|
|
|
}
|
|
|
|
// We don't need to return acl.ErrNotFound here but we could. The ACLResolver will search for any
|
|
|
|
// policies not in the response and emit an ACL not found for any not-found within the result set.
|
|
|
|
delegate.policyResolveFn = delegate.defaultPolicyResolveFn(nil)
|
|
|
|
delegate.roleResolveFn = delegate.defaultRoleResolveFn(nil)
|
2018-10-19 16:04:07 +00:00
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "async-cache"
|
|
|
|
config.Config.ACLPolicyTTL = 0
|
|
|
|
config.Config.ACLRoleTTL = 0
|
|
|
|
})
|
2018-10-19 16:04:07 +00:00
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
authz, err := r.ResolveToken("found-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
|
|
|
|
// The identity should have been cached so this should still be valid
|
|
|
|
authz2, err := r.ResolveToken("found-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz2)
|
|
|
|
// testing pointer equality - these will be the same object because it is cached.
|
2019-10-25 15:06:16 +00:00
|
|
|
verifyAuthorizerChain(t, authz, authz2)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
|
|
|
|
// the go routine spawned will eventually return with a authz that doesn't have the policy
|
|
|
|
retry.Run(t, func(t *retry.R) {
|
|
|
|
authz3, err := r.ResolveToken("found-role")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NotNil(t, authz3)
|
2019-10-15 20:58:50 +00:00
|
|
|
assert.Equal(t, acl.Deny, authz3.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Extend-Cache-Client-Policy", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
|
|
|
localRoles: false,
|
2018-10-19 16:04:07 +00:00
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
delegate.tokenReadFn = delegate.defaultTokenReadFn(errRPC)
|
|
|
|
delegate.policyResolveFn = delegate.defaultPolicyResolveFn(errRPC)
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "extend-cache"
|
|
|
|
config.Config.ACLTokenTTL = 0
|
|
|
|
config.Config.ACLPolicyTTL = 0
|
2019-04-15 20:43:19 +00:00
|
|
|
config.Config.ACLRoleTTL = 0
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("found")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
2019-03-12 15:23:43 +00:00
|
|
|
requirePolicyCached(t, r, "node-wr", true, "cached") // from "found" token
|
|
|
|
requirePolicyCached(t, r, "dc2-key-wr", true, "cached") // from "found" token
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
authz2, err := r.ResolveToken("found")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz2)
|
|
|
|
// testing pointer equality - these will be the same object because it is cached.
|
2019-10-25 15:06:16 +00:00
|
|
|
verifyAuthorizerChain(t, authz, authz2)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz2.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Extend-Cache-Client-Role", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
|
|
|
localRoles: false,
|
|
|
|
}
|
|
|
|
delegate.tokenReadFn = delegate.defaultTokenReadFn(errRPC)
|
|
|
|
delegate.policyResolveFn = delegate.defaultPolicyResolveFn(errRPC)
|
|
|
|
delegate.roleResolveFn = delegate.defaultRoleResolveFn(errRPC)
|
|
|
|
|
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "extend-cache"
|
|
|
|
config.Config.ACLTokenTTL = 0
|
|
|
|
config.Config.ACLPolicyTTL = 0
|
|
|
|
config.Config.ACLRoleTTL = 0
|
|
|
|
})
|
|
|
|
|
|
|
|
authz, err := r.ResolveToken("found-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2019-03-12 15:23:43 +00:00
|
|
|
|
|
|
|
requirePolicyCached(t, r, "node-wr", true, "still cached") // from "found" token
|
|
|
|
requirePolicyCached(t, r, "dc2-key-wr", true, "still cached") // from "found" token
|
2019-04-15 20:43:19 +00:00
|
|
|
|
|
|
|
authz2, err := r.ResolveToken("found-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz2)
|
|
|
|
// testing pointer equality - these will be the same object because it is cached.
|
2019-10-25 15:06:16 +00:00
|
|
|
verifyAuthorizerChain(t, authz, authz2)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz2.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Async-Cache", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: true,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: true,
|
2018-10-19 16:04:07 +00:00
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
delegate.tokenReadFn = delegate.defaultTokenReadFn(acl.ErrNotFound)
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "async-cache"
|
|
|
|
config.Config.ACLTokenTTL = 0
|
|
|
|
})
|
2014-08-11 21:01:45 +00:00
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
authz, err := r.ResolveToken("found")
|
2018-10-19 16:04:07 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
2019-10-25 17:05:43 +00:00
|
|
|
requireIdentityCached(t, r, tokenSecretCacheID("found"), true, "cached")
|
2019-03-12 15:23:43 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
// The identity should have been cached so this should still be valid
|
2019-04-15 20:43:19 +00:00
|
|
|
authz2, err := r.ResolveToken("found")
|
2018-10-19 16:04:07 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz2)
|
2019-10-25 15:06:16 +00:00
|
|
|
verifyAuthorizerChain(t, authz, authz2)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz2.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
|
|
|
// the go routine spawned will eventually return and this will be a not found error
|
|
|
|
retry.Run(t, func(t *retry.R) {
|
2019-04-15 20:43:19 +00:00
|
|
|
authz3, err := r.ResolveToken("found")
|
2018-10-19 16:04:07 +00:00
|
|
|
assert.Error(t, err)
|
|
|
|
assert.True(t, acl.IsErrNotFound(err))
|
|
|
|
assert.Nil(t, authz3)
|
|
|
|
})
|
2019-03-12 15:23:43 +00:00
|
|
|
|
2019-10-25 17:05:43 +00:00
|
|
|
requireIdentityCached(t, r, tokenSecretCacheID("found"), false, "no longer cached")
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2019-03-14 14:35:34 +00:00
|
|
|
|
|
|
|
t.Run("PolicyResolve-TokenNotFound", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
_, rawToken, _ := testIdentityForToken("found")
|
|
|
|
foundToken := rawToken.(*structs.ACLToken)
|
|
|
|
secretID := foundToken.SecretID
|
|
|
|
|
|
|
|
tokenResolved := false
|
|
|
|
policyResolved := false
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
2020-11-05 16:18:59 +00:00
|
|
|
tokenReadFn: func(_ *structs.ACLTokenGetRequest, reply *structs.ACLTokenResponse) error {
|
2019-03-14 14:35:34 +00:00
|
|
|
if !tokenResolved {
|
|
|
|
reply.Token = foundToken
|
|
|
|
tokenResolved = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("Not Supposed to be Invoked again")
|
|
|
|
},
|
|
|
|
policyResolveFn: func(args *structs.ACLPolicyBatchGetRequest, reply *structs.ACLPolicyBatchResponse) error {
|
|
|
|
if !policyResolved {
|
|
|
|
for _, policyID := range args.PolicyIDs {
|
|
|
|
_, policy, _ := testPolicyForID(policyID)
|
|
|
|
if policy != nil {
|
|
|
|
reply.Policies = append(reply.Policies, policy)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
policyResolved = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return acl.ErrNotFound // test condition
|
|
|
|
},
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "extend-cache"
|
|
|
|
config.Config.ACLTokenTTL = 0
|
|
|
|
config.Config.ACLPolicyTTL = 0
|
|
|
|
})
|
|
|
|
|
|
|
|
// Prime the standard caches.
|
|
|
|
authz, err := r.ResolveToken(secretID)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2019-03-14 14:35:34 +00:00
|
|
|
|
|
|
|
// Verify that the caches are setup properly.
|
2019-10-25 17:05:43 +00:00
|
|
|
requireIdentityCached(t, r, tokenSecretCacheID(secretID), true, "cached")
|
2019-03-14 14:35:34 +00:00
|
|
|
requirePolicyCached(t, r, "node-wr", true, "cached") // from "found" token
|
|
|
|
requirePolicyCached(t, r, "dc2-key-wr", true, "cached") // from "found" token
|
|
|
|
|
|
|
|
// Nuke 1 policy from the cache so that we force a policy resolve
|
|
|
|
// during token resolve.
|
|
|
|
r.cache.RemovePolicy("dc2-key-wr")
|
|
|
|
|
|
|
|
_, err = r.ResolveToken(secretID)
|
|
|
|
require.True(t, acl.IsErrNotFound(err))
|
|
|
|
|
2019-10-25 17:05:43 +00:00
|
|
|
requireIdentityCached(t, r, tokenSecretCacheID(secretID), false, "identity not found cached")
|
2019-03-14 14:35:34 +00:00
|
|
|
requirePolicyCached(t, r, "node-wr", true, "still cached")
|
|
|
|
require.Nil(t, r.cache.GetPolicy("dc2-key-wr"), "not stored at all")
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("PolicyResolve-PermissionDenied", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
_, rawToken, _ := testIdentityForToken("found")
|
|
|
|
foundToken := rawToken.(*structs.ACLToken)
|
|
|
|
secretID := foundToken.SecretID
|
|
|
|
|
|
|
|
policyResolved := false
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
2020-11-05 16:18:59 +00:00
|
|
|
tokenReadFn: func(_ *structs.ACLTokenGetRequest, reply *structs.ACLTokenResponse) error {
|
2019-03-14 14:35:34 +00:00
|
|
|
// no limit
|
|
|
|
reply.Token = foundToken
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
policyResolveFn: func(args *structs.ACLPolicyBatchGetRequest, reply *structs.ACLPolicyBatchResponse) error {
|
|
|
|
if !policyResolved {
|
|
|
|
for _, policyID := range args.PolicyIDs {
|
|
|
|
_, policy, _ := testPolicyForID(policyID)
|
|
|
|
if policy != nil {
|
|
|
|
reply.Policies = append(reply.Policies, policy)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
policyResolved = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return acl.ErrPermissionDenied // test condition
|
|
|
|
},
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "extend-cache"
|
|
|
|
config.Config.ACLTokenTTL = 0
|
|
|
|
config.Config.ACLPolicyTTL = 0
|
|
|
|
})
|
|
|
|
|
|
|
|
// Prime the standard caches.
|
|
|
|
authz, err := r.ResolveToken(secretID)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2019-03-14 14:35:34 +00:00
|
|
|
|
|
|
|
// Verify that the caches are setup properly.
|
2019-10-25 17:05:43 +00:00
|
|
|
requireIdentityCached(t, r, tokenSecretCacheID(secretID), true, "cached")
|
2019-03-14 14:35:34 +00:00
|
|
|
requirePolicyCached(t, r, "node-wr", true, "cached") // from "found" token
|
|
|
|
requirePolicyCached(t, r, "dc2-key-wr", true, "cached") // from "found" token
|
|
|
|
|
|
|
|
// Nuke 1 policy from the cache so that we force a policy resolve
|
|
|
|
// during token resolve.
|
|
|
|
r.cache.RemovePolicy("dc2-key-wr")
|
|
|
|
|
|
|
|
_, err = r.ResolveToken(secretID)
|
|
|
|
require.True(t, acl.IsErrPermissionDenied(err))
|
|
|
|
|
2019-10-25 17:05:43 +00:00
|
|
|
require.Nil(t, r.cache.GetIdentity(tokenSecretCacheID(secretID)), "identity not stored at all")
|
2019-03-14 14:35:34 +00:00
|
|
|
requirePolicyCached(t, r, "node-wr", true, "still cached")
|
|
|
|
require.Nil(t, r.cache.GetPolicy("dc2-key-wr"), "not stored at all")
|
|
|
|
})
|
2014-08-11 21:01:45 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func TestACLResolver_DatacenterScoping(t *testing.T) {
|
2017-06-27 13:22:18 +00:00
|
|
|
t.Parallel()
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("dc1", func(t *testing.T) {
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: true,
|
|
|
|
localPolicies: true,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: true,
|
2018-10-19 16:04:07 +00:00
|
|
|
// No need to provide any of the RPC callbacks
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, delegate, nil)
|
|
|
|
|
|
|
|
authz, err := r.ResolveToken("found")
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.NoError(t, err)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.KeyWrite("foo", nil))
|
2014-08-12 17:54:56 +00:00
|
|
|
})
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("dc2", func(t *testing.T) {
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc2",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: true,
|
|
|
|
localPolicies: true,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: true,
|
2018-10-19 16:04:07 +00:00
|
|
|
// No need to provide any of the RPC callbacks
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.Datacenter = "dc2"
|
|
|
|
})
|
2014-08-12 17:54:56 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("found")
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.NoError(t, err)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.KeyWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-12 17:54:56 +00:00
|
|
|
}
|
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
// TODO(rb): replicate this sort of test but for roles
|
2019-01-22 18:14:43 +00:00
|
|
|
func TestACLResolver_Client(t *testing.T) {
|
2020-12-07 18:42:55 +00:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("too slow for testing.Short")
|
|
|
|
}
|
|
|
|
|
2019-01-22 18:14:43 +00:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
t.Run("Racey-Token-Mod-Policy-Resolve", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
var tokenReads int32
|
|
|
|
var policyResolves int32
|
|
|
|
modified := false
|
|
|
|
deleted := false
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
2020-11-05 16:18:59 +00:00
|
|
|
tokenReadFn: func(_ *structs.ACLTokenGetRequest, reply *structs.ACLTokenResponse) error {
|
2019-01-22 18:14:43 +00:00
|
|
|
atomic.AddInt32(&tokenReads, 1)
|
|
|
|
if deleted {
|
|
|
|
return acl.ErrNotFound
|
|
|
|
} else if modified {
|
|
|
|
_, token, _ := testIdentityForToken("racey-modified")
|
|
|
|
reply.Token = token.(*structs.ACLToken)
|
|
|
|
} else {
|
|
|
|
_, token, _ := testIdentityForToken("racey-unmodified")
|
|
|
|
reply.Token = token.(*structs.ACLToken)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
policyResolveFn: func(args *structs.ACLPolicyBatchGetRequest, reply *structs.ACLPolicyBatchResponse) error {
|
|
|
|
atomic.AddInt32(&policyResolves, 1)
|
|
|
|
if deleted {
|
|
|
|
return acl.ErrNotFound
|
|
|
|
} else if !modified {
|
|
|
|
modified = true
|
|
|
|
return acl.ErrPermissionDenied
|
|
|
|
} else {
|
|
|
|
deleted = true
|
|
|
|
for _, policyID := range args.PolicyIDs {
|
|
|
|
_, policy, _ := testPolicyForID(policyID)
|
|
|
|
if policy != nil {
|
|
|
|
reply.Policies = append(reply.Policies, policy)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
modified = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLTokenTTL = 600 * time.Second
|
|
|
|
config.Config.ACLPolicyTTL = 30 * time.Millisecond
|
2019-04-15 20:43:19 +00:00
|
|
|
config.Config.ACLRoleTTL = 30 * time.Millisecond
|
2019-01-22 18:14:43 +00:00
|
|
|
config.Config.ACLDownPolicy = "extend-cache"
|
|
|
|
})
|
|
|
|
|
|
|
|
// resolves the token
|
|
|
|
// gets a permission denied resolving the policies - token updated
|
|
|
|
// invalidates the token
|
|
|
|
// refetches the token
|
|
|
|
// fetches the policies from the modified token
|
|
|
|
// creates the authorizers
|
|
|
|
//
|
|
|
|
// Must use the token secret here in order for the cached identity
|
|
|
|
// to be removed properly. Many other tests just resolve some other
|
|
|
|
// random name and it wont matter but this one cannot.
|
|
|
|
authz, err := r.ResolveToken("a1a54629-5050-4d17-8a4e-560d2423f835")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.ACLRead(nil))
|
2019-01-22 18:14:43 +00:00
|
|
|
require.True(t, modified)
|
|
|
|
require.True(t, deleted)
|
|
|
|
require.Equal(t, int32(2), tokenReads)
|
|
|
|
require.Equal(t, int32(2), policyResolves)
|
|
|
|
|
|
|
|
// sleep long enough for the policy cache to expire
|
|
|
|
time.Sleep(50 * time.Millisecond)
|
|
|
|
|
|
|
|
// this round the identity will be resolved from the cache
|
|
|
|
// then the policy will be resolved but resolution will return ACL not found
|
|
|
|
// resolution will stop with the not found error (even though we still have the
|
|
|
|
// policies within the cache)
|
|
|
|
authz, err = r.ResolveToken("a1a54629-5050-4d17-8a4e-560d2423f835")
|
|
|
|
require.EqualError(t, err, acl.ErrNotFound.Error())
|
|
|
|
require.Nil(t, authz)
|
|
|
|
|
|
|
|
require.True(t, modified)
|
|
|
|
require.True(t, deleted)
|
|
|
|
require.Equal(t, tokenReads, int32(2))
|
|
|
|
require.Equal(t, policyResolves, int32(3))
|
|
|
|
})
|
|
|
|
|
2020-05-13 17:00:08 +00:00
|
|
|
t.Run("Resolve-Identity", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
delegate.tokenReadFn = delegate.plainTokenReadFn
|
|
|
|
delegate.policyResolveFn = delegate.plainPolicyResolveFn
|
|
|
|
delegate.roleResolveFn = delegate.plainRoleResolveFn
|
|
|
|
|
|
|
|
r := newTestACLResolver(t, delegate, nil)
|
|
|
|
|
|
|
|
ident, err := r.ResolveTokenToIdentity("found-policy-and-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, ident)
|
|
|
|
require.Equal(t, "5f57c1f6-6a89-4186-9445-531b316e01df", ident.ID())
|
|
|
|
require.EqualValues(t, 0, delegate.localTokenResolutions)
|
|
|
|
require.EqualValues(t, 1, delegate.remoteTokenResolutions)
|
|
|
|
require.EqualValues(t, 0, delegate.localPolicyResolutions)
|
|
|
|
require.EqualValues(t, 0, delegate.remotePolicyResolutions)
|
|
|
|
require.EqualValues(t, 0, delegate.localRoleResolutions)
|
|
|
|
require.EqualValues(t, 0, delegate.remoteRoleResolutions)
|
|
|
|
require.EqualValues(t, 0, delegate.remoteLegacyResolutions)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Resolve-Identity-Legacy", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: true,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
2020-11-05 16:18:59 +00:00
|
|
|
getPolicyFn: func(_ *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error {
|
2020-05-13 17:00:08 +00:00
|
|
|
reply.Parent = "deny"
|
|
|
|
reply.TTL = 30
|
|
|
|
reply.ETag = "nothing"
|
|
|
|
reply.Policy = &acl.Policy{
|
|
|
|
ID: "not-needed",
|
|
|
|
PolicyRules: acl.PolicyRules{
|
|
|
|
Nodes: []*acl.NodeRule{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2020-05-13 17:00:08 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: acl.PolicyWrite,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
r := newTestACLResolver(t, delegate, nil)
|
|
|
|
|
|
|
|
ident, err := r.ResolveTokenToIdentity("found-policy-and-role")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, ident)
|
|
|
|
require.Equal(t, "legacy-token", ident.ID())
|
|
|
|
require.EqualValues(t, 0, delegate.localTokenResolutions)
|
|
|
|
require.EqualValues(t, 0, delegate.remoteTokenResolutions)
|
|
|
|
require.EqualValues(t, 0, delegate.localPolicyResolutions)
|
|
|
|
require.EqualValues(t, 0, delegate.remotePolicyResolutions)
|
|
|
|
require.EqualValues(t, 0, delegate.localRoleResolutions)
|
|
|
|
require.EqualValues(t, 0, delegate.remoteRoleResolutions)
|
|
|
|
require.EqualValues(t, 1, delegate.remoteLegacyResolutions)
|
|
|
|
})
|
|
|
|
|
2019-01-22 18:14:43 +00:00
|
|
|
t.Run("Concurrent-Token-Resolve", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
var tokenReads int32
|
|
|
|
var policyResolves int32
|
|
|
|
readyCh := make(chan struct{})
|
|
|
|
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
|
|
|
tokenReadFn: func(args *structs.ACLTokenGetRequest, reply *structs.ACLTokenResponse) error {
|
|
|
|
atomic.AddInt32(&tokenReads, 1)
|
|
|
|
|
|
|
|
switch args.TokenID {
|
|
|
|
case "a1a54629-5050-4d17-8a4e-560d2423f835":
|
2019-03-14 14:35:34 +00:00
|
|
|
_, token, _ := testIdentityForToken("concurrent-resolve")
|
2019-01-22 18:14:43 +00:00
|
|
|
reply.Token = token.(*structs.ACLToken)
|
|
|
|
default:
|
|
|
|
return acl.ErrNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-readyCh:
|
|
|
|
}
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
policyResolveFn: func(args *structs.ACLPolicyBatchGetRequest, reply *structs.ACLPolicyBatchResponse) error {
|
|
|
|
atomic.AddInt32(&policyResolves, 1)
|
2019-03-14 14:35:34 +00:00
|
|
|
|
2019-01-22 18:14:43 +00:00
|
|
|
for _, policyID := range args.PolicyIDs {
|
|
|
|
_, policy, _ := testPolicyForID(policyID)
|
|
|
|
if policy != nil {
|
|
|
|
reply.Policies = append(reply.Policies, policy)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
// effectively disable caching - so the only way we end up with 1 token read is if they were
|
|
|
|
// being resolved concurrently
|
|
|
|
config.Config.ACLTokenTTL = 0 * time.Second
|
2020-08-21 18:05:25 +00:00
|
|
|
config.Config.ACLPolicyTTL = 30 * time.Second
|
|
|
|
config.Config.ACLRoleTTL = 30 * time.Second
|
2019-01-22 18:14:43 +00:00
|
|
|
config.Config.ACLDownPolicy = "extend-cache"
|
|
|
|
})
|
|
|
|
|
|
|
|
ch1 := make(chan *asyncResolutionResult)
|
|
|
|
ch2 := make(chan *asyncResolutionResult)
|
|
|
|
go resolveTokenAsync(r, "a1a54629-5050-4d17-8a4e-560d2423f835", ch1)
|
|
|
|
go resolveTokenAsync(r, "a1a54629-5050-4d17-8a4e-560d2423f835", ch2)
|
|
|
|
close(readyCh)
|
|
|
|
|
|
|
|
res1 := <-ch1
|
|
|
|
res2 := <-ch2
|
|
|
|
require.NoError(t, res1.err)
|
|
|
|
require.NoError(t, res2.err)
|
|
|
|
require.Equal(t, res1.authz, res2.authz)
|
|
|
|
require.Equal(t, int32(1), tokenReads)
|
|
|
|
require.Equal(t, int32(1), policyResolves)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
func TestACLResolver_Client_TokensPoliciesAndRoles(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
|
|
|
localRoles: false,
|
|
|
|
}
|
|
|
|
delegate.tokenReadFn = delegate.plainTokenReadFn
|
|
|
|
delegate.policyResolveFn = delegate.plainPolicyResolveFn
|
|
|
|
delegate.roleResolveFn = delegate.plainRoleResolveFn
|
|
|
|
|
|
|
|
testACLResolver_variousTokens(t, delegate)
|
|
|
|
}
|
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
func TestACLResolver_LocalTokensPoliciesAndRoles(t *testing.T) {
|
2017-06-27 13:22:18 +00:00
|
|
|
t.Parallel()
|
2018-10-19 16:04:07 +00:00
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: true,
|
|
|
|
localPolicies: true,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: true,
|
2018-10-19 16:04:07 +00:00
|
|
|
// No need to provide any of the RPC callbacks
|
|
|
|
}
|
2014-08-11 21:18:51 +00:00
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
testACLResolver_variousTokens(t, delegate)
|
2014-08-11 21:18:51 +00:00
|
|
|
}
|
|
|
|
|
2019-04-15 20:43:19 +00:00
|
|
|
func TestACLResolver_LocalPoliciesAndRoles(t *testing.T) {
|
2017-06-27 13:22:18 +00:00
|
|
|
t.Parallel()
|
2019-04-15 20:43:19 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: true,
|
2019-04-15 20:43:19 +00:00
|
|
|
localRoles: true,
|
2018-10-19 16:04:07 +00:00
|
|
|
}
|
2019-04-26 17:49:28 +00:00
|
|
|
delegate.tokenReadFn = delegate.plainTokenReadFn
|
2019-04-15 20:43:19 +00:00
|
|
|
|
|
|
|
testACLResolver_variousTokens(t, delegate)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testACLResolver_variousTokens(t *testing.T, delegate *ACLResolverTestDelegate) {
|
|
|
|
t.Helper()
|
2019-04-26 17:49:28 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLTokenTTL = 600 * time.Second
|
|
|
|
config.Config.ACLPolicyTTL = 30 * time.Millisecond
|
|
|
|
config.Config.ACLRoleTTL = 30 * time.Millisecond
|
|
|
|
config.Config.ACLDownPolicy = "extend-cache"
|
|
|
|
})
|
|
|
|
reset := func() {
|
|
|
|
// prevent subtest bleedover
|
|
|
|
r.cache.Purge()
|
|
|
|
delegate.Reset()
|
|
|
|
}
|
|
|
|
|
|
|
|
runTwiceAndReset := func(name string, f func(t *testing.T)) {
|
|
|
|
t.Helper()
|
|
|
|
defer reset() // reset the stateful resolve AND blow away the cache
|
|
|
|
|
|
|
|
t.Run(name+" (no-cache)", f)
|
|
|
|
delegate.Reset() // allow the stateful resolve functions to reset
|
|
|
|
t.Run(name+" (cached)", f)
|
|
|
|
}
|
2014-08-11 21:18:51 +00:00
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
runTwiceAndReset("Missing Identity", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData(nil)
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("doesn't exist")
|
|
|
|
require.Nil(t, authz)
|
|
|
|
require.Error(t, err)
|
|
|
|
require.True(t, acl.IsErrNotFound(err))
|
2014-08-11 21:18:51 +00:00
|
|
|
})
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
runTwiceAndReset("Missing Policy", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "435a75af-1763-4980-89f4-f0951dda53b4",
|
|
|
|
SecretID: "missing-policy",
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
|
|
|
{ID: "not-found"},
|
|
|
|
{ID: "acl-ro"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"policy-not-found:not-found",
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "acl-ro",
|
|
|
|
Name: "acl-ro",
|
|
|
|
Description: "acl-ro",
|
|
|
|
Rules: `acl = "read"`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
})
|
2020-11-17 23:15:07 +00:00
|
|
|
authz := resolveToken(t, r, "missing-policy")
|
2018-10-19 16:04:07 +00:00
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-11 21:18:51 +00:00
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
runTwiceAndReset("Missing Role", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "435a75af-1763-4980-89f4-f0951dda53b4",
|
|
|
|
SecretID: "missing-role",
|
|
|
|
Roles: []structs.ACLTokenRoleLink{
|
|
|
|
{ID: "not-found"},
|
|
|
|
{ID: "acl-ro"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"role-not-found:not-found",
|
|
|
|
&structs.ACLRole{
|
|
|
|
ID: "acl-ro",
|
|
|
|
Name: "acl-ro",
|
|
|
|
Description: "acl-ro",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
|
|
|
{ID: "acl-ro"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "acl-ro",
|
|
|
|
Name: "acl-ro",
|
|
|
|
Description: "acl-ro",
|
|
|
|
Rules: `acl = "read"`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
})
|
2020-11-17 23:15:07 +00:00
|
|
|
authz := resolveToken(t, r, "missing-role")
|
2019-04-15 20:43:19 +00:00
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
})
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
runTwiceAndReset("Missing Policy on Role", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "435a75af-1763-4980-89f4-f0951dda53b4",
|
|
|
|
SecretID: "missing-policy-on-role",
|
|
|
|
Roles: []structs.ACLTokenRoleLink{
|
|
|
|
{ID: "missing-policy"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLRole{
|
|
|
|
ID: "missing-policy",
|
|
|
|
Name: "missing-policy",
|
|
|
|
Description: "missing-policy",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
|
|
|
{ID: "not-found"},
|
|
|
|
{ID: "acl-ro"},
|
|
|
|
},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
"policy-not-found:not-found",
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "acl-ro",
|
|
|
|
Name: "acl-ro",
|
|
|
|
Description: "acl-ro",
|
|
|
|
Rules: `acl = "read"`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
})
|
2020-11-17 23:15:07 +00:00
|
|
|
authz := resolveToken(t, r, "missing-policy-on-role")
|
2019-04-15 20:43:19 +00:00
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
})
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
runTwiceAndReset("Normal with Policy", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "5f57c1f6-6a89-4186-9445-531b316e01df",
|
|
|
|
SecretID: "found",
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
|
|
|
{ID: "node-wr"},
|
|
|
|
{ID: "dc2-key-wr"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "node-wr",
|
|
|
|
Name: "node-wr",
|
|
|
|
Description: "node-wr",
|
|
|
|
Rules: `node_prefix "" { policy = "write"}`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
Datacenters: []string{"dc1"},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "dc2-key-wr",
|
|
|
|
Name: "dc2-key-wr",
|
|
|
|
Description: "dc2-key-wr",
|
|
|
|
Rules: `key_prefix "" { policy = "write"}`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
Datacenters: []string{"dc2"},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
})
|
2020-11-17 23:15:07 +00:00
|
|
|
authz := resolveToken(t, r, "found")
|
2018-10-19 16:04:07 +00:00
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-11 21:18:51 +00:00
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
runTwiceAndReset("Normal with Role", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "5f57c1f6-6a89-4186-9445-531b316e01df",
|
|
|
|
SecretID: "found-role",
|
|
|
|
Roles: []structs.ACLTokenRoleLink{
|
|
|
|
{ID: "found"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLRole{
|
|
|
|
ID: "found",
|
|
|
|
Name: "found",
|
|
|
|
Description: "found",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
|
|
|
{ID: "node-wr"},
|
|
|
|
{ID: "dc2-key-wr"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "node-wr",
|
|
|
|
Name: "node-wr",
|
|
|
|
Description: "node-wr",
|
|
|
|
Rules: `node_prefix "" { policy = "write"}`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
Datacenters: []string{"dc1"},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "dc2-key-wr",
|
|
|
|
Name: "dc2-key-wr",
|
|
|
|
Description: "dc2-key-wr",
|
|
|
|
Rules: `key_prefix "" { policy = "write"}`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
Datacenters: []string{"dc2"},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
})
|
2020-11-17 23:15:07 +00:00
|
|
|
authz := resolveToken(t, r, "found-role")
|
2019-04-15 20:43:19 +00:00
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
})
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
runTwiceAndReset("Normal with Policy and Role", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "5f57c1f6-6a89-4186-9445-531b316e01df",
|
|
|
|
SecretID: "found-policy-and-role",
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
|
|
|
{ID: "node-wr"},
|
|
|
|
{ID: "dc2-key-wr"},
|
|
|
|
},
|
|
|
|
Roles: []structs.ACLTokenRoleLink{
|
|
|
|
{ID: "service-ro"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "node-wr",
|
|
|
|
Name: "node-wr",
|
|
|
|
Description: "node-wr",
|
|
|
|
Rules: `node_prefix "" { policy = "write"}`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
Datacenters: []string{"dc1"},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "dc2-key-wr",
|
|
|
|
Name: "dc2-key-wr",
|
|
|
|
Description: "dc2-key-wr",
|
|
|
|
Rules: `key_prefix "" { policy = "write"}`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
Datacenters: []string{"dc2"},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
&structs.ACLRole{
|
|
|
|
ID: "service-ro",
|
|
|
|
Name: "service-ro",
|
|
|
|
Description: "service-ro",
|
|
|
|
Policies: []structs.ACLRolePolicyLink{
|
|
|
|
{ID: "service-ro"},
|
|
|
|
},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "service-ro",
|
|
|
|
Name: "service-ro",
|
|
|
|
Description: "service-ro",
|
|
|
|
Rules: `service_prefix "" { policy = "read" }`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
})
|
2020-11-17 23:15:07 +00:00
|
|
|
authz := resolveToken(t, r, "found-policy-and-role")
|
2019-04-15 20:43:19 +00:00
|
|
|
require.NotNil(t, authz)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceRead("bar", nil))
|
2019-04-15 20:43:19 +00:00
|
|
|
})
|
|
|
|
|
2020-06-16 16:54:27 +00:00
|
|
|
runTwiceAndReset("Role With Node Identity", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "f3f47a09-de29-4c57-8f54-b65a9be79641",
|
|
|
|
SecretID: "found-role-node-identity",
|
|
|
|
Roles: []structs.ACLTokenRoleLink{
|
|
|
|
{ID: "node-identity"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLRole{
|
|
|
|
ID: "node-identity",
|
|
|
|
Name: "node-identity",
|
|
|
|
Description: "node-identity",
|
|
|
|
NodeIdentities: []*structs.ACLNodeIdentity{
|
|
|
|
{
|
|
|
|
NodeName: "test-node",
|
|
|
|
Datacenter: "dc1",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
NodeName: "test-node-dc2",
|
|
|
|
Datacenter: "dc2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2020-11-17 23:15:07 +00:00
|
|
|
authz := resolveToken(t, r, "found-role-node-identity")
|
2020-06-16 16:54:27 +00:00
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("test-node", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("test-node-dc2", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceRead("something", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.ServiceWrite("something", nil))
|
|
|
|
})
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
runTwiceAndReset("Synthetic Policies Independently Cache", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "f6c5a5fb-4da4-422b-9abf-2c942813fc71",
|
|
|
|
SecretID: "found-synthetic-policy-1",
|
|
|
|
ServiceIdentities: []*structs.ACLServiceIdentity{
|
|
|
|
{ServiceName: "service1"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "7c87dfad-be37-446e-8305-299585677cb5",
|
|
|
|
SecretID: "found-synthetic-policy-2",
|
|
|
|
ServiceIdentities: []*structs.ACLServiceIdentity{
|
|
|
|
{ServiceName: "service2"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "bebccc92-3987-489d-84c2-ffd00d93ef93",
|
|
|
|
SecretID: "found-synthetic-policy-3",
|
|
|
|
NodeIdentities: []*structs.ACLNodeIdentity{
|
|
|
|
{
|
|
|
|
NodeName: "test-node1",
|
|
|
|
Datacenter: "dc1",
|
|
|
|
},
|
|
|
|
// as the resolver is in dc1 this identity should be ignored
|
|
|
|
{
|
|
|
|
NodeName: "test-node-dc2",
|
|
|
|
Datacenter: "dc2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "359b9927-25fd-46b9-bd14-3470f848ec65",
|
|
|
|
SecretID: "found-synthetic-policy-4",
|
|
|
|
NodeIdentities: []*structs.ACLNodeIdentity{
|
|
|
|
{
|
|
|
|
NodeName: "test-node2",
|
|
|
|
Datacenter: "dc1",
|
|
|
|
},
|
|
|
|
// as the resolver is in dc1 this identity should be ignored
|
|
|
|
{
|
|
|
|
NodeName: "test-node-dc2",
|
|
|
|
Datacenter: "dc2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2020-06-16 16:54:27 +00:00
|
|
|
// We resolve these tokens in the same cache session
|
2019-04-26 17:49:28 +00:00
|
|
|
// to verify that the keys for caching synthetic policies don't bleed
|
|
|
|
// over between each other.
|
2021-09-16 14:17:02 +00:00
|
|
|
t.Run("synthetic-policy-1", func(t *testing.T) { // service identity
|
2019-04-26 17:49:28 +00:00
|
|
|
authz, err := r.ResolveToken("found-synthetic-policy-1")
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.NoError(t, err)
|
|
|
|
// spot check some random perms
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("foo", nil))
|
2019-04-26 17:49:28 +00:00
|
|
|
// ensure we didn't bleed over to the other synthetic policy
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.ServiceWrite("service2", nil))
|
2019-04-26 17:49:28 +00:00
|
|
|
// check our own synthetic policy
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.ServiceWrite("service1", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceRead("literally-anything", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeRead("any-node", nil))
|
2021-09-16 14:17:02 +00:00
|
|
|
})
|
|
|
|
t.Run("synthetic-policy-2", func(t *testing.T) { // service identity
|
2019-04-26 17:49:28 +00:00
|
|
|
authz, err := r.ResolveToken("found-synthetic-policy-2")
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.NoError(t, err)
|
|
|
|
// spot check some random perms
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("foo", nil))
|
2019-04-26 17:49:28 +00:00
|
|
|
// ensure we didn't bleed over to the other synthetic policy
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.ServiceWrite("service1", nil))
|
2019-04-26 17:49:28 +00:00
|
|
|
// check our own synthetic policy
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.ServiceWrite("service2", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceRead("literally-anything", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeRead("any-node", nil))
|
2021-09-16 14:17:02 +00:00
|
|
|
})
|
|
|
|
t.Run("synthetic-policy-3", func(t *testing.T) { // node identity
|
2020-06-16 16:54:27 +00:00
|
|
|
authz, err := r.ResolveToken("found-synthetic-policy-3")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
|
|
|
|
// spot check some random perms
|
|
|
|
require.Equal(t, acl.Deny, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("foo", nil))
|
|
|
|
// ensure we didn't bleed over to the other synthetic policy
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("test-node2", nil))
|
|
|
|
// check our own synthetic policy
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceRead("literally-anything", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("test-node1", nil))
|
|
|
|
// ensure node identity for other DC is ignored
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("test-node-dc2", nil))
|
2021-09-16 14:17:02 +00:00
|
|
|
})
|
|
|
|
t.Run("synthetic-policy-4", func(t *testing.T) { // node identity
|
2020-06-16 16:54:27 +00:00
|
|
|
authz, err := r.ResolveToken("found-synthetic-policy-4")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
|
|
|
|
// spot check some random perms
|
|
|
|
require.Equal(t, acl.Deny, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("foo", nil))
|
|
|
|
// ensure we didn't bleed over to the other synthetic policy
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("test-node1", nil))
|
|
|
|
// check our own synthetic policy
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceRead("literally-anything", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("test-node2", nil))
|
|
|
|
// ensure node identity for other DC is ignored
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("test-node-dc2", nil))
|
2021-09-16 14:17:02 +00:00
|
|
|
})
|
2019-04-26 17:49:28 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
runTwiceAndReset("Anonymous", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "00000000-0000-0000-0000-000000000002",
|
|
|
|
SecretID: anonymousToken,
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
|
|
|
{ID: "node-wr"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "node-wr",
|
|
|
|
Name: "node-wr",
|
|
|
|
Description: "node-wr",
|
|
|
|
Rules: `node_prefix "" { policy = "write"}`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
Datacenters: []string{"dc1"},
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
})
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("")
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.NoError(t, err)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.ACLRead(nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-11 21:18:51 +00:00
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
runTwiceAndReset("legacy-management", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "d109a033-99d1-47e2-a711-d6593373a973",
|
|
|
|
SecretID: "legacy-management",
|
|
|
|
Type: structs.ACLTokenTypeManagement,
|
|
|
|
},
|
|
|
|
})
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("legacy-management")
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.NoError(t, err)
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.ACLWrite(nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.KeyRead("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2014-08-11 21:18:51 +00:00
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
runTwiceAndReset("legacy-client", func(t *testing.T) {
|
2021-09-16 14:17:02 +00:00
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "b7375838-b104-4a25-b457-329d939bf257",
|
|
|
|
SecretID: "legacy-client",
|
|
|
|
Type: structs.ACLTokenTypeClient,
|
|
|
|
Rules: `service "" { policy = "read" }`,
|
|
|
|
},
|
|
|
|
})
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("legacy-client")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
2021-08-20 22:11:01 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.MeshRead(nil))
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.OperatorRead(nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceRead("foo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2021-09-16 16:08:45 +00:00
|
|
|
|
|
|
|
runTwiceAndReset("service and intention wildcard write", func(t *testing.T) {
|
|
|
|
delegate.UseTestLocalData([]interface{}{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "5f57c1f6-6a89-4186-9445-531b316e01df",
|
|
|
|
SecretID: "with-intentions",
|
|
|
|
Policies: []structs.ACLTokenPolicyLink{
|
|
|
|
{ID: "ixn-write"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&structs.ACLPolicy{
|
|
|
|
ID: "ixn-write",
|
|
|
|
Name: "ixn-write",
|
|
|
|
Description: "ixn-write",
|
|
|
|
Rules: `service_prefix "" { policy = "write" intentions = "write" }`,
|
|
|
|
Syntax: acl.SyntaxCurrent,
|
|
|
|
RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
authz, err := r.ResolveToken("with-intentions")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceRead("", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceRead("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceRead("bar", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceWrite("", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.ServiceWrite("bar", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.IntentionRead("", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.IntentionRead("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.IntentionRead("bar", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.IntentionWrite("", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.IntentionWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.IntentionWrite("bar", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeRead("server", nil))
|
|
|
|
})
|
2014-08-11 21:18:51 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
func TestACLResolver_Legacy(t *testing.T) {
|
2017-06-27 13:22:18 +00:00
|
|
|
t.Parallel()
|
2018-07-01 10:50:53 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Cached", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
cached := false
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: true,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
2020-11-05 16:18:59 +00:00
|
|
|
getPolicyFn: func(_ *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error {
|
2018-10-19 16:04:07 +00:00
|
|
|
if !cached {
|
|
|
|
reply.Parent = "deny"
|
|
|
|
reply.TTL = 30
|
|
|
|
reply.ETag = "nothing"
|
|
|
|
reply.Policy = &acl.Policy{
|
|
|
|
ID: "not-needed",
|
2019-10-15 20:58:50 +00:00
|
|
|
PolicyRules: acl.PolicyRules{
|
|
|
|
Nodes: []*acl.NodeRule{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-10-15 20:58:50 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: acl.PolicyWrite,
|
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
cached = true
|
|
|
|
return nil
|
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
return errRPC
|
2018-10-19 16:04:07 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, delegate, nil)
|
|
|
|
|
|
|
|
authz, err := r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
// there is a bit of translation that happens
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo/bar", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("fo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
|
|
|
// this should be from the cache
|
|
|
|
authz, err = r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
// there is a bit of translation that happens
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo/bar", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("fo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2018-07-01 10:50:53 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Cache-Expiry-Extend", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
cached := false
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: true,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
2020-11-05 16:18:59 +00:00
|
|
|
getPolicyFn: func(_ *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error {
|
2018-10-19 16:04:07 +00:00
|
|
|
if !cached {
|
|
|
|
reply.Parent = "deny"
|
|
|
|
reply.TTL = 0
|
|
|
|
reply.ETag = "nothing"
|
|
|
|
reply.Policy = &acl.Policy{
|
|
|
|
ID: "not-needed",
|
2019-10-15 20:58:50 +00:00
|
|
|
PolicyRules: acl.PolicyRules{
|
|
|
|
Nodes: []*acl.NodeRule{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-10-15 20:58:50 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: acl.PolicyWrite,
|
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
cached = true
|
|
|
|
return nil
|
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
return errRPC
|
2018-10-19 16:04:07 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLTokenTTL = 0
|
2018-07-01 10:50:53 +00:00
|
|
|
})
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
// there is a bit of translation that happens
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo/bar", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("fo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
|
|
|
// this should be from the cache
|
|
|
|
authz, err = r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
// there is a bit of translation that happens
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo/bar", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("fo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2018-07-01 10:50:53 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Cache-Expiry-Allow", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
cached := false
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: true,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
2020-11-05 16:18:59 +00:00
|
|
|
getPolicyFn: func(_ *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error {
|
2018-10-19 16:04:07 +00:00
|
|
|
if !cached {
|
|
|
|
reply.Parent = "deny"
|
|
|
|
reply.TTL = 0
|
|
|
|
reply.ETag = "nothing"
|
|
|
|
reply.Policy = &acl.Policy{
|
|
|
|
ID: "not-needed",
|
2019-10-15 20:58:50 +00:00
|
|
|
PolicyRules: acl.PolicyRules{
|
|
|
|
Nodes: []*acl.NodeRule{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-10-15 20:58:50 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: acl.PolicyWrite,
|
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
cached = true
|
|
|
|
return nil
|
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
return errRPC
|
2018-07-01 10:50:53 +00:00
|
|
|
},
|
|
|
|
}
|
2018-10-19 16:04:07 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "allow"
|
|
|
|
config.Config.ACLTokenTTL = 0
|
|
|
|
})
|
2018-07-01 10:50:53 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
// there is a bit of translation that happens
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo/bar", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("fo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
|
|
|
// this should be from the cache
|
|
|
|
authz, err = r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
// there is a bit of translation that happens
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo/bar", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("fo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2018-07-01 10:50:53 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Cache-Expiry-Deny", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
cached := false
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: true,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
2020-11-05 16:18:59 +00:00
|
|
|
getPolicyFn: func(_ *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error {
|
2018-10-19 16:04:07 +00:00
|
|
|
if !cached {
|
|
|
|
reply.Parent = "deny"
|
|
|
|
reply.TTL = 0
|
|
|
|
reply.ETag = "nothing"
|
|
|
|
reply.Policy = &acl.Policy{
|
|
|
|
ID: "not-needed",
|
2019-10-15 20:58:50 +00:00
|
|
|
PolicyRules: acl.PolicyRules{
|
|
|
|
Nodes: []*acl.NodeRule{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-10-15 20:58:50 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: acl.PolicyWrite,
|
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
cached = true
|
|
|
|
return nil
|
|
|
|
}
|
2019-04-15 20:43:19 +00:00
|
|
|
return errRPC
|
2018-10-19 16:04:07 +00:00
|
|
|
},
|
2018-07-01 10:50:53 +00:00
|
|
|
}
|
2018-10-19 16:04:07 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "deny"
|
|
|
|
config.Config.ACLTokenTTL = 0
|
|
|
|
})
|
2018-07-01 10:50:53 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
authz, err := r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
// there is a bit of translation that happens
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo/bar", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("fo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
|
|
|
// this should be from the cache
|
|
|
|
authz, err = r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
// there is a bit of translation that happens
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("foo/bar", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("fo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
})
|
2018-07-01 10:50:53 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Run("Cache-Expiry-Async-Cache", func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
cached := false
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: true,
|
|
|
|
localTokens: false,
|
|
|
|
localPolicies: false,
|
2020-11-05 16:18:59 +00:00
|
|
|
getPolicyFn: func(_ *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error {
|
2018-10-19 16:04:07 +00:00
|
|
|
if !cached {
|
|
|
|
reply.Parent = "deny"
|
|
|
|
reply.TTL = 0
|
|
|
|
reply.ETag = "nothing"
|
|
|
|
reply.Policy = &acl.Policy{
|
|
|
|
ID: "not-needed",
|
2019-10-15 20:58:50 +00:00
|
|
|
PolicyRules: acl.PolicyRules{
|
|
|
|
Nodes: []*acl.NodeRule{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2019-10-15 20:58:50 +00:00
|
|
|
Name: "foo",
|
|
|
|
Policy: acl.PolicyWrite,
|
|
|
|
},
|
2018-10-19 16:04:07 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
cached = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return acl.ErrNotFound
|
|
|
|
},
|
2018-07-01 10:50:53 +00:00
|
|
|
}
|
2018-10-19 16:04:07 +00:00
|
|
|
r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) {
|
|
|
|
config.Config.ACLDownPolicy = "async-cache"
|
|
|
|
config.Config.ACLTokenTTL = 0
|
|
|
|
})
|
|
|
|
|
|
|
|
authz, err := r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
// there is a bit of translation that happens
|
2019-10-15 20:58:50 +00:00
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeWrite("foo/bar", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("fo", nil))
|
2018-10-19 16:04:07 +00:00
|
|
|
|
|
|
|
// delivered from the cache
|
|
|
|
authz2, err := r.ResolveToken("foo")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.True(t, authz == authz2)
|
|
|
|
|
|
|
|
// the go routine spawned will eventually return and this will be a not found error
|
|
|
|
retry.Run(t, func(t *retry.R) {
|
|
|
|
authz3, err := r.ResolveToken("foo")
|
|
|
|
assert.Error(t, err)
|
|
|
|
assert.True(t, acl.IsErrNotFound(err))
|
|
|
|
assert.Nil(t, authz3)
|
|
|
|
})
|
|
|
|
})
|
2014-08-11 21:18:51 +00:00
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
func TestACL_filterHealthChecks(t *testing.T) {
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
2016-12-13 00:28:52 +00:00
|
|
|
// Create some health checks.
|
|
|
|
fill := func() structs.HealthChecks {
|
|
|
|
return structs.HealthChecks{
|
|
|
|
&structs.HealthCheck{
|
|
|
|
Node: "node1",
|
|
|
|
CheckID: "check1",
|
|
|
|
ServiceName: "foo",
|
|
|
|
},
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 00:28:52 +00:00
|
|
|
{
|
|
|
|
hc := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.DenyAll(), nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
filt.filterHealthChecks(&hc)
|
|
|
|
if len(hc) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", hc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allowed to see the service but not the node.
|
2018-10-19 16:04:07 +00:00
|
|
|
policy, err := acl.NewPolicyFromSource("", 0, `
|
2016-12-13 00:28:52 +00:00
|
|
|
service "foo" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
`, acl.SyntaxLegacy, nil, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
2019-10-15 20:58:50 +00:00
|
|
|
perms, err := acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
hc := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
filt.filterHealthChecks(&hc)
|
|
|
|
if len(hc) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", hc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chain on access to the node.
|
2018-10-19 16:04:07 +00:00
|
|
|
policy, err = acl.NewPolicyFromSource("", 0, `
|
2016-12-13 00:28:52 +00:00
|
|
|
node "node1" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
`, acl.SyntaxLegacy, nil, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
2019-10-15 20:58:50 +00:00
|
|
|
perms, err = acl.NewPolicyAuthorizerWithDefaults(perms, []*acl.Policy{policy}, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now it should go through.
|
|
|
|
{
|
|
|
|
hc := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
filt.filterHealthChecks(&hc)
|
|
|
|
if len(hc) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", hc)
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-05 02:46:33 +00:00
|
|
|
func TestACL_filterIntentions(t *testing.T) {
|
|
|
|
t.Parallel()
|
2018-03-06 18:51:26 +00:00
|
|
|
assert := assert.New(t)
|
|
|
|
|
2018-03-05 02:46:33 +00:00
|
|
|
fill := func() structs.Intentions {
|
|
|
|
return structs.Intentions{
|
|
|
|
&structs.Intention{
|
|
|
|
ID: "f004177f-2c28-83b7-4229-eacc25fe55d1",
|
|
|
|
DestinationName: "bar",
|
|
|
|
},
|
|
|
|
&structs.Intention{
|
|
|
|
ID: "f004177f-2c28-83b7-4229-eacc25fe55d2",
|
|
|
|
DestinationName: "foo",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try permissive filtering.
|
|
|
|
{
|
|
|
|
ixns := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2018-03-05 02:46:33 +00:00
|
|
|
filt.filterIntentions(&ixns)
|
2018-03-06 18:51:26 +00:00
|
|
|
assert.Len(ixns, 2)
|
2018-03-05 02:46:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Try restrictive filtering.
|
|
|
|
{
|
|
|
|
ixns := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.DenyAll(), nil)
|
2018-03-05 02:46:33 +00:00
|
|
|
filt.filterIntentions(&ixns)
|
2018-03-06 18:51:26 +00:00
|
|
|
assert.Len(ixns, 0)
|
2018-03-05 02:46:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Policy to see one
|
2018-10-19 16:04:07 +00:00
|
|
|
policy, err := acl.NewPolicyFromSource("", 0, `
|
2018-03-05 02:46:33 +00:00
|
|
|
service "foo" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
`, acl.SyntaxLegacy, nil, nil)
|
2018-03-06 18:51:26 +00:00
|
|
|
assert.Nil(err)
|
2019-10-15 20:58:50 +00:00
|
|
|
perms, err := acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
2018-03-06 18:51:26 +00:00
|
|
|
assert.Nil(err)
|
2018-03-05 02:46:33 +00:00
|
|
|
|
|
|
|
// Filter
|
|
|
|
{
|
|
|
|
ixns := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2018-03-05 02:46:33 +00:00
|
|
|
filt.filterIntentions(&ixns)
|
2018-03-06 18:51:26 +00:00
|
|
|
assert.Len(ixns, 1)
|
2018-03-05 02:46:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-11 21:14:43 +00:00
|
|
|
func TestACL_filterServices(t *testing.T) {
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
2015-06-11 21:14:43 +00:00
|
|
|
// Create some services
|
|
|
|
services := structs.Services{
|
|
|
|
"service1": []string{},
|
|
|
|
"service2": []string{},
|
2017-03-23 23:10:50 +00:00
|
|
|
"consul": []string{},
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 23:10:50 +00:00
|
|
|
// Try permissive filtering.
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2019-12-10 02:26:41 +00:00
|
|
|
filt.filterServices(services, nil)
|
2017-03-23 23:10:50 +00:00
|
|
|
if len(services) != 3 {
|
2015-06-11 21:14:43 +00:00
|
|
|
t.Fatalf("bad: %#v", services)
|
|
|
|
}
|
|
|
|
|
2017-03-23 23:10:50 +00:00
|
|
|
// Try restrictive filtering.
|
2020-05-29 21:16:03 +00:00
|
|
|
filt = newACLFilter(acl.DenyAll(), nil)
|
2019-12-10 02:26:41 +00:00
|
|
|
filt.filterServices(services, nil)
|
2015-06-11 21:14:43 +00:00
|
|
|
if len(services) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", services)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestACL_filterServiceNodes(t *testing.T) {
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
2016-12-11 21:22:14 +00:00
|
|
|
// Create some service nodes.
|
|
|
|
fill := func() structs.ServiceNodes {
|
|
|
|
return structs.ServiceNodes{
|
|
|
|
&structs.ServiceNode{
|
|
|
|
Node: "node1",
|
|
|
|
ServiceName: "foo",
|
|
|
|
},
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-11 21:22:14 +00:00
|
|
|
// Try permissive filtering.
|
|
|
|
{
|
|
|
|
nodes := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2016-12-11 21:22:14 +00:00
|
|
|
filt.filterServiceNodes(&nodes)
|
|
|
|
if len(nodes) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", nodes)
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-11 21:22:14 +00:00
|
|
|
// Try restrictive filtering.
|
|
|
|
{
|
|
|
|
nodes := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.DenyAll(), nil)
|
2016-12-11 21:22:14 +00:00
|
|
|
filt.filterServiceNodes(&nodes)
|
|
|
|
if len(nodes) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", nodes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allowed to see the service but not the node.
|
2018-10-19 16:04:07 +00:00
|
|
|
policy, err := acl.NewPolicyFromSource("", 0, `
|
2016-12-11 21:22:14 +00:00
|
|
|
service "foo" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
`, acl.SyntaxLegacy, nil, nil)
|
2016-12-11 21:22:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
2019-10-15 20:58:50 +00:00
|
|
|
perms, err := acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
2016-12-11 21:22:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// But with version 8 the node will block it.
|
|
|
|
{
|
|
|
|
nodes := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2016-12-11 21:22:14 +00:00
|
|
|
filt.filterServiceNodes(&nodes)
|
|
|
|
if len(nodes) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", nodes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chain on access to the node.
|
2018-10-19 16:04:07 +00:00
|
|
|
policy, err = acl.NewPolicyFromSource("", 0, `
|
2016-12-11 21:22:14 +00:00
|
|
|
node "node1" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
`, acl.SyntaxLegacy, nil, nil)
|
2016-12-11 21:22:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
2019-10-15 20:58:50 +00:00
|
|
|
perms, err = acl.NewPolicyAuthorizerWithDefaults(perms, []*acl.Policy{policy}, nil)
|
2016-12-11 21:22:14 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now it should go through.
|
|
|
|
{
|
|
|
|
nodes := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2016-12-11 21:22:14 +00:00
|
|
|
filt.filterServiceNodes(&nodes)
|
|
|
|
if len(nodes) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", nodes)
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestACL_filterNodeServices(t *testing.T) {
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
2016-12-13 00:53:31 +00:00
|
|
|
// Create some node services.
|
|
|
|
fill := func() *structs.NodeServices {
|
|
|
|
return &structs.NodeServices{
|
|
|
|
Node: &structs.Node{
|
|
|
|
Node: "node1",
|
2015-06-11 21:14:43 +00:00
|
|
|
},
|
2016-12-13 00:53:31 +00:00
|
|
|
Services: map[string]*structs.NodeService{
|
2020-06-16 17:19:31 +00:00
|
|
|
"foo": {
|
2016-12-13 00:53:31 +00:00
|
|
|
ID: "foo",
|
|
|
|
Service: "foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 00:53:31 +00:00
|
|
|
// Try nil, which is a possible input.
|
|
|
|
{
|
|
|
|
var services *structs.NodeServices
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2016-12-13 00:53:31 +00:00
|
|
|
filt.filterNodeServices(&services)
|
|
|
|
if services != nil {
|
|
|
|
t.Fatalf("bad: %#v", services)
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 00:53:31 +00:00
|
|
|
// Try permissive filtering.
|
|
|
|
{
|
|
|
|
services := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2016-12-13 00:53:31 +00:00
|
|
|
filt.filterNodeServices(&services)
|
|
|
|
if len(services.Services) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", services.Services)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try restrictive filtering.
|
|
|
|
{
|
|
|
|
services := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.DenyAll(), nil)
|
2016-12-13 00:53:31 +00:00
|
|
|
filt.filterNodeServices(&services)
|
2020-05-29 21:16:03 +00:00
|
|
|
if services != nil {
|
|
|
|
t.Fatalf("bad: %#v", *services)
|
2016-12-13 00:53:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allowed to see the service but not the node.
|
2018-10-19 16:04:07 +00:00
|
|
|
policy, err := acl.NewPolicyFromSource("", 0, `
|
2016-12-13 00:53:31 +00:00
|
|
|
service "foo" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
`, acl.SyntaxLegacy, nil, nil)
|
2016-12-13 00:53:31 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
2019-10-15 20:58:50 +00:00
|
|
|
perms, err := acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
2016-12-13 00:53:31 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2020-05-29 21:16:03 +00:00
|
|
|
// Node will block it.
|
2016-12-13 00:53:31 +00:00
|
|
|
{
|
|
|
|
services := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2016-12-13 00:53:31 +00:00
|
|
|
filt.filterNodeServices(&services)
|
|
|
|
if services != nil {
|
|
|
|
t.Fatalf("bad: %#v", services)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chain on access to the node.
|
2018-10-19 16:04:07 +00:00
|
|
|
policy, err = acl.NewPolicyFromSource("", 0, `
|
2016-12-13 00:53:31 +00:00
|
|
|
node "node1" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
`, acl.SyntaxLegacy, nil, nil)
|
2016-12-13 00:53:31 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
2019-10-15 20:58:50 +00:00
|
|
|
perms, err = acl.NewPolicyAuthorizerWithDefaults(perms, []*acl.Policy{policy}, nil)
|
2016-12-13 00:53:31 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now it should go through.
|
|
|
|
{
|
|
|
|
services := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2016-12-13 00:53:31 +00:00
|
|
|
filt.filterNodeServices(&services)
|
|
|
|
if len((*services).Services) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", (*services).Services)
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestACL_filterCheckServiceNodes(t *testing.T) {
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
2016-12-13 00:28:52 +00:00
|
|
|
// Create some nodes.
|
|
|
|
fill := func() structs.CheckServiceNodes {
|
|
|
|
return structs.CheckServiceNodes{
|
|
|
|
structs.CheckServiceNode{
|
|
|
|
Node: &structs.Node{
|
|
|
|
Node: "node1",
|
|
|
|
},
|
|
|
|
Service: &structs.NodeService{
|
|
|
|
ID: "foo",
|
|
|
|
Service: "foo",
|
|
|
|
},
|
|
|
|
Checks: structs.HealthChecks{
|
|
|
|
&structs.HealthCheck{
|
|
|
|
Node: "node1",
|
|
|
|
CheckID: "check1",
|
|
|
|
ServiceName: "foo",
|
|
|
|
},
|
2015-06-11 21:14:43 +00:00
|
|
|
},
|
|
|
|
},
|
2016-12-13 00:28:52 +00:00
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 00:28:52 +00:00
|
|
|
// Try permissive filtering.
|
|
|
|
{
|
|
|
|
nodes := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
filt.filterCheckServiceNodes(&nodes)
|
|
|
|
if len(nodes) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", nodes)
|
|
|
|
}
|
|
|
|
if len(nodes[0].Checks) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", nodes[0].Checks)
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
2016-12-13 00:28:52 +00:00
|
|
|
|
|
|
|
// Try restrictive filtering.
|
|
|
|
{
|
|
|
|
nodes := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.DenyAll(), nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
filt.filterCheckServiceNodes(&nodes)
|
|
|
|
if len(nodes) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", nodes)
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 00:28:52 +00:00
|
|
|
// Allowed to see the service but not the node.
|
2018-10-19 16:04:07 +00:00
|
|
|
policy, err := acl.NewPolicyFromSource("", 0, `
|
2016-12-13 00:28:52 +00:00
|
|
|
service "foo" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
`, acl.SyntaxLegacy, nil, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
2019-10-15 20:58:50 +00:00
|
|
|
perms, err := acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
nodes := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
filt.filterCheckServiceNodes(&nodes)
|
|
|
|
if len(nodes) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", nodes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chain on access to the node.
|
2018-10-19 16:04:07 +00:00
|
|
|
policy, err = acl.NewPolicyFromSource("", 0, `
|
2016-12-13 00:28:52 +00:00
|
|
|
node "node1" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
`, acl.SyntaxLegacy, nil, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
2019-10-15 20:58:50 +00:00
|
|
|
perms, err = acl.NewPolicyAuthorizerWithDefaults(perms, []*acl.Policy{policy}, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now it should go through.
|
|
|
|
{
|
|
|
|
nodes := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2016-12-13 00:28:52 +00:00
|
|
|
filt.filterCheckServiceNodes(&nodes)
|
|
|
|
if len(nodes) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", nodes)
|
|
|
|
}
|
|
|
|
if len(nodes[0].Checks) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", nodes[0].Checks)
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-29 01:41:47 +00:00
|
|
|
func TestACL_filterServiceTopology(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
// Create some nodes.
|
|
|
|
fill := func() structs.ServiceTopology {
|
|
|
|
return structs.ServiceTopology{
|
|
|
|
Upstreams: structs.CheckServiceNodes{
|
|
|
|
structs.CheckServiceNode{
|
|
|
|
Node: &structs.Node{
|
|
|
|
Node: "node1",
|
|
|
|
},
|
|
|
|
Service: &structs.NodeService{
|
|
|
|
ID: "foo",
|
|
|
|
Service: "foo",
|
|
|
|
},
|
|
|
|
Checks: structs.HealthChecks{
|
|
|
|
&structs.HealthCheck{
|
|
|
|
Node: "node1",
|
|
|
|
CheckID: "check1",
|
|
|
|
ServiceName: "foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Downstreams: structs.CheckServiceNodes{
|
|
|
|
structs.CheckServiceNode{
|
|
|
|
Node: &structs.Node{
|
|
|
|
Node: "node2",
|
|
|
|
},
|
|
|
|
Service: &structs.NodeService{
|
|
|
|
ID: "bar",
|
|
|
|
Service: "bar",
|
|
|
|
},
|
|
|
|
Checks: structs.HealthChecks{
|
|
|
|
&structs.HealthCheck{
|
|
|
|
Node: "node2",
|
|
|
|
CheckID: "check1",
|
|
|
|
ServiceName: "bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
original := fill()
|
|
|
|
|
|
|
|
t.Run("allow all without permissions", func(t *testing.T) {
|
|
|
|
topo := fill()
|
|
|
|
f := newACLFilter(acl.AllowAll(), nil)
|
|
|
|
|
|
|
|
filtered := f.filterServiceTopology(&topo)
|
|
|
|
if filtered {
|
|
|
|
t.Fatalf("should not have been filtered")
|
|
|
|
}
|
|
|
|
assert.Equal(t, original, topo)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("deny all without permissions", func(t *testing.T) {
|
|
|
|
topo := fill()
|
|
|
|
f := newACLFilter(acl.DenyAll(), nil)
|
|
|
|
|
|
|
|
filtered := f.filterServiceTopology(&topo)
|
|
|
|
if !filtered {
|
|
|
|
t.Fatalf("should have been marked as filtered")
|
|
|
|
}
|
|
|
|
assert.Len(t, topo.Upstreams, 0)
|
|
|
|
assert.Len(t, topo.Upstreams, 0)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("only upstream permissions", func(t *testing.T) {
|
|
|
|
rules := `
|
|
|
|
node "node1" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
service "foo" {
|
|
|
|
policy = "read"
|
|
|
|
}`
|
|
|
|
policy, err := acl.NewPolicyFromSource("", 0, rules, acl.SyntaxLegacy, nil, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
|
|
|
perms, err := acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
topo := fill()
|
|
|
|
f := newACLFilter(perms, nil)
|
|
|
|
|
|
|
|
filtered := f.filterServiceTopology(&topo)
|
|
|
|
if !filtered {
|
|
|
|
t.Fatalf("should have been marked as filtered")
|
|
|
|
}
|
|
|
|
assert.Equal(t, original.Upstreams, topo.Upstreams)
|
|
|
|
assert.Len(t, topo.Downstreams, 0)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("only downstream permissions", func(t *testing.T) {
|
|
|
|
rules := `
|
|
|
|
node "node2" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
service "bar" {
|
|
|
|
policy = "read"
|
|
|
|
}`
|
|
|
|
policy, err := acl.NewPolicyFromSource("", 0, rules, acl.SyntaxLegacy, nil, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
|
|
|
perms, err := acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
topo := fill()
|
|
|
|
f := newACLFilter(perms, nil)
|
|
|
|
|
|
|
|
filtered := f.filterServiceTopology(&topo)
|
|
|
|
if !filtered {
|
|
|
|
t.Fatalf("should have been marked as filtered")
|
|
|
|
}
|
|
|
|
assert.Equal(t, original.Downstreams, topo.Downstreams)
|
|
|
|
assert.Len(t, topo.Upstreams, 0)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("upstream and downstream permissions", func(t *testing.T) {
|
|
|
|
rules := `
|
|
|
|
node "node1" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
service "foo" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
node "node2" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
|
|
|
service "bar" {
|
|
|
|
policy = "read"
|
|
|
|
}`
|
|
|
|
policy, err := acl.NewPolicyFromSource("", 0, rules, acl.SyntaxLegacy, nil, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
|
|
|
perms, err := acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
topo := fill()
|
|
|
|
f := newACLFilter(perms, nil)
|
|
|
|
|
|
|
|
filtered := f.filterServiceTopology(&topo)
|
|
|
|
if filtered {
|
|
|
|
t.Fatalf("should not have been filtered")
|
|
|
|
}
|
|
|
|
|
|
|
|
original := fill()
|
|
|
|
assert.Equal(t, original, topo)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-12-12 19:58:31 +00:00
|
|
|
func TestACL_filterCoordinates(t *testing.T) {
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
2016-12-12 19:58:31 +00:00
|
|
|
// Create some coordinates.
|
|
|
|
coords := structs.Coordinates{
|
|
|
|
&structs.Coordinate{
|
|
|
|
Node: "node1",
|
|
|
|
Coord: generateRandomCoordinate(),
|
|
|
|
},
|
|
|
|
&structs.Coordinate{
|
|
|
|
Node: "node2",
|
|
|
|
Coord: generateRandomCoordinate(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try permissive filtering.
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2016-12-12 19:58:31 +00:00
|
|
|
filt.filterCoordinates(&coords)
|
|
|
|
if len(coords) != 2 {
|
|
|
|
t.Fatalf("bad: %#v", coords)
|
|
|
|
}
|
|
|
|
|
2020-05-29 21:16:03 +00:00
|
|
|
// Try restrictive filtering
|
|
|
|
filt = newACLFilter(acl.DenyAll(), nil)
|
2016-12-12 19:58:31 +00:00
|
|
|
filt.filterCoordinates(&coords)
|
|
|
|
if len(coords) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", coords)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-13 05:59:22 +00:00
|
|
|
func TestACL_filterSessions(t *testing.T) {
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
2016-12-13 05:59:22 +00:00
|
|
|
// Create a session list.
|
|
|
|
sessions := structs.Sessions{
|
|
|
|
&structs.Session{
|
|
|
|
Node: "foo",
|
|
|
|
},
|
|
|
|
&structs.Session{
|
|
|
|
Node: "bar",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try permissive filtering.
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2016-12-13 05:59:22 +00:00
|
|
|
filt.filterSessions(&sessions)
|
|
|
|
if len(sessions) != 2 {
|
|
|
|
t.Fatalf("bad: %#v", sessions)
|
|
|
|
}
|
|
|
|
|
2020-05-29 21:16:03 +00:00
|
|
|
// Try restrictive filtering
|
|
|
|
filt = newACLFilter(acl.DenyAll(), nil)
|
2016-12-13 05:59:22 +00:00
|
|
|
filt.filterSessions(&sessions)
|
|
|
|
if len(sessions) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", sessions)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-11 21:14:43 +00:00
|
|
|
func TestACL_filterNodeDump(t *testing.T) {
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
2016-12-13 02:21:00 +00:00
|
|
|
// Create a node dump.
|
|
|
|
fill := func() structs.NodeDump {
|
|
|
|
return structs.NodeDump{
|
|
|
|
&structs.NodeInfo{
|
|
|
|
Node: "node1",
|
|
|
|
Services: []*structs.NodeService{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2016-12-13 02:21:00 +00:00
|
|
|
ID: "foo",
|
|
|
|
Service: "foo",
|
|
|
|
},
|
2015-06-11 21:14:43 +00:00
|
|
|
},
|
2016-12-13 02:21:00 +00:00
|
|
|
Checks: []*structs.HealthCheck{
|
2020-06-16 17:19:31 +00:00
|
|
|
{
|
2016-12-13 02:21:00 +00:00
|
|
|
Node: "node1",
|
|
|
|
CheckID: "check1",
|
|
|
|
ServiceName: "foo",
|
|
|
|
},
|
2015-06-11 21:14:43 +00:00
|
|
|
},
|
|
|
|
},
|
2016-12-13 02:21:00 +00:00
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 02:21:00 +00:00
|
|
|
// Try permissive filtering.
|
|
|
|
{
|
|
|
|
dump := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2016-12-13 02:21:00 +00:00
|
|
|
filt.filterNodeDump(&dump)
|
|
|
|
if len(dump) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", dump)
|
|
|
|
}
|
|
|
|
if len(dump[0].Services) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", dump[0].Services)
|
|
|
|
}
|
|
|
|
if len(dump[0].Checks) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", dump[0].Checks)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try restrictive filtering.
|
|
|
|
{
|
|
|
|
dump := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.DenyAll(), nil)
|
2016-12-13 02:21:00 +00:00
|
|
|
filt.filterNodeDump(&dump)
|
2020-05-29 21:16:03 +00:00
|
|
|
if len(dump) != 0 {
|
2016-12-13 02:21:00 +00:00
|
|
|
t.Fatalf("bad: %#v", dump)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allowed to see the service but not the node.
|
2018-10-19 16:04:07 +00:00
|
|
|
policy, err := acl.NewPolicyFromSource("", 0, `
|
2016-12-13 02:21:00 +00:00
|
|
|
service "foo" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
`, acl.SyntaxLegacy, nil, nil)
|
2016-12-13 02:21:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
2019-10-15 20:58:50 +00:00
|
|
|
perms, err := acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
2016-12-13 02:21:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
2016-12-13 02:21:00 +00:00
|
|
|
|
2020-05-29 21:16:03 +00:00
|
|
|
// But the node will block it.
|
2016-12-13 02:21:00 +00:00
|
|
|
{
|
|
|
|
dump := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2016-12-13 02:21:00 +00:00
|
|
|
filt.filterNodeDump(&dump)
|
|
|
|
if len(dump) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", dump)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chain on access to the node.
|
2018-10-19 16:04:07 +00:00
|
|
|
policy, err = acl.NewPolicyFromSource("", 0, `
|
2016-12-13 02:21:00 +00:00
|
|
|
node "node1" {
|
|
|
|
policy = "read"
|
|
|
|
}
|
2019-10-24 18:38:09 +00:00
|
|
|
`, acl.SyntaxLegacy, nil, nil)
|
2016-12-13 02:21:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
2019-10-15 20:58:50 +00:00
|
|
|
perms, err = acl.NewPolicyAuthorizerWithDefaults(perms, []*acl.Policy{policy}, nil)
|
2016-12-13 02:21:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
2016-12-13 02:21:00 +00:00
|
|
|
|
|
|
|
// Now it should go through.
|
|
|
|
{
|
|
|
|
dump := fill()
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2016-12-13 02:21:00 +00:00
|
|
|
filt.filterNodeDump(&dump)
|
|
|
|
if len(dump) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", dump)
|
|
|
|
}
|
|
|
|
if len(dump[0].Services) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", dump[0].Services)
|
|
|
|
}
|
|
|
|
if len(dump[0].Checks) != 1 {
|
|
|
|
t.Fatalf("bad: %#v", dump[0].Checks)
|
|
|
|
}
|
2015-06-11 21:14:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-11 00:00:11 +00:00
|
|
|
func TestACL_filterNodes(t *testing.T) {
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
2016-12-11 00:00:11 +00:00
|
|
|
// Create a nodes list.
|
|
|
|
nodes := structs.Nodes{
|
|
|
|
&structs.Node{
|
|
|
|
Node: "foo",
|
|
|
|
},
|
|
|
|
&structs.Node{
|
|
|
|
Node: "bar",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try permissive filtering.
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2016-12-11 00:00:11 +00:00
|
|
|
filt.filterNodes(&nodes)
|
|
|
|
if len(nodes) != 2 {
|
|
|
|
t.Fatalf("bad: %#v", nodes)
|
|
|
|
}
|
|
|
|
|
2020-05-29 21:16:03 +00:00
|
|
|
// Try restrictive filtering
|
|
|
|
filt = newACLFilter(acl.DenyAll(), nil)
|
2016-12-11 00:00:11 +00:00
|
|
|
filt.filterNodes(&nodes)
|
|
|
|
if len(nodes) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", nodes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-09 20:59:02 +00:00
|
|
|
func TestACL_filterDatacenterCheckServiceNodes(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
// Create some data.
|
|
|
|
fixture := map[string]structs.CheckServiceNodes{
|
|
|
|
"dc1": []structs.CheckServiceNode{
|
|
|
|
newTestMeshGatewayNode(
|
|
|
|
"dc1", "gateway1a", "1.2.3.4", 5555, map[string]string{structs.MetaWANFederationKey: "1"}, api.HealthPassing,
|
|
|
|
),
|
|
|
|
newTestMeshGatewayNode(
|
|
|
|
"dc1", "gateway2a", "4.3.2.1", 9999, map[string]string{structs.MetaWANFederationKey: "1"}, api.HealthPassing,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
"dc2": []structs.CheckServiceNode{
|
|
|
|
newTestMeshGatewayNode(
|
|
|
|
"dc2", "gateway1b", "5.6.7.8", 9999, map[string]string{structs.MetaWANFederationKey: "1"}, api.HealthPassing,
|
|
|
|
),
|
|
|
|
newTestMeshGatewayNode(
|
|
|
|
"dc2", "gateway2b", "8.7.6.5", 1111, map[string]string{structs.MetaWANFederationKey: "1"}, api.HealthPassing,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
fill := func(t *testing.T) map[string]structs.CheckServiceNodes {
|
|
|
|
t.Helper()
|
|
|
|
dup, err := copystructure.Copy(fixture)
|
|
|
|
require.NoError(t, err)
|
|
|
|
return dup.(map[string]structs.CheckServiceNodes)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try permissive filtering.
|
|
|
|
{
|
|
|
|
dcNodes := fill(t)
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2020-03-09 20:59:02 +00:00
|
|
|
filt.filterDatacenterCheckServiceNodes(&dcNodes)
|
|
|
|
require.Len(t, dcNodes, 2)
|
|
|
|
require.Equal(t, fill(t), dcNodes)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try restrictive filtering.
|
|
|
|
{
|
|
|
|
dcNodes := fill(t)
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.DenyAll(), nil)
|
2020-03-09 20:59:02 +00:00
|
|
|
filt.filterDatacenterCheckServiceNodes(&dcNodes)
|
|
|
|
require.Len(t, dcNodes, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
policy *acl.Policy
|
|
|
|
err error
|
|
|
|
perms acl.Authorizer
|
|
|
|
)
|
|
|
|
// Allowed to see the service but not the node.
|
|
|
|
policy, err = acl.NewPolicyFromSource("", 0, `
|
|
|
|
service_prefix "" { policy = "read" }
|
|
|
|
`, acl.SyntaxCurrent, nil, nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
perms, err = acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
{
|
|
|
|
dcNodes := fill(t)
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2020-03-09 20:59:02 +00:00
|
|
|
filt.filterDatacenterCheckServiceNodes(&dcNodes)
|
|
|
|
require.Len(t, dcNodes, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allowed to see the node but not the service.
|
|
|
|
policy, err = acl.NewPolicyFromSource("", 0, `
|
|
|
|
node_prefix "" { policy = "read" }
|
|
|
|
`, acl.SyntaxCurrent, nil, nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
perms, err = acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
{
|
|
|
|
dcNodes := fill(t)
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(perms, nil)
|
2020-03-09 20:59:02 +00:00
|
|
|
filt.filterDatacenterCheckServiceNodes(&dcNodes)
|
|
|
|
require.Len(t, dcNodes, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allowed to see the service AND the node
|
|
|
|
policy, err = acl.NewPolicyFromSource("", 0, `
|
|
|
|
service_prefix "" { policy = "read" }
|
|
|
|
node_prefix "" { policy = "read" }
|
|
|
|
`, acl.SyntaxCurrent, nil, nil)
|
|
|
|
require.NoError(t, err)
|
2020-06-05 19:28:03 +00:00
|
|
|
_, err = acl.NewPolicyAuthorizerWithDefaults(acl.DenyAll(), []*acl.Policy{policy}, nil)
|
2020-03-09 20:59:02 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// Now it should go through.
|
|
|
|
{
|
|
|
|
dcNodes := fill(t)
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.AllowAll(), nil)
|
2020-03-09 20:59:02 +00:00
|
|
|
filt.filterDatacenterCheckServiceNodes(&dcNodes)
|
|
|
|
require.Len(t, dcNodes, 2)
|
|
|
|
require.Equal(t, fill(t), dcNodes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-26 23:59:00 +00:00
|
|
|
func TestACL_redactPreparedQueryTokens(t *testing.T) {
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
2016-02-26 23:59:00 +00:00
|
|
|
query := &structs.PreparedQuery{
|
|
|
|
ID: "f004177f-2c28-83b7-4229-eacc25fe55d1",
|
|
|
|
Token: "root",
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := &structs.PreparedQuery{
|
|
|
|
ID: "f004177f-2c28-83b7-4229-eacc25fe55d1",
|
|
|
|
Token: "root",
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try permissive filtering with a management token. This will allow the
|
|
|
|
// embedded token to be seen.
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.ManageAll(), nil)
|
2016-02-26 23:59:00 +00:00
|
|
|
filt.redactPreparedQueryTokens(&query)
|
|
|
|
if !reflect.DeepEqual(query, expected) {
|
|
|
|
t.Fatalf("bad: %#v", &query)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hang on to the entry with a token, which needs to survive the next
|
|
|
|
// operation.
|
|
|
|
original := query
|
|
|
|
|
|
|
|
// Now try permissive filtering with a client token, which should cause
|
|
|
|
// the embedded token to get redacted.
|
2020-05-29 21:16:03 +00:00
|
|
|
filt = newACLFilter(acl.AllowAll(), nil)
|
2016-02-26 23:59:00 +00:00
|
|
|
filt.redactPreparedQueryTokens(&query)
|
|
|
|
expected.Token = redactedToken
|
|
|
|
if !reflect.DeepEqual(query, expected) {
|
|
|
|
t.Fatalf("bad: %#v", *query)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that the original object didn't lose its token.
|
|
|
|
if original.Token != "root" {
|
|
|
|
t.Fatalf("bad token: %s", original.Token)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-30 21:19:57 +00:00
|
|
|
func TestFilterACL_redactTokenSecret(t *testing.T) {
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: true,
|
|
|
|
localPolicies: true,
|
|
|
|
// No need to provide any of the RPC callbacks
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, delegate, nil)
|
|
|
|
|
|
|
|
token := &structs.ACLToken{
|
|
|
|
AccessorID: "6a5e25b3-28f2-4085-9012-c3fb754314d1",
|
|
|
|
SecretID: "6a5e25b3-28f2-4085-9012-c3fb754314d1",
|
|
|
|
}
|
|
|
|
|
2021-07-30 21:19:57 +00:00
|
|
|
err := filterACL(r, "acl-wr", &token)
|
2018-10-19 16:04:07 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, "6a5e25b3-28f2-4085-9012-c3fb754314d1", token.SecretID)
|
|
|
|
|
2021-07-30 21:19:57 +00:00
|
|
|
err = filterACL(r, "acl-ro", &token)
|
2018-10-19 16:04:07 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, redactedToken, token.SecretID)
|
|
|
|
}
|
|
|
|
|
2021-07-30 21:19:57 +00:00
|
|
|
func TestFilterACL_redactTokenSecrets(t *testing.T) {
|
2018-10-19 16:04:07 +00:00
|
|
|
t.Parallel()
|
|
|
|
delegate := &ACLResolverTestDelegate{
|
|
|
|
enabled: true,
|
|
|
|
datacenter: "dc1",
|
|
|
|
legacy: false,
|
|
|
|
localTokens: true,
|
|
|
|
localPolicies: true,
|
|
|
|
// No need to provide any of the RPC callbacks
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, delegate, nil)
|
|
|
|
|
|
|
|
tokens := structs.ACLTokens{
|
|
|
|
&structs.ACLToken{
|
|
|
|
AccessorID: "6a5e25b3-28f2-4085-9012-c3fb754314d1",
|
|
|
|
SecretID: "6a5e25b3-28f2-4085-9012-c3fb754314d1",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-07-30 21:19:57 +00:00
|
|
|
err := filterACL(r, "acl-wr", &tokens)
|
2018-10-19 16:04:07 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, "6a5e25b3-28f2-4085-9012-c3fb754314d1", tokens[0].SecretID)
|
|
|
|
|
2021-07-30 21:19:57 +00:00
|
|
|
err = filterACL(r, "acl-ro", &tokens)
|
2018-10-19 16:04:07 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, redactedToken, tokens[0].SecretID)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
func TestACL_filterPreparedQueries(t *testing.T) {
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
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
|
|
|
queries := structs.PreparedQueries{
|
|
|
|
&structs.PreparedQuery{
|
|
|
|
ID: "f004177f-2c28-83b7-4229-eacc25fe55d1",
|
|
|
|
},
|
|
|
|
&structs.PreparedQuery{
|
2016-02-24 09:26:16 +00:00
|
|
|
ID: "f004177f-2c28-83b7-4229-eacc25fe55d2",
|
|
|
|
Name: "query-with-no-token",
|
|
|
|
},
|
|
|
|
&structs.PreparedQuery{
|
|
|
|
ID: "f004177f-2c28-83b7-4229-eacc25fe55d3",
|
|
|
|
Name: "query-with-a-token",
|
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
|
|
|
Token: "root",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := structs.PreparedQueries{
|
|
|
|
&structs.PreparedQuery{
|
|
|
|
ID: "f004177f-2c28-83b7-4229-eacc25fe55d1",
|
|
|
|
},
|
|
|
|
&structs.PreparedQuery{
|
2016-02-24 09:26:16 +00:00
|
|
|
ID: "f004177f-2c28-83b7-4229-eacc25fe55d2",
|
|
|
|
Name: "query-with-no-token",
|
|
|
|
},
|
|
|
|
&structs.PreparedQuery{
|
|
|
|
ID: "f004177f-2c28-83b7-4229-eacc25fe55d3",
|
|
|
|
Name: "query-with-a-token",
|
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
|
|
|
Token: "root",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try permissive filtering with a management token. This will allow the
|
2016-02-24 09:26:16 +00:00
|
|
|
// embedded token to be seen.
|
2020-05-29 21:16:03 +00:00
|
|
|
filt := newACLFilter(acl.ManageAll(), nil)
|
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
|
|
|
filt.filterPreparedQueries(&queries)
|
|
|
|
if !reflect.DeepEqual(queries, expected) {
|
|
|
|
t.Fatalf("bad: %#v", queries)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hang on to the entry with a token, which needs to survive the next
|
|
|
|
// operation.
|
2016-02-24 09:26:16 +00:00
|
|
|
original := queries[2]
|
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
|
|
|
|
|
|
|
// Now try permissive filtering with a client token, which should cause
|
2016-02-24 09:26:16 +00:00
|
|
|
// the embedded token to get redacted, and the query with no name to get
|
|
|
|
// filtered out.
|
2020-05-29 21:16:03 +00:00
|
|
|
filt = newACLFilter(acl.AllowAll(), nil)
|
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
|
|
|
filt.filterPreparedQueries(&queries)
|
2016-02-24 09:26:16 +00:00
|
|
|
expected[2].Token = redactedToken
|
|
|
|
expected = append(structs.PreparedQueries{}, expected[1], expected[2])
|
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
|
|
|
if !reflect.DeepEqual(queries, expected) {
|
|
|
|
t.Fatalf("bad: %#v", queries)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that the original object didn't lose its token.
|
|
|
|
if original.Token != "root" {
|
|
|
|
t.Fatalf("bad token: %s", original.Token)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now try restrictive filtering.
|
2020-05-29 21:16:03 +00:00
|
|
|
filt = newACLFilter(acl.DenyAll(), nil)
|
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
|
|
|
filt.filterPreparedQueries(&queries)
|
|
|
|
if len(queries) != 0 {
|
|
|
|
t.Fatalf("bad: %#v", queries)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-11 23:46:15 +00:00
|
|
|
func TestACL_unhandledFilterType(t *testing.T) {
|
2020-12-07 18:42:55 +00:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("too slow for testing.Short")
|
|
|
|
}
|
|
|
|
|
2017-05-22 22:14:27 +00:00
|
|
|
t.Parallel()
|
2015-06-11 23:46:15 +00:00
|
|
|
defer func(t *testing.T) {
|
|
|
|
if recover() == nil {
|
|
|
|
t.Fatalf("should panic")
|
|
|
|
}
|
|
|
|
}(t)
|
|
|
|
|
|
|
|
// Create the server
|
|
|
|
dir, token, srv, client := testACLFilterServer(t)
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
defer srv.Shutdown()
|
|
|
|
defer client.Close()
|
|
|
|
|
|
|
|
// Pass an unhandled type into the ACL filter.
|
|
|
|
srv.filterACL(token, &structs.HealthCheck{})
|
|
|
|
}
|
|
|
|
|
2019-04-08 18:19:09 +00:00
|
|
|
func TestDedupeServiceIdentities(t *testing.T) {
|
|
|
|
srvid := func(name string, datacenters ...string) *structs.ACLServiceIdentity {
|
|
|
|
return &structs.ACLServiceIdentity{
|
|
|
|
ServiceName: name,
|
|
|
|
Datacenters: datacenters,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
in []*structs.ACLServiceIdentity
|
|
|
|
expect []*structs.ACLServiceIdentity
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "empty",
|
|
|
|
in: nil,
|
|
|
|
expect: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "one",
|
|
|
|
in: []*structs.ACLServiceIdentity{
|
|
|
|
srvid("foo"),
|
|
|
|
},
|
|
|
|
expect: []*structs.ACLServiceIdentity{
|
|
|
|
srvid("foo"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "just names",
|
|
|
|
in: []*structs.ACLServiceIdentity{
|
|
|
|
srvid("fooZ"),
|
|
|
|
srvid("fooA"),
|
|
|
|
srvid("fooY"),
|
|
|
|
srvid("fooB"),
|
|
|
|
},
|
|
|
|
expect: []*structs.ACLServiceIdentity{
|
|
|
|
srvid("fooA"),
|
|
|
|
srvid("fooB"),
|
|
|
|
srvid("fooY"),
|
|
|
|
srvid("fooZ"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "just names with dupes",
|
|
|
|
in: []*structs.ACLServiceIdentity{
|
|
|
|
srvid("fooZ"),
|
|
|
|
srvid("fooA"),
|
|
|
|
srvid("fooY"),
|
|
|
|
srvid("fooB"),
|
|
|
|
srvid("fooA"),
|
|
|
|
srvid("fooB"),
|
|
|
|
srvid("fooY"),
|
|
|
|
srvid("fooZ"),
|
|
|
|
},
|
|
|
|
expect: []*structs.ACLServiceIdentity{
|
|
|
|
srvid("fooA"),
|
|
|
|
srvid("fooB"),
|
|
|
|
srvid("fooY"),
|
|
|
|
srvid("fooZ"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "names with dupes and datacenters",
|
|
|
|
in: []*structs.ACLServiceIdentity{
|
|
|
|
srvid("fooZ", "dc2", "dc4"),
|
|
|
|
srvid("fooA"),
|
|
|
|
srvid("fooY", "dc1"),
|
|
|
|
srvid("fooB"),
|
|
|
|
srvid("fooA", "dc9", "dc8"),
|
|
|
|
srvid("fooB"),
|
|
|
|
srvid("fooY", "dc1"),
|
|
|
|
srvid("fooZ", "dc3", "dc4"),
|
|
|
|
},
|
|
|
|
expect: []*structs.ACLServiceIdentity{
|
|
|
|
srvid("fooA"),
|
|
|
|
srvid("fooB"),
|
|
|
|
srvid("fooY", "dc1"),
|
|
|
|
srvid("fooZ", "dc2", "dc3", "dc4"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, test := range tests {
|
|
|
|
t.Run(test.name, func(t *testing.T) {
|
|
|
|
got := dedupeServiceIdentities(test.in)
|
|
|
|
require.ElementsMatch(t, test.expect, got)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2020-06-09 19:13:09 +00:00
|
|
|
func TestACL_LocalToken(t *testing.T) {
|
|
|
|
t.Run("local token in same dc", func(t *testing.T) {
|
|
|
|
d := &ACLResolverTestDelegate{
|
|
|
|
datacenter: "dc1",
|
|
|
|
tokenReadFn: func(_ *structs.ACLTokenGetRequest, reply *structs.ACLTokenResponse) error {
|
|
|
|
reply.Token = &structs.ACLToken{Local: true}
|
|
|
|
// different dc
|
|
|
|
reply.SourceDatacenter = "dc1"
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, d, nil)
|
|
|
|
_, err := r.fetchAndCacheIdentityFromToken("", nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("non local token in remote dc", func(t *testing.T) {
|
|
|
|
d := &ACLResolverTestDelegate{
|
|
|
|
datacenter: "dc1",
|
|
|
|
tokenReadFn: func(_ *structs.ACLTokenGetRequest, reply *structs.ACLTokenResponse) error {
|
|
|
|
reply.Token = &structs.ACLToken{Local: false}
|
|
|
|
// different dc
|
|
|
|
reply.SourceDatacenter = "remote"
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, d, nil)
|
|
|
|
_, err := r.fetchAndCacheIdentityFromToken("", nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("local token in remote dc", func(t *testing.T) {
|
|
|
|
d := &ACLResolverTestDelegate{
|
|
|
|
datacenter: "dc1",
|
|
|
|
tokenReadFn: func(_ *structs.ACLTokenGetRequest, reply *structs.ACLTokenResponse) error {
|
|
|
|
reply.Token = &structs.ACLToken{Local: true}
|
|
|
|
// different dc
|
|
|
|
reply.SourceDatacenter = "remote"
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, d, nil)
|
|
|
|
_, err := r.fetchAndCacheIdentityFromToken("", nil)
|
|
|
|
require.Equal(t, acl.PermissionDeniedError{Cause: "This is a local token in datacenter \"remote\""}, err)
|
|
|
|
})
|
|
|
|
}
|
2021-04-14 16:39:35 +00:00
|
|
|
|
|
|
|
func TestACLResolver_AgentMaster(t *testing.T) {
|
|
|
|
var tokens token.Store
|
|
|
|
|
|
|
|
d := &ACLResolverTestDelegate{
|
|
|
|
datacenter: "dc1",
|
|
|
|
enabled: true,
|
|
|
|
}
|
|
|
|
r := newTestACLResolver(t, d, func(cfg *ACLResolverConfig) {
|
|
|
|
cfg.Tokens = &tokens
|
|
|
|
cfg.Config.NodeName = "foo"
|
2021-08-09 20:29:21 +00:00
|
|
|
cfg.DisableDuration = 0
|
2021-04-14 16:39:35 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
tokens.UpdateAgentMasterToken("9a184a11-5599-459e-b71a-550e5f9a5a23", token.TokenSourceConfig)
|
|
|
|
|
|
|
|
ident, authz, err := r.ResolveTokenToIdentityAndAuthorizer("9a184a11-5599-459e-b71a-550e5f9a5a23")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, ident)
|
|
|
|
require.Equal(t, "agent-master:foo", ident.ID())
|
|
|
|
require.NotNil(t, authz)
|
|
|
|
require.Equal(t, r.agentMasterAuthz, authz)
|
|
|
|
require.Equal(t, acl.Allow, authz.AgentWrite("foo", nil))
|
|
|
|
require.Equal(t, acl.Allow, authz.NodeRead("bar", nil))
|
|
|
|
require.Equal(t, acl.Deny, authz.NodeWrite("bar", nil))
|
|
|
|
}
|
2021-08-09 20:29:21 +00:00
|
|
|
|
|
|
|
func TestACLResolver_ACLsEnabled(t *testing.T) {
|
|
|
|
type testCase struct {
|
|
|
|
name string
|
|
|
|
resolver *ACLResolver
|
|
|
|
enabled bool
|
|
|
|
}
|
|
|
|
|
|
|
|
run := func(t *testing.T, tc testCase) {
|
|
|
|
require.Equal(t, tc.enabled, tc.resolver.ACLsEnabled())
|
|
|
|
}
|
|
|
|
|
|
|
|
var testCases = []testCase{
|
|
|
|
{
|
|
|
|
name: "config disabled",
|
|
|
|
resolver: &ACLResolver{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "config enabled, disableDuration=0 (Server)",
|
|
|
|
resolver: &ACLResolver{
|
|
|
|
config: ACLResolverSettings{ACLsEnabled: true},
|
|
|
|
},
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "config enabled, disabled by RPC (Client)",
|
|
|
|
resolver: &ACLResolver{
|
|
|
|
config: ACLResolverSettings{ACLsEnabled: true},
|
|
|
|
disableDuration: 10 * time.Second,
|
|
|
|
disabledUntil: time.Now().Add(5 * time.Second),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "config enabled, past disabledUntil (Client)",
|
|
|
|
resolver: &ACLResolver{
|
|
|
|
config: ACLResolverSettings{ACLsEnabled: true},
|
|
|
|
disableDuration: 10 * time.Second,
|
|
|
|
disabledUntil: time.Now().Add(-5 * time.Second),
|
|
|
|
},
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "config enabled, no disabledUntil (Client)",
|
|
|
|
resolver: &ACLResolver{
|
|
|
|
config: ACLResolverSettings{ACLsEnabled: true},
|
|
|
|
disableDuration: 10 * time.Second,
|
|
|
|
},
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
run(t, tc)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|