File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -604,13 +604,14 @@ The following parameters can be specified to set up seccomp:
604
604
* ** ` names ` ** * (array of strings, REQUIRED)* - the names of the syscalls.
605
605
` names ` MUST contain at least one entry.
606
606
* ** ` action ` ** * (string, REQUIRED)* - the action for seccomp rules.
607
- A valid list of constants as of libseccomp v2.3.2 is shown below.
607
+ A valid list of constants as of libseccomp v2.4.0 is shown below.
608
608
609
609
* ` SCMP_ACT_KILL `
610
610
* ` SCMP_ACT_TRAP `
611
611
* ` SCMP_ACT_ERRNO `
612
612
* ` SCMP_ACT_TRACE `
613
613
* ` SCMP_ACT_ALLOW `
614
+ * ` SCMP_ACT_LOG `
614
615
615
616
* ** ` args ` ** * (array of objects, OPTIONAL)* - the specific syscall in seccomp.
616
617
Original file line number Diff line number Diff line change 39
39
" SCMP_ACT_TRAP" ,
40
40
" SCMP_ACT_ERRNO" ,
41
41
" SCMP_ACT_TRACE" ,
42
- " SCMP_ACT_ALLOW"
42
+ " SCMP_ACT_ALLOW" ,
43
+ " SCMP_ACT_LOG"
43
44
]
44
45
},
45
46
"SeccompFlag" : {
Original file line number Diff line number Diff line change @@ -599,6 +599,7 @@ const (
599
599
ActErrno LinuxSeccompAction = "SCMP_ACT_ERRNO"
600
600
ActTrace LinuxSeccompAction = "SCMP_ACT_TRACE"
601
601
ActAllow LinuxSeccompAction = "SCMP_ACT_ALLOW"
602
+ ActLog LinuxSeccompAction = "SCMP_ACT_LOG"
602
603
)
603
604
604
605
// LinuxSeccompOperator used to match syscall arguments in Seccomp
You can’t perform that action at this time.
0 commit comments