Merge pull request #7167 from thaJeztah/seccomp_sys_nice

seccomp: add get_mempolicy, mbind, set_mempolicy, with CAP_SYS_NICE
This commit is contained in:
Phil Estes
2022-07-14 11:54:19 -04:00
committed by GitHub

View File

@@ -652,6 +652,16 @@ func DefaultProfile(sp *specs.Spec) *specs.LinuxSeccomp {
Action: specs.ActAllow,
Args: []specs.LinuxSeccompArg{},
})
case "CAP_SYS_NICE":
s.Syscalls = append(s.Syscalls, specs.LinuxSyscall{
Names: []string{
"get_mempolicy",
"mbind",
"set_mempolicy",
},
Action: specs.ActAllow,
Args: []specs.LinuxSeccompArg{},
})
case "CAP_SYSLOG":
s.Syscalls = append(s.Syscalls, specs.LinuxSyscall{
Names: []string{"syslog"},