You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: config-linux.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -624,6 +624,9 @@ The following parameters can be specified to set up seccomp:
624
624
*`SECCOMP_FILTER_FLAG_TSYNC`
625
625
*`SECCOMP_FILTER_FLAG_LOG`
626
626
*`SECCOMP_FILTER_FLAG_SPEC_ALLOW`
627
+
*`SECCOMP_FILTER_FLAG_NEW_LISTENER`
628
+
629
+
***`listenerPath`***(string, OPTIONAL)* - specifies the path of UNIX domain socket which the runtime will pass the file descriptor of seccomp notification using SCM_RIGHT to.
627
630
628
631
***`syscalls`***(array of objects, OPTIONAL)* - match a syscall in seccomp.
629
632
While this property is OPTIONAL, some values of `defaultAction` are not useful without `syscalls` entries.
@@ -633,7 +636,7 @@ The following parameters can be specified to set up seccomp:
633
636
***`names`***(array of strings, REQUIRED)* - the names of the syscalls.
634
637
`names` MUST contain at least one entry.
635
638
***`action`***(string, REQUIRED)* - the action for seccomp rules.
636
-
A valid list of constants as of libseccomp v2.4.0 is shown below.
639
+
A valid list of constants is shown below.
637
640
638
641
*`SCMP_ACT_KILL`
639
642
*`SCMP_ACT_KILL_PROCESS`
@@ -642,6 +645,7 @@ The following parameters can be specified to set up seccomp:
642
645
*`SCMP_ACT_TRACE`
643
646
*`SCMP_ACT_ALLOW`
644
647
*`SCMP_ACT_LOG`
648
+
*`SCMP_ACT_NOTIFY`
645
649
646
650
***`errnoRet`***(uint, OPTIONAL)* - the errno return code to use.
647
651
Some actions like `SCMP_ACT_ERRNO` and `SCMP_ACT_TRACE` allow to specify the errno
0 commit comments