mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-12 10:49:07 +00:00
234 lines
7.6 KiB
Go
234 lines
7.6 KiB
Go
// Copyright © 2017 Aqua Security Software Ltd. <info@aquasec.com>
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/aquasecurity/kube-bench/check"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
var (
|
|
apiserverBin string
|
|
apiserverConf string
|
|
schedulerBin string
|
|
schedulerConf string
|
|
controllerManagerBin string
|
|
controllerManagerConf string
|
|
config string
|
|
etcdBin string
|
|
etcdConf string
|
|
flanneldBin string
|
|
flanneldConf string
|
|
kubeletBin string
|
|
kubeletConf string
|
|
proxyBin string
|
|
proxyConf string
|
|
fedApiserverBin string
|
|
fedControllerManagerBin string
|
|
|
|
errmsgs string
|
|
|
|
// TODO: Consider specifying this in config file.
|
|
kubeVersion = "1.7.0"
|
|
)
|
|
|
|
func runChecks(t check.NodeType) {
|
|
var summary check.Summary
|
|
var file string
|
|
|
|
// Master variables
|
|
apiserverBin = viper.GetString("installation." + installation + ".master.bin.apiserver")
|
|
apiserverConf = viper.GetString("installation." + installation + ".master.conf.apiserver")
|
|
schedulerBin = viper.GetString("installation." + installation + ".master.bin.scheduler")
|
|
schedulerConf = viper.GetString("installation." + installation + ".master.conf.scheduler")
|
|
controllerManagerBin = viper.GetString("installation." + installation + ".master.bin.controller-manager")
|
|
controllerManagerConf = viper.GetString("installation." + installation + ".master.conf.controler-manager")
|
|
config = viper.GetString("installation." + installation + ".config")
|
|
|
|
etcdBin = viper.GetString("etcd.bin")
|
|
etcdConf = viper.GetString("etcd.conf")
|
|
flanneldBin = viper.GetString("flanneld.bin")
|
|
flanneldConf = viper.GetString("flanneld.conf")
|
|
|
|
// Node variables
|
|
kubeletBin = viper.GetString("installation." + installation + ".node.bin.kubelet")
|
|
kubeletConf = viper.GetString("installation." + installation + ".node.conf.kubelet")
|
|
proxyBin = viper.GetString("installation." + installation + ".node.bin.proxy")
|
|
proxyConf = viper.GetString("installation." + installation + ".node.conf.proxy")
|
|
|
|
// Federated
|
|
fedApiserverBin = viper.GetString("installation." + installation + ".federated.bin.apiserver")
|
|
fedControllerManagerBin = viper.GetString("installation." + installation + ".federated.bin.controller-manager")
|
|
|
|
// Run kubernetes installation validation checks.
|
|
warns := verifyNodeType(t)
|
|
|
|
switch t {
|
|
case check.MASTER:
|
|
file = masterFile
|
|
case check.NODE:
|
|
file = nodeFile
|
|
case check.FEDERATED:
|
|
file = federatedFile
|
|
}
|
|
|
|
in, err := ioutil.ReadFile(file)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "error opening %s controls file: %v\n", t, err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
// Variable substitutions. Replace all occurrences of variables in controls files.
|
|
s := strings.Replace(string(in), "$apiserverbin", apiserverBin, -1)
|
|
s = strings.Replace(s, "$apiserverconf", apiserverConf, -1)
|
|
s = strings.Replace(s, "$schedulerbin", schedulerBin, -1)
|
|
s = strings.Replace(s, "$schedulerconf", schedulerConf, -1)
|
|
s = strings.Replace(s, "$controllermanagerbin", controllerManagerBin, -1)
|
|
s = strings.Replace(s, "$controllermanagerconf", controllerManagerConf, -1)
|
|
s = strings.Replace(s, "$controllermanagerconf", controllerManagerConf, -1)
|
|
s = strings.Replace(s, "$config", config, -1)
|
|
|
|
s = strings.Replace(s, "$etcdbin", etcdBin, -1)
|
|
s = strings.Replace(s, "$etcdconf", etcdConf, -1)
|
|
s = strings.Replace(s, "$flanneldbin", flanneldBin, -1)
|
|
s = strings.Replace(s, "$flanneldconf", flanneldConf, -1)
|
|
|
|
s = strings.Replace(s, "$kubeletbin", kubeletBin, -1)
|
|
s = strings.Replace(s, "$kubeletconf", kubeletConf, -1)
|
|
s = strings.Replace(s, "$proxybin", proxyBin, -1)
|
|
s = strings.Replace(s, "$proxyconf", proxyConf, -1)
|
|
|
|
s = strings.Replace(s, "$fedapiserverbin", fedApiserverBin, -1)
|
|
s = strings.Replace(s, "$fedcontrollermanagerbin", fedControllerManagerBin, -1)
|
|
|
|
controls, err := check.NewControls(t, []byte(s))
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "error setting up %s controls: %v\n", t, err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
if groupList != "" && checkList == "" {
|
|
ids := cleanIDs(groupList)
|
|
summary = controls.RunGroup(verbose, ids...)
|
|
} else if checkList != "" && groupList == "" {
|
|
ids := cleanIDs(checkList)
|
|
summary = controls.RunChecks(verbose, ids...)
|
|
} else if checkList != "" && groupList != "" {
|
|
fmt.Fprintf(os.Stderr, "group option and check option can't be used together\n")
|
|
os.Exit(1)
|
|
} else {
|
|
summary = controls.RunGroup(verbose)
|
|
}
|
|
|
|
// if we successfully ran some tests and it's json format, ignore the warnings
|
|
if (summary.Fail > 0 || summary.Warn > 0 || summary.Pass > 0) && jsonFmt {
|
|
out, err := controls.JSON()
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "failed to output in JSON format: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
fmt.Println(string(out))
|
|
} else {
|
|
prettyPrint(warns, controls, summary)
|
|
}
|
|
}
|
|
|
|
// verifyNodeType checks the executables and config files are as expected
|
|
// for the specified tests (master, node or federated).
|
|
func verifyNodeType(t check.NodeType) []string {
|
|
var w []string
|
|
// Always clear out error messages.
|
|
errmsgs = ""
|
|
|
|
switch t {
|
|
case check.MASTER:
|
|
w = append(w, verifyBin(apiserverBin, schedulerBin, controllerManagerBin)...)
|
|
w = append(w, verifyConf(apiserverConf, schedulerConf, controllerManagerConf)...)
|
|
w = append(w, verifyKubeVersion(apiserverBin)...)
|
|
case check.NODE:
|
|
w = append(w, verifyBin(kubeletBin, proxyBin)...)
|
|
w = append(w, verifyConf(kubeletConf, proxyConf)...)
|
|
w = append(w, verifyKubeVersion(kubeletBin)...)
|
|
case check.FEDERATED:
|
|
w = append(w, verifyBin(fedApiserverBin, fedControllerManagerBin)...)
|
|
w = append(w, verifyKubeVersion(fedApiserverBin)...)
|
|
}
|
|
|
|
if verbose {
|
|
fmt.Fprintf(os.Stderr, "%s\n", errmsgs)
|
|
}
|
|
|
|
return w
|
|
}
|
|
|
|
// colorPrint outputs the state in a specific colour, along with a message string
|
|
func colorPrint(state check.State, s string) {
|
|
colors[state].Printf("[%s] ", state)
|
|
fmt.Printf("%s", s)
|
|
}
|
|
|
|
// prettyPrint outputs the results to stdout in human-readable format
|
|
func prettyPrint(warnings []string, r *check.Controls, summary check.Summary) {
|
|
colorPrint(check.INFO, fmt.Sprintf("Using config file: %s\n", viper.ConfigFileUsed()))
|
|
|
|
for _, w := range warnings {
|
|
colorPrint(check.WARN, w)
|
|
}
|
|
|
|
colorPrint(check.INFO, fmt.Sprintf("%s %s\n", r.ID, r.Text))
|
|
for _, g := range r.Groups {
|
|
colorPrint(check.INFO, fmt.Sprintf("%s %s\n", g.ID, g.Text))
|
|
for _, c := range g.Checks {
|
|
colorPrint(c.State, fmt.Sprintf("%s %s\n", c.ID, c.Text))
|
|
}
|
|
}
|
|
|
|
fmt.Println()
|
|
|
|
// Print remediations.
|
|
if summary.Fail > 0 || summary.Warn > 0 {
|
|
colors[check.WARN].Printf("== Remediations ==\n")
|
|
for _, g := range r.Groups {
|
|
for _, c := range g.Checks {
|
|
if c.State != check.PASS {
|
|
fmt.Printf("%s %s\n", c.ID, c.Remediation)
|
|
}
|
|
}
|
|
}
|
|
fmt.Println()
|
|
}
|
|
|
|
// Print summary setting output color to highest severity.
|
|
var res check.State
|
|
if summary.Fail > 0 {
|
|
res = check.FAIL
|
|
} else if summary.Warn > 0 {
|
|
res = check.WARN
|
|
} else {
|
|
res = check.PASS
|
|
}
|
|
|
|
colors[res].Printf("== Summary ==\n")
|
|
fmt.Printf("%d checks PASS\n%d checks FAIL\n%d checks WARN\n",
|
|
summary.Pass, summary.Fail, summary.Warn,
|
|
)
|
|
}
|