mirror of https://github.com/status-im/consul.git
90 lines
1.9 KiB
Go
90 lines
1.9 KiB
Go
|
package acl
|
||
|
|
||
|
import (
|
||
|
"crypto/md5"
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/hashicorp/golang-lru"
|
||
|
)
|
||
|
|
||
|
// FaultFunc is a function used to fault in the rules for an
|
||
|
// ACL given it's ID
|
||
|
type FaultFunc func(id string) (string, error)
|
||
|
|
||
|
// Cache is used to implement policy and ACL caching
|
||
|
type Cache struct {
|
||
|
aclCache *lru.Cache
|
||
|
faultfn FaultFunc
|
||
|
parent ACL
|
||
|
policyCache *lru.Cache
|
||
|
}
|
||
|
|
||
|
// NewCache contructs a new policy and ACL cache of a given size
|
||
|
func NewCache(size int, parent ACL, faultfn FaultFunc) (*Cache, error) {
|
||
|
if size <= 0 {
|
||
|
return nil, fmt.Errorf("Must provide positive cache size")
|
||
|
}
|
||
|
pc, _ := lru.New(size)
|
||
|
ac, _ := lru.New(size)
|
||
|
c := &Cache{
|
||
|
aclCache: ac,
|
||
|
faultfn: faultfn,
|
||
|
parent: parent,
|
||
|
policyCache: pc,
|
||
|
}
|
||
|
return c, nil
|
||
|
}
|
||
|
|
||
|
// GetPolicy is used to get a potentially cached policy set.
|
||
|
// If not cached, it will be parsed, and then cached.
|
||
|
func (c *Cache) GetPolicy(rules string) (*Policy, error) {
|
||
|
hash := fmt.Sprintf("%x", md5.Sum([]byte(rules)))
|
||
|
raw, ok := c.policyCache.Get(hash)
|
||
|
if ok {
|
||
|
return raw.(*Policy), nil
|
||
|
}
|
||
|
policy, err := Parse(rules)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
c.policyCache.Add(hash, policy)
|
||
|
return policy, nil
|
||
|
}
|
||
|
|
||
|
// GetACL is used to get a potentially cached ACL policy.
|
||
|
// If not cached, it will be generated and then cached.
|
||
|
func (c *Cache) GetACL(id string) (ACL, error) {
|
||
|
// Look for the ACL directly
|
||
|
raw, ok := c.aclCache.Get(id)
|
||
|
if ok {
|
||
|
return raw.(ACL), nil
|
||
|
}
|
||
|
|
||
|
// Get the rules
|
||
|
rules, err := c.faultfn(id)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
// Get the policy
|
||
|
policy, err := c.GetPolicy(rules)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
// Get the ACL
|
||
|
acl, err := New(c.parent, policy)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
// Cache and return the ACL
|
||
|
c.aclCache.Add(id, acl)
|
||
|
return acl, nil
|
||
|
}
|
||
|
|
||
|
// ClearACL is used to clear the ACL cache if any
|
||
|
func (c *Cache) ClearACL(id string) {
|
||
|
c.aclCache.Remove(id)
|
||
|
}
|