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>
13 lines
268 B
Go
13 lines
268 B
Go
// +build linux,!seccomp
|
|
|
|
package seccomp
|
|
|
|
import (
|
|
"github.com/docker/engine-api/types"
|
|
"github.com/opencontainers/specs/specs-go"
|
|
)
|
|
|
|
// DefaultProfile returns a nil pointer on unsupported systems.
|
|
func DefaultProfile(rs *specs.Spec) *types.Seccomp {
|
|
return nil
|
|
}
|