forked from pool/openssh
31 lines
748 B
Diff
31 lines
748 B
Diff
|
# HG changeset patch
|
||
|
# Parent 51a94ce61ff5c6908d747d8bc5806e18c6f5c114
|
||
|
Allow the stat() syscall for OpenSSL re-seed patch
|
||
|
(which causes OpenSSL use stat() on some file)
|
||
|
|
||
|
bnc#912436
|
||
|
|
||
|
diff --git a/openssh-7.2p2/sandbox-seccomp-filter.c b/openssh-7.2p2/sandbox-seccomp-filter.c
|
||
|
--- a/openssh-7.2p2/sandbox-seccomp-filter.c
|
||
|
+++ b/openssh-7.2p2/sandbox-seccomp-filter.c
|
||
|
@@ -130,16 +130,19 @@ static const struct sock_filter preauth_
|
||
|
SC_ALLOW(brk),
|
||
|
#endif
|
||
|
#ifdef __NR_clock_gettime
|
||
|
SC_ALLOW(clock_gettime),
|
||
|
#endif
|
||
|
#ifdef __NR_close
|
||
|
SC_ALLOW(close),
|
||
|
#endif
|
||
|
+#ifdef __NR_stat
|
||
|
+ SC_ALLOW(stat),
|
||
|
+#endif
|
||
|
#ifdef __NR_exit
|
||
|
SC_ALLOW(exit),
|
||
|
#endif
|
||
|
#ifdef __NR_exit_group
|
||
|
SC_ALLOW(exit_group),
|
||
|
#endif
|
||
|
#ifdef __NR_getpgid
|
||
|
SC_ALLOW(getpgid),
|