mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
a9fef256c7
* updates for foreach and mutate Signed-off-by: Jim Bugwadia <jim@nirmata.com> * allow tests to pass on Windows Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix linter check Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add elementIndex variable Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fmt Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix jsonResult usage Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add mutate validation and fix error in validate.foreach Signed-off-by: Jim Bugwadia <jim@nirmata.com> * format Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update message Signed-off-by: Jim Bugwadia <jim@nirmata.com> * do not skip validation for all array entries when one is skipped Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add foreach tests Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix fmt Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix format errors Signed-off-by: Jim Bugwadia <jim@nirmata.com> * remove unused declarations Signed-off-by: Jim Bugwadia <jim@nirmata.com> * revert namespaceWithLabelYaml Signed-off-by: Jim Bugwadia <jim@nirmata.com> * fix mutate of element list Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update CRDs Signed-off-by: Jim Bugwadia <jim@nirmata.com> * Update api/kyverno/v1/policy_types.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/forceMutate.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/forceMutate.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/forceMutate.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/mutation.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/mutation.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/mutation.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/validate/validate.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update pkg/engine/validate/validate.go Co-authored-by: Steven E. Harris <seh@panix.com> * Update test/cli/test/custom-functions/policy.yaml Co-authored-by: Steven E. Harris <seh@panix.com> * Update test/cli/test/foreach/policies.yaml Co-authored-by: Steven E. Harris <seh@panix.com> * accept review comments and format Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add comments to strategicMergePatch buffer Signed-off-by: Jim Bugwadia <jim@nirmata.com> * load context and evaluate preconditions foreach element Signed-off-by: Jim Bugwadia <jim@nirmata.com> * add test for foreach mutate context and precondition * precondition testcase * address review comments Signed-off-by: Jim Bugwadia <jim@nirmata.com> * update message Signed-off-by: Jim Bugwadia <jim@nirmata.com> * format Signed-off-by: Jim Bugwadia <jim@nirmata.com> Co-authored-by: Steven E. Harris <seh@panix.com> Co-authored-by: Vyankatesh Kudtarkar <vyankateshkd@gmail.com>
85 lines
2.5 KiB
Go
85 lines
2.5 KiB
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
"strconv"
|
|
|
|
commonAnchors "github.com/kyverno/kyverno/pkg/engine/anchor"
|
|
)
|
|
|
|
//ValidatePattern validates the pattern
|
|
func ValidatePattern(patternElement interface{}, path string, supportedAnchors []commonAnchors.IsAnchor) (string, error) {
|
|
switch typedPatternElement := patternElement.(type) {
|
|
case map[string]interface{}:
|
|
return validateMap(typedPatternElement, path, supportedAnchors)
|
|
case []interface{}:
|
|
return validateArray(typedPatternElement, path, supportedAnchors)
|
|
case string, float64, int, int64, bool, nil:
|
|
//TODO? check operator
|
|
return "", nil
|
|
default:
|
|
return path, fmt.Errorf("error at '%s', pattern contains unknown type", path)
|
|
}
|
|
}
|
|
func validateMap(patternMap map[string]interface{}, path string, supportedAnchors []commonAnchors.IsAnchor) (string, error) {
|
|
// check if anchors are defined
|
|
for key, value := range patternMap {
|
|
// if key is anchor
|
|
// check regex () -> this is anchor
|
|
// ()
|
|
// single char ()
|
|
re, err := regexp.Compile(`^.?\(.+\)$`)
|
|
if err != nil {
|
|
return path + "/" + key, fmt.Errorf("unable to parse the field %s: %v", key, err)
|
|
}
|
|
|
|
matched := re.MatchString(key)
|
|
// check the type of anchor
|
|
if matched {
|
|
// some type of anchor
|
|
// check if valid anchor
|
|
if !checkAnchors(key, supportedAnchors) {
|
|
return path + "/" + key, fmt.Errorf("unsupported anchor %s", key)
|
|
}
|
|
|
|
// addition check for existence anchor
|
|
// value must be of type list
|
|
if commonAnchors.IsExistenceAnchor(key) {
|
|
typedValue, ok := value.([]interface{})
|
|
if !ok {
|
|
return path + "/" + key, fmt.Errorf("existence anchor should have value of type list")
|
|
}
|
|
// validate that there is atleast one entry in the list
|
|
if len(typedValue) == 0 {
|
|
return path + "/" + key, fmt.Errorf("existence anchor: should have atleast one value")
|
|
}
|
|
}
|
|
}
|
|
// lets validate the values now :)
|
|
if errPath, err := ValidatePattern(value, path+"/"+key, supportedAnchors); err != nil {
|
|
return errPath, err
|
|
}
|
|
}
|
|
return "", nil
|
|
}
|
|
|
|
func validateArray(patternArray []interface{}, path string, supportedAnchors []commonAnchors.IsAnchor) (string, error) {
|
|
for i, patternElement := range patternArray {
|
|
currentPath := path + strconv.Itoa(i) + "/"
|
|
// lets validate the values now :)
|
|
if errPath, err := ValidatePattern(patternElement, currentPath, supportedAnchors); err != nil {
|
|
return errPath, err
|
|
}
|
|
}
|
|
return "", nil
|
|
}
|
|
|
|
func checkAnchors(key string, supportedAnchors []commonAnchors.IsAnchor) bool {
|
|
for _, f := range supportedAnchors {
|
|
if f(key) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|