diff options
| author | Ronny Kotzschmar | 2021-10-07 13:28:13 +0000 |
|---|---|---|
| committer | Paul Spooren | 2021-10-08 09:21:59 +0000 |
| commit | 72bfc35f8fc5ade55f4c66cb8d171b93e1358b15 (patch) | |
| tree | e7f9a0cf25630c840813cdf77b5259791ab41458 | |
| parent | c2222f74c8eff592032473ab2d29d5e8febace63 (diff) | |
| download | openwrt-72bfc35f8fc5ade55f4c66cb8d171b93e1358b15.tar.gz | |
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.json | 3 |
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", |