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 31cca8f8d3
)
This commit is contained in:
parent
ecf0dc7055
commit
62fff4e1e6
1 changed files with 4 additions and 0 deletions
|
@ -19,12 +19,15 @@
|
||||||
"fcntl",
|
"fcntl",
|
||||||
"fcntl64",
|
"fcntl64",
|
||||||
"fstat",
|
"fstat",
|
||||||
|
"getdents64",
|
||||||
"getsockname",
|
"getsockname",
|
||||||
|
"getrandom",
|
||||||
"ioctl",
|
"ioctl",
|
||||||
"madvise",
|
"madvise",
|
||||||
"mmap",
|
"mmap",
|
||||||
"mmap2",
|
"mmap2",
|
||||||
"munmap",
|
"munmap",
|
||||||
|
"newfstatat",
|
||||||
"open",
|
"open",
|
||||||
"openat",
|
"openat",
|
||||||
"pipe",
|
"pipe",
|
||||||
|
@ -42,6 +45,7 @@
|
||||||
"setsockopt",
|
"setsockopt",
|
||||||
"sigreturn",
|
"sigreturn",
|
||||||
"socket",
|
"socket",
|
||||||
|
"statx",
|
||||||
"time",
|
"time",
|
||||||
"uname",
|
"uname",
|
||||||
"write",
|
"write",
|
||||||
|
|
Loading…
Reference in a new issue