aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonny Kotzschmar <ro.ok@me.com>2021-10-07 15:28:13 +0200
committerPaul Spooren <mail@aparcar.org>2021-10-07 23:21:59 -1000
commit72bfc35f8fc5ade55f4c66cb8d171b93e1358b15 (patch)
treee7f9a0cf25630c840813cdf77b5259791ab41458
parentc2222f74c8eff592032473ab2d29d5e8febace63 (diff)
downloadupstream-72bfc35f8fc5ade55f4c66cb8d171b93e1358b15.tar.gz
upstream-72bfc35f8fc5ade55f4c66cb8d171b93e1358b15.tar.bz2
upstream-72bfc35f8fc5ade55f4c66cb8d171b93e1358b15.zip
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 <ro.ok@me.com>
-rw-r--r--package/network/services/umdns/files/umdns.json3
1 files changed, 3 insertions, 0 deletions
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",