// Copyright 2018 The gVisor 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 image provides end-to-end integration tests for runsc. These tests require // docker and runsc to be installed on the machine. To set it up, run: // // ./runsc/test/install.sh [--runtime ] // // The tests expect the runtime name to be provided in the RUNSC_RUNTIME // environment variable (default: runsc-test). // // Each test calls docker commands to start up a container, and tests that it is // behaving properly, with various runsc commands. The container is killed and deleted // at the end. package integration import ( "fmt" "strconv" "strings" "syscall" "testing" "time" "gvisor.dev/gvisor/pkg/abi/linux" "gvisor.dev/gvisor/runsc/test/testutil" ) func TestExecCapabilities(t *testing.T) { if err := testutil.Pull("alpine"); err != nil { t.Fatalf("docker pull failed: %v", err) } d := testutil.MakeDocker("exec-test") // Start the container. if err := d.Run("alpine", "sh", "-c", "cat /proc/self/status; sleep 100"); err != nil { t.Fatalf("docker run failed: %v", err) } defer d.CleanUp() matches, err := d.WaitForOutputSubmatch("CapEff:\t([0-9a-f]+)\n", 5*time.Second) if err != nil { t.Fatalf("WaitForOutputSubmatch() timeout: %v", err) } if len(matches) != 2 { t.Fatalf("There should be a match for the whole line and the capability bitmask") } capString := matches[1] t.Log("Root capabilities:", capString) // CAP_NET_RAW was in the capability set for the container, but was // removed. However, `exec` does not remove it. Verify that it's not // set in the container, then re-add it for comparison. caps, err := strconv.ParseUint(capString, 16, 64) if err != nil { t.Fatalf("failed to convert capabilities %q: %v", capString, err) } if caps&(1<