kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit a641c293017e22679a43699670d934ffe833add2
parent a54f806978df92890b6d5d0ea328bcd3382a37be
Author: Joris Vink <joris@coders.se>
Date:   Sat, 11 Dec 2021 20:34:44 +0100

Add SYS_newfstatat to keymgr seccomp rules.

From Aurelien Jarno via patches@

Diffstat:
src/keymgr.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/keymgr.c b/src/keymgr.c @@ -88,6 +88,9 @@ static struct sock_filter filter_keymgr[] = { #if defined(SYS_fstat64) KORE_SYSCALL_ALLOW(fstat64), #endif +#if defined(SYS_newfstatat) + KORE_SYSCALL_ALLOW(newfstatat), +#endif KORE_SYSCALL_ALLOW(futex), KORE_SYSCALL_ALLOW(writev), KORE_SYSCALL_ALLOW(openat),