2016-03-18 18:50:19 +00:00
|
|
|
// +build linux,seccomp
|
|
|
|
|
2018-02-05 21:05:59 +00:00
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
2016-03-18 18:50:19 +00:00
|
|
|
|
|
|
|
import (
|
2019-04-10 18:45:14 +00:00
|
|
|
"context"
|
2016-03-18 18:50:19 +00:00
|
|
|
"fmt"
|
|
|
|
|
2019-04-10 18:45:14 +00:00
|
|
|
"github.com/containerd/containerd/containers"
|
|
|
|
coci "github.com/containerd/containerd/oci"
|
2016-03-18 18:50:19 +00:00
|
|
|
"github.com/docker/docker/container"
|
2021-06-07 11:44:32 +00:00
|
|
|
dconfig "github.com/docker/docker/daemon/config"
|
2016-03-19 21:07:17 +00:00
|
|
|
"github.com/docker/docker/profiles/seccomp"
|
2017-07-26 21:42:13 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2016-03-18 18:50:19 +00:00
|
|
|
)
|
|
|
|
|
2019-10-12 22:39:34 +00:00
|
|
|
const supportsSeccomp = true
|
2016-07-08 22:54:48 +00:00
|
|
|
|
2019-04-10 18:45:14 +00:00
|
|
|
// WithSeccomp sets the seccomp profile
|
|
|
|
func WithSeccomp(daemon *Daemon, c *container.Container) coci.SpecOpts {
|
|
|
|
return func(ctx context.Context, _ coci.Client, _ *containers.Container, s *coci.Spec) error {
|
2021-06-07 11:44:32 +00:00
|
|
|
if c.SeccompProfile == dconfig.SeccompProfileUnconfined {
|
2020-09-09 17:23:27 +00:00
|
|
|
return nil
|
|
|
|
}
|
2019-04-10 18:45:14 +00:00
|
|
|
if c.HostConfig.Privileged {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if !daemon.seccompEnabled {
|
2020-09-09 17:23:27 +00:00
|
|
|
if c.SeccompProfile != "" {
|
2019-08-05 13:13:46 +00:00
|
|
|
return fmt.Errorf("seccomp is not enabled in your kernel, cannot run a custom seccomp profile")
|
2019-04-10 18:45:14 +00:00
|
|
|
}
|
2019-08-05 13:13:46 +00:00
|
|
|
logrus.Warn("seccomp is not enabled in your kernel, running container without default profile")
|
2021-06-07 11:44:32 +00:00
|
|
|
c.SeccompProfile = dconfig.SeccompProfileUnconfined
|
2019-04-10 18:45:14 +00:00
|
|
|
return nil
|
2016-03-18 18:50:19 +00:00
|
|
|
}
|
2020-09-09 17:23:27 +00:00
|
|
|
var err error
|
|
|
|
switch {
|
|
|
|
case c.SeccompProfile != "":
|
|
|
|
s.Linux.Seccomp, err = seccomp.LoadProfile(c.SeccompProfile, s)
|
|
|
|
case daemon.seccompProfile != nil:
|
|
|
|
s.Linux.Seccomp, err = seccomp.LoadProfile(string(daemon.seccompProfile), s)
|
|
|
|
default:
|
|
|
|
s.Linux.Seccomp, err = seccomp.GetDefaultProfile(s)
|
2016-03-18 18:50:19 +00:00
|
|
|
}
|
2020-09-09 17:23:27 +00:00
|
|
|
return err
|
2019-04-10 18:45:14 +00:00
|
|
|
}
|
2016-03-18 18:50:19 +00:00
|
|
|
}
|