2019-05-13 18:17:28 -07:00
|
|
|
package engine
|
2019-05-09 22:26:22 -07:00
|
|
|
|
|
|
|
import (
|
2019-08-09 16:55:43 -07:00
|
|
|
"reflect"
|
|
|
|
|
2019-06-25 18:16:02 -07:00
|
|
|
"github.com/golang/glog"
|
2019-08-09 16:55:43 -07:00
|
|
|
kyverno "github.com/nirmata/kyverno/pkg/api/kyverno/v1alpha1"
|
2019-06-25 18:16:02 -07:00
|
|
|
"github.com/nirmata/kyverno/pkg/info"
|
2019-08-13 11:32:12 -07:00
|
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
2019-05-09 22:26:22 -07:00
|
|
|
)
|
|
|
|
|
2019-05-13 21:27:47 +03:00
|
|
|
// Mutate performs mutation. Overlay first and then mutation patches
|
2019-08-14 19:00:37 -07:00
|
|
|
func Mutate(policy kyverno.Policy, resource unstructured.Unstructured) EngineResponse {
|
2019-08-14 11:51:01 -07:00
|
|
|
var allPatches, rulePatches [][]byte
|
|
|
|
var err error
|
|
|
|
var errs []error
|
2019-08-14 19:00:37 -07:00
|
|
|
ris := []info.RuleInfo{}
|
|
|
|
|
|
|
|
patchedDocument, err := resource.MarshalJSON()
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("unable to marshal resource : %v\n", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
glog.V(4).Infof("unable to marshal resource : %v", err)
|
|
|
|
return EngineResponse{PatchedResource: resource}
|
|
|
|
}
|
2019-05-09 22:26:22 -07:00
|
|
|
|
2019-05-20 14:48:38 +03:00
|
|
|
for _, rule := range policy.Spec.Rules {
|
2019-08-09 16:55:43 -07:00
|
|
|
if reflect.DeepEqual(rule.Mutation, kyverno.Mutation{}) {
|
2019-05-13 21:27:47 +03:00
|
|
|
continue
|
2019-05-09 22:26:22 -07:00
|
|
|
}
|
2019-06-05 13:43:07 +03:00
|
|
|
|
2019-08-09 11:08:02 -07:00
|
|
|
// check if the resource satisfies the filter conditions defined in the rule
|
|
|
|
//TODO: this needs to be extracted, to filter the resource so that we can avoid passing resources that
|
|
|
|
// dont statisfy a policy rule resource description
|
2019-08-13 11:32:12 -07:00
|
|
|
ok := MatchesResourceDescription(resource, rule)
|
2019-05-13 21:27:47 +03:00
|
|
|
if !ok {
|
2019-08-09 12:59:37 -07:00
|
|
|
glog.V(4).Infof("resource %s/%s does not satisfy the resource description for the rule ", resource.GetNamespace(), resource.GetName())
|
2019-06-25 18:16:02 -07:00
|
|
|
continue
|
|
|
|
}
|
2019-08-09 12:59:37 -07:00
|
|
|
|
|
|
|
ruleInfo := info.NewRuleInfo(rule.Name, info.Mutation)
|
2019-08-09 11:08:02 -07:00
|
|
|
|
2019-06-25 18:16:02 -07:00
|
|
|
// Process Overlay
|
|
|
|
if rule.Mutation.Overlay != nil {
|
2019-08-14 19:00:37 -07:00
|
|
|
rulePatches, err = processOverlay(rule, patchedDocument)
|
2019-07-25 16:20:22 -04:00
|
|
|
if err == nil {
|
2019-08-14 11:51:01 -07:00
|
|
|
if len(rulePatches) == 0 {
|
2019-07-24 14:25:51 -04:00
|
|
|
// if array elements dont match then we skip(nil patch, no error)
|
|
|
|
// or if acnohor is defined and doenst match
|
|
|
|
// policy is not applicable
|
2019-08-09 12:59:37 -07:00
|
|
|
glog.V(4).Info("overlay does not match, so skipping applying rule")
|
2019-07-24 14:25:51 -04:00
|
|
|
continue
|
|
|
|
}
|
2019-08-09 12:59:37 -07:00
|
|
|
|
2019-08-14 19:00:37 -07:00
|
|
|
ruleInfo.Addf("Rule %s: Overlay succesfully applied.", rule.Name)
|
|
|
|
|
2019-07-25 16:20:22 -04:00
|
|
|
// strip slashes from string
|
2019-08-19 16:10:10 -07:00
|
|
|
ruleInfo.Patches = rulePatches
|
2019-08-14 11:51:01 -07:00
|
|
|
allPatches = append(allPatches, rulePatches...)
|
2019-08-14 19:00:37 -07:00
|
|
|
|
|
|
|
glog.V(4).Infof("overlay applied succesfully on resource %s/%s", resource.GetNamespace(), resource.GetName())
|
2019-07-24 06:33:51 -04:00
|
|
|
} else {
|
2019-08-09 11:08:02 -07:00
|
|
|
glog.V(4).Infof("failed to apply overlay: %v", err)
|
2019-08-09 12:59:37 -07:00
|
|
|
ruleInfo.Fail()
|
|
|
|
ruleInfo.Addf("failed to apply overlay: %v", err)
|
2019-05-13 21:27:47 +03:00
|
|
|
}
|
2019-06-25 18:16:02 -07:00
|
|
|
}
|
2019-06-05 13:43:07 +03:00
|
|
|
|
2019-06-25 18:16:02 -07:00
|
|
|
// Process Patches
|
|
|
|
if len(rule.Mutation.Patches) != 0 {
|
2019-08-14 19:00:37 -07:00
|
|
|
rulePatches, errs = processPatches(rule, patchedDocument)
|
2019-06-25 18:16:02 -07:00
|
|
|
if len(errs) > 0 {
|
2019-08-09 12:59:37 -07:00
|
|
|
ruleInfo.Fail()
|
2019-06-25 18:16:02 -07:00
|
|
|
for _, err := range errs {
|
2019-08-09 11:08:02 -07:00
|
|
|
glog.V(4).Infof("failed to apply patches: %v", err)
|
2019-08-09 12:59:37 -07:00
|
|
|
ruleInfo.Addf("patches application has failed, err %v.", err)
|
2019-06-25 18:16:02 -07:00
|
|
|
}
|
2019-06-05 16:44:53 +03:00
|
|
|
} else {
|
2019-08-09 12:59:37 -07:00
|
|
|
glog.V(4).Infof("patches applied succesfully on resource %s/%s", resource.GetNamespace(), resource.GetName())
|
|
|
|
ruleInfo.Addf("Patches succesfully applied.")
|
2019-08-19 16:10:10 -07:00
|
|
|
|
|
|
|
ruleInfo.Patches = rulePatches
|
2019-07-19 20:30:55 -07:00
|
|
|
allPatches = append(allPatches, rulePatches...)
|
2019-05-13 21:27:47 +03:00
|
|
|
}
|
|
|
|
}
|
2019-08-14 11:51:01 -07:00
|
|
|
|
2019-08-14 19:00:37 -07:00
|
|
|
patchedDocument, err = ApplyPatches(patchedDocument, rulePatches)
|
2019-08-14 11:51:01 -07:00
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("Failed to apply patches on ruleName=%s, err%v\n:", rule.Name, err)
|
|
|
|
}
|
2019-08-14 19:00:37 -07:00
|
|
|
|
|
|
|
ris = append(ris, ruleInfo)
|
2019-05-09 22:26:22 -07:00
|
|
|
}
|
|
|
|
|
2019-08-14 19:00:37 -07:00
|
|
|
patchedResource, err := ConvertToUnstructured(patchedDocument)
|
2019-08-19 16:10:10 -07:00
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("Failed to convert patched resource to unstructuredtype, err%v\n:", err)
|
|
|
|
return EngineResponse{PatchedResource: resource}
|
|
|
|
}
|
|
|
|
|
2019-08-14 19:00:37 -07:00
|
|
|
return EngineResponse{
|
2019-08-14 15:18:46 -07:00
|
|
|
Patches: allPatches,
|
2019-08-14 19:00:37 -07:00
|
|
|
PatchedResource: *patchedResource,
|
2019-08-14 15:18:46 -07:00
|
|
|
RuleInfos: ris,
|
|
|
|
}
|
2019-05-09 22:26:22 -07:00
|
|
|
}
|