Merge pull request #41665 from mikroskeem/41664-pidfd-syscalls-support

seccomp: add pidfd syscalls
This commit is contained in:
Justin Cormack 2020-11-13 10:58:59 +00:00 committed by GitHub
commit b6bfff2a62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -232,6 +232,8 @@
"openat",
"openat2",
"pause",
"pidfd_open",
"pidfd_send_signal",
"pipe",
"pipe2",
"poll",
@ -721,6 +723,7 @@
{
"names": [
"kcmp",
"pidfd_getfd",
"process_vm_readv",
"process_vm_writev",
"ptrace"

View file

@ -225,6 +225,8 @@ func DefaultProfile() *Seccomp {
"openat",
"openat2",
"pause",
"pidfd_open",
"pidfd_send_signal",
"pipe",
"pipe2",
"poll",
@ -622,6 +624,7 @@ func DefaultProfile() *Seccomp {
{
Names: []string{
"kcmp",
"pidfd_getfd",
"process_vm_readv",
"process_vm_writev",
"ptrace",