From: Miroslav Lichvar Date: Mon, 5 Dec 2016 09:14:15 +0000 (+0100) Subject: sys_linux: allow openat in seccomp filter X-Git-Tag: 3.0-pre1~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ba8a339661bb5dd815659eb08b8e15f245051a3;p=thirdparty%2Fchrony.git sys_linux: allow openat in seccomp filter --- diff --git a/sys_linux.c b/sys_linux.c index 31b42270..71330272 100644 --- a/sys_linux.c +++ b/sys_linux.c @@ -483,7 +483,7 @@ SYS_Linux_EnableSystemCallFilter(int level) /* TODO: check socketcall arguments */ SCMP_SYS(socketcall), /* General I/O */ - SCMP_SYS(_newselect), SCMP_SYS(close), SCMP_SYS(open), SCMP_SYS(pipe), + SCMP_SYS(_newselect), SCMP_SYS(close), SCMP_SYS(open), SCMP_SYS(openat), SCMP_SYS(pipe), SCMP_SYS(poll), SCMP_SYS(read), SCMP_SYS(futex), SCMP_SYS(select), SCMP_SYS(set_robust_list), SCMP_SYS(write), /* Miscellaneous */