mirror of
https://github.com/kyverno/kyverno.git
synced 2025-01-20 18:52:16 +00:00
d92e16526f
* Added appropriate logging levels to log.Info() calls wherever necessary Signed-off-by: anutosh491 <andersonbhat491@gmail.com> * Changed logging levels to 2 Signed-off-by: anutosh491 <andersonbhat491@gmail.com> Signed-off-by: anutosh491 <andersonbhat491@gmail.com> Co-authored-by: shuting <shuting@nirmata.com>
114 lines
3.4 KiB
Go
114 lines
3.4 KiB
Go
package engine
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
|
|
"github.com/go-logr/logr"
|
|
gojmespath "github.com/jmespath/go-jmespath"
|
|
kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1"
|
|
"github.com/kyverno/kyverno/pkg/engine/response"
|
|
apiutils "github.com/kyverno/kyverno/pkg/utils/api"
|
|
"github.com/pkg/errors"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
)
|
|
|
|
func processImageValidationRule(log logr.Logger, ctx *PolicyContext, rule *kyvernov1.Rule) *response.RuleResponse {
|
|
if isDeleteRequest(ctx) {
|
|
return nil
|
|
}
|
|
|
|
log = log.WithValues("rule", rule.Name)
|
|
if err := LoadContext(log, rule.Context, ctx, rule.Name); err != nil {
|
|
if _, ok := err.(gojmespath.NotFoundError); ok {
|
|
log.V(3).Info("failed to load context", "reason", err.Error())
|
|
} else {
|
|
log.Error(err, "failed to load context")
|
|
}
|
|
|
|
return ruleError(rule, response.Validation, "failed to load context", err)
|
|
}
|
|
|
|
preconditionsPassed, err := checkPreconditions(log, ctx, rule.RawAnyAllConditions)
|
|
if err != nil {
|
|
return ruleError(rule, response.Validation, "failed to evaluate preconditions", err)
|
|
}
|
|
|
|
if !preconditionsPassed {
|
|
if ctx.Policy.GetSpec().ValidationFailureAction == kyvernov1.Audit {
|
|
return nil
|
|
}
|
|
|
|
return ruleResponse(*rule, response.Validation, "preconditions not met", response.RuleStatusSkip, nil)
|
|
}
|
|
|
|
for _, v := range rule.VerifyImages {
|
|
imageVerify := v.Convert()
|
|
for _, infoMap := range ctx.JSONContext.ImageInfo() {
|
|
for name, imageInfo := range infoMap {
|
|
image := imageInfo.String()
|
|
log = log.WithValues("rule", rule.Name)
|
|
|
|
if !imageMatches(image, imageVerify.ImageReferences) {
|
|
log.V(4).Info("image does not match", "imageReferences", imageVerify.ImageReferences)
|
|
return nil
|
|
}
|
|
|
|
log.V(4).Info("validating image", "image", image)
|
|
if err := validateImage(ctx, imageVerify, name, imageInfo, log); err != nil {
|
|
return ruleResponse(*rule, response.ImageVerify, err.Error(), response.RuleStatusFail, nil)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
log.V(4).Info("validated image", "rule", rule.Name)
|
|
return ruleResponse(*rule, response.Validation, "image verified", response.RuleStatusPass, nil)
|
|
}
|
|
|
|
func validateImage(ctx *PolicyContext, imageVerify *kyvernov1.ImageVerification, name string, imageInfo apiutils.ImageInfo, log logr.Logger) error {
|
|
image := imageInfo.String()
|
|
if imageVerify.VerifyDigest && imageInfo.Digest == "" {
|
|
log.V(2).Info("missing digest", "image", imageInfo.String())
|
|
return fmt.Errorf("missing digest for %s", image)
|
|
}
|
|
|
|
if imageVerify.Required && !reflect.DeepEqual(ctx.NewResource, unstructured.Unstructured{}) {
|
|
verified, err := isImageVerified(ctx.NewResource, image, log)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !verified {
|
|
return fmt.Errorf("unverified image %s", image)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func isImageVerified(resource unstructured.Unstructured, image string, log logr.Logger) (bool, error) {
|
|
if reflect.DeepEqual(resource, unstructured.Unstructured{}) {
|
|
return false, errors.Errorf("nil resource")
|
|
}
|
|
|
|
annotations := resource.GetAnnotations()
|
|
if len(annotations) == 0 {
|
|
return false, nil
|
|
}
|
|
|
|
key := imageVerifyAnnotationKey
|
|
data, ok := annotations[key]
|
|
if !ok {
|
|
log.V(2).Info("missing image metadata in annotation", "key", key)
|
|
return false, errors.Errorf("image is not verified")
|
|
}
|
|
|
|
ivm, err := parseImageMetadata(data)
|
|
if err != nil {
|
|
log.Error(err, "failed to parse image verification metadata", "data", data)
|
|
return false, errors.Wrapf(err, "failed to parse image metadata")
|
|
}
|
|
|
|
return ivm.isVerified(image), nil
|
|
}
|