From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gLKQJ6xYXz2xxR for ; Wed, 20 May 2026 18:12:40 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gLKQF450Dz2xMP for ; Wed, 20 May 2026 18:12:37 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gLKQF0V0FzDJ for ; Wed, 20 May 2026 18:12:37 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779300757; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=mTA5Yr/QmC6vnqZVEmZj1dqOm4FhgIDtXzSIMGBTfB8=; b=L2LdmAGh9y1/8siCRqCjLpjQXzKwf5MjrZgcM6Is05f8Xm3wscAxwdahzNXO8c5p+cjckI Iq8LQSLt4mAaMTBQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779300757; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=mTA5Yr/QmC6vnqZVEmZj1dqOm4FhgIDtXzSIMGBTfB8=; b=CpQlV46IWv8Y7/Hx42cRNxGKf6Jpl1a390rsE8mNXwzGlrfezc8iOQ2yIpm69Fk4MfF361 RvWkJwQ0XFm9OgszUHpXgkeRuZ2NWdcKKLzQh98MPJVEO3KA/69HIGenfrazG+S0zbWbhL xw3i5btwWj3rwdDxMP0jicW9cQHs6Kngt7XFC1Y+8PL4ldW/OPmAzv8Ttx4evDEgLjnmY7 sqRAt5+34P9Zz0eHVN8LQs+99vh5UQ8+ksFL8b9Y1eBNOWg0xHWVoem9YGQ2/gwy2k40G0 sOw/1DIjKdpsRe+AYVxXHwY3MWML6raCH2m18+CPhg7GA5Kb8NuBIi1Y7+kXdQ== Message-ID: <6f7aff6a-d5e6-46d5-bed9-767bd40bc332@ipfire.org> Date: Wed, 20 May 2026 20:12:34 +0200 Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Subject: Re: Problem with update of nettle to 4.0 Content-Language: en-US To: development@lists.ipfire.org References: <6AE8ADFC-BBFE-485D-A646-7C9705C0782C@ipfire.org> <4B486B30-59F4-4879-A529-5B2605AC01C4@ipfire.org> From: Matthias Fischer In-Reply-To: <4B486B30-59F4-4879-A529-5B2605AC01C4@ipfire.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On 20.05.2026 17:59, Michael Tremer wrote: > Hello Adolf, FYI - currently running: 'squid 7.5' Added: '--without-nettle' Removed: '--disable-esi' '--enable-ident-lookups' 'cachemgr'-entries Updates -> The Devels are running: 'unbound 1.25.1', 'rrdtool 1.10.2', 'bind 9.20.23' ;-) Best Matthias >> On 20 May 2026, at 16:57, Adolf Belka wrote: >> >> Hi Michael, >> >> On 20/05/2026 17:32, Michael Tremer wrote: >>> Hello Adolf, >>> Thanks for looking into this. >>> I wasn’t quite aware how outdated we are on squid, so let’s change that. >> >> I think Matthias looked at updating squid from the 6.x to 7.x branch but felt uncomfortable with how to deal with some of the changes in that new branch. >> >> Maybe we can both have a try and see what happens. Check if we can we make it work as expected. I will look back at the previous email chain on the discussion on moving to squid-7.x > > Yes, please. If there is a number of items that need work in our scripting, tooling or UI, please create an umbrella ticket and create tickets for individual tasks so that we can assign them and share the load amongst several shoulders. > >>> I checked the code and there are exactly two places where nettle is being used: >>> * The base64 encoder/decoder >>> https://git.ipfire.org/?p=thirdparty/squid.git;a=blob;f=include/base64.h;hb=5c1d937d2068e4861f206884cebb02d2958d3563#l13 >>> * Some code to compute MD5 checksums >>> https://git.ipfire.org/?p=thirdparty/squid.git;a=blob;f=include/md5.h;hb=5c1d937d2068e4861f206884cebb02d2958d3563#l13 >> >> This was the bit where the build failed as it could not find MD5_DIGEST_SIZE. It could be that the base64 encoder/decoder might have been next in line. >> >>> Both have an alternative implementation, so it is absolutely safe for us to build squid with --without-nettle. That way we won’t be held back until they have agreed on a unified API. >>> > Let me know if this helps. >> >> I will try it and see. Everything before the squid build had no problems with nettle-4.0, I just need to see if there is anything still to come in the build tree. I will look at it when/if it comes. >> >> Regards, >> >> Adolf. >> >>> All the best, >>> -Michael >>>> On 20 May 2026, at 13:47, Adolf Belka wrote: >>>> >>>> Hi all, >>>> >>>> For information. >>>> >>>> A new nettle version has come out. Our old version was 3.10.2 and the new one is 4.0 >>>> >>>> Unfortunately nettle-4.0 has a new API/ABI and several packages that use nettle have found that it won't build for them. >>>> >>>> Many of those packages have already issued updated versions that now work with nettle-4.0 >>>> >>>> That is not the case with squid. Here we have a greater problem. >>>> >>>> Currently we are on squid-6.14 and the current release is squid-7.5. squid-6.14 fails to build with nettle-4.0 as there are changes in various variables/parameters. >>>> >>>> squid-7.5 does not yet have any fix for the nettle API/ABI changes. I did find some discussion on it in the Pull Requests section but there seems to be some disagreement between various of the squid contributors which seems to be blocking anything being accepted. It is also not clear if that pull request would fix the error that I found in my build with squid-6.14 >>>> >>>> squid has not been updated to the 7.x branch in IPFire because there were a lot of significant changes in it which would require some re-write of our web proxy code. >>>> >>>> It is probably worth noting that squid-6.14 stopped getting any security support in July 2025. >>>> >>>> There also seems to be questions about squid-8.x and if it will have even more major changes to options. >>>> >>>> squid typically is having a two year cycle on their major branch changes and so the expectation is that squid-7.x will go EOL somewhere around July 2027 with squid-8.x having beta status in Feb 2027 and stable declaration in July 2027 when 7.x is EOL'd >>>> >>>> I will try and see if any other packages we run have any linkage to nettle. >>>> >>>> Regards, >>>> >>>> Adolf. >>>> >> >> > >