mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add ipc syscall to default seccomp profile
On 32 bit x86 this is a multiplexing syscall for the system V
ipc syscalls such as shmget, and so needs to be allowed for
shared memory access for 32 bit binaries.
Fixes #20733
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
(cherry picked from commit 31410a6d79
)
This commit is contained in:
parent
516ef83f30
commit
eceeae4d7c
1 changed files with 5 additions and 0 deletions
|
@ -624,6 +624,11 @@ var defaultSeccompProfile = &configs.Seccomp{
|
|||
Action: configs.Allow,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
{
|
||||
Name: "ipc",
|
||||
Action: configs.Allow,
|
||||
Args: []*configs.Arg{},
|
||||
},
|
||||
{
|
||||
Name: "kill",
|
||||
Action: configs.Allow,
|
||||
|
|
Loading…
Add table
Reference in a new issue