2015-09-12 17:13:55 +08:00
|
|
|
// +build linux,cgo,seccomp
|
2015-06-30 02:12:54 +08:00
|
|
|
|
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"syscall"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/opencontainers/runc/libcontainer"
|
|
|
|
"github.com/opencontainers/runc/libcontainer/configs"
|
2015-08-13 21:10:05 +08:00
|
|
|
libseccomp "github.com/seccomp/libseccomp-golang"
|
2015-06-30 02:12:54 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSeccompDenyGetcwd(t *testing.T) {
|
|
|
|
if testing.Short() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rootfs, err := newRootfs()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer remove(rootfs)
|
|
|
|
|
|
|
|
config := newTemplateConfig(rootfs)
|
|
|
|
config.Seccomp = &configs.Seccomp{
|
|
|
|
DefaultAction: configs.Allow,
|
|
|
|
Syscalls: []*configs.Syscall{
|
|
|
|
{
|
|
|
|
Name: "getcwd",
|
|
|
|
Action: configs.Errno,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
container, err := newContainer(config)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer container.Destroy()
|
|
|
|
|
|
|
|
buffers := newStdBuffers()
|
|
|
|
pwd := &libcontainer.Process{
|
2016-01-15 07:21:36 +08:00
|
|
|
Cwd: "/",
|
2015-06-30 02:12:54 +08:00
|
|
|
Args: []string{"pwd"},
|
|
|
|
Env: standardEnvironment,
|
|
|
|
Stdin: buffers.Stdin,
|
|
|
|
Stdout: buffers.Stdout,
|
|
|
|
Stderr: buffers.Stderr,
|
|
|
|
}
|
|
|
|
|
2016-05-28 04:13:11 +08:00
|
|
|
err = container.Run(pwd)
|
2015-06-30 02:12:54 +08:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
ps, err := pwd.Wait()
|
|
|
|
if err == nil {
|
|
|
|
t.Fatal("Expecting error (negative return code); instead exited cleanly!")
|
|
|
|
}
|
|
|
|
|
|
|
|
var exitCode int
|
|
|
|
status := ps.Sys().(syscall.WaitStatus)
|
|
|
|
if status.Exited() {
|
|
|
|
exitCode = status.ExitStatus()
|
|
|
|
} else if status.Signaled() {
|
|
|
|
exitCode = -int(status.Signal())
|
|
|
|
} else {
|
|
|
|
t.Fatalf("Unrecognized exit reason!")
|
|
|
|
}
|
|
|
|
|
|
|
|
if exitCode == 0 {
|
|
|
|
t.Fatalf("Getcwd should fail with negative exit code, instead got %d!", exitCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := "pwd: getcwd: Operation not permitted"
|
|
|
|
actual := strings.Trim(buffers.Stderr.String(), "\n")
|
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("Expected output %s but got %s\n", expected, actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSeccompPermitWriteConditional(t *testing.T) {
|
|
|
|
if testing.Short() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rootfs, err := newRootfs()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer remove(rootfs)
|
|
|
|
|
|
|
|
config := newTemplateConfig(rootfs)
|
|
|
|
config.Seccomp = &configs.Seccomp{
|
|
|
|
DefaultAction: configs.Allow,
|
|
|
|
Syscalls: []*configs.Syscall{
|
|
|
|
{
|
|
|
|
Name: "write",
|
|
|
|
Action: configs.Errno,
|
|
|
|
Args: []*configs.Arg{
|
|
|
|
{
|
|
|
|
Index: 0,
|
2016-06-07 04:15:18 +08:00
|
|
|
Value: 2,
|
|
|
|
Op: configs.EqualTo,
|
2015-06-30 02:12:54 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
container, err := newContainer(config)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer container.Destroy()
|
|
|
|
|
|
|
|
buffers := newStdBuffers()
|
|
|
|
dmesg := &libcontainer.Process{
|
2016-01-15 07:21:36 +08:00
|
|
|
Cwd: "/",
|
2015-06-30 02:12:54 +08:00
|
|
|
Args: []string{"busybox", "ls", "/"},
|
|
|
|
Env: standardEnvironment,
|
|
|
|
Stdin: buffers.Stdin,
|
|
|
|
Stdout: buffers.Stdout,
|
|
|
|
Stderr: buffers.Stderr,
|
|
|
|
}
|
|
|
|
|
2016-05-28 04:13:11 +08:00
|
|
|
err = container.Run(dmesg)
|
2015-06-30 02:12:54 +08:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if _, err := dmesg.Wait(); err != nil {
|
|
|
|
t.Fatalf("%s: %s", err, buffers.Stderr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSeccompDenyWriteConditional(t *testing.T) {
|
|
|
|
if testing.Short() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-13 21:10:05 +08:00
|
|
|
// Only test if library version is v2.2.1 or higher
|
|
|
|
// Conditional filtering will always error in v2.2.0 and lower
|
|
|
|
major, minor, micro := libseccomp.GetLibraryVersion()
|
|
|
|
if (major == 2 && minor < 2) || (major == 2 && minor == 2 && micro < 1) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-06-30 02:12:54 +08:00
|
|
|
rootfs, err := newRootfs()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer remove(rootfs)
|
|
|
|
|
|
|
|
config := newTemplateConfig(rootfs)
|
|
|
|
config.Seccomp = &configs.Seccomp{
|
|
|
|
DefaultAction: configs.Allow,
|
|
|
|
Syscalls: []*configs.Syscall{
|
|
|
|
{
|
|
|
|
Name: "write",
|
|
|
|
Action: configs.Errno,
|
|
|
|
Args: []*configs.Arg{
|
|
|
|
{
|
|
|
|
Index: 0,
|
2016-06-07 04:15:18 +08:00
|
|
|
Value: 2,
|
|
|
|
Op: configs.EqualTo,
|
2015-06-30 02:12:54 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
container, err := newContainer(config)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer container.Destroy()
|
|
|
|
|
|
|
|
buffers := newStdBuffers()
|
|
|
|
dmesg := &libcontainer.Process{
|
2016-01-15 07:21:36 +08:00
|
|
|
Cwd: "/",
|
2015-06-30 02:12:54 +08:00
|
|
|
Args: []string{"busybox", "ls", "does_not_exist"},
|
|
|
|
Env: standardEnvironment,
|
|
|
|
Stdin: buffers.Stdin,
|
|
|
|
Stdout: buffers.Stdout,
|
|
|
|
Stderr: buffers.Stderr,
|
|
|
|
}
|
|
|
|
|
2016-05-28 04:13:11 +08:00
|
|
|
err = container.Run(dmesg)
|
2015-06-30 02:12:54 +08:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
ps, err := dmesg.Wait()
|
|
|
|
if err == nil {
|
|
|
|
t.Fatal("Expecting negative return, instead got 0!")
|
|
|
|
}
|
|
|
|
|
|
|
|
var exitCode int
|
|
|
|
status := ps.Sys().(syscall.WaitStatus)
|
|
|
|
if status.Exited() {
|
|
|
|
exitCode = status.ExitStatus()
|
|
|
|
} else if status.Signaled() {
|
|
|
|
exitCode = -int(status.Signal())
|
|
|
|
} else {
|
|
|
|
t.Fatalf("Unrecognized exit reason!")
|
|
|
|
}
|
|
|
|
|
|
|
|
if exitCode == 0 {
|
|
|
|
t.Fatalf("Busybox should fail with negative exit code, instead got %d!", exitCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
// We're denying write to stderr, so we expect an empty buffer
|
|
|
|
expected := ""
|
|
|
|
actual := strings.Trim(buffers.Stderr.String(), "\n")
|
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("Expected output %s but got %s\n", expected, actual)
|
|
|
|
}
|
|
|
|
}
|