From: Ronny Kotzschmar Date: Thu, 7 Oct 2021 13:28:13 +0000 (+0200) Subject: umdns: add missing syscalls to seccomp filter X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=72bfc35f8fc5ade55f4c66cb8d171b93e1358b15;p=openwrt%2Fstaging%2Fwigyori.git umdns: add missing syscalls to seccomp filter The 'mmap', 'mmap2', 'munmap' syscalls are missing. Found with 'utrace /usr/sbin/umdns'. Signed-off-by: Ronny Kotzschmar --- diff --git a/package/network/services/umdns/files/umdns.json b/package/network/services/umdns/files/umdns.json index 5533b7c512..aa9f49fa32 100644 --- a/package/network/services/umdns/files/umdns.json +++ b/package/network/services/umdns/files/umdns.json @@ -20,6 +20,9 @@ "fstat", "getsockname", "ioctl", + "mmap", + "mmap2", + "munmap", "open", "openat", "pipe",