From: Vincent Blut Date: Thu, 28 Feb 2019 15:43:56 +0000 (+0100) Subject: sys_linux: allow waitpid in seccomp filter X-Git-Tag: 3.5-pre1~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ebba7fbaaf7c86d1840cacb7aa78b62d0166d5a;p=thirdparty%2Fchrony.git sys_linux: allow waitpid in seccomp filter --- diff --git a/sys_linux.c b/sys_linux.c index aee5a5e5..ebbeaaea 100644 --- a/sys_linux.c +++ b/sys_linux.c @@ -493,7 +493,7 @@ SYS_Linux_EnableSystemCallFilter(int level) SCMP_SYS(clone), SCMP_SYS(exit), SCMP_SYS(exit_group), SCMP_SYS(getpid), SCMP_SYS(getrlimit), SCMP_SYS(rt_sigaction), SCMP_SYS(rt_sigreturn), SCMP_SYS(rt_sigprocmask), SCMP_SYS(set_tid_address), SCMP_SYS(sigreturn), - SCMP_SYS(wait4), + SCMP_SYS(wait4), SCMP_SYS(waitpid), /* Memory */ SCMP_SYS(brk), SCMP_SYS(madvise), SCMP_SYS(mmap), SCMP_SYS(mmap2), SCMP_SYS(mprotect), SCMP_SYS(mremap), SCMP_SYS(munmap), SCMP_SYS(shmdt),