mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
c96199dee1
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
92 lines
3 KiB
Go
92 lines
3 KiB
Go
package policycache
|
|
|
|
import (
|
|
kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1"
|
|
"github.com/kyverno/kyverno/ext/wildcard"
|
|
"github.com/kyverno/kyverno/pkg/clients/dclient"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
)
|
|
|
|
type ResourceFinder interface {
|
|
FindResources(group, version, kind, subresource string) (map[dclient.TopLevelApiDescription]metav1.APIResource, error)
|
|
}
|
|
|
|
// Cache get method use for to get policy names and mostly use to test cache testcases
|
|
type Cache interface {
|
|
// Set inserts a policy in the cache
|
|
Set(string, kyvernov1.PolicyInterface, ResourceFinder) error
|
|
// Unset removes a policy from the cache
|
|
Unset(string)
|
|
// GetPolicies returns all policies that apply to a namespace, including cluster-wide policies
|
|
// If the namespace is empty, only cluster-wide policies are returned
|
|
GetPolicies(PolicyType, schema.GroupVersionResource, string, string) []kyvernov1.PolicyInterface
|
|
}
|
|
|
|
type cache struct {
|
|
store store
|
|
}
|
|
|
|
// NewCache create a new Cache
|
|
func NewCache() Cache {
|
|
return &cache{
|
|
store: newPolicyCache(),
|
|
}
|
|
}
|
|
|
|
func (c *cache) Set(key string, policy kyvernov1.PolicyInterface, client ResourceFinder) error {
|
|
return c.store.set(key, policy, client)
|
|
}
|
|
|
|
func (c *cache) Unset(key string) {
|
|
c.store.unset(key)
|
|
}
|
|
|
|
func (c *cache) GetPolicies(pkey PolicyType, gvr schema.GroupVersionResource, subresource string, nspace string) []kyvernov1.PolicyInterface {
|
|
var result []kyvernov1.PolicyInterface
|
|
result = append(result, c.store.get(pkey, gvr, subresource, "")...)
|
|
if nspace != "" {
|
|
result = append(result, c.store.get(pkey, gvr, subresource, nspace)...)
|
|
}
|
|
// also get policies with ValidateEnforce
|
|
if pkey == ValidateAudit {
|
|
result = append(result, c.store.get(ValidateEnforce, gvr, subresource, "")...)
|
|
}
|
|
if pkey == ValidateAudit || pkey == ValidateEnforce {
|
|
result = filterPolicies(pkey, result, nspace)
|
|
}
|
|
return result
|
|
}
|
|
|
|
// Filter cluster policies using validationFailureAction override
|
|
func filterPolicies(pkey PolicyType, result []kyvernov1.PolicyInterface, nspace string) []kyvernov1.PolicyInterface {
|
|
var policies []kyvernov1.PolicyInterface
|
|
for _, policy := range result {
|
|
keepPolicy := true
|
|
switch pkey {
|
|
case ValidateAudit:
|
|
keepPolicy = checkValidationFailureActionOverrides(false, nspace, policy)
|
|
case ValidateEnforce:
|
|
keepPolicy = checkValidationFailureActionOverrides(true, nspace, policy)
|
|
}
|
|
// add policy to result
|
|
if keepPolicy {
|
|
policies = append(policies, policy)
|
|
}
|
|
}
|
|
return policies
|
|
}
|
|
|
|
func checkValidationFailureActionOverrides(enforce bool, ns string, policy kyvernov1.PolicyInterface) bool {
|
|
validationFailureAction := policy.GetSpec().ValidationFailureAction
|
|
validationFailureActionOverrides := policy.GetSpec().ValidationFailureActionOverrides
|
|
if validationFailureAction.Enforce() != enforce && (ns == "" || len(validationFailureActionOverrides) == 0) {
|
|
return false
|
|
}
|
|
for _, action := range validationFailureActionOverrides {
|
|
if action.Action.Enforce() != enforce && wildcard.CheckPatterns(action.Namespaces, ns) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|