public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] traceroute: Update to version 2.1.2
Date: Wed, 30 Aug 2023 16:17:35 +0200	[thread overview]
Message-ID: <20230830141742.2723629-4-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20230830141742.2723629-1-adolf.belka@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 4128 bytes --]

- Update from version 2.1.0 to 2.1.2
- Update of rootfile not required.
- Updated ipfire traceroute patch.
- Changelog
    2.1.2
	*  Fix unprivileged ICMP tracerouting with Linux kernel >= 6.1
	   (Eric Dumazet, SF bug #14)
    2.1.1
	*  Interpret ipv4-mapped ipv6 addresses (::ffff:A.B.C.D) as true ipv4.
	   There are no ipv4-mapped addresses in the real network which we
	   operate on, so use just ipv4 in such cases, but allow users
	   to specify it this way for convenience.
	*  Return back more robast poll(2) loop handling.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/traceroute                                         |  8 ++++----
 ....1.0-ipfire.patch => traceroute-2.1.2-ipfire.patch} | 10 +++++-----
 2 files changed, 9 insertions(+), 9 deletions(-)
 rename src/patches/{traceroute-2.1.0-ipfire.patch => traceroute-2.1.2-ipfire.patch} (65%)

diff --git a/lfs/traceroute b/lfs/traceroute
index fb1a1fc70..12ff5d3f7 100644
--- a/lfs/traceroute
+++ b/lfs/traceroute
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2018  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2023  IPFire Team  <info(a)ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = Packet route path tracing utility
 
-VER        = 2.1.0
+VER        = 2.1.2
 
 THISAPP    = traceroute-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = traceroute
-PAK_VER    = 4
+PAK_VER    = 5
 
 DEPS       =
 
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 4c2126fa98625d525d0a1b0075d16a6ff37836e18d2ce8319f58c89bfa22a6a5e3bbe2ded22fa98d5128c7bb58578327db08120a5b78c1c4ff5673dcc0dea7e6
+$(DL_FILE)_BLAKE2 = e0a89b3f4eef6709bc696a30579645ca096c9c424fd577a988c6d93058858b047ec01f88258bc2e558a4ffc1cc8c047c89fcd9ab85914e2c3060df8a59f07c23
 
 install : $(TARGET)
 
diff --git a/src/patches/traceroute-2.1.0-ipfire.patch b/src/patches/traceroute-2.1.2-ipfire.patch
similarity index 65%
rename from src/patches/traceroute-2.1.0-ipfire.patch
rename to src/patches/traceroute-2.1.2-ipfire.patch
index 14f09d8a8..3d83d743c 100644
--- a/src/patches/traceroute-2.1.0-ipfire.patch
+++ b/src/patches/traceroute-2.1.2-ipfire.patch
@@ -1,6 +1,6 @@
-diff -Naur traceroute-2.0.18.org/traceroute/traceroute.c traceroute-2.0.18/traceroute/traceroute.c
---- traceroute-2.0.18.org/traceroute/traceroute.c	2011-08-18 17:19:48.000000000 +0200
-+++ traceroute-2.0.18/traceroute/traceroute.c	2012-05-06 12:42:55.000000000 +0200
+diff -Naur traceroute-2.1.2.orig/traceroute/traceroute.c traceroute-2.1.2/traceroute/traceroute.c
+--- traceroute-2.1.2.orig/traceroute/traceroute.c	2023-02-13 18:37:06.000000000 +0100
++++ traceroute-2.1.2/traceroute/traceroute.c	2023-08-29 17:36:52.703911135 +0200
 @@ -31,6 +31,9 @@
  #include "version.h"
  #include "traceroute.h"
@@ -11,7 +11,7 @@ diff -Naur traceroute-2.0.18.org/traceroute/traceroute.c traceroute-2.0.18/trace
  
  #ifndef ICMP6_DST_UNREACH_BEYONDSCOPE
  #ifdef ICMP6_DST_UNREACH_NOTNEIGHBOR
-@@ -186,7 +189,7 @@
+@@ -201,7 +204,7 @@
  
  	memset (&hints, 0, sizeof (hints));
  	hints.ai_family = af;
@@ -20,7 +20,7 @@ diff -Naur traceroute-2.0.18.org/traceroute/traceroute.c traceroute-2.0.18/trace
  
  	ret = getaddrinfo (name, NULL, &hints, &res);
  	if (ret) {
-@@ -688,7 +691,7 @@
+@@ -741,7 +744,7 @@
  
  	    buf[0] = '\0';
  	    getnameinfo (&res->sa, sizeof (*res), buf, sizeof (buf),
-- 
2.42.0


  parent reply	other threads:[~2023-08-30 14:17 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-30 14:17 [PATCH] foomatic: Update engine to 4.0.13 and db to 20230828 Adolf Belka
2023-08-30 14:17 ` [PATCH] tcl: Update to version 8.6.13 Adolf Belka
2023-08-30 14:17 ` [PATCH] tor: Update to version 0.4.8.4 Adolf Belka
2023-08-30 14:17 ` Adolf Belka [this message]
2023-08-30 14:17 ` [PATCH] transmission: Update to version 4.0.4 Adolf Belka
2023-08-30 14:17 ` [PATCH] tshark: Update to version 4.0.8 Adolf Belka
2023-08-30 14:17 ` [PATCH] tzdata: Update to version 2023c Adolf Belka
2023-08-30 14:17 ` [PATCH] util-linux: Update to version 2.39.2 Adolf Belka
2023-08-30 14:17 ` [PATCH] whois: Update to version 5.5.18 Adolf Belka
2023-08-30 14:17 ` [PATCH] wireless-regdb: Update to version 2023-05-03 Adolf Belka
2023-08-30 14:17 ` [PATCH] xinetd: Update to version 2.3.15.4 Adolf Belka
2023-08-30 16:26   ` Michael Tremer
2023-08-30 21:55     ` Adolf Belka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230830141742.2723629-4-adolf.belka@ipfire.org \
    --to=adolf.belka@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox