mirror of
https://github.com/kyverno/kyverno.git
synced 2025-01-20 18:52:16 +00:00
073309a8ae
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
360 lines
11 KiB
Go
360 lines
11 KiB
Go
package context
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"strings"
|
|
"sync"
|
|
|
|
jsonpatch "github.com/evanphx/json-patch/v5"
|
|
kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1"
|
|
kyvernov1beta1 "github.com/kyverno/kyverno/api/kyverno/v1beta1"
|
|
"github.com/kyverno/kyverno/pkg/config"
|
|
"github.com/kyverno/kyverno/pkg/engine/jmespath"
|
|
"github.com/kyverno/kyverno/pkg/logging"
|
|
apiutils "github.com/kyverno/kyverno/pkg/utils/api"
|
|
admissionv1 "k8s.io/api/admission/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
)
|
|
|
|
var logger = logging.WithName("context")
|
|
|
|
// EvalInterface is used to query and inspect context data
|
|
type EvalInterface interface {
|
|
// Query accepts a JMESPath expression and returns matching data
|
|
Query(query string) (interface{}, error)
|
|
|
|
// HasChanged accepts a JMESPath expression and compares matching data in the
|
|
// request.object and request.oldObject context fields. If the data has changed
|
|
// it return `true`. If the data has not changed it returns false. If either
|
|
// request.object or request.oldObject are not found, an error is returned.
|
|
HasChanged(jmespath string) (bool, error)
|
|
}
|
|
|
|
// Interface to manage context operations
|
|
type Interface interface {
|
|
// AddRequest marshals and adds the admission request to the context
|
|
AddRequest(request admissionv1.AdmissionRequest) error
|
|
|
|
// AddVariable adds a variable to the context
|
|
AddVariable(key string, value interface{}) error
|
|
|
|
// AddContextEntry adds a context entry to the context
|
|
AddContextEntry(name string, dataRaw []byte) error
|
|
|
|
// ReplaceContextEntry replaces a context entry to the context
|
|
ReplaceContextEntry(name string, dataRaw []byte) error
|
|
|
|
// AddResource merges resource json under request.object
|
|
AddResource(data map[string]interface{}) error
|
|
|
|
// AddOldResource merges resource json under request.oldObject
|
|
AddOldResource(data map[string]interface{}) error
|
|
|
|
// SetTargetResource merges resource json under target
|
|
SetTargetResource(data map[string]interface{}) error
|
|
|
|
// AddOperation merges operation under request.operation
|
|
AddOperation(data string) error
|
|
|
|
// AddUserInfo merges userInfo json under kyverno.userInfo
|
|
AddUserInfo(userInfo kyvernov1beta1.RequestInfo) error
|
|
|
|
// AddServiceAccount merges ServiceAccount types
|
|
AddServiceAccount(userName string) error
|
|
|
|
// AddNamespace merges resource json under request.namespace
|
|
AddNamespace(namespace string) error
|
|
|
|
// AddElement adds element info to the context
|
|
AddElement(data interface{}, index, nesting int) error
|
|
|
|
// AddImageInfo adds image info to the context
|
|
AddImageInfo(info apiutils.ImageInfo, cfg config.Configuration) error
|
|
|
|
// AddImageInfos adds image infos to the context
|
|
AddImageInfos(resource *unstructured.Unstructured, cfg config.Configuration) error
|
|
|
|
// AddDeferredLoader adds a loader that is executed on first use (query)
|
|
AddDeferredLoader(name string, loader DeferredLoader)
|
|
|
|
// ImageInfo returns image infos present in the context
|
|
ImageInfo() map[string]map[string]apiutils.ImageInfo
|
|
|
|
// GenerateCustomImageInfo returns image infos as defined by a custom image extraction config
|
|
// and updates the context
|
|
GenerateCustomImageInfo(resource *unstructured.Unstructured, imageExtractorConfigs kyvernov1.ImageExtractorConfigs, cfg config.Configuration) (map[string]map[string]apiutils.ImageInfo, error)
|
|
|
|
// Checkpoint creates a copy of the current internal state and pushes it into a stack of stored states.
|
|
Checkpoint()
|
|
|
|
// Restore sets the internal state to the last checkpoint, and removes the checkpoint.
|
|
Restore()
|
|
|
|
// Reset sets the internal state to the last checkpoint, but does not remove the checkpoint.
|
|
Reset()
|
|
|
|
EvalInterface
|
|
|
|
// AddJSON merges the json with context
|
|
addJSON(dataRaw []byte) error
|
|
}
|
|
|
|
// DeferredLoader loads the context data on first use (query)
|
|
type DeferredLoader func() error
|
|
|
|
// Context stores the data resources as JSON
|
|
type context struct {
|
|
jp jmespath.Interface
|
|
mutex sync.RWMutex
|
|
jsonRaw []byte
|
|
jsonRawCheckpoints [][]byte
|
|
images map[string]map[string]apiutils.ImageInfo
|
|
deferred deferredLoaders
|
|
}
|
|
|
|
type deferredLoaders struct {
|
|
mutex sync.Mutex
|
|
loaders map[string]DeferredLoader
|
|
}
|
|
|
|
// NewContext returns a new context
|
|
func NewContext(jp jmespath.Interface) Interface {
|
|
return NewContextFromRaw(jp, []byte(`{}`))
|
|
}
|
|
|
|
// NewContextFromRaw returns a new context initialized with raw data
|
|
func NewContextFromRaw(jp jmespath.Interface, raw []byte) Interface {
|
|
return &context{
|
|
jp: jp,
|
|
jsonRaw: raw,
|
|
jsonRawCheckpoints: make([][]byte, 0),
|
|
deferred: deferredLoaders{
|
|
loaders: make(map[string]DeferredLoader),
|
|
},
|
|
}
|
|
}
|
|
|
|
// addJSON merges json data
|
|
func (ctx *context) addJSON(dataRaw []byte) error {
|
|
ctx.mutex.Lock()
|
|
defer ctx.mutex.Unlock()
|
|
json, err := jsonpatch.MergeMergePatches(ctx.jsonRaw, dataRaw)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to merge JSON data: %w", err)
|
|
}
|
|
ctx.jsonRaw = json
|
|
return nil
|
|
}
|
|
|
|
// AddRequest adds an admission request to context
|
|
func (ctx *context) AddRequest(request admissionv1.AdmissionRequest) error {
|
|
return addToContext(ctx, request, "request")
|
|
}
|
|
|
|
func (ctx *context) AddVariable(key string, value interface{}) error {
|
|
return addToContext(ctx, value, strings.Split(key, ".")...)
|
|
}
|
|
|
|
func (ctx *context) AddContextEntry(name string, dataRaw []byte) error {
|
|
var data interface{}
|
|
if err := json.Unmarshal(dataRaw, &data); err != nil {
|
|
logger.Error(err, "failed to unmarshal the resource")
|
|
return err
|
|
}
|
|
return addToContext(ctx, data, name)
|
|
}
|
|
|
|
func (ctx *context) ReplaceContextEntry(name string, dataRaw []byte) error {
|
|
var data interface{}
|
|
if err := json.Unmarshal(dataRaw, &data); err != nil {
|
|
logger.Error(err, "failed to unmarshal the resource")
|
|
return err
|
|
}
|
|
// Adding a nil entry to clean out any existing data in the context with the entry name
|
|
if err := addToContext(ctx, nil, name); err != nil {
|
|
logger.Error(err, "unable to replace context entry", "context entry name", name)
|
|
return err
|
|
}
|
|
return addToContext(ctx, data, name)
|
|
}
|
|
|
|
// AddResource data at path: request.object
|
|
func (ctx *context) AddResource(data map[string]interface{}) error {
|
|
return addToContext(ctx, data, "request", "object")
|
|
}
|
|
|
|
// AddOldResource data at path: request.oldObject
|
|
func (ctx *context) AddOldResource(data map[string]interface{}) error {
|
|
return addToContext(ctx, data, "request", "oldObject")
|
|
}
|
|
|
|
// AddTargetResource adds data at path: target
|
|
func (ctx *context) SetTargetResource(data map[string]interface{}) error {
|
|
if err := addToContext(ctx, nil, "target"); err != nil {
|
|
logger.Error(err, "unable to replace target resource")
|
|
return err
|
|
}
|
|
return addToContext(ctx, data, "target")
|
|
}
|
|
|
|
// AddOperation data at path: request.operation
|
|
func (ctx *context) AddOperation(data string) error {
|
|
return addToContext(ctx, data, "request", "operation")
|
|
}
|
|
|
|
// AddUserInfo adds userInfo at path request.userInfo
|
|
func (ctx *context) AddUserInfo(userRequestInfo kyvernov1beta1.RequestInfo) error {
|
|
return addToContext(ctx, userRequestInfo, "request")
|
|
}
|
|
|
|
// AddServiceAccount removes prefix 'system:serviceaccount:' and namespace, then loads only SA name and SA namespace
|
|
func (ctx *context) AddServiceAccount(userName string) error {
|
|
saPrefix := "system:serviceaccount:"
|
|
var sa string
|
|
saName := ""
|
|
saNamespace := ""
|
|
if len(userName) <= len(saPrefix) {
|
|
sa = ""
|
|
} else {
|
|
sa = userName[len(saPrefix):]
|
|
}
|
|
// filter namespace
|
|
groups := strings.Split(sa, ":")
|
|
if len(groups) >= 2 {
|
|
saName = groups[1]
|
|
saNamespace = groups[0]
|
|
}
|
|
saNameObj := struct {
|
|
SA string `json:"serviceAccountName"`
|
|
}{
|
|
SA: saName,
|
|
}
|
|
saNameRaw, err := json.Marshal(saNameObj)
|
|
if err != nil {
|
|
logger.Error(err, "failed to marshal the SA")
|
|
return err
|
|
}
|
|
if err := ctx.addJSON(saNameRaw); err != nil {
|
|
return err
|
|
}
|
|
|
|
saNsObj := struct {
|
|
SA string `json:"serviceAccountNamespace"`
|
|
}{
|
|
SA: saNamespace,
|
|
}
|
|
saNsRaw, err := json.Marshal(saNsObj)
|
|
if err != nil {
|
|
logger.Error(err, "failed to marshal the SA namespace")
|
|
return err
|
|
}
|
|
if err := ctx.addJSON(saNsRaw); err != nil {
|
|
return err
|
|
}
|
|
logger.V(4).Info("Adding service account", "service account name", saName, "service account namespace", saNamespace)
|
|
return nil
|
|
}
|
|
|
|
// AddNamespace merges resource json under request.namespace
|
|
func (ctx *context) AddNamespace(namespace string) error {
|
|
return addToContext(ctx, namespace, "request", "namespace")
|
|
}
|
|
|
|
func (ctx *context) AddElement(data interface{}, index, nesting int) error {
|
|
nestedElement := fmt.Sprintf("element%d", nesting)
|
|
nestedElementIndex := fmt.Sprintf("elementIndex%d", nesting)
|
|
data = map[string]interface{}{
|
|
"element": data,
|
|
nestedElement: data,
|
|
"elementIndex": index,
|
|
nestedElementIndex: index,
|
|
}
|
|
return addToContext(ctx, data)
|
|
}
|
|
|
|
func (ctx *context) AddImageInfo(info apiutils.ImageInfo, cfg config.Configuration) error {
|
|
data := map[string]interface{}{
|
|
"reference": info.String(),
|
|
"referenceWithTag": info.ReferenceWithTag(),
|
|
"registry": info.Registry,
|
|
"path": info.Path,
|
|
"name": info.Name,
|
|
"tag": info.Tag,
|
|
"digest": info.Digest,
|
|
}
|
|
return addToContext(ctx, data, "image")
|
|
}
|
|
|
|
func (ctx *context) AddImageInfos(resource *unstructured.Unstructured, cfg config.Configuration) error {
|
|
images, err := apiutils.ExtractImagesFromResource(*resource, nil, cfg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if len(images) == 0 {
|
|
return nil
|
|
}
|
|
ctx.images = images
|
|
|
|
logging.V(4).Info("updated image info", "images", images)
|
|
return addToContext(ctx, images, "images")
|
|
}
|
|
|
|
func (ctx *context) GenerateCustomImageInfo(resource *unstructured.Unstructured, imageExtractorConfigs kyvernov1.ImageExtractorConfigs, cfg config.Configuration) (map[string]map[string]apiutils.ImageInfo, error) {
|
|
images, err := apiutils.ExtractImagesFromResource(*resource, imageExtractorConfigs, cfg)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to extract images: %w", err)
|
|
}
|
|
|
|
if len(images) == 0 {
|
|
logger.V(4).Info("no images found", "extractor", imageExtractorConfigs)
|
|
return nil, nil
|
|
}
|
|
|
|
return images, addToContext(ctx, images, "images")
|
|
}
|
|
|
|
func (ctx *context) ImageInfo() map[string]map[string]apiutils.ImageInfo {
|
|
return ctx.images
|
|
}
|
|
|
|
// Checkpoint creates a copy of the current internal state and
|
|
// pushes it into a stack of stored states.
|
|
func (ctx *context) Checkpoint() {
|
|
ctx.mutex.Lock()
|
|
defer ctx.mutex.Unlock()
|
|
jsonRawCheckpoint := make([]byte, len(ctx.jsonRaw))
|
|
copy(jsonRawCheckpoint, ctx.jsonRaw)
|
|
ctx.jsonRawCheckpoints = append(ctx.jsonRawCheckpoints, jsonRawCheckpoint)
|
|
}
|
|
|
|
// Restore sets the internal state to the last checkpoint, and removes the checkpoint.
|
|
func (ctx *context) Restore() {
|
|
ctx.reset(true)
|
|
}
|
|
|
|
// Reset sets the internal state to the last checkpoint, but does not remove the checkpoint.
|
|
func (ctx *context) Reset() {
|
|
ctx.reset(false)
|
|
}
|
|
|
|
func (ctx *context) reset(remove bool) {
|
|
ctx.mutex.Lock()
|
|
defer ctx.mutex.Unlock()
|
|
if len(ctx.jsonRawCheckpoints) == 0 {
|
|
return
|
|
}
|
|
n := len(ctx.jsonRawCheckpoints) - 1
|
|
jsonRawCheckpoint := ctx.jsonRawCheckpoints[n]
|
|
ctx.jsonRaw = make([]byte, len(jsonRawCheckpoint))
|
|
copy(ctx.jsonRaw, jsonRawCheckpoint)
|
|
if remove {
|
|
ctx.jsonRawCheckpoints = ctx.jsonRawCheckpoints[:n]
|
|
}
|
|
}
|
|
|
|
func (ctx *context) AddDeferredLoader(name string, loader DeferredLoader) {
|
|
ctx.deferred.mutex.Lock()
|
|
defer ctx.deferred.mutex.Unlock()
|
|
ctx.deferred.loaders[name] = loader
|
|
}
|