Your message dated Sat, 27 Mar 2021 10:26:45 +0000
with message-id
<702e3cb8159c9986264e966af79023672688a8a4.ca...@adam-barratt.org.uk>
and subject line Closing p-u requests for fixes included in 10.9 point release
has caused the Debian Bug report #985115,
regarding buster-pu: package iputils/3:20180629-2+deb10u1
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
985115: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=985115
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian....@packages.debian.org
Usertags: pu
I'd like to update iputils in buster to address important bugs in the
iputils-ping and iputils-tracepath binary packages:
* #976277: iputils-tracepath: destination address of ipv6 probes is cut
off after the first 64 bits. This basically makes tracepath useless for
IPv6.
* #920434: ping does not round correctly. This causing ping to report
incorrect timing results in some cases.
Both are upstream issues that have since been fixed in the upstream
repositories and in bullseye.
The proposed debdiff is attached.
noah
diff -Nru iputils-20180629/debian/changelog iputils-20180629/debian/changelog
--- iputils-20180629/debian/changelog 2020-01-13 15:29:01.000000000 -0800
+++ iputils-20180629/debian/changelog 2021-03-08 11:46:59.000000000 -0800
@@ -1,3 +1,11 @@
+iputils (3:20180629-2+deb10u2) buster; urgency=medium
+
+ * Backport upstream fix for ping rounding errors (Closes: #920434)
+ * Backport upstream fix for tracepath target corruption
+ (Closes: #976277)
+
+ -- Noah Meyerhans <no...@debian.org> Mon, 08 Mar 2021 11:46:59 -0800
+
iputils (3:20180629-2+deb10u1) buster; urgency=medium
* Incorporate patches from Benjamin Poirier <benjamin.poir...@gmail.com> to
diff -Nru
iputils-20180629/debian/patches/bug-920434-Backport-timing-fixes-from-upstream.patch
iputils-20180629/debian/patches/bug-920434-Backport-timing-fixes-from-upstream.patch
---
iputils-20180629/debian/patches/bug-920434-Backport-timing-fixes-from-upstream.patch
1969-12-31 16:00:00.000000000 -0800
+++
iputils-20180629/debian/patches/bug-920434-Backport-timing-fixes-from-upstream.patch
2021-03-08 11:33:32.000000000 -0800
@@ -0,0 +1,39 @@
+From: Noah Meyerhans <no...@debian.org>
+Description: Backport ping timing fixes from upstream
+Bug-Debian: https://bugs.debian.org/920434
+
+---
+ ping_common.c | 18 +++++++++---------
+ 1 file changed, 9 insertions(+), 9 deletions(-)
+
+Index: iputils/ping_common.c
+===================================================================
+--- iputils.orig/ping_common.c
++++ iputils/ping_common.c
+@@ -853,17 +853,17 @@ restamp:
+ return 1;
+ }
+ if (timing) {
+- if (triptime >= 100000)
+- printf(" time=%ld ms", (triptime+500)/1000);
+- else if (triptime >= 10000)
+- printf(" time=%ld.%01ld ms", triptime/1000,
+- ((triptime%1000)+50)/100);
++ if (triptime >= 100000 - 50)
++ printf(" time=%ld ms", (triptime + 500) / 1000);
++ else if (triptime >= 10000 - 5)
++ printf(" time=%ld.%01ld ms", (triptime + 50) /
1000,
++ ((triptime + 50) % 1000) / 100);
+ else if (triptime >= 1000)
+- printf(" time=%ld.%02ld ms", triptime/1000,
+- ((triptime%1000)+5)/10);
++ printf(" time=%ld.%02ld ms", (triptime + 5) /
1000,
++ ((triptime + 5) % 1000) / 10);
+ else
+- printf(" time=%ld.%03ld ms", triptime/1000,
+- triptime%1000);
++ printf(" time=%ld.%03ld ms", triptime / 1000,
++ triptime % 1000);
+ }
+ if (dupflag)
+ printf(" (DUP!)");
diff -Nru
iputils-20180629/debian/patches/bug-976277-tracepath-dont-truncate-destination.patch
iputils-20180629/debian/patches/bug-976277-tracepath-dont-truncate-destination.patch
---
iputils-20180629/debian/patches/bug-976277-tracepath-dont-truncate-destination.patch
1969-12-31 16:00:00.000000000 -0800
+++
iputils-20180629/debian/patches/bug-976277-tracepath-dont-truncate-destination.patch
2021-03-08 11:46:59.000000000 -0800
@@ -0,0 +1,21 @@
+From: Noah Meyerhans <no...@debian.org>
+Description: backport tracepath bug fix from upstram
+Bug-Debian: https://bugs.debian.org/976277
+
+---
+ tracepath.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: iputils/tracepath.c
+===================================================================
+--- iputils.orig/tracepath.c
++++ iputils/tracepath.c
+@@ -475,7 +475,7 @@ int main(int argc, char **argv)
+ fd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
+ if (fd < 0)
+ continue;
+- memcpy(&target, ai->ai_addr, sizeof(*ai->ai_addr));
++ memcpy(&target, ai->ai_addr, ai->ai_addrlen);
+ targetlen = ai->ai_addrlen;
+ break;
+ }
diff -Nru iputils-20180629/debian/patches/series
iputils-20180629/debian/patches/series
--- iputils-20180629/debian/patches/series 2020-01-13 15:29:01.000000000
-0800
+++ iputils-20180629/debian/patches/series 2021-03-08 11:46:59.000000000
-0800
@@ -1,3 +1,5 @@
set_buildflags
ping-fix-main-loop-over-multiple-addrinfo-results.patch
ping-try-next-addrinfo-on-connect-failure.patch
+bug-920434-Backport-timing-fixes-from-upstream.patch
+bug-976277-tracepath-dont-truncate-destination.patch
--- End Message ---
--- Begin Message ---
Package: release.debian.org
Version: 10.9
Hi,
Each of the updates referenced in these bugs was included in the 10.9
point release today.
Regards,
Adam
--- End Message ---