2016-12-14 07:21:14 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/armon/go-metrics"
|
|
|
|
"github.com/hashicorp/consul/acl"
|
2017-09-25 18:40:42 +00:00
|
|
|
"github.com/hashicorp/consul/agent/config"
|
2018-05-07 04:46:22 +00:00
|
|
|
"github.com/hashicorp/consul/agent/local"
|
2017-07-06 10:34:00 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2016-12-14 22:16:46 +00:00
|
|
|
"github.com/hashicorp/consul/types"
|
2016-12-14 07:21:14 +00:00
|
|
|
"github.com/hashicorp/golang-lru"
|
2016-12-14 22:16:46 +00:00
|
|
|
"github.com/hashicorp/serf/serf"
|
2016-12-14 07:21:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// There's enough behavior difference with client-side ACLs that we've
|
|
|
|
// intentionally kept this code separate from the server-side ACL code in
|
|
|
|
// consul/acl.go. We may refactor some of the caching logic in the future,
|
|
|
|
// but for now we are developing this separately to see how things shake out.
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
|
|
|
// anonymousToken is the token ID we re-write to if there is no token ID
|
|
|
|
// provided.
|
|
|
|
anonymousToken = "anonymous"
|
|
|
|
|
|
|
|
// Maximum number of cached ACL entries.
|
|
|
|
aclCacheSize = 10 * 1024
|
|
|
|
)
|
|
|
|
|
|
|
|
// aclCacheEntry is used to cache ACL tokens.
|
|
|
|
type aclCacheEntry struct {
|
|
|
|
// ACL is the cached ACL.
|
|
|
|
ACL acl.ACL
|
|
|
|
|
|
|
|
// Expires is set based on the TTL for the ACL.
|
|
|
|
Expires time.Time
|
|
|
|
|
|
|
|
// ETag is used as an optimization when fetching ACLs from servers to
|
|
|
|
// avoid transmitting data back when the agent has a good copy, which is
|
|
|
|
// usually the case when refreshing a TTL.
|
|
|
|
ETag string
|
|
|
|
}
|
|
|
|
|
|
|
|
// aclManager is used by the agent to keep track of state related to ACLs,
|
|
|
|
// including caching tokens from the servers. This has some internal state that
|
|
|
|
// we don't want to dump into the agent itself.
|
|
|
|
type aclManager struct {
|
|
|
|
// acls is a cache mapping ACL tokens to compiled policies.
|
|
|
|
acls *lru.TwoQueueCache
|
|
|
|
|
|
|
|
// master is the ACL to use when the agent master token is supplied.
|
|
|
|
master acl.ACL
|
|
|
|
|
|
|
|
// down is the ACL to use when the servers are down. This may be nil
|
|
|
|
// which means to try and use the cached policy if there is one (or
|
|
|
|
// deny if there isn't a policy in the cache).
|
|
|
|
down acl.ACL
|
|
|
|
|
|
|
|
// disabled is used to keep track of feedback from the servers that ACLs
|
|
|
|
// are disabled. If the manager discovers that ACLs are disabled, this
|
|
|
|
// will be set to the next time we should check to see if they have been
|
|
|
|
// enabled. This helps cut useless traffic, but allows us to turn on ACL
|
|
|
|
// support at the servers without having to restart the whole cluster.
|
|
|
|
disabled time.Time
|
|
|
|
disabledLock sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
// newACLManager returns an ACL manager based on the given config.
|
2017-09-25 18:40:42 +00:00
|
|
|
func newACLManager(config *config.RuntimeConfig) (*aclManager, error) {
|
2016-12-14 07:21:14 +00:00
|
|
|
// Set up the cache from ID to ACL (we don't cache policies like the
|
|
|
|
// servers; only one level).
|
|
|
|
acls, err := lru.New2Q(aclCacheSize)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-07-26 18:03:43 +00:00
|
|
|
// Build a policy for the agent master token.
|
|
|
|
policy := &acl.Policy{
|
|
|
|
Agents: []*acl.AgentPolicy{
|
|
|
|
&acl.AgentPolicy{
|
|
|
|
Node: config.NodeName,
|
|
|
|
Policy: acl.PolicyWrite,
|
2016-12-14 07:21:14 +00:00
|
|
|
},
|
2017-07-26 18:03:43 +00:00
|
|
|
},
|
|
|
|
Nodes: []*acl.NodePolicy{
|
|
|
|
&acl.NodePolicy{
|
|
|
|
Name: "",
|
|
|
|
Policy: acl.PolicyRead,
|
2017-07-17 03:08:26 +00:00
|
|
|
},
|
2017-07-26 18:03:43 +00:00
|
|
|
},
|
|
|
|
}
|
2017-09-14 19:31:01 +00:00
|
|
|
master, err := acl.New(acl.DenyAll(), policy, nil)
|
2017-07-26 18:03:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2016-12-14 07:21:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var down acl.ACL
|
|
|
|
switch config.ACLDownPolicy {
|
|
|
|
case "allow":
|
|
|
|
down = acl.AllowAll()
|
|
|
|
case "deny":
|
|
|
|
down = acl.DenyAll()
|
2018-07-02 15:39:34 +00:00
|
|
|
case "async-cache", "extend-cache":
|
2016-12-14 07:21:14 +00:00
|
|
|
// Leave the down policy as nil to signal this.
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("invalid ACL down policy %q", config.ACLDownPolicy)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Give back a manager.
|
|
|
|
return &aclManager{
|
|
|
|
acls: acls,
|
|
|
|
master: master,
|
|
|
|
down: down,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// isDisabled returns true if the manager has discovered that ACLs are disabled
|
|
|
|
// on the servers.
|
|
|
|
func (m *aclManager) isDisabled() bool {
|
|
|
|
m.disabledLock.RLock()
|
|
|
|
defer m.disabledLock.RUnlock()
|
|
|
|
return time.Now().Before(m.disabled)
|
|
|
|
}
|
|
|
|
|
|
|
|
// lookupACL attempts to locate the compiled policy associated with the given
|
|
|
|
// token. The agent may be used to perform RPC calls to the servers to fetch
|
|
|
|
// policies that aren't in the cache.
|
2017-06-16 07:10:08 +00:00
|
|
|
func (m *aclManager) lookupACL(a *Agent, id string) (acl.ACL, error) {
|
2016-12-14 07:21:14 +00:00
|
|
|
// Handle some special cases for the ID.
|
|
|
|
if len(id) == 0 {
|
|
|
|
id = anonymousToken
|
|
|
|
} else if acl.RootACL(id) != nil {
|
2017-08-23 14:52:48 +00:00
|
|
|
return nil, acl.ErrRootDenied
|
2017-07-26 18:03:43 +00:00
|
|
|
} else if a.tokens.IsAgentMasterToken(id) {
|
2016-12-14 07:21:14 +00:00
|
|
|
return m.master, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try the cache first.
|
|
|
|
var cached *aclCacheEntry
|
|
|
|
if raw, ok := m.acls.Get(id); ok {
|
|
|
|
cached = raw.(*aclCacheEntry)
|
|
|
|
}
|
|
|
|
if cached != nil && time.Now().Before(cached.Expires) {
|
2017-10-04 23:43:27 +00:00
|
|
|
metrics.IncrCounter([]string{"acl", "cache_hit"}, 1)
|
2016-12-14 07:21:14 +00:00
|
|
|
return cached.ACL, nil
|
|
|
|
}
|
2017-10-04 23:43:27 +00:00
|
|
|
metrics.IncrCounter([]string{"acl", "cache_miss"}, 1)
|
2016-12-14 07:21:14 +00:00
|
|
|
|
|
|
|
// At this point we might have a stale cached ACL, or none at all, so
|
|
|
|
// try to contact the servers.
|
|
|
|
args := structs.ACLPolicyRequest{
|
2017-06-16 07:10:08 +00:00
|
|
|
Datacenter: a.config.ACLDatacenter,
|
2016-12-14 07:21:14 +00:00
|
|
|
ACL: id,
|
|
|
|
}
|
|
|
|
if cached != nil {
|
|
|
|
args.ETag = cached.ETag
|
|
|
|
}
|
|
|
|
var reply structs.ACLPolicy
|
2017-06-16 07:54:09 +00:00
|
|
|
err := a.RPC("ACL.GetPolicy", &args, &reply)
|
2016-12-14 07:21:14 +00:00
|
|
|
if err != nil {
|
2017-08-23 14:52:48 +00:00
|
|
|
if acl.IsErrDisabled(err) {
|
2017-06-16 07:10:08 +00:00
|
|
|
a.logger.Printf("[DEBUG] agent: ACLs disabled on servers, will check again after %s", a.config.ACLDisabledTTL)
|
2016-12-14 07:21:14 +00:00
|
|
|
m.disabledLock.Lock()
|
2017-06-16 07:10:08 +00:00
|
|
|
m.disabled = time.Now().Add(a.config.ACLDisabledTTL)
|
2016-12-14 07:21:14 +00:00
|
|
|
m.disabledLock.Unlock()
|
|
|
|
return nil, nil
|
2017-08-23 14:52:48 +00:00
|
|
|
} else if acl.IsErrNotFound(err) {
|
|
|
|
return nil, acl.ErrNotFound
|
2016-12-14 07:21:14 +00:00
|
|
|
} else {
|
2017-06-16 07:10:08 +00:00
|
|
|
a.logger.Printf("[DEBUG] agent: Failed to get policy for ACL from servers: %v", err)
|
2016-12-14 07:21:14 +00:00
|
|
|
if m.down != nil {
|
|
|
|
return m.down, nil
|
|
|
|
} else if cached != nil {
|
|
|
|
return cached.ACL, nil
|
|
|
|
} else {
|
|
|
|
return acl.DenyAll(), nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the old cached compiled ACL if we can, otherwise compile it and
|
|
|
|
// resolve any parents.
|
|
|
|
var compiled acl.ACL
|
|
|
|
if cached != nil && cached.ETag == reply.ETag {
|
|
|
|
compiled = cached.ACL
|
|
|
|
} else {
|
|
|
|
parent := acl.RootACL(reply.Parent)
|
|
|
|
if parent == nil {
|
2017-06-16 07:10:08 +00:00
|
|
|
parent, err = m.lookupACL(a, reply.Parent)
|
2016-12-14 07:21:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 19:31:01 +00:00
|
|
|
acl, err := acl.New(parent, reply.Policy, nil)
|
2016-12-14 07:21:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
compiled = acl
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the cache.
|
|
|
|
cached = &aclCacheEntry{
|
|
|
|
ACL: compiled,
|
|
|
|
ETag: reply.ETag,
|
|
|
|
}
|
|
|
|
if reply.TTL > 0 {
|
|
|
|
cached.Expires = time.Now().Add(reply.TTL)
|
|
|
|
}
|
|
|
|
m.acls.Add(id, cached)
|
|
|
|
return compiled, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// resolveToken is the primary interface used by ACL-checkers in the agent
|
|
|
|
// endpoints, which is the one place where we do some ACL enforcement on
|
|
|
|
// clients. Some of the enforcement is normative (e.g. self and monitor)
|
|
|
|
// and some is informative (e.g. catalog and health).
|
|
|
|
func (a *Agent) resolveToken(id string) (acl.ACL, error) {
|
|
|
|
// Disable ACLs if version 8 enforcement isn't enabled.
|
2017-09-25 18:40:42 +00:00
|
|
|
if !a.config.ACLEnforceVersion8 {
|
2016-12-14 07:21:14 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2017-03-29 19:24:42 +00:00
|
|
|
// Bail if there's no ACL datacenter configured. This means that agent
|
|
|
|
// enforcement isn't on.
|
|
|
|
if a.config.ACLDatacenter == "" {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2016-12-14 07:21:14 +00:00
|
|
|
// Bail if the ACL manager is disabled. This happens if it gets feedback
|
|
|
|
// from the servers that ACLs are disabled.
|
|
|
|
if a.acls.isDisabled() {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// This will look in the cache and fetch from the servers if necessary.
|
|
|
|
return a.acls.lookupACL(a, id)
|
|
|
|
}
|
2016-12-14 22:16:46 +00:00
|
|
|
|
2018-05-07 04:46:22 +00:00
|
|
|
// resolveProxyToken attempts to resolve an ACL ID to a local proxy token.
|
|
|
|
// If a local proxy isn't found with that token, nil is returned.
|
|
|
|
func (a *Agent) resolveProxyToken(id string) *local.ManagedProxy {
|
|
|
|
for _, p := range a.State.Proxies() {
|
|
|
|
if p.ProxyToken == id {
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-12-14 22:16:46 +00:00
|
|
|
// vetServiceRegister makes sure the service registration action is allowed by
|
|
|
|
// the given token.
|
|
|
|
func (a *Agent) vetServiceRegister(token string, service *structs.NodeService) error {
|
|
|
|
// Resolve the token and bail if ACLs aren't enabled.
|
2017-08-23 14:52:48 +00:00
|
|
|
rule, err := a.resolveToken(token)
|
2016-12-14 22:16:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-08-23 14:52:48 +00:00
|
|
|
if rule == nil {
|
2016-12-14 22:16:46 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vet the service itself.
|
2017-09-14 19:31:01 +00:00
|
|
|
if !rule.ServiceWrite(service.Service, nil) {
|
2017-08-23 14:52:48 +00:00
|
|
|
return acl.ErrPermissionDenied
|
2016-12-14 22:16:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Vet any service that might be getting overwritten.
|
2017-08-28 12:17:13 +00:00
|
|
|
services := a.State.Services()
|
2016-12-14 22:16:46 +00:00
|
|
|
if existing, ok := services[service.ID]; ok {
|
2017-09-14 19:31:01 +00:00
|
|
|
if !rule.ServiceWrite(existing.Service, nil) {
|
2017-08-23 14:52:48 +00:00
|
|
|
return acl.ErrPermissionDenied
|
2016-12-14 22:16:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// vetServiceUpdate makes sure the service update action is allowed by the given
|
|
|
|
// token.
|
|
|
|
func (a *Agent) vetServiceUpdate(token string, serviceID string) error {
|
|
|
|
// Resolve the token and bail if ACLs aren't enabled.
|
2017-08-23 14:52:48 +00:00
|
|
|
rule, err := a.resolveToken(token)
|
2016-12-14 22:16:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-08-23 14:52:48 +00:00
|
|
|
if rule == nil {
|
2016-12-14 22:16:46 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vet any changes based on the existing services's info.
|
2017-08-28 12:17:13 +00:00
|
|
|
services := a.State.Services()
|
2016-12-14 22:16:46 +00:00
|
|
|
if existing, ok := services[serviceID]; ok {
|
2017-09-14 19:31:01 +00:00
|
|
|
if !rule.ServiceWrite(existing.Service, nil) {
|
2017-08-23 14:52:48 +00:00
|
|
|
return acl.ErrPermissionDenied
|
2016-12-14 22:16:46 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return fmt.Errorf("Unknown service %q", serviceID)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// vetCheckRegister makes sure the check registration action is allowed by the
|
|
|
|
// given token.
|
|
|
|
func (a *Agent) vetCheckRegister(token string, check *structs.HealthCheck) error {
|
|
|
|
// Resolve the token and bail if ACLs aren't enabled.
|
2017-08-23 14:52:48 +00:00
|
|
|
rule, err := a.resolveToken(token)
|
2016-12-14 22:16:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-08-23 14:52:48 +00:00
|
|
|
if rule == nil {
|
2016-12-14 22:16:46 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vet the check itself.
|
|
|
|
if len(check.ServiceName) > 0 {
|
2017-09-14 19:31:01 +00:00
|
|
|
if !rule.ServiceWrite(check.ServiceName, nil) {
|
2017-08-23 14:52:48 +00:00
|
|
|
return acl.ErrPermissionDenied
|
2016-12-14 22:16:46 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-09-14 19:31:01 +00:00
|
|
|
if !rule.NodeWrite(a.config.NodeName, nil) {
|
2017-08-23 14:52:48 +00:00
|
|
|
return acl.ErrPermissionDenied
|
2016-12-14 22:16:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vet any check that might be getting overwritten.
|
2017-08-28 12:17:13 +00:00
|
|
|
checks := a.State.Checks()
|
2016-12-14 22:16:46 +00:00
|
|
|
if existing, ok := checks[check.CheckID]; ok {
|
|
|
|
if len(existing.ServiceName) > 0 {
|
2017-09-14 19:31:01 +00:00
|
|
|
if !rule.ServiceWrite(existing.ServiceName, nil) {
|
2017-08-23 14:52:48 +00:00
|
|
|
return acl.ErrPermissionDenied
|
2016-12-14 22:16:46 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-09-14 19:31:01 +00:00
|
|
|
if !rule.NodeWrite(a.config.NodeName, nil) {
|
2017-08-23 14:52:48 +00:00
|
|
|
return acl.ErrPermissionDenied
|
2016-12-14 22:16:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// vetCheckUpdate makes sure that a check update is allowed by the given token.
|
|
|
|
func (a *Agent) vetCheckUpdate(token string, checkID types.CheckID) error {
|
|
|
|
// Resolve the token and bail if ACLs aren't enabled.
|
2017-08-23 14:52:48 +00:00
|
|
|
rule, err := a.resolveToken(token)
|
2016-12-14 22:16:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-08-23 14:52:48 +00:00
|
|
|
if rule == nil {
|
2016-12-14 22:16:46 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vet any changes based on the existing check's info.
|
2017-08-28 12:17:13 +00:00
|
|
|
checks := a.State.Checks()
|
2016-12-14 22:16:46 +00:00
|
|
|
if existing, ok := checks[checkID]; ok {
|
|
|
|
if len(existing.ServiceName) > 0 {
|
2017-09-14 19:31:01 +00:00
|
|
|
if !rule.ServiceWrite(existing.ServiceName, nil) {
|
2017-08-23 14:52:48 +00:00
|
|
|
return acl.ErrPermissionDenied
|
2016-12-14 22:16:46 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-09-14 19:31:01 +00:00
|
|
|
if !rule.NodeWrite(a.config.NodeName, nil) {
|
2017-08-23 14:52:48 +00:00
|
|
|
return acl.ErrPermissionDenied
|
2016-12-14 22:16:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return fmt.Errorf("Unknown check %q", checkID)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// filterMembers redacts members that the token doesn't have access to.
|
|
|
|
func (a *Agent) filterMembers(token string, members *[]serf.Member) error {
|
|
|
|
// Resolve the token and bail if ACLs aren't enabled.
|
2017-08-23 14:52:48 +00:00
|
|
|
rule, err := a.resolveToken(token)
|
2016-12-14 22:16:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-08-23 14:52:48 +00:00
|
|
|
if rule == nil {
|
2016-12-14 22:16:46 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter out members based on the node policy.
|
|
|
|
m := *members
|
|
|
|
for i := 0; i < len(m); i++ {
|
|
|
|
node := m[i].Name
|
2017-08-23 14:52:48 +00:00
|
|
|
if rule.NodeRead(node) {
|
2016-12-14 22:16:46 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
a.logger.Printf("[DEBUG] agent: dropping node %q from result due to ACLs", node)
|
|
|
|
m = append(m[:i], m[i+1:]...)
|
|
|
|
i--
|
|
|
|
}
|
|
|
|
*members = m
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// filterServices redacts services that the token doesn't have access to.
|
|
|
|
func (a *Agent) filterServices(token string, services *map[string]*structs.NodeService) error {
|
|
|
|
// Resolve the token and bail if ACLs aren't enabled.
|
2017-08-23 14:52:48 +00:00
|
|
|
rule, err := a.resolveToken(token)
|
2016-12-14 22:16:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-08-23 14:52:48 +00:00
|
|
|
if rule == nil {
|
2016-12-14 22:16:46 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter out services based on the service policy.
|
|
|
|
for id, service := range *services {
|
2017-08-23 14:52:48 +00:00
|
|
|
if rule.ServiceRead(service.Service) {
|
2016-12-14 22:16:46 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
a.logger.Printf("[DEBUG] agent: dropping service %q from result due to ACLs", id)
|
|
|
|
delete(*services, id)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// filterChecks redacts checks that the token doesn't have access to.
|
|
|
|
func (a *Agent) filterChecks(token string, checks *map[types.CheckID]*structs.HealthCheck) error {
|
|
|
|
// Resolve the token and bail if ACLs aren't enabled.
|
2017-08-23 14:52:48 +00:00
|
|
|
rule, err := a.resolveToken(token)
|
2016-12-14 22:16:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-08-23 14:52:48 +00:00
|
|
|
if rule == nil {
|
2016-12-14 22:16:46 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter out checks based on the node or service policy.
|
|
|
|
for id, check := range *checks {
|
|
|
|
if len(check.ServiceName) > 0 {
|
2017-08-23 14:52:48 +00:00
|
|
|
if rule.ServiceRead(check.ServiceName) {
|
2016-12-14 22:16:46 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
} else {
|
2017-08-23 14:52:48 +00:00
|
|
|
if rule.NodeRead(a.config.NodeName) {
|
2016-12-14 22:16:46 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a.logger.Printf("[DEBUG] agent: dropping check %q from result due to ACLs", id)
|
|
|
|
delete(*checks, id)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|