Skip to content

Commit a2d0ddc

Browse files
authored
Merge pull request containerd#9684 from AkihiroSuda/seccomp-6.7
seccomp: kernel 6.7
2 parents 7516bb9 + a6e52c7 commit a2d0ddc

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

contrib/seccomp/seccomp_default.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ func DefaultProfile(sp *specs.Spec) *specs.LinuxSeccomp {
6464
"alarm",
6565
"bind",
6666
"brk",
67+
"cachestat", // kernel v6.5, libseccomp v2.5.5
6768
"capget",
6869
"capset",
6970
"chdir",
@@ -109,6 +110,7 @@ func DefaultProfile(sp *specs.Spec) *specs.LinuxSeccomp {
109110
"fchdir",
110111
"fchmod",
111112
"fchmodat",
113+
"fchmodat2", // kernel v6.6, libseccomp v2.5.5
112114
"fchown",
113115
"fchown32",
114116
"fchownat",
@@ -130,8 +132,11 @@ func DefaultProfile(sp *specs.Spec) *specs.LinuxSeccomp {
130132
"ftruncate",
131133
"ftruncate64",
132134
"futex",
135+
"futex_requeue", // kernel v6.7, libseccomp v2.5.5
133136
"futex_time64",
137+
"futex_wait", // kernel v6.7, libseccomp v2.5.5
134138
"futex_waitv",
139+
"futex_wake", // kernel v6.7, libseccomp v2.5.5
135140
"futimesat",
136141
"getcpu",
137142
"getcwd",
@@ -214,6 +219,7 @@ func DefaultProfile(sp *specs.Spec) *specs.LinuxSeccomp {
214219
"mlock",
215220
"mlock2",
216221
"mlockall",
222+
"map_shadow_stack", // kernel v6.6, libseccomp v2.5.5
217223
"mmap",
218224
"mmap2",
219225
"mprotect",
@@ -671,6 +677,7 @@ func DefaultProfile(sp *specs.Spec) *specs.LinuxSeccomp {
671677
"get_mempolicy",
672678
"mbind",
673679
"set_mempolicy",
680+
"set_mempolicy_home_node", // kernel v5.17, libseccomp v2.5.4
674681
},
675682
Action: specs.ActAllow,
676683
Args: []specs.LinuxSeccompArg{},

0 commit comments

Comments
 (0)