Add arm specific syscalls to default seccomp profile
Signed-off-by: Justin Cormack <justin.cormack@unikernel.com> Upstream-commit: 37d35f3c280dc27a00f2baa16431d807b24f8b92 Component: engine
This commit is contained in:
@@ -1570,5 +1570,21 @@ var defaultSeccompProfile = &configs.Seccomp{
|
||||
Action: configs.Allow,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
// arm specific syscalls
|
||||
{
|
||||
Name: "breakpoint",
|
||||
Action: configs.Allow,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
{
|
||||
Name: "cacheflush",
|
||||
Action: configs.Allow,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
{
|
||||
Name: "set_tls",
|
||||
Action: configs.Allow,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user