mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a01c4dc8f8
Currently the default seccomp profile is fixed. This changes it so that it varies depending on the Linux capabilities selected with the --cap-add and --cap-drop options. Without this, if a user adds privileges, eg to allow ptrace with --cap-add sys_ptrace then still cannot actually use ptrace as it is still blocked by seccomp, so they will probably disable seccomp or use --privileged. With this change the syscalls that are needed for the capability are also allowed by the seccomp profile based on the selected capabilities. While this patch makes it easier to do things with for example cap_sys_admin enabled, as it will now allow creating new namespaces and use of mount, it still allows less than --cap-add cap_sys_admin --security-opt seccomp:unconfined would have previously. It is not recommended that users run containers with cap_sys_admin as this does give full access to the host machine. It also cleans up some architecture specific system calls to be only selected when needed. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
46 lines
1 KiB
Go
46 lines
1 KiB
Go
// +build linux,seccomp
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/docker/docker/container"
|
|
"github.com/docker/docker/profiles/seccomp"
|
|
"github.com/opencontainers/specs/specs-go"
|
|
)
|
|
|
|
func setSeccomp(daemon *Daemon, rs *specs.Spec, c *container.Container) error {
|
|
var profile *specs.Seccomp
|
|
var err error
|
|
|
|
if c.HostConfig.Privileged {
|
|
return nil
|
|
}
|
|
|
|
if !daemon.seccompEnabled {
|
|
if c.SeccompProfile != "" && c.SeccompProfile != "unconfined" {
|
|
return fmt.Errorf("Seccomp is not enabled in your kernel, cannot run a custom seccomp profile.")
|
|
}
|
|
logrus.Warn("Seccomp is not enabled in your kernel, running container without default profile.")
|
|
c.SeccompProfile = "unconfined"
|
|
}
|
|
if c.SeccompProfile == "unconfined" {
|
|
return nil
|
|
}
|
|
if c.SeccompProfile != "" {
|
|
profile, err = seccomp.LoadProfile(c.SeccompProfile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
profile, err = seccomp.GetDefaultProfile(rs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
rs.Linux.Seccomp = profile
|
|
return nil
|
|
}
|