Whitelist syscalls linked to CAP_SYS_NICE in default seccomp profile
@@ -746,6 +746,22 @@
]
},
"excludes": {}
+ },
+ {
+ "names": [
+ "get_mempolicy",
+ "mbind",
+ "set_mempolicy"
+ ],
+ "action": "SCMP_ACT_ALLOW",
+ "args": [],
+ "comment": "",
+ "includes": {
+ "caps": [
+ "CAP_SYS_NICE"
+ ]
+ "excludes": {}
}
@@ -630,6 +630,18 @@ func DefaultProfile() *types.Seccomp {
Caps: []string{"CAP_SYS_TTY_CONFIG"},
+ Names: []string{
+ "set_mempolicy",
+ Action: types.ActAllow,
+ Args: []*types.Arg{},
+ Includes: types.Filter{
+ Caps: []string{"CAP_SYS_NICE"},
return &types.Seccomp{