/* Copyright 2016 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 node import ( "context" "fmt" "github.com/onsi/ginkgo/v2" "github.com/onsi/gomega" v1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/kubernetes/test/e2e/framework" e2epod "k8s.io/kubernetes/test/e2e/framework/pod" imageutils "k8s.io/kubernetes/test/utils/image" admissionapi "k8s.io/pod-security-admission/api" ) // PrivilegedPodTestConfig is configuration struct for privileged pod test // TODO: Merge with tests in security_context.go type PrivilegedPodTestConfig struct { f *framework.Framework privilegedPod string privilegedContainer string notPrivilegedContainer string pod *v1.Pod } var _ = SIGDescribe("PrivilegedPod", framework.WithNodeConformance(), func() { f := framework.NewDefaultFramework("e2e-privileged-pod") f.NamespacePodSecurityLevel = admissionapi.LevelPrivileged config := &PrivilegedPodTestConfig{ f: f, privilegedPod: "privileged-pod", privilegedContainer: "privileged-container", notPrivilegedContainer: "not-privileged-container", } ginkgo.It("should enable privileged commands [LinuxOnly]", func(ctx context.Context) { // Windows does not support privileged containers. ginkgo.By("Creating a pod with a privileged container") config.createPods(ctx) ginkgo.By("Executing in the privileged container") config.run(config.privilegedContainer, true) ginkgo.By("Executing in the non-privileged container") config.run(config.notPrivilegedContainer, false) }) }) func (c *PrivilegedPodTestConfig) run(containerName string, expectSuccess bool) { cmd := []string{"ip", "link", "add", "dummy1", "type", "dummy"} reverseCmd := []string{"ip", "link", "del", "dummy1"} stdout, stderr, err := e2epod.ExecCommandInContainerWithFullOutput( c.f, c.privilegedPod, containerName, cmd...) msg := fmt.Sprintf("cmd %v, stdout %q, stderr %q", cmd, stdout, stderr) if expectSuccess { framework.ExpectNoError(err, msg) // We need to clean up the dummy link that was created, as it // leaks out into the node level -- yuck. _, _, err := e2epod.ExecCommandInContainerWithFullOutput( c.f, c.privilegedPod, containerName, reverseCmd...) framework.ExpectNoError(err, fmt.Sprintf("could not remove dummy1 link: %v", err)) } else { gomega.Expect(err).To(gomega.HaveOccurred(), msg) } } func (c *PrivilegedPodTestConfig) createPodsSpec() *v1.Pod { isPrivileged := true notPrivileged := false return &v1.Pod{ ObjectMeta: metav1.ObjectMeta{ Name: c.privilegedPod, Namespace: c.f.Namespace.Name, }, Spec: v1.PodSpec{ Containers: []v1.Container{ { Name: c.privilegedContainer, Image: imageutils.GetE2EImage(imageutils.BusyBox), ImagePullPolicy: v1.PullIfNotPresent, SecurityContext: &v1.SecurityContext{Privileged: &isPrivileged}, Command: []string{"/bin/sleep", "10000"}, }, { Name: c.notPrivilegedContainer, Image: imageutils.GetE2EImage(imageutils.BusyBox), ImagePullPolicy: v1.PullIfNotPresent, SecurityContext: &v1.SecurityContext{Privileged: ¬Privileged}, Command: []string{"/bin/sleep", "10000"}, }, }, }, } } func (c *PrivilegedPodTestConfig) createPods(ctx context.Context) { podSpec := c.createPodsSpec() c.pod = e2epod.NewPodClient(c.f).CreateSync(ctx, podSpec) }