linux: add readv and pipe2 to acme seccomp filters.

This commit is contained in:
Joris Vink 2024-12-12 10:21:25 +01:00
parent 6122affe22
commit 3410a9db91

View File

@ -97,7 +97,12 @@ static struct sock_filter filter_acme[] = {
KORE_SYSCALL_ALLOW(faccessat),
KORE_SYSCALL_ALLOW(newfstatat),
KORE_SYSCALL_ALLOW(clock_gettime),
#if defined(SYS_pipe2)
KORE_SYSCALL_ALLOW(pipe2),
#endif
#if defined(SYS_readv)
KORE_SYSCALL_ALLOW(readv),
#endif
KORE_SYSCALL_ALLOW(bind),
KORE_SYSCALL_ALLOW(ioctl),
KORE_SYSCALL_ALLOW(connect),