-
Notifications
You must be signed in to change notification settings - Fork 42
/
kube-psp-advisor.go
296 lines (229 loc) · 8.41 KB
/
kube-psp-advisor.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
package main
import (
"fmt"
"strings"
"github.com/sysdiglabs/kube-psp-advisor/comparator"
"io/ioutil"
"os"
log "github.com/sirupsen/logrus"
"path/filepath"
"github.com/spf13/cobra"
"github.com/sysdiglabs/kube-psp-advisor/advisor"
"github.com/sysdiglabs/kube-psp-advisor/generator"
"k8s.io/client-go/util/homedir"
// Initialize all known client auth plugins.
_ "k8s.io/client-go/plugin/pkg/client/auth"
)
var (
validPolicyTypes = map[string]bool{
"psp": true,
"opa": true,
}
)
func inspect(kubeconfig string, namespace string, excludeNamespaces []string, withReport, withGrant bool, OPAformat string, OPAdefaultRule bool) error {
advisor, err := advisor.NewAdvisor(kubeconfig)
if err != nil {
return fmt.Errorf("Could not create advisor object: %v", err)
}
err = advisor.Process(namespace, excludeNamespaces, OPAformat, OPAdefaultRule)
if err != nil {
return fmt.Errorf("Could not run advisor to inspect cluster and generate PSP: %v", err)
}
if withReport {
advisor.PrintReport()
return nil
}
if withGrant {
return advisor.PrintPodSecurityPolicyWithGrants()
}
if OPAformat == "psp" {
err = advisor.PrintPodSecurityPolicy()
if err != nil {
return fmt.Errorf("Could not print PSP: %v", err)
}
} else if OPAformat == "opa" {
opaRuleOutput := advisor.PrintOPAPolicy()
if opaRuleOutput == "" {
return fmt.Errorf("Could not print OPA rule: %v", err)
}
}
return nil
}
func convert(podObjFilename string, pspFilename string, OPAformat string, OPAdefaultRule bool) error {
podObjFile, err := os.Open(podObjFilename)
if err != nil {
return fmt.Errorf("Could not open pod object file %s for reading: %v", podObjFilename, err)
}
defer podObjFile.Close()
log.Debugf("Reading pod Obj File from %s", podObjFilename)
podObjString, err := ioutil.ReadAll(podObjFile)
if err != nil {
return fmt.Errorf("failed to read contents of pod object file %s: %v", podObjFilename, err)
}
log.Debugf("Contents of Obj File: %s", podObjString)
psp_gen, err := generator.NewGenerator()
if err != nil {
return fmt.Errorf("failed to create PSP Generator: %v", err)
}
pspString, err := psp_gen.FromPodObjString(string(podObjString), OPAformat, OPAdefaultRule)
if err != nil {
return fmt.Errorf("failed to generate PSP from pod Object: %v", err)
}
err = ioutil.WriteFile(pspFilename, []byte(pspString), 0644)
log.Infof("Wrote generated psp to %s", pspFilename)
return nil
}
func comparePsp(srcDir, targetDir string) error {
srcYamls, err := getWorkLoadYamls(srcDir)
if err != nil {
return fmt.Errorf("failed to read source workload directory %s: %s", srcDir, err)
}
targetYamls, err := getWorkLoadYamls(targetDir)
if err != nil {
return fmt.Errorf("failed to read target workload directory %s: %s", targetDir, err)
}
c, err := comparator.NewComparator()
if err != nil {
return fmt.Errorf("failed to create PSP comparator")
}
err = c.LoadYamls(srcYamls, comparator.Source)
if err != nil {
return fmt.Errorf("failed to create PSP comparator")
}
err = c.LoadYamls(targetYamls, comparator.Target)
if err != nil {
return fmt.Errorf("failed to create PSP comparator")
}
c.Compare()
c.PrintEscalationReport()
return nil
}
func main() {
var kubeconfig string
var withReport bool
var withGrant bool
var namespace string
var excludeNamespaces []string
var podObjFilename string
var pspFilename string
var policyType string
var denyByDefault bool
var logLevel string
var srcYamlDir string
var targetYamlDir string
log.SetFormatter(&log.TextFormatter{
FullTimestamp: true,
})
var rootCmd = &cobra.Command{
Use: "kube-psp-advisor",
Short: "kube-psp-advisor generates K8s PodSecurityPolicies",
Long: "A way to generate K8s PodSecurityPolicy objects from a live K8s environment or individual K8s objects containing pod specifications",
PersistentPreRun: func(cmd *cobra.Command, args []string) {
lvl, err := log.ParseLevel(logLevel)
if err != nil {
log.Fatal(err)
}
log.SetLevel(lvl)
},
}
rootCmd.PersistentFlags().StringVar(&logLevel, "level", "info", "Log level")
var inspectCmd = &cobra.Command{
Use: "inspect",
Short: "Inspect a live K8s Environment to generate a PodSecurityPolicy or OPA policy",
Long: "Fetch all objects in the provided namespace to generate a Pod Security Policy or OPA policy",
PreRun: func(cmd *cobra.Command, args []string) {
if !validPolicyType(policyType) {
log.Fatalf("invalid policy type")
}
},
Run: func(cmd *cobra.Command, args []string) {
err := inspect(kubeconfig, namespace, excludeNamespaces, withReport, withGrant, policyType, denyByDefault)
if err != nil {
log.Fatalf("Could not run inspect command: %v", err)
}
},
}
var convertCmd = &cobra.Command{
Use: "convert",
Short: "Generate a PodSecurityPolicy or OPA policy from a single K8s Yaml file",
Long: "Generate a PodSecurityPolicy or OPA policy from a single K8s Yaml file containing a pod Spec e.g. DaemonSet, Deployment, ReplicaSet, StatefulSet, ReplicationController, CronJob, Job, or Pod",
PreRun: func(cmd *cobra.Command, args []string) {
if podObjFilename == "" {
log.Fatalf("--podFile must be provided")
}
if pspFilename == "" {
log.Fatalf("--pspFile must be provided")
}
if !validPolicyType(policyType) {
log.Fatalf("invalid policy type")
}
},
Run: func(cmd *cobra.Command, args []string) {
err := convert(podObjFilename, pspFilename, policyType, denyByDefault)
if err != nil {
log.Fatalf("Could not run convert command: %v", err)
}
},
}
var compareCmd = &cobra.Command{
Use: "compare",
Short: "Compare k8s workload YAML files",
Long: "Compare k8s workload YAML files and generate privilege escalation report",
PreRun: func(cmd *cobra.Command, args []string) {
if srcYamlDir == "" {
log.Fatalf("--srcDir must be provided")
}
if targetYamlDir == "" {
log.Fatalf("--targetDir must be provided")
}
},
Run: func(cmd *cobra.Command, args []string) {
err := comparePsp(srcYamlDir, targetYamlDir)
if err != nil {
log.Fatalf("Could not run compare command: %v", err)
}
},
}
if home := homedir.HomeDir(); home != "" {
inspectCmd.Flags().StringVar(&kubeconfig, "kubeconfig", filepath.Join(home, ".kube", "config"), "(optional) absolute path to the kubeconfig file")
} else {
inspectCmd.Flags().StringVar(&kubeconfig, "kubeconfig", "", "absolute path to the kubeconfig file")
}
inspectCmd.Flags().BoolVarP(&withReport, "report", "r", false, "(optional) return with detail report")
inspectCmd.Flags().BoolVarP(&withGrant, "grant", "g", false, "(optional) return with pod security policies, roles and rolebindings")
inspectCmd.Flags().StringVarP(&namespace, "namespace", "n", "", "(optional) namespace")
inspectCmd.Flags().StringSliceVarP(&excludeNamespaces, "exclude-namespaces", "e", []string{}, "(optional) comma separated list of namespaces to exclude")
inspectCmd.Flags().StringVarP(&policyType, "policy", "p", "psp", "set policy type, valid policy types: psp and opa")
inspectCmd.Flags().BoolVarP(&denyByDefault, "deny-by-default", "", false, "(optional) OPA default rule: use this option if OPA default rule is Deny ALL")
convertCmd.Flags().StringVar(&podObjFilename, "podFile", "", "Path to a yaml file containing an object with a pod Spec")
convertCmd.Flags().StringVar(&pspFilename, "pspFile", "", "Write the resulting output to this file")
convertCmd.Flags().StringVarP(&policyType, "policy", "p", "psp", "set policy type, valid policy types: psp and opa)")
convertCmd.Flags().BoolVarP(&denyByDefault, "deny-by-default", "", false, "(optional) OPA default rule: use this option if OPA default rule is Deny ALL")
compareCmd.Flags().StringVar(&srcYamlDir, "sourceDir", "", "Source YAML directory to load YAMLs")
compareCmd.Flags().StringVar(&targetYamlDir, "targetDir", "", "Target YAML directory to load YAMLs")
rootCmd.AddCommand(inspectCmd)
rootCmd.AddCommand(convertCmd)
rootCmd.AddCommand(compareCmd)
rootCmd.Execute()
}
func getWorkLoadYamls(dir string) ([]string, error) {
yamls := []string{}
err := filepath.Walk(dir,
func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if !info.IsDir() && (strings.HasSuffix(path, ".yaml") || strings.HasSuffix(path, ".yml")) {
yamls = append(yamls, path)
}
return nil
})
if err != nil {
log.Println(err)
}
return yamls, nil
}
func validPolicyType(policyType string) bool {
_, exists := validPolicyTypes[strings.ToLower(policyType)]
return exists
}