Merge pull request #4481 from tao12345666333/add-openat2-syscall

seccomp: add `openat2` and `faccessat2` syscall.
This commit is contained in:
Akihiro Suda 2020-08-23 07:26:25 +09:00 committed by GitHub
commit 09cab88da4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,6 +93,7 @@ func DefaultProfile(sp *specs.Spec) *specs.LinuxSeccomp {
"exit", "exit",
"exit_group", "exit_group",
"faccessat", "faccessat",
"faccessat2",
"fadvise64", "fadvise64",
"fadvise64_64", "fadvise64_64",
"fallocate", "fallocate",
@ -224,6 +225,7 @@ func DefaultProfile(sp *specs.Spec) *specs.LinuxSeccomp {
"_newselect", "_newselect",
"open", "open",
"openat", "openat",
"openat2",
"pause", "pause",
"pipe", "pipe",
"pipe2", "pipe2",