2017-07-13 00:24:09 +00:00
package cmd
import (
"fmt"
"os"
"os/exec"
2018-06-29 11:19:34 +00:00
"path/filepath"
2017-08-11 16:59:57 +00:00
"regexp"
2018-06-29 11:19:34 +00:00
"strconv"
2017-07-13 00:24:09 +00:00
"strings"
"github.com/aquasecurity/kube-bench/check"
"github.com/fatih/color"
2017-07-25 00:34:07 +00:00
"github.com/golang/glog"
2017-08-30 17:01:53 +00:00
"github.com/spf13/viper"
2017-07-13 00:24:09 +00:00
)
var (
// Print colors
colors = map [ check . State ] * color . Color {
check . PASS : color . New ( color . FgGreen ) ,
check . FAIL : color . New ( color . FgRed ) ,
check . WARN : color . New ( color . FgYellow ) ,
check . INFO : color . New ( color . FgBlue ) ,
}
)
2017-08-30 16:51:28 +00:00
var psFunc func ( string ) string
var statFunc func ( string ) ( os . FileInfo , error )
2019-11-05 15:44:57 +00:00
var getBinariesFunc func ( * viper . Viper , check . NodeType ) ( map [ string ] string , error )
2019-07-13 06:48:24 +00:00
var TypeMap = map [ string ] [ ] string {
2019-10-14 15:15:08 +00:00
"ca" : [ ] string { "cafile" , "defaultcafile" } ,
2019-07-13 06:48:24 +00:00
"kubeconfig" : [ ] string { "kubeconfig" , "defaultkubeconfig" } ,
2019-10-14 15:15:08 +00:00
"service" : [ ] string { "svc" , "defaultsvc" } ,
"config" : [ ] string { "confs" , "defaultconf" } ,
2019-07-13 06:48:24 +00:00
}
2017-08-30 16:51:28 +00:00
func init ( ) {
psFunc = ps
statFunc = os . Stat
2019-10-14 15:15:08 +00:00
getBinariesFunc = getBinaries
2017-08-30 16:51:28 +00:00
}
2017-07-25 00:34:07 +00:00
func exitWithError ( err error ) {
fmt . Fprintf ( os . Stderr , "\n%v\n" , err )
2019-07-01 08:49:46 +00:00
// flush before exit non-zero
glog . Flush ( )
2017-07-25 00:34:07 +00:00
os . Exit ( 1 )
}
2019-04-29 10:17:06 +00:00
func cleanIDs ( list string ) map [ string ] bool {
2017-07-13 00:24:09 +00:00
list = strings . Trim ( list , "," )
ids := strings . Split ( list , "," )
2019-04-29 10:17:06 +00:00
set := make ( map [ string ] bool )
2017-07-13 00:24:09 +00:00
for _ , id := range ids {
id = strings . Trim ( id , " " )
2019-04-29 10:17:06 +00:00
set [ id ] = true
2017-07-13 00:24:09 +00:00
}
2019-04-29 10:17:06 +00:00
return set
2017-07-13 00:24:09 +00:00
}
2017-08-15 15:44:40 +00:00
// ps execs out to the ps command; it's separated into a function so we can write tests
func ps ( proc string ) string {
2019-07-08 21:29:37 +00:00
// TODO: truncate proc to 15 chars
// See https://github.com/aquasecurity/kube-bench/issues/328#issuecomment-506813344
2019-11-12 21:47:42 +00:00
glog . V ( 2 ) . Info ( fmt . Sprintf ( "ps - proc: %q" , proc ) )
2019-11-01 13:10:52 +00:00
cmd := exec . Command ( "/bin/ps" , "-C" , proc , "-o" , "cmd" , "--no-headers" )
2017-07-13 00:24:09 +00:00
out , err := cmd . Output ( )
2017-07-25 00:34:07 +00:00
if err != nil {
2020-08-10 09:12:57 +00:00
glog . V ( 2 ) . Info ( fmt . Errorf ( "%s: %s" , cmd . Args , err ) )
2017-07-25 00:34:07 +00:00
}
2020-08-30 07:16:21 +00:00
2019-11-12 21:47:42 +00:00
glog . V ( 2 ) . Info ( fmt . Sprintf ( "ps - returning: %q" , string ( out ) ) )
2017-08-15 15:44:40 +00:00
return string ( out )
}
2017-07-13 00:24:09 +00:00
2019-03-07 17:02:43 +00:00
// getBinaries finds which of the set of candidate executables are running.
// It returns an error if one mandatory executable is not running.
2019-11-05 15:44:57 +00:00
func getBinaries ( v * viper . Viper , nodetype check . NodeType ) ( map [ string ] string , error ) {
2017-08-30 17:01:53 +00:00
binmap := make ( map [ string ] string )
2017-08-31 13:45:16 +00:00
for _ , component := range v . GetStringSlice ( "components" ) {
s := v . Sub ( component )
if s == nil {
continue
2017-08-30 17:01:53 +00:00
}
2017-08-31 13:45:16 +00:00
optional := s . GetBool ( "optional" )
bins := s . GetStringSlice ( "bins" )
if len ( bins ) > 0 {
bin , err := findExecutable ( bins )
if err != nil && ! optional {
2019-11-05 15:44:57 +00:00
glog . Warning ( buildComponentMissingErrorMessage ( nodetype , component , bins ) )
return nil , fmt . Errorf ( "unable to detect running programs for component %q" , component )
2017-08-31 13:45:16 +00:00
}
// Default the executable name that we'll substitute to the name of the component
if bin == "" {
bin = component
glog . V ( 2 ) . Info ( fmt . Sprintf ( "Component %s not running" , component ) )
} else {
glog . V ( 2 ) . Info ( fmt . Sprintf ( "Component %s uses running binary %s" , component , bin ) )
}
binmap [ component ] = bin
}
2017-08-30 17:01:53 +00:00
}
2017-08-31 13:45:16 +00:00
2019-03-07 17:02:43 +00:00
return binmap , nil
2017-08-30 17:01:53 +00:00
}
2019-12-02 15:40:44 +00:00
// getConfigFilePath locates the config files we should be using for CIS version
2019-11-05 21:31:27 +00:00
func getConfigFilePath ( benchmarkVersion string , filename string ) ( path string , err error ) {
glog . V ( 2 ) . Info ( fmt . Sprintf ( "Looking for config specific CIS version %q" , benchmarkVersion ) )
2018-07-26 11:03:09 +00:00
2019-11-05 21:31:27 +00:00
path = filepath . Join ( cfgDir , benchmarkVersion )
file := filepath . Join ( path , string ( filename ) )
2019-12-02 15:40:44 +00:00
glog . V ( 2 ) . Info ( fmt . Sprintf ( "Looking for file: %s" , file ) )
2018-06-29 11:19:34 +00:00
2019-12-02 15:40:44 +00:00
if _ , err := os . Stat ( file ) ; err != nil {
2019-11-05 21:31:27 +00:00
glog . V ( 2 ) . Infof ( "error accessing config file: %q error: %v\n" , file , err )
return "" , fmt . Errorf ( "no test files found <= benchmark version: %s" , benchmarkVersion )
2018-06-29 11:19:34 +00:00
}
2019-12-02 15:40:44 +00:00
2019-11-05 21:31:27 +00:00
return path , nil
2018-06-29 11:19:34 +00:00
}
2019-12-02 15:40:44 +00:00
// getYamlFilesFromDir returns a list of yaml files in the specified directory, ignoring config.yaml
func getYamlFilesFromDir ( path string ) ( names [ ] string , err error ) {
err = filepath . Walk ( path , func ( path string , info os . FileInfo , err error ) error {
if err != nil {
return err
}
_ , name := filepath . Split ( path )
if name != "" && name != "config.yaml" && filepath . Ext ( name ) == ".yaml" {
names = append ( names , path )
}
return nil
} )
return names , err
}
2018-06-29 11:19:34 +00:00
// decrementVersion decrements the version number
// We want to decrement individually even through versions where we don't supply test files
// just in case someone wants to specify their own test files for that version
func decrementVersion ( version string ) string {
split := strings . Split ( version , "." )
2019-11-05 21:31:27 +00:00
if len ( split ) < 2 {
return ""
}
2018-06-29 11:19:34 +00:00
minor , err := strconv . Atoi ( split [ 1 ] )
if err != nil {
return ""
}
if minor <= 1 {
return ""
}
split [ 1 ] = strconv . Itoa ( minor - 1 )
return strings . Join ( split , "." )
}
2019-07-13 06:48:24 +00:00
// getFiles finds which of the set of candidate files exist
func getFiles ( v * viper . Viper , fileType string ) map [ string ] string {
filemap := make ( map [ string ] string )
mainOpt := TypeMap [ fileType ] [ 0 ]
defaultOpt := TypeMap [ fileType ] [ 1 ]
2018-10-23 02:26:38 +00:00
for _ , component := range v . GetStringSlice ( "components" ) {
s := v . Sub ( component )
if s == nil {
continue
}
2019-07-13 06:48:24 +00:00
// See if any of the candidate files exist
file := findConfigFile ( s . GetStringSlice ( mainOpt ) )
if file == "" {
if s . IsSet ( defaultOpt ) {
file = s . GetString ( defaultOpt )
glog . V ( 2 ) . Info ( fmt . Sprintf ( "Using default %s file name '%s' for component %s" , fileType , file , component ) )
2018-10-23 02:26:38 +00:00
} else {
2019-07-13 06:48:24 +00:00
// Default the file name that we'll substitute to the name of the component
glog . V ( 2 ) . Info ( fmt . Sprintf ( "Missing %s file for %s" , fileType , component ) )
file = component
2018-10-23 02:26:38 +00:00
}
} else {
2019-07-13 06:48:24 +00:00
glog . V ( 2 ) . Info ( fmt . Sprintf ( "Component %s uses %s file '%s'" , component , fileType , file ) )
2018-10-23 02:26:38 +00:00
}
2019-07-13 06:48:24 +00:00
filemap [ component ] = file
2018-10-23 02:26:38 +00:00
}
2019-07-13 06:48:24 +00:00
return filemap
2019-07-10 09:43:15 +00:00
}
2017-08-15 15:44:40 +00:00
// verifyBin checks that the binary specified is running
2017-08-30 16:51:28 +00:00
func verifyBin ( bin string ) bool {
2017-07-13 00:24:09 +00:00
2017-08-15 15:44:40 +00:00
// Strip any quotes
bin = strings . Trim ( bin , "'\"" )
// bin could consist of more than one word
// We'll search for running processes with the first word, and then check the whole
// proc as supplied is included in the results
proc := strings . Fields ( bin ) [ 0 ]
out := psFunc ( proc )
2017-08-31 15:01:31 +00:00
// There could be multiple lines in the ps output
// The binary needs to be the first word in the ps output, except that it could be preceded by a path
// e.g. /usr/bin/kubelet is a match for kubelet
// but apiserver is not a match for kube-apiserver
reFirstWord := regexp . MustCompile ( ` ^(\S*\/)* ` + bin )
lines := strings . Split ( out , "\n" )
for _ , l := range lines {
2020-08-30 07:16:21 +00:00
glog . V ( 3 ) . Info ( fmt . Sprintf ( "reFirstWord.Match(%s)" , l ) )
2017-08-31 15:01:31 +00:00
if reFirstWord . Match ( [ ] byte ( l ) ) {
2017-08-30 16:48:12 +00:00
return true
}
}
return false
2017-07-13 00:24:09 +00:00
}
2017-08-30 17:01:53 +00:00
// fundConfigFile looks through a list of possible config files and finds the first one that exists
func findConfigFile ( candidates [ ] string ) string {
for _ , c := range candidates {
_ , err := statFunc ( c )
if err == nil {
return c
}
if ! os . IsNotExist ( err ) {
exitWithError ( fmt . Errorf ( "error looking for file %s: %v" , c , err ) )
}
}
return ""
}
2017-08-30 11:07:46 +00:00
// findExecutable looks through a list of possible executable names and finds the first one that's running
2017-08-30 16:51:28 +00:00
func findExecutable ( candidates [ ] string ) ( string , error ) {
2017-08-30 11:07:46 +00:00
for _ , c := range candidates {
2017-08-30 16:51:28 +00:00
if verifyBin ( c ) {
2017-08-30 11:07:46 +00:00
return c , nil
}
2018-01-11 18:01:58 +00:00
glog . V ( 1 ) . Info ( fmt . Sprintf ( "executable '%s' not running" , c ) )
2017-08-30 11:07:46 +00:00
}
return "" , fmt . Errorf ( "no candidates running" )
2017-07-13 00:24:09 +00:00
}
2017-08-15 16:00:35 +00:00
func multiWordReplace ( s string , subname string , sub string ) string {
f := strings . Fields ( sub )
if len ( f ) > 1 {
sub = "'" + sub + "'"
}
return strings . Replace ( s , subname , sub , - 1 )
}
2017-09-17 14:35:25 +00:00
2019-11-05 15:44:57 +00:00
const missingKubectlKubeletMessage = `
Unable to find the programs kubectl or kubelet in the PATH .
These programs are used to determine which version of Kubernetes is running .
2020-08-04 15:04:02 +00:00
Make sure the / usr / local / mount - from - host / bin directory is mapped to the container ,
2019-11-05 15:44:57 +00:00
either in the job . yaml file , or Docker command .
For job . yaml :
...
- name : usr - bin
2020-02-12 17:18:44 +00:00
mountPath : / usr / local / mount - from - host / bin
2019-11-05 15:44:57 +00:00
...
For docker command :
2020-02-12 17:18:44 +00:00
docker - v $ ( which kubectl ) : / usr / local / mount - from - host / bin / kubectl ... .
2019-11-05 15:44:57 +00:00
Alternatively , you can specify the version with -- version
kube - bench -- version < VERSION > ...
`
2018-07-26 11:03:09 +00:00
func getKubeVersion ( ) ( string , error ) {
2019-11-12 21:47:42 +00:00
if k8sVer , err := getKubeVersionFromRESTAPI ( ) ; err == nil {
glog . V ( 2 ) . Info ( fmt . Sprintf ( "Kubernetes REST API Reported version: %s" , k8sVer ) )
return k8sVer , nil
}
2017-09-17 14:35:25 +00:00
// These executables might not be on the user's path.
_ , err := exec . LookPath ( "kubectl" )
2018-03-23 08:29:17 +00:00
2017-09-17 14:35:25 +00:00
if err != nil {
2018-03-23 08:29:17 +00:00
_ , err = exec . LookPath ( "kubelet" )
if err != nil {
2019-02-19 14:38:10 +00:00
// Search for the kubelet binary all over the filesystem and run the first match to get the kubernetes version
cmd := exec . Command ( "/bin/sh" , "-c" , "`find / -type f -executable -name kubelet 2>/dev/null | grep -m1 .` --version" )
out , err := cmd . CombinedOutput ( )
if err == nil {
return getVersionFromKubeletOutput ( string ( out ) ) , nil
}
2019-11-05 15:44:57 +00:00
glog . Warning ( missingKubectlKubeletMessage )
return "" , fmt . Errorf ( "unable to find the programs kubectl or kubelet in the PATH" )
2018-03-23 08:29:17 +00:00
}
2018-07-26 11:03:09 +00:00
return getKubeVersionFromKubelet ( ) , nil
2017-09-17 14:35:25 +00:00
}
2018-07-26 11:03:09 +00:00
return getKubeVersionFromKubectl ( ) , nil
2018-03-23 08:29:17 +00:00
}
func getKubeVersionFromKubectl ( ) string {
2017-11-03 12:59:35 +00:00
cmd := exec . Command ( "kubectl" , "version" , "--short" )
out , err := cmd . CombinedOutput ( )
2017-09-17 14:35:25 +00:00
if err != nil {
2020-08-10 09:12:57 +00:00
glog . V ( 2 ) . Info ( err )
2017-09-17 14:35:25 +00:00
}
2017-11-21 13:19:09 +00:00
return getVersionFromKubectlOutput ( string ( out ) )
}
2017-09-17 14:35:25 +00:00
2018-03-23 08:29:17 +00:00
func getKubeVersionFromKubelet ( ) string {
cmd := exec . Command ( "kubelet" , "--version" )
out , err := cmd . CombinedOutput ( )
2018-05-11 17:58:24 +00:00
2018-03-23 08:29:17 +00:00
if err != nil {
2020-08-10 09:12:57 +00:00
glog . V ( 2 ) . Info ( err )
2018-03-23 08:29:17 +00:00
}
return getVersionFromKubeletOutput ( string ( out ) )
}
2017-11-21 13:19:09 +00:00
func getVersionFromKubectlOutput ( s string ) string {
serverVersionRe := regexp . MustCompile ( ` Server Version: v(\d+.\d+) ` )
subs := serverVersionRe . FindStringSubmatch ( s )
if len ( subs ) < 2 {
2020-08-04 15:04:02 +00:00
if strings . Contains ( s , "The connection to the server" ) {
msg := fmt . Sprintf ( ` Warning: Kubernetes version was not auto-detected because kubectl could not connect to the Kubernetes server. This may be because the kubeconfig information is missing or has credentials that do not match the server. Assuming default version %s ` , defaultKubeVersion )
fmt . Fprintln ( os . Stderr , msg )
}
2019-02-17 17:34:00 +00:00
glog . V ( 1 ) . Info ( fmt . Sprintf ( "Unable to get Kubernetes version from kubectl, using default version: %s" , defaultKubeVersion ) )
2017-11-21 13:19:09 +00:00
return defaultKubeVersion
2017-11-03 12:59:35 +00:00
}
2017-11-21 13:19:09 +00:00
return subs [ 1 ]
2017-09-17 14:35:25 +00:00
}
2017-09-20 00:39:30 +00:00
2018-03-23 08:29:17 +00:00
func getVersionFromKubeletOutput ( s string ) string {
serverVersionRe := regexp . MustCompile ( ` Kubernetes v(\d+.\d+) ` )
subs := serverVersionRe . FindStringSubmatch ( s )
if len ( subs ) < 2 {
2019-02-17 17:34:00 +00:00
glog . V ( 1 ) . Info ( fmt . Sprintf ( "Unable to get Kubernetes version from kubelet, using default version: %s" , defaultKubeVersion ) )
2018-03-23 08:29:17 +00:00
return defaultKubeVersion
}
return subs [ 1 ]
}
2017-08-30 17:37:01 +00:00
func makeSubstitutions ( s string , ext string , m map [ string ] string ) string {
for k , v := range m {
subst := "$" + k + ext
2017-08-31 13:43:59 +00:00
if v == "" {
2019-10-24 21:05:13 +00:00
glog . V ( 2 ) . Info ( fmt . Sprintf ( "No substitution for '%s'\n" , subst ) )
2017-08-31 13:43:59 +00:00
continue
}
2018-06-29 11:19:00 +00:00
glog . V ( 2 ) . Info ( fmt . Sprintf ( "Substituting %s with '%s'\n" , subst , v ) )
2017-08-30 17:37:01 +00:00
s = multiWordReplace ( s , subst , v )
}
return s
}
2019-11-05 15:44:57 +00:00
2019-11-05 21:31:27 +00:00
func isEmpty ( str string ) bool {
2020-09-01 13:50:04 +00:00
return strings . TrimSpace ( str ) == ""
2019-11-05 21:31:27 +00:00
}
2019-11-05 15:44:57 +00:00
func buildComponentMissingErrorMessage ( nodetype check . NodeType , component string , bins [ ] string ) string {
errMessageTemplate := `
Unable to detect running programs for component % q
The following % q programs have been searched , but none of them have been found :
% s
These program names are provided in the config . yaml , section ' % s . % s . bins '
`
2019-12-05 20:55:44 +00:00
var componentRoleName , componentType string
switch nodetype {
2019-11-05 15:44:57 +00:00
2019-12-05 20:55:44 +00:00
case check . NODE :
2019-11-05 15:44:57 +00:00
componentRoleName = "worker node"
componentType = "node"
2019-12-05 20:55:44 +00:00
case check . ETCD :
componentRoleName = "etcd node"
componentType = "etcd"
default :
componentRoleName = "master node"
componentType = "master"
2019-11-05 15:44:57 +00:00
}
binList := ""
for _ , bin := range bins {
binList = fmt . Sprintf ( "%s\t- %s\n" , binList , bin )
}
return fmt . Sprintf ( errMessageTemplate , component , componentRoleName , binList , componentType , component )
}