From 38a642f127a4119cffbde5c3854acba275ad9748 Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Mon, 4 Oct 2021 18:33:58 -0700 Subject: Update bazel packages --- runsc/boot/filter/config.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'runsc') diff --git a/runsc/boot/filter/config.go b/runsc/boot/filter/config.go index d875aa334..db363435b 100644 --- a/runsc/boot/filter/config.go +++ b/runsc/boot/filter/config.go @@ -646,6 +646,11 @@ func hostInetFilters() seccomp.SyscallRules { func controlServerFilters(fd int) seccomp.SyscallRules { return seccomp.SyscallRules{ + unix.SYS_ACCEPT4: []seccomp.Rule{ + { + seccomp.EqualTo(fd), + }, + }, unix.SYS_ACCEPT: []seccomp.Rule{ { seccomp.EqualTo(fd), -- cgit v1.2.3