mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #41353 from tao12345666333/add-openat2-to-seccomp-profile
Add openat2 and faccessat2 to default seccomp profile.
This commit is contained in:
commit
868578e493
2 changed files with 4 additions and 0 deletions
|
@ -94,6 +94,7 @@
|
|||
"exit",
|
||||
"exit_group",
|
||||
"faccessat",
|
||||
"faccessat2",
|
||||
"fadvise64",
|
||||
"fadvise64_64",
|
||||
"fallocate",
|
||||
|
@ -229,6 +230,7 @@
|
|||
"_newselect",
|
||||
"open",
|
||||
"openat",
|
||||
"openat2",
|
||||
"pause",
|
||||
"pipe",
|
||||
"pipe2",
|
||||
|
|
|
@ -87,6 +87,7 @@ func DefaultProfile() *types.Seccomp {
|
|||
"exit",
|
||||
"exit_group",
|
||||
"faccessat",
|
||||
"faccessat2",
|
||||
"fadvise64",
|
||||
"fadvise64_64",
|
||||
"fallocate",
|
||||
|
@ -222,6 +223,7 @@ func DefaultProfile() *types.Seccomp {
|
|||
"_newselect",
|
||||
"open",
|
||||
"openat",
|
||||
"openat2",
|
||||
"pause",
|
||||
"pipe",
|
||||
"pipe2",
|
||||
|
|
Loading…
Add table
Reference in a new issue