mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
256 lines
7.1 KiB
Go
256 lines
7.1 KiB
Go
package policy
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"reflect"
|
|
"strings"
|
|
|
|
"github.com/nirmata/kyverno/pkg/openapi"
|
|
|
|
kyverno "github.com/nirmata/kyverno/pkg/api/kyverno/v1"
|
|
dclient "github.com/nirmata/kyverno/pkg/dclient"
|
|
rbacv1 "k8s.io/api/rbac/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
)
|
|
|
|
// Validate does some initial check to verify some conditions
|
|
// - One operation per rule
|
|
// - ResourceDescription mandatory checks
|
|
func Validate(p kyverno.ClusterPolicy, client *dclient.Client, mock bool) error {
|
|
if path, err := validateUniqueRuleName(p); err != nil {
|
|
return fmt.Errorf("path: spec.%s: %v", path, err)
|
|
}
|
|
if p.Spec.Background == nil {
|
|
//skipped policy mutation default -> skip validation -> will not be processed for background processing
|
|
return nil
|
|
}
|
|
if *p.Spec.Background {
|
|
if err := ContainsUserInfo(p); err != nil {
|
|
// policy.spec.background -> "true"
|
|
// - cannot use variables with request.userInfo
|
|
// - cannot define userInfo(roles, cluserRoles, subjects) for filtering (match & exclude)
|
|
return fmt.Errorf("userInfo is not allowed in match or exclude when backgroud policy mode is true. Set spec.background=false to disable background mode for this policy rule. %s ", err)
|
|
}
|
|
}
|
|
|
|
for i, rule := range p.Spec.Rules {
|
|
// only one type of rule is allowed per rule
|
|
if err := validateRuleType(rule); err != nil {
|
|
return fmt.Errorf("path: spec.rules[%d]: %v", i, err)
|
|
}
|
|
|
|
// validate resource description
|
|
if path, err := validateResources(rule); err != nil {
|
|
return fmt.Errorf("path: spec.rules[%d].%s: %v", i, path, err)
|
|
}
|
|
// validate rule types
|
|
// only one type of rule is allowed per rule
|
|
if err := validateRuleType(rule); err != nil {
|
|
// as there are more than 1 operation in rule, not need to evaluate it further
|
|
return fmt.Errorf("path: spec.rules[%d]: %v", i, err)
|
|
}
|
|
// validate rule actions
|
|
// - Mutate
|
|
// - Validate
|
|
// - Generate
|
|
if err := validateActions(i, rule, client, mock); err != nil {
|
|
return err
|
|
}
|
|
|
|
// If a rules match block does not match any kind,
|
|
// we should only allow such rules to have metadata in its overlay
|
|
if len(rule.MatchResources.Kinds) == 0 {
|
|
if !ruleOnlyDealsWithResourceMetaData(rule) {
|
|
return fmt.Errorf("policy can only deal with the metadata field of the resource if" +
|
|
" the rule does not match an kind")
|
|
}
|
|
}
|
|
}
|
|
|
|
if err := openapi.ValidatePolicyMutation(p); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func ruleOnlyDealsWithResourceMetaData(rule kyverno.Rule) bool {
|
|
overlayMap, _ := rule.Mutation.Overlay.(map[string]interface{})
|
|
for k := range overlayMap {
|
|
if k != "metadata" {
|
|
return false
|
|
}
|
|
}
|
|
|
|
for _, patch := range rule.Mutation.Patches {
|
|
if !strings.HasPrefix(patch.Path, "/metadata") {
|
|
return false
|
|
}
|
|
}
|
|
|
|
patternMap, _ := rule.Validation.Pattern.(map[string]interface{})
|
|
for k := range patternMap {
|
|
if k != "metadata" {
|
|
return false
|
|
}
|
|
}
|
|
|
|
for _, pattern := range rule.Validation.AnyPattern {
|
|
patternMap, _ := pattern.(map[string]interface{})
|
|
for k := range patternMap {
|
|
if k != "metadata" {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
func validateResources(rule kyverno.Rule) (string, error) {
|
|
// validate userInfo in match and exclude
|
|
if path, err := validateUserInfo(rule); err != nil {
|
|
return fmt.Sprintf("resources.%s", path), err
|
|
}
|
|
|
|
// matched resources
|
|
if path, err := validateMatchedResourceDescription(rule.MatchResources.ResourceDescription); err != nil {
|
|
return fmt.Sprintf("resources.%s", path), err
|
|
}
|
|
// exclude resources
|
|
if path, err := validateExcludeResourceDescription(rule.ExcludeResources.ResourceDescription); err != nil {
|
|
return fmt.Sprintf("resources.%s", path), err
|
|
}
|
|
return "", nil
|
|
}
|
|
|
|
// ValidateUniqueRuleName checks if the rule names are unique across a policy
|
|
func validateUniqueRuleName(p kyverno.ClusterPolicy) (string, error) {
|
|
var ruleNames []string
|
|
|
|
for i, rule := range p.Spec.Rules {
|
|
if containString(ruleNames, rule.Name) {
|
|
return fmt.Sprintf("rule[%d]", i), fmt.Errorf(`duplicate rule name: '%s'`, rule.Name)
|
|
}
|
|
ruleNames = append(ruleNames, rule.Name)
|
|
}
|
|
return "", nil
|
|
}
|
|
|
|
// validateRuleType checks only one type of rule is defined per rule
|
|
func validateRuleType(r kyverno.Rule) error {
|
|
ruleTypes := []bool{r.HasMutate(), r.HasValidate(), r.HasGenerate()}
|
|
|
|
operationCount := func() int {
|
|
count := 0
|
|
for _, v := range ruleTypes {
|
|
if v {
|
|
count++
|
|
}
|
|
}
|
|
return count
|
|
}()
|
|
|
|
if operationCount == 0 {
|
|
return fmt.Errorf("no operation defined in the rule '%s'.(supported operations: mutation,validation,generation)", r.Name)
|
|
} else if operationCount != 1 {
|
|
return fmt.Errorf("multiple operations defined in the rule '%s', only one type of operation is allowed per rule", r.Name)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// validateResourceDescription checks if all necesarry fields are present and have values. Also checks a Selector.
|
|
// field type is checked through openapi
|
|
// Returns error if
|
|
// - kinds is empty array in matched resource block, i.e. kinds: []
|
|
// - selector is invalid
|
|
func validateMatchedResourceDescription(rd kyverno.ResourceDescription) (string, error) {
|
|
if reflect.DeepEqual(rd, kyverno.ResourceDescription{}) {
|
|
return "", fmt.Errorf("match resources not specified")
|
|
}
|
|
|
|
if err := validateResourceDescription(rd); err != nil {
|
|
return "match", err
|
|
}
|
|
|
|
return "", nil
|
|
}
|
|
|
|
func validateUserInfo(rule kyverno.Rule) (string, error) {
|
|
if err := validateRoles(rule.MatchResources.Roles); err != nil {
|
|
return "match.roles", err
|
|
}
|
|
|
|
if err := validateSubjects(rule.MatchResources.Subjects); err != nil {
|
|
return "match.subjects", err
|
|
}
|
|
|
|
if err := validateRoles(rule.ExcludeResources.Roles); err != nil {
|
|
return "exclude.roles", err
|
|
}
|
|
|
|
if err := validateSubjects(rule.ExcludeResources.Subjects); err != nil {
|
|
return "exclude.subjects", err
|
|
}
|
|
|
|
return "", nil
|
|
}
|
|
|
|
// a role must in format namespace:name
|
|
func validateRoles(roles []string) error {
|
|
if len(roles) == 0 {
|
|
return nil
|
|
}
|
|
|
|
for _, r := range roles {
|
|
role := strings.Split(r, ":")
|
|
if len(role) != 2 {
|
|
return fmt.Errorf("invalid role %s, expect namespace:name", r)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// a namespace should be set in kind ServiceAccount of a subject
|
|
func validateSubjects(subjects []rbacv1.Subject) error {
|
|
if len(subjects) == 0 {
|
|
return nil
|
|
}
|
|
|
|
for _, subject := range subjects {
|
|
if subject.Kind == "ServiceAccount" {
|
|
if subject.Namespace == "" {
|
|
return fmt.Errorf("service account %s in subject expects a namespace", subject.Name)
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func validateExcludeResourceDescription(rd kyverno.ResourceDescription) (string, error) {
|
|
if reflect.DeepEqual(rd, kyverno.ResourceDescription{}) {
|
|
// exclude is not mandatory
|
|
return "", nil
|
|
}
|
|
if err := validateResourceDescription(rd); err != nil {
|
|
return "exclude", err
|
|
}
|
|
return "", nil
|
|
}
|
|
|
|
// validateResourceDescription returns error if selector is invalid
|
|
// field type is checked through openapi
|
|
func validateResourceDescription(rd kyverno.ResourceDescription) error {
|
|
if rd.Selector != nil {
|
|
selector, err := metav1.LabelSelectorAsSelector(rd.Selector)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
requirements, _ := selector.Requirements()
|
|
if len(requirements) == 0 {
|
|
return errors.New("the requirements are not specified in selector")
|
|
}
|
|
}
|
|
return nil
|
|
}
|