allow getrandom syscall; from Felix von Leitner

This commit is contained in:
Damien Miller 2015-09-10 10:57:41 +10:00
parent 5245bc1e6b
commit 26ad182472
1 changed files with 3 additions and 0 deletions

View File

@ -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