public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
* [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 8ea76ebb73498c770374ccef9977518dca300821
@ 2026-05-21  8:54 Michael Tremer
  0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2026-05-21  8:54 UTC (permalink / raw)
  To: ipfire-scm

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 2.x development tree".

The branch, next has been updated
       via  8ea76ebb73498c770374ccef9977518dca300821 (commit)
       via  206ab4593d6c426459c5c7a010a1211ffb0ee822 (commit)
       via  b2b8e7c8e3a6282e5b613b9641fed65c8fbd6c47 (commit)
       via  1942731aa56be77122f5b82ee42889d6d4e2dcb2 (commit)
       via  5366437cb999efdb0626491251a042ca3ad598b0 (commit)
       via  0d2db0a40b9d3744ee12a6435cc507935accdd3e (commit)
      from  2c8de1c98a91f7afeafa575f040c1d76af502f7c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 8ea76ebb73498c770374ccef9977518dca300821
Author: Michael Tremer <michael.tremer@ipfire.org>
Date:   Thu May 21 08:54:16 2026 +0000

    core203: Ship GnuTLS
    
    This is required because of the libnettle so-bump.
    
    Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>

commit 206ab4593d6c426459c5c7a010a1211ffb0ee822
Author: Adolf Belka <adolf.belka@ipfire.org>
Date:   Wed May 20 22:15:47 2026 +0200

    core203: Ship squid
    
    Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>

commit b2b8e7c8e3a6282e5b613b9641fed65c8fbd6c47
Author: Adolf Belka <adolf.belka@ipfire.org>
Date:   Wed May 20 22:15:49 2026 +0200

    squid: Add --without-nettle to configure options
    
    - nettle-4.0 has various API/ABI changes that prevent squid from building.
    - input from @michael was to use the --without-nettle configure option until the squid
       dev team provide an update for the API/ABI changes and squidf in IPFire is migrated
       successfully from the 6.x branch to the 7.x branch
    - All other packages that use nettle, such as gnutls etc have updated versions capable
       of working with nettle-4.0
    
    Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>

commit 1942731aa56be77122f5b82ee42889d6d4e2dcb2
Author: Adolf Belka <adolf.belka@ipfire.org>
Date:   Wed May 20 22:15:46 2026 +0200

    core203: Ship nettle
    
    Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>

commit 5366437cb999efdb0626491251a042ca3ad598b0
Author: Adolf Belka <adolf.belka@ipfire.org>
Date:   Wed May 20 22:15:48 2026 +0200

    nettle: Update to version 4.0
    
    - Update from version 3.10.2 to 4.0
    - Update of rootfile
    - Changelog
    4.0
    	This is a new major release. It includes one new feature,
    	 support for SLH-DSA. There are several changes to Nettle's
    	 API, as well as deletion of obsolete features. There are also
    	 several improvements to the ABI that leaves the API mostly
    	 unchanged, in particular, smaller context structs for several
    	 algorithms.
    	The most disruptive API change is that the *_digest functions
    	 no longer takes the desired digest size as argument. Truncated
    	 hashes appeared to be an important use case decades ago when
    	 the previous interface was designed, but that is now rather
    	 obscure.
    	Feedback on the new interfaces is appreciated, e.g., if the
    	 variable tag length for OCB and CCM should be supported
    	 differently, if additional types would benefit from larger
    	 alignment, or if there are remaining interface bugs or
    	 inconsistencies. Smaller additional API or ABI changes may be
    	 considered for the next release, Nettle-4.1, but after that,
    	 the intention is that both ABI and API should stay backwards
    	 compatible for a longer time.
    	The shared library names are libnettle.so.9.0 and
    	 libhogweed.so.7.0, with new sonames libnettle.so.9 and
    	 libhogweed.so.7.
        Interface changes:
    	* The _digest functions for hash algorithms, MACs and AEADs no
    	  longer take the desired digest size as argument, instead,
    	  they always produce the full-size digest. The typedef
    	  nettle_hash_digest_func has also been changed accordingly.
    	  There are two exceptions: CCM and OCB. These AEAD algorithms
    	  are specified with a variable tag length, which is not a
    	  mere truncation of the output. Their _digest functions
    	  (ccm_digest, ocb_digest, ccm_ae128_digest, ...) also have
    	  their length argument deleted, but they still produce a
    	  variable size digest. The number of octets to write (at most
    	  16) is stored into the context struct by the corresponding
    	  _set_nonce function.
    	* The functions to process complete messages using CCM AES now
    	  take a const cipher context as the first argument, e.g,
    	  first argument to ccm_aes128_encrypt_message is now a const
    	  struct aes128_ctx *. It used to be a struct ccm_aes128_ctx
    	  *, where everything but the underlying cipher context was
    	  ignored.
    	* The SHA3 functions now use the same struct sha3_ctx for all
    	  flavors, and the same function sha3_init. Old names, e.g.,
    	  sha3_256_ctx and sha3_256_init, are defined as preprocessor
    	  aliases, for backwards compatibility.
    	* The dst_length argument to base16_decode_update and
    	  base64_decode_update is now both an input and output
    	  argument. On input it must now hold the size of the
    	  destination buffer, and decoding fails if that is not
    	  sufficient. Previously, dst_length was an output only, and
    	  it was required that the destination buffer was large enough
    	  for any input of the given src_length.
        Interface deletions:
    	* Deleted the old struct aes_ctx, and all functions operating
    	  on it. Use the fixed key size interfaces instead, e.g.,
    	  struct aes256_ctx, introduced in Nettle-3.0.
    	* Deleted dsa-compat.h, and everything declared therein. Use
    	  the interface in dsa.h, introduced in Nettle-3.0.
    	* Deleted old header sha.h. Use sha1.h or sha2.h instead, as
    	  appropriate.
    	* Deleted the general HMAC interface, with functions like
    	  hmac_set_key that work with an arbitrary underlying hash
    	  function. Use the specific hmac functions instead, e.g.,
    	  hmac_sha256_set_key, or the mac abstraction defined in
    	  nettle-meta.h, e.g, the nettle_hmac_sha256 instance.
    	* Deleted the undocumented struct nettle_armor abstraction.
    	* Deleted the undocumented function base64_encode_group.
    	* Deleted md5-compat.h, and everything declared therein. Use
    	  the interface in md5.h instead (or even better, stop using md5).
    	* Deleted pgp.h, and everything declared therein. This attempt
    	  to support openpgp formats was incomplete, undocumented, and
    	  mostly obsolete.
    	* Delete all the *_DATA_SIZE compatibility aliases. Use
    	  corresponding *_BLOCK_SIZE constants instead, introduced in
    	  Nettle-3.0.
    	* Deleted the obsolete functions _rsa_blind and _rsa_unblind.
    	  (Current RSA blinding in Nettle uses internal functions with
    	  a different interface).
    	* Delete compatibility aliases salsa20_set_iv,
    	  SALSA20_IV_SIZE. These were renamed to salsa20_set_nonce and
    	  SALSA20_NONCE_SIZE in Nettle-3.0.
    	* Deleted compatibility aliases _nettle_md5_compress,
    	  _nettle_sha1_compress. These internal functions were
    	  promoted to documented and supported functions in
    	  Nettle-3.9, with new names md5_compress and sha1_compress.
    	* Deleted compatibility alias yarrow_force_reseed. Renamed to
    	  yarrow_slow_reseed in Nettle-2.0.
        ABI changes and improvements.
    	* Introduce 16-byte alignment on certain types. Applied to
    	  union nettle_block16, and subkey arrays of AES and UMAC.
    	  This is intended to improve performance for SIMD load and
    	  store instructions, which on some platforms may be faster
    	  with proper alignment. The larger alignment is enabled only
    	  for platforms where the alignment of the uint64_t type is 8.
    	* Size of struct gcm_key is reduced from 4096 bytes to 2048.
    	* Size of the new sha3_ctx is considerable smaller, 216 bytes,
    	  than the previous types that included a buffer for a
    	  complete block. E.g., the largest one, for sha3_128_ctx
    	  (shake128), used to be 376 bytes.
    	* Size of HMAC contexts have been reduced, by not including
    	  multiple block buffers. E.g, size of struct hmac_sha256_ctx
    	  reduced from 336 bytes to 192. This change has been
    	  discussed for a long time, with first attempt made by Dmitry
    	  Baryshkov years ago, but delayed, since it implies an ABI
    	  break.
    	* For OCB block counters, use type uint32_t for blocks of
    	  associated data, and uint64_t for message blocks, instead of
    	  size_t. This makes the implementation limits the same for
    	  32-bit and 64-bit platforms.
        Bug fixes:
    	* Fix off-by-one bug in sexp parser, which could result in a
    	  one byte overread on invalid input. Also fix excessive
    	  recursion and stack usage for some inputs. Both problems
    	  reported via oss-fuzz.
    	* Fix ed448_shake256_verify to check that the final signature
    	  octet is zero (previous versions completely ignored this
    	  somewhat redundant octet). Reported by Oren Yomtov.
        New features:
    	* Support for SLH-DSA signatures (stateless hash-based digital
    	  signature algorithm). See the Nettle manual for details.
    	* New public function drbg_ctr_aes256_update, to enable
    	  FIPS-compliant reseeding. Contributed by Daiki Ueno.
        Configure and build changes:
    	* Support for at least C99 is required when building Nettle.
    	  In addition, support for alignof and alignas is required;
    	  these are part of C11, but intention is that this is the
    	  only required C11 feature.
    	* The unusual configure options --with-lib-path and
    	  --with-include-path has been deleted. Use CFLAGS and LDFLAGS
    	  instead. This implies that Nettle's configure script no
    	  longer attempts to add rpath-related linker flags
    	  automagically; if any are needed, they must be passed in
    	  LDFLAGS.
    	* The logic to sometimes change the default libdir has been
    	  deleted. Previously, configure tried to be helpful and
    	  change the default, e.g., to ${exec_prefix}/lib32 when you
    	  build 32-bit libraries on a system where ${exec_prefix}/lib
    	  is for 64-bit libraries. If you relied on this behavior, you
    	  now have to use the --libdir configure option.
    	* Rearranged getopt files, now based on gnulib copies.
    
    Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>

commit 0d2db0a40b9d3744ee12a6435cc507935accdd3e
Author: Adolf Belka <adolf.belka@ipfire.org>
Date:   Wed May 20 18:09:41 2026 +0200

    tshark: Update to version 4.6.6
    
    - Update from version 4.6.5 to 4.6.6
    - Update of rootfile
    - 1 vulnerability fix
    - Changelog
    4.6.6
    The following vulnerabilities have been fixed:
        wnpa-sec-2026-51 ROHC protocol dissector crash. Issue 21243.
    The following bugs have been fixed:
        Wireshark crashes when run under Visual Studio on Windows. Work item 24787.
        Welcome page slide preferences are now available in the preferences window.
        vwr: Read of uninitialized memory in pntoh16. Issue 16460.
        vwr: Read of uninitialized memory in find_signature. Issue 16461.
        Upgrades on Windows do not retain existing optional features unless explicitly
    	requested, resulting in accidental removal of features. Issue 18925.
        Wireshark.exe version 4.6.5 is twice as large as version 4.6.4. Issue 21233.
        MACsec dissector global-buffer-overflow. Issue 21235.
        Wireshark 4.6.5 does not run on Windows 10 version 1809 (including Server 2019
    	and some LTSC versions) Issue 21237.
        Fuzz job issue: fuzz-2026-05-02-14184750352.pcap. Issue 21240.
        packet-bacapp: rename aurth-request to auth-request. Issue 21246.
        Fuzz job issue: randpkt-2026-05-10-14293434231.pcap. Issue 21253.
    
    Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>

-----------------------------------------------------------------------

Summary of changes:
 config/rootfiles/common/nettle                              | 13 +++++--------
 config/rootfiles/{oldcore/110 => core/203}/filelists/gnutls |  0
 config/rootfiles/{oldcore/101 => core/203}/filelists/nettle |  0
 config/rootfiles/{oldcore/100 => core/203}/filelists/squid  |  0
 config/rootfiles/packages/tshark                            |  6 ++++--
 lfs/nettle                                                  |  6 +++---
 lfs/squid                                                   |  6 +++---
 lfs/tshark                                                  |  6 +++---
 8 files changed, 18 insertions(+), 19 deletions(-)
 copy config/rootfiles/{oldcore/110 => core/203}/filelists/gnutls (100%)
 copy config/rootfiles/{oldcore/101 => core/203}/filelists/nettle (100%)
 copy config/rootfiles/{oldcore/100 => core/203}/filelists/squid (100%)

Difference in files:
diff --git a/config/rootfiles/common/nettle b/config/rootfiles/common/nettle
index 267d1eef3..cb23f710c 100644
--- a/config/rootfiles/common/nettle
+++ b/config/rootfiles/common/nettle
@@ -27,7 +27,6 @@
 #usr/include/nettle/curve448.h
 #usr/include/nettle/des.h
 #usr/include/nettle/drbg-ctr.h
-#usr/include/nettle/dsa-compat.h
 #usr/include/nettle/dsa.h
 #usr/include/nettle/eax.h
 #usr/include/nettle/ecc-curve.h
@@ -43,7 +42,6 @@
 #usr/include/nettle/macros.h
 #usr/include/nettle/md2.h
 #usr/include/nettle/md4.h
-#usr/include/nettle/md5-compat.h
 #usr/include/nettle/md5.h
 #usr/include/nettle/memops.h
 #usr/include/nettle/memxor.h
@@ -52,7 +50,6 @@
 #usr/include/nettle/nist-keywrap.h
 #usr/include/nettle/ocb.h
 #usr/include/nettle/pbkdf2.h
-#usr/include/nettle/pgp.h
 #usr/include/nettle/pkcs1.h
 #usr/include/nettle/poly1305.h
 #usr/include/nettle/pss-mgf1.h
@@ -63,12 +60,12 @@
 #usr/include/nettle/salsa20.h
 #usr/include/nettle/serpent.h
 #usr/include/nettle/sexp.h
-#usr/include/nettle/sha.h
 #usr/include/nettle/sha1.h
 #usr/include/nettle/sha2.h
 #usr/include/nettle/sha3.h
 #usr/include/nettle/siv-cmac.h
 #usr/include/nettle/siv-gcm.h
+#usr/include/nettle/slh-dsa.h
 #usr/include/nettle/sm3.h
 #usr/include/nettle/sm4.h
 #usr/include/nettle/streebog.h
@@ -78,10 +75,10 @@
 #usr/include/nettle/xts.h
 #usr/include/nettle/yarrow.h
 usr/lib/libhogweed.so
-usr/lib/libhogweed.so.6
-usr/lib/libhogweed.so.6.11
+usr/lib/libhogweed.so.7
+usr/lib/libhogweed.so.7.0
 #usr/lib/libnettle.so
-usr/lib/libnettle.so.8
-usr/lib/libnettle.so.8.11
+usr/lib/libnettle.so.9
+usr/lib/libnettle.so.9.0
 #usr/lib/pkgconfig/hogweed.pc
 #usr/lib/pkgconfig/nettle.pc
diff --git a/config/rootfiles/core/203/filelists/gnutls b/config/rootfiles/core/203/filelists/gnutls
new file mode 120000
index 000000000..8dbe60bc3
--- /dev/null
+++ b/config/rootfiles/core/203/filelists/gnutls
@@ -0,0 +1 @@
+../../../common/gnutls
\ No newline at end of file
diff --git a/config/rootfiles/core/203/filelists/nettle b/config/rootfiles/core/203/filelists/nettle
new file mode 120000
index 000000000..f0dba7ac8
--- /dev/null
+++ b/config/rootfiles/core/203/filelists/nettle
@@ -0,0 +1 @@
+../../../common/nettle
\ No newline at end of file
diff --git a/config/rootfiles/core/203/filelists/squid b/config/rootfiles/core/203/filelists/squid
new file mode 120000
index 000000000..2dc8372a0
--- /dev/null
+++ b/config/rootfiles/core/203/filelists/squid
@@ -0,0 +1 @@
+../../../common/squid
\ No newline at end of file
diff --git a/config/rootfiles/packages/tshark b/config/rootfiles/packages/tshark
index b92e3388e..9042f6777 100644
--- a/config/rootfiles/packages/tshark
+++ b/config/rootfiles/packages/tshark
@@ -11,10 +11,10 @@ usr/bin/dumpcap
 usr/bin/tshark
 #usr/lib/libwireshark.so
 usr/lib/libwireshark.so.19
-usr/lib/libwireshark.so.19.0.5
+usr/lib/libwireshark.so.19.0.6
 #usr/lib/libwiretap.so
 usr/lib/libwiretap.so.16
-usr/lib/libwiretap.so.16.0.5
+usr/lib/libwiretap.so.16.0.6
 #usr/lib/libwsutil.so
 usr/lib/libwsutil.so.17
 usr/lib/libwsutil.so.17.0.0
@@ -73,6 +73,7 @@ usr/libexec/wireshark/extcap/wifidump
 #usr/share/doc/wireshark/rawshark.html
 #usr/share/doc/wireshark/reordercap.html
 #usr/share/doc/wireshark/sdjournal.html
+#usr/share/doc/wireshark/sharkd.html
 #usr/share/doc/wireshark/sshdig.html
 #usr/share/doc/wireshark/sshdump.html
 #usr/share/doc/wireshark/strato.html
@@ -99,6 +100,7 @@ usr/libexec/wireshark/extcap/wifidump
 #usr/share/man/man1/rawshark.1
 #usr/share/man/man1/reordercap.1
 #usr/share/man/man1/sdjournal.1
+#usr/share/man/man1/sharkd.1
 #usr/share/man/man1/sshdig.1
 #usr/share/man/man1/sshdump.1
 #usr/share/man/man1/strato.1
diff --git a/lfs/nettle b/lfs/nettle
index 193bcb178..eedffae9b 100644
--- a/lfs/nettle
+++ b/lfs/nettle
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@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        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 3.10.2
+VER        = 4.0
 
 THISAPP    = nettle-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 2bcd54c97d793238a9c6527f0ba4851dd9e5b53c80abc1ed012ef53e9dbed1fc47c474ca7c29a2c0a989830e45f85eb61db4752dd8b8487cffc8559f43788c89
+$(DL_FILE)_BLAKE2 = 7391fe45917ad394973a9069305c415779182ca9c7640105c47bbf23ef74301099ca8ab1bc18cc331297ec43c848b34b1c1549ae1111dadea17c35032a5ffcdc
 
 install : $(TARGET)
 
diff --git a/lfs/squid b/lfs/squid
index 6963de304..a4de8adb4 100644
--- a/lfs/squid
+++ b/lfs/squid
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@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        #
@@ -131,8 +131,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 		--with-dl \
 		--with-large-files \
 		--without-gnutls \
-		--without-netfilter-conntrack
-
+		--without-netfilter-conntrack \
+		--without-nettle
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 
diff --git a/lfs/tshark b/lfs/tshark
index 6d0529802..84a4ffe23 100644
--- a/lfs/tshark
+++ b/lfs/tshark
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = A Network Traffic Analyser
 
-VER        = 4.6.5
+VER        = 4.6.6
 
 THISAPP    = wireshark-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -35,7 +35,7 @@ DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = tshark
 DEPS       = c-ares libxxhash
-PAK_VER    = 35
+PAK_VER    = 36
 
 SERVICES   =
 
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = bcb40a93ad72b775b703c9fbab0d33a5ec94372625380c54b4247de3ceb9a807ffdca0fbb4035366cd1a557dd5ddc8a775ab1ab1038467814eaa62efdf448865
+$(DL_FILE)_BLAKE2 = 3ba090394930adbd8649df0b93b65ad68f58964fe2a5b8632450f3f3b7d2f26bbc20f95a825d08082b1c2d25ebb420500b3b58b8cb1f6b88b8326c093f56c83f
 
 install : $(TARGET)
 


hooks/post-receive
--
IPFire 2.x development tree


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2026-05-21  8:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-05-21  8:54 [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 8ea76ebb73498c770374ccef9977518dca300821 Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox