From 26ad18247213ff72b4438abe7fc660c958810fa2 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Thu, 10 Sep 2015 10:57:41 +1000 Subject: allow getrandom syscall; from Felix von Leitner --- sandbox-seccomp-filter.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sandbox-seccomp-filter.c') diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c index 2462bcc88..d132e2646 100644 --- a/sandbox-seccomp-filter.c +++ b/sandbox-seccomp-filter.c @@ -147,6 +147,9 @@ static const struct sock_filter preauth_insns[] = { #ifdef __NR_getpid SC_ALLOW(getpid), #endif +#ifdef __NR_getrandom + SC_ALLOW(getrandom), +#endif #ifdef __NR_gettimeofday SC_ALLOW(gettimeofday), #endif -- cgit v1.2.3