[openssh-commits] [openssh] 01/01: allow getrandom syscall; from Felix von Leitner
git+noreply at mindrot.org
git+noreply at mindrot.org
Thu Sep 10 10:58:05 AEST 2015
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 26ad18247213ff72b4438abe7fc660c958810fa2
Author: Damien Miller <djm at mindrot.org>
Date: Thu Sep 10 10:57:41 2015 +1000
allow getrandom syscall; from Felix von Leitner
---
sandbox-seccomp-filter.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
index 2462bcc..d132e26 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
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list