seccomp: allow fanotify_init without CAP_SYS_ADMIN
Closes: https://github.com/containers/common/issues/2411 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
parent
d093d6c769
commit
b690083685
|
|
@ -145,6 +145,7 @@ func DefaultProfile() *Seccomp {
|
||||||
"fadvise64",
|
"fadvise64",
|
||||||
"fadvise64_64",
|
"fadvise64_64",
|
||||||
"fallocate",
|
"fallocate",
|
||||||
|
"fanotify_init",
|
||||||
"fanotify_mark",
|
"fanotify_mark",
|
||||||
"fchdir",
|
"fchdir",
|
||||||
"fchmod",
|
"fchmod",
|
||||||
|
|
@ -614,7 +615,6 @@ func DefaultProfile() *Seccomp {
|
||||||
{
|
{
|
||||||
Names: []string{
|
Names: []string{
|
||||||
"bpf",
|
"bpf",
|
||||||
"fanotify_init",
|
|
||||||
"lookup_dcookie",
|
"lookup_dcookie",
|
||||||
"quotactl",
|
"quotactl",
|
||||||
"quotactl_fd",
|
"quotactl_fd",
|
||||||
|
|
@ -630,7 +630,6 @@ func DefaultProfile() *Seccomp {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Names: []string{
|
Names: []string{
|
||||||
"fanotify_init",
|
|
||||||
"lookup_dcookie",
|
"lookup_dcookie",
|
||||||
"perf_event_open",
|
"perf_event_open",
|
||||||
"quotactl",
|
"quotactl",
|
||||||
|
|
|
||||||
|
|
@ -152,6 +152,7 @@
|
||||||
"fadvise64",
|
"fadvise64",
|
||||||
"fadvise64_64",
|
"fadvise64_64",
|
||||||
"fallocate",
|
"fallocate",
|
||||||
|
"fanotify_init",
|
||||||
"fanotify_mark",
|
"fanotify_mark",
|
||||||
"fchdir",
|
"fchdir",
|
||||||
"fchmod",
|
"fchmod",
|
||||||
|
|
@ -691,7 +692,6 @@
|
||||||
{
|
{
|
||||||
"names": [
|
"names": [
|
||||||
"bpf",
|
"bpf",
|
||||||
"fanotify_init",
|
|
||||||
"lookup_dcookie",
|
"lookup_dcookie",
|
||||||
"quotactl",
|
"quotactl",
|
||||||
"quotactl_fd",
|
"quotactl_fd",
|
||||||
|
|
@ -711,7 +711,6 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"names": [
|
"names": [
|
||||||
"fanotify_init",
|
|
||||||
"lookup_dcookie",
|
"lookup_dcookie",
|
||||||
"perf_event_open",
|
"perf_event_open",
|
||||||
"quotactl",
|
"quotactl",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue