/* Copyright 2017 The Kubernetes Authors. 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 common import ( "fmt" api "k8s.io/api/core/v1" extensions "k8s.io/api/extensions/v1beta1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/kubernetes/pkg/security/apparmor" "k8s.io/kubernetes/test/e2e/framework" ) const ( appArmorProfilePrefix = "e2e-apparmor-test-" appArmorAllowedPath = "/expect_allowed_write" appArmorDeniedPath = "/expect_permission_denied" ) // AppArmorDistros are distros with AppArmor support var AppArmorDistros = []string{"gci", "ubuntu"} func SkipIfAppArmorNotSupported() { framework.SkipUnlessNodeOSDistroIs(AppArmorDistros...) } func LoadAppArmorProfiles(f *framework.Framework) { _, err := createAppArmorProfileCM(f) framework.ExpectNoError(err) _, err = createAppArmorProfileLoader(f) framework.ExpectNoError(err) } // CreateAppArmorTestPod creates a pod that tests apparmor profile enforcement. The pod exits with // an error code if the profile is incorrectly enforced. If runOnce is true the pod will exit after // a single test, otherwise it will repeat the test every 1 second until failure. func CreateAppArmorTestPod(f *framework.Framework, runOnce bool) *api.Pod { profile := "localhost/" + appArmorProfilePrefix + f.Namespace.Name testCmd := fmt.Sprintf(` if touch %[1]s; then echo "FAILURE: write to %[1]s should be denied" exit 1 elif ! touch %[2]s; then echo "FAILURE: write to %[2]s should be allowed" exit 2 elif ! grep "%[3]s" /proc/self/attr/current; then echo "FAILURE: not running with expected profile %[3]s" echo "found: $(cat /proc/self/attr/current)" exit 3 fi`, appArmorDeniedPath, appArmorAllowedPath, appArmorProfilePrefix+f.Namespace.Name) if !runOnce { testCmd = fmt.Sprintf(`while true; do %s sleep 1 done`, testCmd) } pod := &api.Pod{ ObjectMeta: metav1.ObjectMeta{ GenerateName: "test-apparmor-", Annotations: map[string]string{ apparmor.ContainerAnnotationKeyPrefix + "test": profile, }, Labels: map[string]string{ "test": "apparmor", }, }, Spec: api.PodSpec{ Containers: []api.Container{{ Name: "test", Image: "gcr.io/google_containers/busybox:1.24", Command: []string{"sh", "-c", testCmd}, }}, RestartPolicy: api.RestartPolicyNever, }, } if runOnce { pod = f.PodClient().Create(pod) framework.ExpectNoError(framework.WaitForPodSuccessInNamespace( f.ClientSet, pod.Name, f.Namespace.Name)) } else { pod = f.PodClient().CreateSync(pod) framework.ExpectNoError(f.WaitForPodReady(pod.Name)) } return pod } func createAppArmorProfileCM(f *framework.Framework) (*api.ConfigMap, error) { profileName := appArmorProfilePrefix + f.Namespace.Name profile := fmt.Sprintf(`#include profile %s flags=(attach_disconnected) { #include file, deny %s w, audit %s w, } `, profileName, appArmorDeniedPath, appArmorAllowedPath) cm := &api.ConfigMap{ ObjectMeta: metav1.ObjectMeta{ Name: "apparmor-profiles", Namespace: f.Namespace.Name, }, Data: map[string]string{ profileName: profile, }, } return f.ClientSet.Core().ConfigMaps(f.Namespace.Name).Create(cm) } func createAppArmorProfileLoader(f *framework.Framework) (*extensions.DaemonSet, error) { True := true // Copied from https://github.com/kubernetes/contrib/blob/master/apparmor/loader/example-configmap.yaml loader := &extensions.DaemonSet{ ObjectMeta: metav1.ObjectMeta{ Name: "apparmor-loader", Namespace: f.Namespace.Name, }, Spec: extensions.DaemonSetSpec{ Template: api.PodTemplateSpec{ ObjectMeta: metav1.ObjectMeta{ Labels: map[string]string{"name": "apparmor-loader"}, }, Spec: api.PodSpec{ Containers: []api.Container{{ Name: "apparmor-loader", Image: "gcr.io/google_containers/apparmor-loader:0.1", Args: []string{"-poll", "10s", "/profiles"}, SecurityContext: &api.SecurityContext{ Privileged: &True, }, VolumeMounts: []api.VolumeMount{{ Name: "sys", MountPath: "/sys", ReadOnly: true, }, { Name: "apparmor-includes", MountPath: "/etc/apparmor.d", ReadOnly: true, }, { Name: "profiles", MountPath: "/profiles", ReadOnly: true, }}, }}, Volumes: []api.Volume{{ Name: "sys", VolumeSource: api.VolumeSource{ HostPath: &api.HostPathVolumeSource{ Path: "/sys", }, }, }, { Name: "apparmor-includes", VolumeSource: api.VolumeSource{ HostPath: &api.HostPathVolumeSource{ Path: "/etc/apparmor.d", }, }, }, { Name: "profiles", VolumeSource: api.VolumeSource{ ConfigMap: &api.ConfigMapVolumeSource{ LocalObjectReference: api.LocalObjectReference{ Name: "apparmor-profiles", }, }, }, }}, }, }, }, } return f.ClientSet.Extensions().DaemonSets(f.Namespace.Name).Create(loader) }