From 0be656ad1e33b5f7bc90f6487aed212bf19cba4f Mon Sep 17 00:00:00 2001 From: eabdullin Date: Wed, 8 Nov 2023 11:37:46 +0000 Subject: [PATCH] import UBI net-snmp-5.8-27.el8_8.1 --- SOURCES/net-snmp-5.8-sendmsg-error-code.patch | 12 ++++++++++++ SPECS/net-snmp.spec | 7 ++++++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 SOURCES/net-snmp-5.8-sendmsg-error-code.patch diff --git a/SOURCES/net-snmp-5.8-sendmsg-error-code.patch b/SOURCES/net-snmp-5.8-sendmsg-error-code.patch new file mode 100644 index 0000000..576495e --- /dev/null +++ b/SOURCES/net-snmp-5.8-sendmsg-error-code.patch @@ -0,0 +1,12 @@ +diff -urNp a/snmplib/transports/snmpUDPBaseDomain.c b/snmplib/transports/snmpUDPBaseDomain.c +--- a/snmplib/transports/snmpUDPBaseDomain.c 2023-08-01 08:20:56.776099134 +0200 ++++ b/snmplib/transports/snmpUDPBaseDomain.c 2023-08-01 08:23:18.921323874 +0200 +@@ -293,7 +293,7 @@ int netsnmp_udpbase_sendto(int fd, const + } + + rc = sendmsg(fd, &m, MSG_NOSIGNAL|MSG_DONTWAIT); +- if (rc >= 0 || errno != EINVAL) ++ if (rc >= 0 || (errno != EINVAL && errno != ENETUNREACH)) + return rc; + + /* diff --git a/SPECS/net-snmp.spec b/SPECS/net-snmp.spec index 9c7f998..680b248 100644 --- a/SPECS/net-snmp.spec +++ b/SPECS/net-snmp.spec @@ -10,7 +10,7 @@ Summary: A collection of SNMP protocol tools and libraries Name: net-snmp Version: 5.8 -Release: 27%{?dist} +Release: 27%{?dist}.1 Epoch: 1 License: BSD @@ -76,6 +76,7 @@ Patch47: net-snmp-5.8-dev-mem-leak.patch Patch48: net-snmp-5.8-CVE-2022-44792-44793.patch Patch49: net-snmp-5.8-ipv6-disable-leak.patch Patch50: net-snmp-5.8-proxy-time-out.patch +Patch51: net-snmp-5.8-sendmsg-error-code.patch # Modern RPM API means at least EL6 Patch101: net-snmp-5.8-modern-rpm-api.patch @@ -251,6 +252,7 @@ rm -r python %patch48 -p1 %patch49 -p1 -b .ipv6-disable-leak %patch50 -p1 -b .proxy-time-out +%patch51 -p1 -b .sendmsg-error-code %patch101 -p1 -b .modern-rpm-api @@ -505,6 +507,9 @@ LD_LIBRARY_PATH=%{buildroot}/%{_libdir} make test %{_libdir}/libnetsnmptrapd*.so.%{soname}* %changelog +* Wed Aug 02 2023 Josef Ridky - 1:5.8-27.1 +- fix sendmsg error code for new kernel (#2226995) + * Tue Jan 31 2023 Josef Ridky - 1:5.8-27 - fix memory leak due of proc file creating (#2105957) - fix CVE-2022-44792 and CVE-2022-44793 (#2141901) and (#2141905)