2020-05-29 15:32:29 +05:30
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2020-09-01 09:38:49 -07:00
|
|
|
"bufio"
|
|
|
|
"bytes"
|
2020-05-29 15:32:29 +05:30
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2020-09-01 09:38:49 -07:00
|
|
|
"io"
|
2020-05-29 15:32:29 +05:30
|
|
|
"io/ioutil"
|
2021-02-08 23:38:06 +05:30
|
|
|
"net/http"
|
2020-10-19 12:36:55 -07:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2021-02-02 18:43:19 +05:30
|
|
|
"strings"
|
2020-08-31 19:32:00 +05:30
|
|
|
|
2020-07-29 21:41:58 +05:30
|
|
|
jsonpatch "github.com/evanphx/json-patch"
|
2021-02-07 20:26:56 -08:00
|
|
|
"github.com/go-git/go-billy/v5"
|
2020-07-29 21:41:58 +05:30
|
|
|
"github.com/go-logr/logr"
|
2020-10-07 11:12:31 -07:00
|
|
|
v1 "github.com/kyverno/kyverno/pkg/api/kyverno/v1"
|
2021-02-07 20:26:56 -08:00
|
|
|
client "github.com/kyverno/kyverno/pkg/dclient"
|
|
|
|
"github.com/kyverno/kyverno/pkg/engine"
|
|
|
|
"github.com/kyverno/kyverno/pkg/engine/context"
|
|
|
|
"github.com/kyverno/kyverno/pkg/engine/response"
|
2020-11-17 13:07:30 -08:00
|
|
|
sanitizederror "github.com/kyverno/kyverno/pkg/kyverno/sanitizedError"
|
2020-10-07 11:12:31 -07:00
|
|
|
"github.com/kyverno/kyverno/pkg/policymutation"
|
|
|
|
"github.com/kyverno/kyverno/pkg/utils"
|
2021-02-07 20:26:56 -08:00
|
|
|
ut "github.com/kyverno/kyverno/pkg/utils"
|
|
|
|
yamlv2 "gopkg.in/yaml.v2"
|
2020-11-17 13:07:30 -08:00
|
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
|
|
"k8s.io/apimachinery/pkg/util/yaml"
|
2021-02-07 20:26:56 -08:00
|
|
|
"sigs.k8s.io/controller-runtime/pkg/log"
|
2020-11-17 13:07:30 -08:00
|
|
|
yaml_v2 "sigs.k8s.io/yaml"
|
2020-05-29 15:32:29 +05:30
|
|
|
)
|
|
|
|
|
2020-06-01 16:49:40 +05:30
|
|
|
// GetPolicies - Extracting the policies from multiple YAML
|
2021-02-02 18:43:19 +05:30
|
|
|
|
|
|
|
type Resource struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Values map[string]string `json:"values"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Policy struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Resources []Resource `json:"resources"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Values struct {
|
|
|
|
Policies []Policy `json:"policies"`
|
|
|
|
}
|
|
|
|
|
2020-12-07 11:26:04 -08:00
|
|
|
func GetPolicies(paths []string) (policies []*v1.ClusterPolicy, errors []error) {
|
2020-11-03 01:25:32 +05:30
|
|
|
for _, path := range paths {
|
2020-12-07 11:26:04 -08:00
|
|
|
log.Log.V(5).Info("reading policies", "path", path)
|
|
|
|
|
2021-02-08 23:38:06 +05:30
|
|
|
var (
|
|
|
|
fileDesc os.FileInfo
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
isHttpPath := strings.Contains(path, "http")
|
|
|
|
|
|
|
|
// path clean and retrieving file info can be possible if it's not an HTTP URL
|
|
|
|
if !isHttpPath {
|
|
|
|
path = filepath.Clean(path)
|
|
|
|
fileDesc, err = os.Stat(path)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("failed to process %v: %v", path, err.Error())
|
|
|
|
errors = append(errors, err)
|
|
|
|
continue
|
|
|
|
}
|
2020-10-21 20:05:05 +05:30
|
|
|
}
|
2020-12-07 11:26:04 -08:00
|
|
|
|
2021-02-08 23:38:06 +05:30
|
|
|
// apply file from a directory is possible only if the path is not HTTP URL
|
|
|
|
if !isHttpPath && fileDesc.IsDir() {
|
2020-11-03 01:25:32 +05:30
|
|
|
files, err := ioutil.ReadDir(path)
|
2020-10-07 06:20:53 +05:30
|
|
|
if err != nil {
|
2021-02-08 23:38:06 +05:30
|
|
|
err := fmt.Errorf("failed to process %v: %v", path, err.Error())
|
|
|
|
errors = append(errors, err)
|
2020-12-07 11:26:04 -08:00
|
|
|
continue
|
2020-10-07 06:20:53 +05:30
|
|
|
}
|
2020-12-07 11:26:04 -08:00
|
|
|
|
2020-11-03 01:25:32 +05:30
|
|
|
listOfFiles := make([]string, 0)
|
|
|
|
for _, file := range files {
|
2020-12-07 11:26:04 -08:00
|
|
|
ext := filepath.Ext(file.Name())
|
|
|
|
if ext == "" || ext == ".yaml" || ext == ".yml" {
|
|
|
|
listOfFiles = append(listOfFiles, filepath.Join(path, file.Name()))
|
|
|
|
}
|
2020-11-01 23:18:58 +05:30
|
|
|
}
|
|
|
|
|
2020-12-07 11:26:04 -08:00
|
|
|
policiesFromDir, errorsFromDir := GetPolicies(listOfFiles)
|
|
|
|
errors = append(errors, errorsFromDir...)
|
2020-11-03 01:25:32 +05:30
|
|
|
policies = append(policies, policiesFromDir...)
|
2020-12-07 11:26:04 -08:00
|
|
|
|
2020-11-03 01:25:32 +05:30
|
|
|
} else {
|
2021-02-08 23:38:06 +05:30
|
|
|
var fileBytes []byte
|
|
|
|
if isHttpPath {
|
|
|
|
resp, err := http.Get(path)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("failed to process %v: %v", path, err.Error())
|
|
|
|
errors = append(errors, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
err := fmt.Errorf("failed to process %v: %v", path, err.Error())
|
|
|
|
errors = append(errors, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
fileBytes, err = ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("failed to process %v: %v", path, err.Error())
|
|
|
|
errors = append(errors, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fileBytes, err = ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("failed to process %v: %v", path, err.Error())
|
|
|
|
errors = append(errors, err)
|
|
|
|
continue
|
|
|
|
}
|
2020-11-03 01:25:32 +05:30
|
|
|
}
|
2020-12-07 11:26:04 -08:00
|
|
|
|
|
|
|
policiesFromFile, errFromFile := utils.GetPolicy(fileBytes)
|
|
|
|
if errFromFile != nil {
|
|
|
|
err := fmt.Errorf("failed to process %s: %v", path, errFromFile.Error())
|
|
|
|
errors = append(errors, err)
|
|
|
|
continue
|
2020-11-01 23:18:58 +05:30
|
|
|
}
|
2020-10-21 20:05:05 +05:30
|
|
|
|
2020-12-07 11:26:04 -08:00
|
|
|
policies = append(policies, policiesFromFile...)
|
2020-11-01 23:18:58 +05:30
|
|
|
}
|
2020-10-21 20:05:05 +05:30
|
|
|
}
|
|
|
|
|
2020-12-07 11:26:04 -08:00
|
|
|
log.Log.V(3).Info("read policies", "policies", len(policies), "errors", len(errors))
|
|
|
|
return policies, errors
|
2020-05-29 15:32:29 +05:30
|
|
|
}
|
2020-07-07 16:20:55 +05:30
|
|
|
|
2020-08-24 03:41:03 +05:30
|
|
|
// PolicyHasVariables - check for variables in the policy
|
2020-11-19 15:03:15 +05:30
|
|
|
func PolicyHasVariables(policy v1.ClusterPolicy) [][]string {
|
2020-08-24 03:41:03 +05:30
|
|
|
policyRaw, _ := json.Marshal(policy)
|
2020-11-17 13:07:30 -08:00
|
|
|
matches := RegexVariables.FindAllStringSubmatch(string(policyRaw), -1)
|
2020-11-19 15:03:15 +05:30
|
|
|
return matches
|
2020-08-24 03:41:03 +05:30
|
|
|
}
|
|
|
|
|
2020-10-19 12:36:55 -07:00
|
|
|
// PolicyHasNonAllowedVariables - checks for unexpected variables in the policy
|
2020-08-24 03:41:03 +05:30
|
|
|
func PolicyHasNonAllowedVariables(policy v1.ClusterPolicy) bool {
|
|
|
|
policyRaw, _ := json.Marshal(policy)
|
|
|
|
|
2020-11-17 13:07:30 -08:00
|
|
|
matchesAll := RegexVariables.FindAllStringSubmatch(string(policyRaw), -1)
|
|
|
|
matchesAllowed := AllowedVariables.FindAllStringSubmatch(string(policyRaw), -1)
|
2020-08-24 03:41:03 +05:30
|
|
|
|
2020-10-19 12:36:55 -07:00
|
|
|
if len(matchesAll) > len(matchesAllowed) {
|
2020-09-23 02:41:49 +05:30
|
|
|
// If rules contains Context then skip this validation
|
|
|
|
for _, rule := range policy.Spec.Rules {
|
|
|
|
if len(rule.Context) > 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
2020-10-19 12:36:55 -07:00
|
|
|
|
2020-08-24 03:41:03 +05:30
|
|
|
return true
|
|
|
|
}
|
2020-10-19 12:36:55 -07:00
|
|
|
|
2020-08-24 03:41:03 +05:30
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-07-29 21:41:58 +05:30
|
|
|
// MutatePolicy - applies mutation to a policy
|
|
|
|
func MutatePolicy(policy *v1.ClusterPolicy, logger logr.Logger) (*v1.ClusterPolicy, error) {
|
|
|
|
patches, _ := policymutation.GenerateJSONPatchesForDefaults(policy, logger)
|
2020-08-19 15:11:21 -07:00
|
|
|
if len(patches) == 0 {
|
|
|
|
return policy, nil
|
|
|
|
}
|
|
|
|
|
2020-07-29 21:41:58 +05:30
|
|
|
type jsonPatch struct {
|
|
|
|
Path string `json:"path"`
|
|
|
|
Op string `json:"op"`
|
|
|
|
Value interface{} `json:"value"`
|
|
|
|
}
|
|
|
|
|
|
|
|
var jsonPatches []jsonPatch
|
|
|
|
err := json.Unmarshal(patches, &jsonPatches)
|
|
|
|
if err != nil {
|
2020-11-17 13:07:30 -08:00
|
|
|
return nil, sanitizederror.NewWithError(fmt.Sprintf("failed to unmarshal patches for %s policy", policy.Name), err)
|
2020-07-29 21:41:58 +05:30
|
|
|
}
|
2020-10-21 20:05:05 +05:30
|
|
|
|
2020-07-29 21:41:58 +05:30
|
|
|
patch, err := jsonpatch.DecodePatch(patches)
|
|
|
|
if err != nil {
|
2020-11-17 13:07:30 -08:00
|
|
|
return nil, sanitizederror.NewWithError(fmt.Sprintf("failed to decode patch for %s policy", policy.Name), err)
|
2020-07-29 21:41:58 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
policyBytes, _ := json.Marshal(policy)
|
|
|
|
if err != nil {
|
2020-11-17 13:07:30 -08:00
|
|
|
return nil, sanitizederror.NewWithError(fmt.Sprintf("failed to marshal %s policy", policy.Name), err)
|
2020-07-29 21:41:58 +05:30
|
|
|
}
|
|
|
|
modifiedPolicy, err := patch.Apply(policyBytes)
|
|
|
|
if err != nil {
|
2020-11-17 13:07:30 -08:00
|
|
|
return nil, sanitizederror.NewWithError(fmt.Sprintf("failed to apply %s policy", policy.Name), err)
|
2020-07-29 21:41:58 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
var p v1.ClusterPolicy
|
|
|
|
err = json.Unmarshal(modifiedPolicy, &p)
|
|
|
|
if err != nil {
|
2020-11-17 13:07:30 -08:00
|
|
|
return nil, sanitizederror.NewWithError(fmt.Sprintf("failed to unmarshal %s policy", policy.Name), err)
|
2020-07-29 21:41:58 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
return &p, nil
|
|
|
|
}
|
2020-08-19 10:21:32 +05:30
|
|
|
|
2020-08-31 17:33:01 +05:30
|
|
|
// GetCRDs - Extracting the crds from multiple YAML
|
|
|
|
func GetCRDs(paths []string) (unstructuredCrds []*unstructured.Unstructured, err error) {
|
2020-08-31 18:43:58 +05:30
|
|
|
unstructuredCrds = make([]*unstructured.Unstructured, 0)
|
2020-08-31 17:33:01 +05:30
|
|
|
for _, path := range paths {
|
|
|
|
path = filepath.Clean(path)
|
|
|
|
|
|
|
|
fileDesc, err := os.Stat(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if fileDesc.IsDir() {
|
|
|
|
files, err := ioutil.ReadDir(path)
|
|
|
|
if err != nil {
|
2020-11-17 13:07:30 -08:00
|
|
|
return nil, sanitizederror.NewWithError(fmt.Sprintf("failed to parse %v", path), err)
|
2020-08-31 17:33:01 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
listOfFiles := make([]string, 0)
|
|
|
|
for _, file := range files {
|
|
|
|
listOfFiles = append(listOfFiles, filepath.Join(path, file.Name()))
|
|
|
|
}
|
|
|
|
|
|
|
|
policiesFromDir, err := GetCRDs(listOfFiles)
|
|
|
|
if err != nil {
|
2020-11-17 13:07:30 -08:00
|
|
|
return nil, sanitizederror.NewWithError(fmt.Sprintf("failed to extract crds from %v", listOfFiles), err)
|
2020-08-31 17:33:01 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
unstructuredCrds = append(unstructuredCrds, policiesFromDir...)
|
|
|
|
} else {
|
|
|
|
getCRDs, err := GetCRD(path)
|
|
|
|
if err != nil {
|
2020-10-10 03:49:28 +05:30
|
|
|
fmt.Printf("\nError: failed to extract crds from %s. \nCause: %s\n", path, err)
|
2020-08-31 19:32:00 +05:30
|
|
|
os.Exit(2)
|
2020-08-31 17:33:01 +05:30
|
|
|
}
|
|
|
|
unstructuredCrds = append(unstructuredCrds, getCRDs...)
|
|
|
|
}
|
|
|
|
}
|
2020-08-31 18:43:58 +05:30
|
|
|
return unstructuredCrds, nil
|
2020-08-31 17:33:01 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// GetCRD - Extracts crds from a YAML
|
|
|
|
func GetCRD(path string) (unstructuredCrds []*unstructured.Unstructured, err error) {
|
2020-08-19 10:21:32 +05:30
|
|
|
path = filepath.Clean(path)
|
2020-08-31 18:43:58 +05:30
|
|
|
unstructuredCrds = make([]*unstructured.Unstructured, 0)
|
2020-08-31 17:33:01 +05:30
|
|
|
yamlbytes, err := ioutil.ReadFile(path)
|
2020-08-19 10:21:32 +05:30
|
|
|
if err != nil {
|
2020-08-30 20:43:05 +05:30
|
|
|
return nil, err
|
2020-08-19 10:21:32 +05:30
|
|
|
}
|
|
|
|
|
2020-08-31 17:33:01 +05:30
|
|
|
buf := bytes.NewBuffer(yamlbytes)
|
|
|
|
reader := yaml.NewYAMLReader(bufio.NewReader(buf))
|
2020-08-19 10:21:32 +05:30
|
|
|
|
2020-08-31 17:33:01 +05:30
|
|
|
for {
|
|
|
|
// Read one YAML document at a time, until io.EOF is returned
|
|
|
|
b, err := reader.Read()
|
|
|
|
if err == io.EOF || len(b) == 0 {
|
|
|
|
break
|
|
|
|
} else if err != nil {
|
2020-10-10 03:49:28 +05:30
|
|
|
fmt.Printf("\nError: unable to read crd from %s. Cause: %s\n", path, err)
|
|
|
|
os.Exit(2)
|
2020-08-31 17:33:01 +05:30
|
|
|
}
|
2020-08-31 18:43:58 +05:30
|
|
|
var u unstructured.Unstructured
|
2020-08-31 17:33:01 +05:30
|
|
|
err = yaml_v2.Unmarshal(b, &u)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
unstructuredCrds = append(unstructuredCrds, &u)
|
2020-08-19 10:21:32 +05:30
|
|
|
}
|
2020-08-31 18:43:58 +05:30
|
|
|
|
2020-08-31 17:33:01 +05:30
|
|
|
return unstructuredCrds, nil
|
2020-08-19 10:21:32 +05:30
|
|
|
}
|
2020-10-07 06:20:53 +05:30
|
|
|
|
|
|
|
// IsInputFromPipe - check if input is passed using pipe
|
|
|
|
func IsInputFromPipe() bool {
|
|
|
|
fileInfo, _ := os.Stdin.Stat()
|
|
|
|
return fileInfo.Mode()&os.ModeCharDevice == 0
|
|
|
|
}
|
2021-02-02 18:43:19 +05:30
|
|
|
|
|
|
|
// RemoveDuplicateVariables - remove duplicate variables
|
|
|
|
func RemoveDuplicateVariables(matches [][]string) string {
|
|
|
|
var variableStr string
|
|
|
|
for _, m := range matches {
|
|
|
|
for _, v := range m {
|
|
|
|
foundVariable := strings.Contains(variableStr, v)
|
|
|
|
if !foundVariable {
|
|
|
|
variableStr = variableStr + " " + v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return variableStr
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetVariable - get the variables from console/file
|
2021-02-07 20:26:56 -08:00
|
|
|
func GetVariable(variablesString, valuesFile string) (map[string]string, map[string]map[string]Resource, error) {
|
2021-02-03 18:24:50 +05:30
|
|
|
valuesMap := make(map[string]map[string]Resource)
|
|
|
|
variables := make(map[string]string)
|
2021-02-02 18:43:19 +05:30
|
|
|
if variablesString != "" {
|
|
|
|
kvpairs := strings.Split(strings.Trim(variablesString, " "), ",")
|
|
|
|
for _, kvpair := range kvpairs {
|
|
|
|
kvs := strings.Split(strings.Trim(kvpair, " "), "=")
|
|
|
|
variables[strings.Trim(kvs[0], " ")] = strings.Trim(kvs[1], " ")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if valuesFile != "" {
|
|
|
|
yamlFile, err := ioutil.ReadFile(valuesFile)
|
|
|
|
if err != nil {
|
|
|
|
return variables, valuesMap, sanitizederror.NewWithError("unable to read yaml", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
valuesBytes, err := yaml.ToJSON(yamlFile)
|
|
|
|
if err != nil {
|
|
|
|
return variables, valuesMap, sanitizederror.NewWithError("failed to convert json", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
values := &Values{}
|
|
|
|
if err := json.Unmarshal(valuesBytes, values); err != nil {
|
|
|
|
return variables, valuesMap, sanitizederror.NewWithError("failed to decode yaml", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, p := range values.Policies {
|
|
|
|
pmap := make(map[string]Resource)
|
|
|
|
for _, r := range p.Resources {
|
|
|
|
pmap[r.Name] = r
|
|
|
|
}
|
|
|
|
valuesMap[p.Name] = pmap
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return variables, valuesMap, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MutatePolices - function to apply mutation on policies
|
|
|
|
func MutatePolices(policies []*v1.ClusterPolicy) ([]*v1.ClusterPolicy, error) {
|
|
|
|
newPolicies := make([]*v1.ClusterPolicy, 0)
|
|
|
|
logger := log.Log.WithName("apply")
|
|
|
|
|
|
|
|
for _, policy := range policies {
|
|
|
|
p, err := MutatePolicy(policy, logger)
|
|
|
|
if err != nil {
|
|
|
|
if !sanitizederror.IsErrorSanitized(err) {
|
|
|
|
return nil, sanitizederror.NewWithError("failed to mutate policy.", err)
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
newPolicies = append(newPolicies, p)
|
|
|
|
}
|
|
|
|
return newPolicies, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ApplyPolicyOnResource - function to apply policy on resource
|
|
|
|
func ApplyPolicyOnResource(policy *v1.ClusterPolicy, resource *unstructured.Unstructured,
|
2021-02-07 20:26:56 -08:00
|
|
|
mutateLogPath string, mutateLogPathIsDir bool, variables map[string]string, policyReport bool) ([]*response.EngineResponse, *response.EngineResponse, bool, bool, error) {
|
2021-02-02 18:43:19 +05:30
|
|
|
|
|
|
|
responseError := false
|
|
|
|
rcError := false
|
|
|
|
engineResponses := make([]*response.EngineResponse, 0)
|
|
|
|
|
|
|
|
resPath := fmt.Sprintf("%s/%s/%s", resource.GetNamespace(), resource.GetKind(), resource.GetName())
|
|
|
|
log.Log.V(3).Info("applying policy on resource", "policy", policy.Name, "resource", resPath)
|
|
|
|
|
|
|
|
ctx := context.NewContext()
|
|
|
|
for key, value := range variables {
|
|
|
|
startString := ""
|
|
|
|
endString := ""
|
|
|
|
for _, k := range strings.Split(key, ".") {
|
|
|
|
startString += fmt.Sprintf(`{"%s":`, k)
|
|
|
|
endString += `}`
|
|
|
|
}
|
|
|
|
|
|
|
|
midString := fmt.Sprintf(`"%s"`, value)
|
|
|
|
finalString := startString + midString + endString
|
|
|
|
var jsonData = []byte(finalString)
|
|
|
|
ctx.AddJSON(jsonData)
|
|
|
|
}
|
|
|
|
|
|
|
|
mutateResponse := engine.Mutate(&engine.PolicyContext{Policy: *policy, NewResource: *resource, JSONContext: ctx})
|
|
|
|
engineResponses = append(engineResponses, mutateResponse)
|
|
|
|
|
|
|
|
if !mutateResponse.IsSuccessful() {
|
|
|
|
fmt.Printf("Failed to apply mutate policy %s -> resource %s", policy.Name, resPath)
|
|
|
|
for i, r := range mutateResponse.PolicyResponse.Rules {
|
|
|
|
fmt.Printf("\n%d. %s", i+1, r.Message)
|
|
|
|
}
|
|
|
|
responseError = true
|
|
|
|
} else {
|
|
|
|
if len(mutateResponse.PolicyResponse.Rules) > 0 {
|
|
|
|
yamlEncodedResource, err := yamlv2.Marshal(mutateResponse.PatchedResource.Object)
|
|
|
|
if err != nil {
|
|
|
|
rcError = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if mutateLogPath == "" {
|
|
|
|
mutatedResource := string(yamlEncodedResource)
|
|
|
|
if len(strings.TrimSpace(mutatedResource)) > 0 {
|
|
|
|
fmt.Printf("\nmutate policy %s applied to %s:", policy.Name, resPath)
|
|
|
|
fmt.Printf("\n" + mutatedResource)
|
|
|
|
fmt.Printf("\n")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
err := PrintMutatedOutput(mutateLogPath, mutateLogPathIsDir, string(yamlEncodedResource), resource.GetName()+"-mutated")
|
|
|
|
if err != nil {
|
|
|
|
return engineResponses, &response.EngineResponse{}, responseError, rcError, sanitizederror.NewWithError("failed to print mutated result", err)
|
|
|
|
}
|
|
|
|
fmt.Printf("\n\nMutation:\nMutation has been applied successfully. Check the files.")
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if resource.GetKind() == "Pod" && len(resource.GetOwnerReferences()) > 0 {
|
|
|
|
if policy.HasAutoGenAnnotation() {
|
|
|
|
if _, ok := policy.GetAnnotations()[engine.PodControllersAnnotation]; ok {
|
|
|
|
delete(policy.Annotations, engine.PodControllersAnnotation)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
policyCtx := &engine.PolicyContext{Policy: *policy, NewResource: mutateResponse.PatchedResource, JSONContext: ctx}
|
|
|
|
validateResponse := engine.Validate(policyCtx)
|
|
|
|
if !policyReport {
|
|
|
|
if !validateResponse.IsSuccessful() {
|
|
|
|
fmt.Printf("\npolicy %s -> resource %s failed: \n", policy.Name, resPath)
|
|
|
|
for i, r := range validateResponse.PolicyResponse.Rules {
|
|
|
|
if !r.Success {
|
|
|
|
fmt.Printf("%d. %s: %s \n", i+1, r.Name, r.Message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
responseError = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var policyHasGenerate bool
|
|
|
|
for _, rule := range policy.Spec.Rules {
|
|
|
|
if rule.HasGenerate() {
|
|
|
|
policyHasGenerate = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if policyHasGenerate {
|
2021-02-17 02:18:04 +05:30
|
|
|
policyContext := &engine.PolicyContext{
|
|
|
|
NewResource: *resource,
|
|
|
|
Policy: *policy,
|
|
|
|
ExcludeGroupRole: []string{},
|
|
|
|
ExcludeResourceFunc: func(s1, s2, s3 string) bool {
|
|
|
|
return false
|
|
|
|
},
|
|
|
|
JSONContext: context.NewContext(),
|
|
|
|
}
|
|
|
|
generateResponse := engine.Generate(policyContext)
|
2021-02-02 18:43:19 +05:30
|
|
|
engineResponses = append(engineResponses, generateResponse)
|
|
|
|
if len(generateResponse.PolicyResponse.Rules) > 0 {
|
|
|
|
log.Log.V(3).Info("generate resource is valid", "policy", policy.Name, "resource", resPath)
|
|
|
|
} else {
|
|
|
|
fmt.Printf("generate policy %s resource %s is invalid \n", policy.Name, resPath)
|
|
|
|
for i, r := range generateResponse.PolicyResponse.Rules {
|
|
|
|
fmt.Printf("%d. %s \b", i+1, r.Message)
|
|
|
|
}
|
|
|
|
|
|
|
|
responseError = true
|
|
|
|
}
|
|
|
|
}
|
2021-02-07 20:26:56 -08:00
|
|
|
|
2021-02-02 18:43:19 +05:30
|
|
|
return engineResponses, validateResponse, responseError, rcError, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PrintMutatedOutput - function to print output in provided file or directory
|
|
|
|
func PrintMutatedOutput(mutateLogPath string, mutateLogPathIsDir bool, yaml string, fileName string) error {
|
|
|
|
var f *os.File
|
|
|
|
var err error
|
|
|
|
yaml = yaml + ("\n---\n\n")
|
|
|
|
|
|
|
|
if !mutateLogPathIsDir {
|
|
|
|
f, err = os.OpenFile(mutateLogPath, os.O_APPEND|os.O_WRONLY, 0644)
|
|
|
|
} else {
|
|
|
|
f, err = os.OpenFile(mutateLogPath+"/"+fileName+".yaml", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := f.Write([]byte(yaml)); err != nil {
|
|
|
|
f.Close()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := f.Close(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPoliciesFromPaths - get policies according to the resource path
|
|
|
|
func GetPoliciesFromPaths(fs billy.Filesystem, dirPath []string, isGit bool) (policies []*v1.ClusterPolicy, err error) {
|
|
|
|
var errors []error
|
|
|
|
if isGit {
|
|
|
|
for _, pp := range dirPath {
|
|
|
|
filep, err := fs.Open(pp)
|
|
|
|
bytes, err := ioutil.ReadAll(filep)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error: failed to read file %s: %v", filep.Name(), err.Error())
|
|
|
|
}
|
|
|
|
policyBytes, err := yaml.ToJSON(bytes)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("failed to convert to JSON: %v", err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
policiesFromFile, errFromFile := ut.GetPolicy(policyBytes)
|
|
|
|
if errFromFile != nil {
|
|
|
|
err := fmt.Errorf("failed to process : %v", errFromFile.Error())
|
|
|
|
errors = append(errors, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
policies = append(policies, policiesFromFile...)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if len(dirPath) > 0 && dirPath[0] == "-" {
|
|
|
|
if IsInputFromPipe() {
|
|
|
|
policyStr := ""
|
|
|
|
scanner := bufio.NewScanner(os.Stdin)
|
|
|
|
for scanner.Scan() {
|
|
|
|
policyStr = policyStr + scanner.Text() + "\n"
|
|
|
|
}
|
|
|
|
yamlBytes := []byte(policyStr)
|
|
|
|
policies, err = ut.GetPolicy(yamlBytes)
|
|
|
|
if err != nil {
|
|
|
|
return nil, sanitizederror.NewWithError("failed to extract the resources", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
var errors []error
|
|
|
|
policies, errors = GetPolicies(dirPath)
|
|
|
|
if len(policies) == 0 {
|
|
|
|
if len(errors) > 0 {
|
|
|
|
return nil, sanitizederror.NewWithErrors("failed to read file", errors)
|
|
|
|
}
|
|
|
|
return nil, sanitizederror.New(fmt.Sprintf("no file found in paths %v", dirPath))
|
|
|
|
}
|
|
|
|
if len(errors) > 0 && log.Log.V(1).Enabled() {
|
|
|
|
fmt.Printf("ignoring errors: \n")
|
|
|
|
for _, e := range errors {
|
|
|
|
fmt.Printf(" %v \n", e.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-07 20:26:56 -08:00
|
|
|
}
|
2021-02-02 18:43:19 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetResourceAccordingToResourcePath - get resources according to the resource path
|
2021-02-07 20:26:56 -08:00
|
|
|
func GetResourceAccordingToResourcePath(fs billy.Filesystem, resourcePaths []string,
|
2021-02-02 18:43:19 +05:30
|
|
|
cluster bool, policies []*v1.ClusterPolicy, dClient *client.Client, namespace string, policyReport bool, isGit bool) (resources []*unstructured.Unstructured, err error) {
|
|
|
|
if isGit {
|
|
|
|
resources, err = GetResourcesWithTest(fs, policies, resourcePaths, isGit)
|
|
|
|
if err != nil {
|
|
|
|
return nil, sanitizederror.NewWithError("failed to extract the resources", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if len(resourcePaths) > 0 && resourcePaths[0] == "-" {
|
|
|
|
if IsInputFromPipe() {
|
|
|
|
resourceStr := ""
|
|
|
|
scanner := bufio.NewScanner(os.Stdin)
|
|
|
|
for scanner.Scan() {
|
|
|
|
resourceStr = resourceStr + scanner.Text() + "\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
yamlBytes := []byte(resourceStr)
|
|
|
|
resources, err = GetResource(yamlBytes)
|
|
|
|
if err != nil {
|
|
|
|
return nil, sanitizederror.NewWithError("failed to extract the resources", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (len(resourcePaths) > 0 && resourcePaths[0] != "-") || len(resourcePaths) < 0 || cluster {
|
|
|
|
resources, err = GetResources(policies, resourcePaths, dClient, cluster, namespace, policyReport)
|
|
|
|
if err != nil {
|
|
|
|
return resources, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return resources, err
|
2021-02-07 20:26:56 -08:00
|
|
|
}
|