mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #41665 from mikroskeem/41664-pidfd-syscalls-support
seccomp: add pidfd syscalls
This commit is contained in:
commit
b6bfff2a62
2 changed files with 6 additions and 0 deletions
|
@ -232,6 +232,8 @@
|
||||||
"openat",
|
"openat",
|
||||||
"openat2",
|
"openat2",
|
||||||
"pause",
|
"pause",
|
||||||
|
"pidfd_open",
|
||||||
|
"pidfd_send_signal",
|
||||||
"pipe",
|
"pipe",
|
||||||
"pipe2",
|
"pipe2",
|
||||||
"poll",
|
"poll",
|
||||||
|
@ -721,6 +723,7 @@
|
||||||
{
|
{
|
||||||
"names": [
|
"names": [
|
||||||
"kcmp",
|
"kcmp",
|
||||||
|
"pidfd_getfd",
|
||||||
"process_vm_readv",
|
"process_vm_readv",
|
||||||
"process_vm_writev",
|
"process_vm_writev",
|
||||||
"ptrace"
|
"ptrace"
|
||||||
|
|
|
@ -225,6 +225,8 @@ func DefaultProfile() *Seccomp {
|
||||||
"openat",
|
"openat",
|
||||||
"openat2",
|
"openat2",
|
||||||
"pause",
|
"pause",
|
||||||
|
"pidfd_open",
|
||||||
|
"pidfd_send_signal",
|
||||||
"pipe",
|
"pipe",
|
||||||
"pipe2",
|
"pipe2",
|
||||||
"poll",
|
"poll",
|
||||||
|
@ -622,6 +624,7 @@ func DefaultProfile() *Seccomp {
|
||||||
{
|
{
|
||||||
Names: []string{
|
Names: []string{
|
||||||
"kcmp",
|
"kcmp",
|
||||||
|
"pidfd_getfd",
|
||||||
"process_vm_readv",
|
"process_vm_readv",
|
||||||
"process_vm_writev",
|
"process_vm_writev",
|
||||||
"ptrace",
|
"ptrace",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue