mirror of
https://github.com/openwrt/openwrt.git
synced 2025-04-09 12:22:00 +00:00
umdns: add missing syscall to seccomp filter
There is some syscall missing: 'getdents64' 'getrandom' 'statx' 'newfstatat' Found with: 'mkdir /etc/umdns; ln -s /tmp/1.json /etc/umdns/; utrace /usr/sbin/umdns' Signed-off-by: Chen Minqiang <ptpt52@gmail.com> (cherry picked from commit 31cca8f8d3f6218965812c46de35ba30c4ba83ab)
This commit is contained in:
parent
ecf0dc7055
commit
62fff4e1e6
@ -19,12 +19,15 @@
|
||||
"fcntl",
|
||||
"fcntl64",
|
||||
"fstat",
|
||||
"getdents64",
|
||||
"getsockname",
|
||||
"getrandom",
|
||||
"ioctl",
|
||||
"madvise",
|
||||
"mmap",
|
||||
"mmap2",
|
||||
"munmap",
|
||||
"newfstatat",
|
||||
"open",
|
||||
"openat",
|
||||
"pipe",
|
||||
@ -42,6 +45,7 @@
|
||||
"setsockopt",
|
||||
"sigreturn",
|
||||
"socket",
|
||||
"statx",
|
||||
"time",
|
||||
"uname",
|
||||
"write",
|
||||
|
Loading…
x
Reference in New Issue
Block a user