mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-05 10:16:52 +00:00
371 lines
9.3 KiB
Go
371 lines
9.3 KiB
Go
package cautils
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"slices"
|
|
"strings"
|
|
|
|
"github.com/kubescape/go-logger"
|
|
"github.com/kubescape/go-logger/helpers"
|
|
"github.com/kubescape/k8s-interface/workloadinterface"
|
|
"github.com/kubescape/opa-utils/objectsenvelopes"
|
|
"github.com/kubescape/opa-utils/objectsenvelopes/localworkload"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
var (
|
|
YAML_PREFIX = []string{"yaml", "yml"}
|
|
JSON_PREFIX = []string{"json"}
|
|
)
|
|
|
|
type FileFormat string
|
|
|
|
const (
|
|
YAML_FILE_FORMAT FileFormat = "yaml"
|
|
JSON_FILE_FORMAT FileFormat = "json"
|
|
)
|
|
|
|
type Chart struct {
|
|
Name string
|
|
Path string
|
|
}
|
|
|
|
// LoadResourcesFromHelmCharts scans a given path (recursively) for helm charts, renders the templates and returns a map of workloads and a map of chart names
|
|
func LoadResourcesFromHelmCharts(ctx context.Context, basePath string) (map[string][]workloadinterface.IMetadata, map[string]Chart) {
|
|
directories, _ := listDirs(basePath)
|
|
helmDirectories := make([]string, 0)
|
|
for _, dir := range directories {
|
|
if ok, _ := IsHelmDirectory(dir); ok {
|
|
helmDirectories = append(helmDirectories, dir)
|
|
}
|
|
}
|
|
|
|
sourceToWorkloads := map[string][]workloadinterface.IMetadata{}
|
|
sourceToChart := make(map[string]Chart, 0)
|
|
for _, helmDir := range helmDirectories {
|
|
chart, err := NewHelmChart(helmDir)
|
|
if err == nil {
|
|
wls, errs := chart.GetWorkloadsWithDefaultValues()
|
|
if len(errs) > 0 {
|
|
logger.L().Ctx(ctx).Warning(fmt.Sprintf("Rendering of Helm chart template '%s', failed: %v", chart.GetName(), errs))
|
|
continue
|
|
}
|
|
chartName := chart.GetName()
|
|
for k, v := range wls {
|
|
sourceToWorkloads[k] = v
|
|
sourceToChart[k] = Chart{
|
|
Name: chartName,
|
|
Path: helmDir,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return sourceToWorkloads, sourceToChart
|
|
}
|
|
|
|
// If the contents at given path is a Kustomize Directory, LoadResourcesFromKustomizeDirectory will
|
|
// generate yaml files using "Kustomize" & renders a map of workloads from those yaml files
|
|
func LoadResourcesFromKustomizeDirectory(ctx context.Context, basePath string) (map[string][]workloadinterface.IMetadata, string) {
|
|
isKustomizeDirectory := isKustomizeDirectory(basePath)
|
|
isKustomizeFile := IsKustomizeFile(basePath)
|
|
if ok := isKustomizeDirectory || isKustomizeFile; !ok {
|
|
return nil, ""
|
|
}
|
|
|
|
sourceToWorkloads := map[string][]workloadinterface.IMetadata{}
|
|
kustomizeDirectory := NewKustomizeDirectory(basePath)
|
|
|
|
var newBasePath string
|
|
|
|
if isKustomizeFile {
|
|
newBasePath = filepath.Dir(basePath)
|
|
logger.L().Info("Kustomize File Detected, Scanning the rendered Kubernetes Objects...")
|
|
} else {
|
|
newBasePath = basePath
|
|
logger.L().Info("Kustomize Directory Detected, Scanning the rendered Kubernetes Objects...")
|
|
}
|
|
|
|
wls, errs := kustomizeDirectory.GetWorkloads(newBasePath)
|
|
kustomizeDirectoryName := getKustomizeDirectoryName(newBasePath)
|
|
|
|
if len(errs) > 0 {
|
|
logger.L().Ctx(ctx).Warning(fmt.Sprintf("Rendering yaml from Kustomize failed: %v", errs))
|
|
}
|
|
|
|
for k, v := range wls {
|
|
sourceToWorkloads[k] = v
|
|
}
|
|
return sourceToWorkloads, kustomizeDirectoryName
|
|
}
|
|
|
|
func LoadResourcesFromFiles(ctx context.Context, input, rootPath string) map[string][]workloadinterface.IMetadata {
|
|
files, errs := listFiles(input)
|
|
if len(errs) > 0 {
|
|
logger.L().Ctx(ctx).Warning(fmt.Sprintf("%v", errs))
|
|
}
|
|
if len(files) == 0 {
|
|
logger.L().Ctx(ctx).Error("no files found to scan", helpers.String("input", input))
|
|
return nil
|
|
}
|
|
|
|
workloads, errs := loadFiles(rootPath, files)
|
|
if len(errs) > 0 {
|
|
logger.L().Ctx(ctx).Warning(fmt.Sprintf("%v", errs))
|
|
}
|
|
|
|
return workloads
|
|
}
|
|
|
|
func loadFiles(rootPath string, filePaths []string) (map[string][]workloadinterface.IMetadata, []error) {
|
|
workloads := make(map[string][]workloadinterface.IMetadata, 0)
|
|
errs := []error{}
|
|
for i := range filePaths {
|
|
f, err := loadFile(filePaths[i])
|
|
if err != nil {
|
|
errs = append(errs, err)
|
|
continue
|
|
}
|
|
if len(f) == 0 {
|
|
continue // empty file
|
|
}
|
|
|
|
w, e := ReadFile(f, getFileFormat(filePaths[i]))
|
|
if e != nil {
|
|
logger.L().Debug("failed to read file", helpers.String("file", filePaths[i]), helpers.Error(e))
|
|
}
|
|
if len(w) != 0 {
|
|
path := filePaths[i]
|
|
if _, ok := workloads[path]; !ok {
|
|
workloads[path] = []workloadinterface.IMetadata{}
|
|
}
|
|
wSlice := workloads[path]
|
|
for j := range w {
|
|
lw := localworkload.NewLocalWorkload(w[j].GetObject())
|
|
if relPath, err := filepath.Rel(rootPath, path); err == nil {
|
|
lw.SetPath(fmt.Sprintf("%s:%d", relPath, j))
|
|
} else {
|
|
lw.SetPath(fmt.Sprintf("%s:%d", path, j))
|
|
}
|
|
wSlice = append(wSlice, lw)
|
|
}
|
|
workloads[path] = wSlice
|
|
}
|
|
}
|
|
return workloads, errs
|
|
}
|
|
|
|
func loadFile(filePath string) ([]byte, error) {
|
|
return os.ReadFile(filePath)
|
|
}
|
|
func ReadFile(fileContent []byte, fileFormat FileFormat) ([]workloadinterface.IMetadata, error) {
|
|
|
|
switch fileFormat {
|
|
case YAML_FILE_FORMAT:
|
|
return readYamlFile(fileContent)
|
|
case JSON_FILE_FORMAT:
|
|
return readJsonFile(fileContent)
|
|
default:
|
|
return nil, nil
|
|
}
|
|
}
|
|
|
|
// listFiles returns the list of absolute paths, full file path and list of errors. The list of abs paths and full path have the same length
|
|
func listFiles(pattern string) ([]string, []error) {
|
|
return listFilesOrDirectories(pattern, false)
|
|
}
|
|
|
|
// listDirs returns the list of absolute paths, full directories path and list of errors. The list of abs paths and full path have the same length
|
|
func listDirs(pattern string) ([]string, []error) {
|
|
return listFilesOrDirectories(pattern, true)
|
|
}
|
|
|
|
func listFilesOrDirectories(pattern string, onlyDirectories bool) ([]string, []error) {
|
|
var paths []string
|
|
errs := []error{}
|
|
|
|
if !filepath.IsAbs(pattern) {
|
|
o, _ := os.Getwd()
|
|
pattern = filepath.Join(o, pattern)
|
|
}
|
|
|
|
if !onlyDirectories && isFile(pattern) {
|
|
paths = append(paths, pattern)
|
|
return paths, errs
|
|
}
|
|
|
|
root, shouldMatch := filepath.Split(pattern)
|
|
|
|
if isDir(pattern) {
|
|
root = pattern
|
|
shouldMatch = "*"
|
|
}
|
|
if shouldMatch == "" {
|
|
shouldMatch = "*"
|
|
}
|
|
|
|
f, err := glob(root, shouldMatch, onlyDirectories)
|
|
if err != nil {
|
|
errs = append(errs, err)
|
|
} else {
|
|
paths = append(paths, f...)
|
|
}
|
|
|
|
return paths, errs
|
|
}
|
|
|
|
func readYamlFile(yamlFile []byte) ([]workloadinterface.IMetadata, error) {
|
|
defer recover()
|
|
|
|
r := bytes.NewReader(yamlFile)
|
|
dec := yaml.NewDecoder(r)
|
|
yamlObjs := []workloadinterface.IMetadata{}
|
|
|
|
var t interface{}
|
|
for dec.Decode(&t) == nil {
|
|
j := convertYamlToJson(t)
|
|
if j == nil {
|
|
continue
|
|
}
|
|
if obj, ok := j.(map[string]interface{}); ok {
|
|
if o := objectsenvelopes.NewObject(obj); o != nil {
|
|
if o.GetObjectType() == workloadinterface.TypeListWorkloads {
|
|
if list := workloadinterface.NewListWorkloadsObj(o.GetObject()); list != nil {
|
|
yamlObjs = append(yamlObjs, list.GetItems()...)
|
|
}
|
|
} else {
|
|
yamlObjs = append(yamlObjs, o)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return yamlObjs, nil
|
|
}
|
|
|
|
func readJsonFile(jsonFile []byte) ([]workloadinterface.IMetadata, error) {
|
|
workloads := []workloadinterface.IMetadata{}
|
|
var jsonObj interface{}
|
|
if err := json.Unmarshal(jsonFile, &jsonObj); err != nil {
|
|
return workloads, err
|
|
}
|
|
|
|
convertJsonToWorkload(jsonObj, &workloads)
|
|
|
|
return workloads, nil
|
|
}
|
|
func convertJsonToWorkload(jsonObj interface{}, workloads *[]workloadinterface.IMetadata) {
|
|
|
|
switch x := jsonObj.(type) {
|
|
case map[string]interface{}:
|
|
if o := objectsenvelopes.NewObject(x); o != nil {
|
|
(*workloads) = append(*workloads, o)
|
|
}
|
|
case []interface{}:
|
|
for i := range x {
|
|
convertJsonToWorkload(x[i], workloads)
|
|
}
|
|
}
|
|
}
|
|
func convertYamlToJson(i interface{}) interface{} {
|
|
switch x := i.(type) {
|
|
case map[interface{}]interface{}:
|
|
m2 := map[string]interface{}{}
|
|
for k, v := range x {
|
|
if s, ok := k.(string); ok {
|
|
m2[s] = convertYamlToJson(v)
|
|
}
|
|
}
|
|
return m2
|
|
case []interface{}:
|
|
for i, v := range x {
|
|
x[i] = convertYamlToJson(v)
|
|
}
|
|
}
|
|
return i
|
|
}
|
|
|
|
func IsYaml(filePath string) bool {
|
|
return slices.Contains(YAML_PREFIX, strings.ReplaceAll(filepath.Ext(filePath), ".", ""))
|
|
}
|
|
|
|
func IsJson(filePath string) bool {
|
|
return slices.Contains(JSON_PREFIX, strings.ReplaceAll(filepath.Ext(filePath), ".", ""))
|
|
}
|
|
|
|
func glob(root, pattern string, onlyDirectories bool) ([]string, error) {
|
|
var matches []string
|
|
|
|
err := filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// listing only directories
|
|
if onlyDirectories {
|
|
if info.IsDir() {
|
|
if matched, err := filepath.Match(pattern, filepath.Base(path)); err != nil {
|
|
return err
|
|
} else if matched {
|
|
matches = append(matches, path)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// listing only files
|
|
if info.IsDir() {
|
|
return nil
|
|
}
|
|
fileFormat := getFileFormat(path)
|
|
if fileFormat != JSON_FILE_FORMAT && fileFormat != YAML_FILE_FORMAT {
|
|
return nil
|
|
}
|
|
if matched, err := filepath.Match(pattern, filepath.Base(path)); err != nil {
|
|
return err
|
|
} else if matched {
|
|
matches = append(matches, path)
|
|
}
|
|
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return matches, nil
|
|
}
|
|
|
|
// isFile checks if a given path is a file
|
|
func isFile(name string) bool {
|
|
if fi, err := os.Stat(name); err == nil {
|
|
if fi.Mode().IsRegular() {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// isDir checks if a given path is a directory
|
|
func isDir(name string) bool {
|
|
if info, err := os.Stat(name); err == nil {
|
|
if info.IsDir() {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func getFileFormat(filePath string) FileFormat {
|
|
if IsYaml(filePath) {
|
|
return YAML_FILE_FORMAT
|
|
} else if IsJson(filePath) {
|
|
return JSON_FILE_FORMAT
|
|
} else {
|
|
return FileFormat(filePath)
|
|
}
|
|
}
|