mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ddb42f3ad2
daemon/network/filter_test.go:174:19: empty-lines: extra empty line at the end of a block (revive) daemon/restart.go:17:116: empty-lines: extra empty line at the end of a block (revive) daemon/daemon_linux_test.go:255:41: empty-lines: extra empty line at the end of a block (revive) daemon/reload_test.go:340:58: empty-lines: extra empty line at the end of a block (revive) daemon/oci_linux.go:495:101: empty-lines: extra empty line at the end of a block (revive) daemon/seccomp_linux_test.go:17:36: empty-lines: extra empty line at the start of a block (revive) daemon/container_operations.go:560:73: empty-lines: extra empty line at the end of a block (revive) daemon/daemon_unix.go:558:76: empty-lines: extra empty line at the end of a block (revive) daemon/daemon_unix.go:1092:64: empty-lines: extra empty line at the start of a block (revive) daemon/container_operations.go:587:24: empty-lines: extra empty line at the end of a block (revive) daemon/network.go:807:18: empty-lines: extra empty line at the end of a block (revive) daemon/network.go:813:42: empty-lines: extra empty line at the end of a block (revive) daemon/network.go:872:72: empty-lines: extra empty line at the end of a block (revive) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
198 lines
5.1 KiB
Go
198 lines
5.1 KiB
Go
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
import (
|
|
"testing"
|
|
|
|
coci "github.com/containerd/containerd/oci"
|
|
containertypes "github.com/docker/docker/api/types/container"
|
|
"github.com/docker/docker/container"
|
|
dconfig "github.com/docker/docker/daemon/config"
|
|
"github.com/docker/docker/oci"
|
|
"github.com/docker/docker/pkg/sysinfo"
|
|
"github.com/docker/docker/profiles/seccomp"
|
|
specs "github.com/opencontainers/runtime-spec/specs-go"
|
|
"gotest.tools/v3/assert"
|
|
)
|
|
|
|
func TestWithSeccomp(t *testing.T) {
|
|
type expected struct {
|
|
daemon *Daemon
|
|
c *container.Container
|
|
inSpec coci.Spec
|
|
outSpec coci.Spec
|
|
err string
|
|
comment string
|
|
}
|
|
|
|
for _, x := range []expected{
|
|
{
|
|
comment: "unconfined seccompProfile runs unconfined",
|
|
daemon: &Daemon{
|
|
sysInfo: &sysinfo.SysInfo{Seccomp: true},
|
|
},
|
|
c: &container.Container{
|
|
SeccompProfile: dconfig.SeccompProfileUnconfined,
|
|
HostConfig: &containertypes.HostConfig{
|
|
Privileged: false,
|
|
},
|
|
},
|
|
inSpec: oci.DefaultLinuxSpec(),
|
|
outSpec: oci.DefaultLinuxSpec(),
|
|
},
|
|
{
|
|
comment: "privileged container w/ custom profile runs unconfined",
|
|
daemon: &Daemon{
|
|
sysInfo: &sysinfo.SysInfo{Seccomp: true},
|
|
},
|
|
c: &container.Container{
|
|
SeccompProfile: "{ \"defaultAction\": \"SCMP_ACT_LOG\" }",
|
|
HostConfig: &containertypes.HostConfig{
|
|
Privileged: true,
|
|
},
|
|
},
|
|
inSpec: oci.DefaultLinuxSpec(),
|
|
outSpec: oci.DefaultLinuxSpec(),
|
|
},
|
|
{
|
|
comment: "privileged container w/ default runs unconfined",
|
|
daemon: &Daemon{
|
|
sysInfo: &sysinfo.SysInfo{Seccomp: true},
|
|
},
|
|
c: &container.Container{
|
|
SeccompProfile: "",
|
|
HostConfig: &containertypes.HostConfig{
|
|
Privileged: true,
|
|
},
|
|
},
|
|
inSpec: oci.DefaultLinuxSpec(),
|
|
outSpec: oci.DefaultLinuxSpec(),
|
|
},
|
|
{
|
|
comment: "privileged container w/ daemon profile runs unconfined",
|
|
daemon: &Daemon{
|
|
sysInfo: &sysinfo.SysInfo{Seccomp: true},
|
|
seccompProfile: []byte("{ \"defaultAction\": \"SCMP_ACT_ERRNO\" }"),
|
|
},
|
|
c: &container.Container{
|
|
SeccompProfile: "",
|
|
HostConfig: &containertypes.HostConfig{
|
|
Privileged: true,
|
|
},
|
|
},
|
|
inSpec: oci.DefaultLinuxSpec(),
|
|
outSpec: oci.DefaultLinuxSpec(),
|
|
},
|
|
{
|
|
comment: "custom profile when seccomp is disabled returns error",
|
|
daemon: &Daemon{
|
|
sysInfo: &sysinfo.SysInfo{Seccomp: false},
|
|
},
|
|
c: &container.Container{
|
|
SeccompProfile: "{ \"defaultAction\": \"SCMP_ACT_ERRNO\" }",
|
|
HostConfig: &containertypes.HostConfig{
|
|
Privileged: false,
|
|
},
|
|
},
|
|
inSpec: oci.DefaultLinuxSpec(),
|
|
outSpec: oci.DefaultLinuxSpec(),
|
|
err: "seccomp is not enabled in your kernel, cannot run a custom seccomp profile",
|
|
},
|
|
{
|
|
comment: "empty profile name loads default profile",
|
|
daemon: &Daemon{
|
|
sysInfo: &sysinfo.SysInfo{Seccomp: true},
|
|
},
|
|
c: &container.Container{
|
|
SeccompProfile: "",
|
|
HostConfig: &containertypes.HostConfig{
|
|
Privileged: false,
|
|
},
|
|
},
|
|
inSpec: oci.DefaultLinuxSpec(),
|
|
outSpec: func() coci.Spec {
|
|
s := oci.DefaultLinuxSpec()
|
|
profile, _ := seccomp.GetDefaultProfile(&s)
|
|
s.Linux.Seccomp = profile
|
|
return s
|
|
}(),
|
|
},
|
|
{
|
|
comment: "load container's profile",
|
|
daemon: &Daemon{
|
|
sysInfo: &sysinfo.SysInfo{Seccomp: true},
|
|
},
|
|
c: &container.Container{
|
|
SeccompProfile: "{ \"defaultAction\": \"SCMP_ACT_ERRNO\" }",
|
|
HostConfig: &containertypes.HostConfig{
|
|
Privileged: false,
|
|
},
|
|
},
|
|
inSpec: oci.DefaultLinuxSpec(),
|
|
outSpec: func() coci.Spec {
|
|
s := oci.DefaultLinuxSpec()
|
|
profile := &specs.LinuxSeccomp{
|
|
DefaultAction: specs.LinuxSeccompAction("SCMP_ACT_ERRNO"),
|
|
}
|
|
s.Linux.Seccomp = profile
|
|
return s
|
|
}(),
|
|
},
|
|
{
|
|
comment: "load daemon's profile",
|
|
daemon: &Daemon{
|
|
sysInfo: &sysinfo.SysInfo{Seccomp: true},
|
|
seccompProfile: []byte("{ \"defaultAction\": \"SCMP_ACT_ERRNO\" }"),
|
|
},
|
|
c: &container.Container{
|
|
SeccompProfile: "",
|
|
HostConfig: &containertypes.HostConfig{
|
|
Privileged: false,
|
|
},
|
|
},
|
|
inSpec: oci.DefaultLinuxSpec(),
|
|
outSpec: func() coci.Spec {
|
|
s := oci.DefaultLinuxSpec()
|
|
profile := &specs.LinuxSeccomp{
|
|
DefaultAction: specs.LinuxSeccompAction("SCMP_ACT_ERRNO"),
|
|
}
|
|
s.Linux.Seccomp = profile
|
|
return s
|
|
}(),
|
|
},
|
|
{
|
|
comment: "load prioritise container profile over daemon's",
|
|
daemon: &Daemon{
|
|
sysInfo: &sysinfo.SysInfo{Seccomp: true},
|
|
seccompProfile: []byte("{ \"defaultAction\": \"SCMP_ACT_ERRNO\" }"),
|
|
},
|
|
c: &container.Container{
|
|
SeccompProfile: "{ \"defaultAction\": \"SCMP_ACT_LOG\" }",
|
|
HostConfig: &containertypes.HostConfig{
|
|
Privileged: false,
|
|
},
|
|
},
|
|
inSpec: oci.DefaultLinuxSpec(),
|
|
outSpec: func() coci.Spec {
|
|
s := oci.DefaultLinuxSpec()
|
|
profile := &specs.LinuxSeccomp{
|
|
DefaultAction: specs.LinuxSeccompAction("SCMP_ACT_LOG"),
|
|
}
|
|
s.Linux.Seccomp = profile
|
|
return s
|
|
}(),
|
|
},
|
|
} {
|
|
x := x
|
|
t.Run(x.comment, func(t *testing.T) {
|
|
opts := WithSeccomp(x.daemon, x.c)
|
|
err := opts(nil, nil, nil, &x.inSpec)
|
|
|
|
assert.DeepEqual(t, x.inSpec, x.outSpec)
|
|
if x.err != "" {
|
|
assert.Error(t, err, x.err)
|
|
} else {
|
|
assert.NilError(t, err)
|
|
}
|
|
})
|
|
}
|
|
}
|