mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add arm specific syscalls to default seccomp profile
Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
This commit is contained in:
parent
274558881a
commit
37d35f3c28
1 changed files with 16 additions and 0 deletions
|
@ -1570,5 +1570,21 @@ var defaultSeccompProfile = &configs.Seccomp{
|
||||||
Action: configs.Allow,
|
Action: configs.Allow,
|
||||||
Args: []*configs.Arg{},
|
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{},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue