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 b7163f35ce389c33f283ba9adf3954adc495820d
parent d4ba6f3485e14cc50919a5c9ad6306510f78e796
Author: Joris Vink <joris@coders.se>
Date:   Thu, 26 Sep 2019 16:29:45 +0200

allow readlink syscall

Diffstat:
src/seccomp.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/seccomp.c b/src/seccomp.c @@ -60,6 +60,7 @@ static struct sock_filter filter_kore[] = { KORE_SYSCALL_ALLOW(writev), KORE_SYSCALL_ALLOW(getcwd), KORE_SYSCALL_ALLOW(unlink), + KORE_SYSCALL_ALLOW(readlink), /* Process related. */ KORE_SYSCALL_ALLOW(exit),