mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
seccomp: allow syscall membarrier
Add the membarrier syscall to the default seccomp profile. It is for example used in the implementation of dlopen() in the musl libc of Alpine images. Signed-off-by: Julio Guerra <julio@sqreen.com>
This commit is contained in:
parent
c7ad2b8661
commit
1026f873a4
2 changed files with 2 additions and 0 deletions
|
@ -187,6 +187,7 @@
|
|||
"lstat",
|
||||
"lstat64",
|
||||
"madvise",
|
||||
"membarrier",
|
||||
"memfd_create",
|
||||
"mincore",
|
||||
"mkdir",
|
||||
|
|
|
@ -180,6 +180,7 @@ func DefaultProfile() *types.Seccomp {
|
|||
"lstat",
|
||||
"lstat64",
|
||||
"madvise",
|
||||
"membarrier",
|
||||
"memfd_create",
|
||||
"mincore",
|
||||
"mkdir",
|
||||
|
|
Loading…
Add table
Reference in a new issue