Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package openssh for openSUSE:Factory checked 
in at 2021-02-15 13:15:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openssh (Old)
 and      /work/SRC/openSUSE:Factory/.openssh.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openssh"

Mon Feb 15 13:15:51 2021 rev:150 rq:872342 version:8.4p1

Changes:
--------
--- /work/SRC/openSUSE:Factory/openssh/openssh.changes  2021-02-01 
13:25:59.881897206 +0100
+++ /work/SRC/openSUSE:Factory/.openssh.new.28504/openssh.changes       
2021-02-15 13:15:53.310345403 +0100
@@ -1,0 +2,7 @@
+Mon Feb 15 10:01:33 UTC 2021 - Hans Petter Jansson <[email protected]>
+
+- Add openssh-whitelist-syscalls.patch (bsc#1182232), fixing
+  failure to accept connections on 32-bit platforms with
+  glibc 2.33+.
+
+-------------------------------------------------------------------

New:
----
  openssh-whitelist-syscalls.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ openssh.spec ++++++
--- /var/tmp/diff_new_pack.uRCL1P/_old  2021-02-15 13:15:54.606347321 +0100
+++ /var/tmp/diff_new_pack.uRCL1P/_new  2021-02-15 13:15:54.610347328 +0100
@@ -111,6 +111,7 @@
 Patch43:        openssh-reenable-dh-group14-sha1-default.patch
 Patch44:        openssh-fix-ssh-copy-id.patch
 Patch45:        openssh-8.4p1-ssh_config_d.patch
+Patch46:        openssh-whitelist-syscalls.patch
 BuildRequires:  audit-devel
 BuildRequires:  automake
 BuildRequires:  groff


++++++ openssh-whitelist-syscalls.patch ++++++
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
index 797a14b..02698cc 100644
--- a/sandbox-seccomp-filter.c
+++ b/sandbox-seccomp-filter.c
@@ -204,6 +204,9 @@ static const struct sock_filter preauth_insns[] = {
 #ifdef __NR_futex
        SC_ALLOW(__NR_futex),
 #endif
+#ifdef __NR_futex_time64
+       SC_ALLOW(__NR_futex_time64),
+#endif
 #ifdef __NR_geteuid
        SC_ALLOW(__NR_geteuid),
 #endif
@@ -282,6 +285,9 @@ static const struct sock_filter preauth_insns[] = {
 #ifdef __NR_pselect6
        SC_ALLOW(__NR_pselect6),
 #endif
+#ifdef __NR_pselect6_time64
+       SC_ALLOW(__NR_pselect6_time64),
+#endif
 #ifdef __NR_read
        SC_ALLOW(__NR_read),
 #endif

Reply via email to