Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kh add readonly for hostpath #13

Merged
merged 3 commits into from
Mar 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions advisor/processor/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/sysdiglabs/kube-psp-advisor/advisor/types"
"github.com/sysdiglabs/kube-psp-advisor/utils"

v1 "k8s.io/api/core/v1"
"k8s.io/api/core/v1"
"k8s.io/api/policy/v1beta1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/tools/clientcmd"
Expand All @@ -22,6 +22,7 @@ type Processor struct {
serverGitVersion string
}

// NewProcessor returns a new processor
func NewProcessor(kubeconfig string) (*Processor, error) {
config, err := clientcmd.BuildConfigFromFlags("", kubeconfig)
if err != nil {
Expand Down Expand Up @@ -89,8 +90,12 @@ func (p *Processor) GeneratePSP(cssList []types.ContainerSecuritySpec, pssList [
volumeTypes[t] = true
}

for _, path := range sc.MountHostPaths {
hostPaths[path] = true
for path, readOnly := range sc.MountHostPaths {
if _, exists := hostPaths[path]; !exists {
hostPaths[path] = readOnly
} else {
hostPaths[path] = readOnly && hostPaths[path]
}
}
}

Expand Down Expand Up @@ -155,14 +160,12 @@ func (p *Processor) GeneratePSP(cssList []types.ContainerSecuritySpec, pssList [
}

// set allowed host path
hostPathList := utils.MapToArray(hostPaths)

readOnly, _ := utils.CompareVersion(p.serverGitVersion, types.Version1_11)
enforceReadOnly, _ := utils.CompareVersion(p.serverGitVersion, types.Version1_11)

for _, path := range hostPathList {
for path, readOnly := range hostPaths {
psp.Spec.AllowedHostPaths = append(psp.Spec.AllowedHostPaths, v1beta1.AllowedHostPath{
PathPrefix: path,
ReadOnly: readOnly,
ReadOnly: readOnly || enforceReadOnly,
})
}

Expand Down Expand Up @@ -224,6 +227,7 @@ func (p *Processor) GeneratePSP(cssList []types.ContainerSecuritySpec, pssList [
return psp
}

// GenerateReport generate a JSON report
func (p *Processor) GenerateReport(cssList []types.ContainerSecuritySpec, pssList []types.PodSecuritySpec) *report.Report {
r := report.NewReport()

Expand Down
22 changes: 18 additions & 4 deletions advisor/processor/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ func getSecuritySpec(metadata types.Metadata, namespace string, spec v1.PodSpec,
Metadata: metadata,
ContainerName: container.Name,
ImageName: container.Image,
PodName: metadata.Name,
Namespace: namespace,
HostName: spec.NodeName,
Capabilities: getEffectiveCapablities(addCapList, dropCapList),
Expand Down Expand Up @@ -321,17 +322,30 @@ func getVolumeTypes(spec v1.PodSpec, sa v1.ServiceAccount) (volumeTypes []string
return
}

func getVolumeHostPaths(spec v1.PodSpec) (hostPaths []string) {
func getVolumeHostPaths(spec v1.PodSpec) map[string]bool {
hostPathMap := map[string]bool{}

containerMountMap := map[string]bool{}

for _, c := range spec.Containers {
for _, vm := range c.VolumeMounts {
if _, exists := containerMountMap[vm.Name]; !exists {
containerMountMap[vm.Name] = vm.ReadOnly
} else {
containerMountMap[vm.Name] = containerMountMap[vm.Name] && vm.ReadOnly
}
}
}

for _, v := range spec.Volumes {
if v.HostPath != nil {
hostPathMap[v.HostPath.Path] = true
if _, exists := containerMountMap[v.Name]; exists {
hostPathMap[v.HostPath.Path] = containerMountMap[v.Name]
}
}
}

hostPaths = utils.MapToArray(hostPathMap)
return
return hostPathMap
}

func getVolumeType(v v1.Volume) string {
Expand Down
14 changes: 7 additions & 7 deletions advisor/types/securityspec.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ type ContainerSecuritySpec struct {
}

type PodSecuritySpec struct {
Metadata Metadata `json:"metadata"`
Namespace string `json:"namespace"`
HostPID bool `json:"hostPID,omitempty"`
HostNetwork bool `json:"hostMetwork,omitempty"`
HostIPC bool `json:"hostIPC,omitempty"`
VolumeTypes []string `json:"volumeTypes,omitempty"`
MountHostPaths []string `json:"mountedHostPath,omitempty"`
Metadata Metadata `json:"metadata"`
Namespace string `json:"namespace"`
HostPID bool `json:"hostPID,omitempty"`
HostNetwork bool `json:"hostMetwork,omitempty"`
HostIPC bool `json:"hostIPC,omitempty"`
VolumeTypes []string `json:"volumeTypes,omitempty"`
MountHostPaths map[string]bool `json:"mountedHostPath,omitempty"`
}

type Metadata struct {
Expand Down
3 changes: 3 additions & 0 deletions test-yaml/base-busybox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ spec:
volumeMounts:
- mountPath: /test-hostpath
name: test-volume
readOnly: true
command:
- sleep
- "3600"
Expand Down Expand Up @@ -49,6 +50,7 @@ spec:
volumeMounts:
- mountPath: /test-hostpath
name: test-volume
readOnly: true
command:
- sleep
- "3600"
Expand Down Expand Up @@ -140,6 +142,7 @@ spec:
volumeMounts:
- mountPath: /test-hostpath
name: test-volume
readOnly: true
command:
- sleep
- "3600"
Expand Down