mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
106 lines
3.8 KiB
Go
106 lines
3.8 KiB
Go
package engine
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
kubeClient "github.com/nirmata/kube-policy/kubeclient"
|
|
types "github.com/nirmata/kube-policy/pkg/apis/policy/v1alpha1"
|
|
"github.com/nirmata/kube-policy/pkg/engine/mutation"
|
|
event "github.com/nirmata/kube-policy/pkg/event"
|
|
violation "github.com/nirmata/kube-policy/pkg/violation"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
)
|
|
|
|
type PolicyEngine interface {
|
|
// Mutate should be called from admission contoller
|
|
// when there is an creation / update of the resource
|
|
// ProcessMutation(policy types.Policy, rawResource []byte) (patchBytes []byte, events []Events, err error)
|
|
Mutate(policy types.Policy, rawResource []byte, gvk metav1.GroupVersionKind) []mutation.PatchBytes
|
|
|
|
// Validate should be called from admission contoller
|
|
// when there is an creation / update of the resource
|
|
Validate(policy types.Policy, rawResource []byte, gvk metav1.GroupVersionKind) bool
|
|
|
|
// ProcessExisting should be called from policy controller
|
|
// when there is an create / update of the policy
|
|
// we should process the policy on matched resources, generate violations accordingly
|
|
ProcessExisting(policy types.Policy, rawResource []byte) ([]violation.Info, []event.Info, error)
|
|
|
|
// TODO: Add Generate method
|
|
// Generate()
|
|
}
|
|
|
|
type policyEngine struct {
|
|
kubeClient *kubeClient.KubeClient
|
|
logger *log.Logger
|
|
}
|
|
|
|
// NewPolicyEngine creates new instance of policyEngine
|
|
func NewPolicyEngine(kubeClient *kubeClient.KubeClient, logger *log.Logger) PolicyEngine {
|
|
return &policyEngine{
|
|
kubeClient: kubeClient,
|
|
logger: logger,
|
|
}
|
|
}
|
|
|
|
func (p *policyEngine) ProcessExisting(policy types.Policy, rawResource []byte) ([]violation.Info, []event.Info, error) {
|
|
var violations []violation.Info
|
|
var events []event.Info
|
|
|
|
for _, rule := range policy.Spec.Rules {
|
|
err := rule.Validate()
|
|
if err != nil {
|
|
p.logger.Printf("Invalid rule detected: #%s in policy %s, err: %v\n", rule.Name, policy.ObjectMeta.Name, err)
|
|
continue
|
|
}
|
|
|
|
//if ok, err := mutation.ResourceMeetsRules(rawResource, rule.ResourceDescription); !ok {
|
|
// p.logger.Printf("Rule %s of policy %s is not applicable to the request", rule.Name, policy.Name)
|
|
// return nil, nil, err
|
|
//}
|
|
|
|
violation, eventInfos, err := p.processRuleOnResource(policy.Name, rule, rawResource)
|
|
if err != nil {
|
|
p.logger.Printf("Failed to process rule %s, err: %v\n", rule.Name, err)
|
|
continue
|
|
}
|
|
// } else {
|
|
// policyPatches = append(policyPatches, processedPatches...)
|
|
// }
|
|
violations = append(violations, violation)
|
|
events = append(events, eventInfos...)
|
|
}
|
|
return violations, events, nil
|
|
}
|
|
|
|
func (p *policyEngine) processRuleOnResource(policyName string, rule types.Rule, rawResource []byte) (
|
|
violation.Info, []event.Info, error) {
|
|
|
|
var violationInfo violation.Info
|
|
var eventInfos []event.Info
|
|
|
|
resourceKind := mutation.ParseKindFromObject(rawResource)
|
|
resourceName := mutation.ParseNameFromObject(rawResource)
|
|
resourceNamespace := mutation.ParseNamespaceFromObject(rawResource)
|
|
|
|
rulePatchesProcessed, err := mutation.ProcessPatches(rule.Mutation.Patches, nil)
|
|
if err != nil {
|
|
return violationInfo, eventInfos, fmt.Errorf("Failed to process patches from rule %s: %v", rule.Name, err)
|
|
}
|
|
|
|
if rulePatchesProcessed != nil {
|
|
log.Printf("Rule %s: prepared %d patches", rule.Name, len(rulePatchesProcessed))
|
|
|
|
violationInfo = violation.NewViolation(policyName, resourceKind, resourceNamespace+"/"+resourceName, rule.Name)
|
|
// add a violation to queue
|
|
|
|
// add an event to policy
|
|
//TODO: event msg
|
|
eventInfos = append(eventInfos, event.NewEvent("Policy", policyName, event.PolicyViolation, event.FResourcePolcy))
|
|
// add an event to resource
|
|
eventInfos = append(eventInfos, event.NewEvent(resourceKind, resourceNamespace+"/"+resourceName, event.PolicyViolation, event.FResourcePolcy))
|
|
}
|
|
|
|
return violationInfo, eventInfos, nil
|
|
}
|