
Go 1.15.7 contained a security fix for CVE-2021-3115, which allowed arbitrary code to be executed at build time when using cgo on Windows. This issue also affects Unix users who have “.” listed explicitly in their PATH and are running “go get” outside of a module or with module mode disabled. This issue is not limited to the go command itself, and can also affect binaries that use `os.Command`, `os.LookPath`, etc. From the related blogpost (ttps://blog.golang.org/path-security): > Are your own programs affected? > > If you use exec.LookPath or exec.Command in your own programs, you only need to > be concerned if you (or your users) run your program in a directory with untrusted > contents. If so, then a subprocess could be started using an executable from dot > instead of from a system directory. (Again, using an executable from dot happens > always on Windows and only with uncommon PATH settings on Unix.) > > If you are concerned, then we’ve published the more restricted variant of os/exec > as golang.org/x/sys/execabs. You can use it in your program by simply replacing This patch replaces all uses of `os/exec` with `golang.org/x/sys/execabs`. While some uses of `os/exec` should not be problematic (e.g. part of tests), it is probably good to be consistent, in case code gets moved around. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
131 lines
4.0 KiB
Go
131 lines
4.0 KiB
Go
/*
|
|
Copyright The containerd 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 integration
|
|
|
|
import (
|
|
"fmt"
|
|
goruntime "runtime"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
exec "golang.org/x/sys/execabs"
|
|
)
|
|
|
|
func TestVolumeCopyUp(t *testing.T) {
|
|
if goruntime.GOOS == "windows" {
|
|
// TODO(claudiub): Remove this when the volume-copy-up image has Windows support.
|
|
// https://github.com/containerd/containerd/pull/5162
|
|
t.Skip("Skipped on Windows.")
|
|
}
|
|
var (
|
|
testImage = GetImage(VolumeCopyUp)
|
|
execTimeout = time.Minute
|
|
)
|
|
|
|
t.Logf("Create a sandbox")
|
|
sb, sbConfig := PodSandboxConfigWithCleanup(t, "sandbox", "volume-copy-up")
|
|
|
|
EnsureImageExists(t, testImage)
|
|
|
|
t.Logf("Create a container with volume-copy-up test image")
|
|
cnConfig := ContainerConfig(
|
|
"container",
|
|
testImage,
|
|
WithCommand("tail", "-f", "/dev/null"),
|
|
)
|
|
cn, err := runtimeService.CreateContainer(sb, cnConfig, sbConfig)
|
|
require.NoError(t, err)
|
|
|
|
t.Logf("Start the container")
|
|
require.NoError(t, runtimeService.StartContainer(cn))
|
|
|
|
// gcr.io/k8s-cri-containerd/volume-copy-up:2.0 contains a test_dir
|
|
// volume, which contains a test_file with content "test_content".
|
|
t.Logf("Check whether volume contains the test file")
|
|
stdout, stderr, err := runtimeService.ExecSync(cn, []string{
|
|
"cat",
|
|
"/test_dir/test_file",
|
|
}, execTimeout)
|
|
require.NoError(t, err)
|
|
assert.Empty(t, stderr)
|
|
assert.Equal(t, "test_content\n", string(stdout))
|
|
|
|
t.Logf("Check host path of the volume")
|
|
hostCmd := fmt.Sprintf("find %s/containers/%s/volumes/*/test_file | xargs cat", *criRoot, cn)
|
|
output, err := exec.Command("sh", "-c", hostCmd).CombinedOutput()
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "test_content\n", string(output))
|
|
|
|
t.Logf("Update volume from inside the container")
|
|
_, _, err = runtimeService.ExecSync(cn, []string{
|
|
"sh",
|
|
"-c",
|
|
"echo new_content > /test_dir/test_file",
|
|
}, execTimeout)
|
|
require.NoError(t, err)
|
|
|
|
t.Logf("Check whether host path of the volume is updated")
|
|
output, err = exec.Command("sh", "-c", hostCmd).CombinedOutput()
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "new_content\n", string(output))
|
|
}
|
|
|
|
func TestVolumeOwnership(t *testing.T) {
|
|
if goruntime.GOOS == "windows" {
|
|
t.Skip("Skipped on Windows.")
|
|
}
|
|
var (
|
|
testImage = GetImage(VolumeOwnership)
|
|
execTimeout = time.Minute
|
|
)
|
|
|
|
t.Logf("Create a sandbox")
|
|
sb, sbConfig := PodSandboxConfigWithCleanup(t, "sandbox", "volume-ownership")
|
|
|
|
EnsureImageExists(t, testImage)
|
|
|
|
t.Logf("Create a container with volume-ownership test image")
|
|
cnConfig := ContainerConfig(
|
|
"container",
|
|
testImage,
|
|
WithCommand("tail", "-f", "/dev/null"),
|
|
)
|
|
cn, err := runtimeService.CreateContainer(sb, cnConfig, sbConfig)
|
|
require.NoError(t, err)
|
|
|
|
t.Logf("Start the container")
|
|
require.NoError(t, runtimeService.StartContainer(cn))
|
|
|
|
// gcr.io/k8s-cri-containerd/volume-ownership:2.0 contains a test_dir
|
|
// volume, which is owned by nobody:nogroup.
|
|
t.Logf("Check ownership of test directory inside container")
|
|
stdout, stderr, err := runtimeService.ExecSync(cn, []string{
|
|
"stat", "-c", "%U:%G", "/test_dir",
|
|
}, execTimeout)
|
|
require.NoError(t, err)
|
|
assert.Empty(t, stderr)
|
|
assert.Equal(t, "nobody:nogroup\n", string(stdout))
|
|
|
|
t.Logf("Check ownership of test directory on the host")
|
|
hostCmd := fmt.Sprintf("find %s/containers/%s/volumes/* | xargs stat -c %%U:%%G", *criRoot, cn)
|
|
output, err := exec.Command("sh", "-c", hostCmd).CombinedOutput()
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "nobody:nogroup\n", string(output))
|
|
}
|