[openssh-commits] [openssh] 02/02: seccomp: Allow clock_gettime64() in sandbox.
git+noreply at mindrot.org
git+noreply at mindrot.org
Wed Jan 8 12:21:23 AEDT 2020
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch V_8_1
in repository openssh.
commit a991cc5ed5a7c455fefe909a30cf082011ef5dff
Author: Khem Raj <raj.khem at gmail.com>
Date: Tue Jan 7 16:26:45 2020 -0800
seccomp: Allow clock_gettime64() in sandbox.
This helps sshd accept connections on mips platforms with
upcoming glibc ( 2.31 )
---
sandbox-seccomp-filter.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
index 3ef30c9d..999c46c9 100644
--- a/sandbox-seccomp-filter.c
+++ b/sandbox-seccomp-filter.c
@@ -248,6 +248,9 @@ static const struct sock_filter preauth_insns[] = {
#ifdef __NR_clock_nanosleep_time64
SC_ALLOW(__NR_clock_nanosleep_time64),
#endif
+#ifdef __NR_clock_gettime64
+ SC_ALLOW(__NR_clock_gettime64),
+#endif
#ifdef __NR__newselect
SC_ALLOW(__NR__newselect),
#endif
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list