buildroot.buildroot.org archive mirror
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/libgcrypt: bump version to 1.2.3
@ 2026-09-01 19:27 Peter Korsgaard
  2026-09-01 20:48 ` Julien Olivain via buildroot
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Korsgaard @ 2026-09-01 19:27 UTC (permalink / raw)
  To: buildroot

Release notes:
https://lists.gnu.org/archive/html/info-gnu/2026-08/msg00007.html

Contains a number of bugfixes, some of which may have (low severity)
security impact.  As stated by Werner Koch:

 All in all we received 26 reports alone from ANSSI but as even the reporter
 mentioned, the real world attack severity is not critical.  Thus we don't
 consider 1.12.3 a security fix release.  There are some bugs which should
 be fixed to avoid crashes, and thus may lead to DoS.  However, 16384 bit
 RSA keys can also be used for a practical DoS; it all depends on your use
 case.

https://www.openwall.com/lists/oss-security/2026/08/31/11

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/libgcrypt/libgcrypt.hash | 4 ++--
 package/libgcrypt/libgcrypt.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/libgcrypt/libgcrypt.hash b/package/libgcrypt/libgcrypt.hash
index 7be6554d56..e76496a7e4 100644
--- a/package/libgcrypt/libgcrypt.hash
+++ b/package/libgcrypt/libgcrypt.hash
@@ -1,5 +1,5 @@
 # From https://www.gnupg.org/download/integrity_check.html
-sha1  7b8ff21966a0b6e7a735466b9b9b55d9dac9fa87  libgcrypt-1.12.2.tar.bz2
-sha256  7ce33c2492221a0436f96a8500215e9f3e3dcb5fd26a757cd415e7a843babd5e  libgcrypt-1.12.2.tar.bz2
+sha1  b4654d75f0e5d0850cc699f02c9b44a06367502f  libgcrypt-1.12.3.tar.bz2
+sha256  98d1b0b3202d2b03fa754a35aa3cbbfcf526a3260d8d2ee213748001b1043006  libgcrypt-1.12.3.tar.bz2
 # Locally calculated
 sha256  20e50fe7aae3e56378ebf0417d9de904f55a0e61e4df315333e632a4d3555d95  COPYING.LIB
diff --git a/package/libgcrypt/libgcrypt.mk b/package/libgcrypt/libgcrypt.mk
index 0bc281da42..a49897fd4f 100644
--- a/package/libgcrypt/libgcrypt.mk
+++ b/package/libgcrypt/libgcrypt.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBGCRYPT_VERSION = 1.12.2
+LIBGCRYPT_VERSION = 1.12.3
 LIBGCRYPT_SOURCE = libgcrypt-$(LIBGCRYPT_VERSION).tar.bz2
 LIBGCRYPT_LICENSE = LGPL-2.1+
 LIBGCRYPT_LICENSE_FILES = COPYING.LIB
-- 
2.47.3

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH] package/libgcrypt: bump version to 1.2.3
  2026-09-01 19:27 [Buildroot] [PATCH] package/libgcrypt: bump version to 1.2.3 Peter Korsgaard
@ 2026-09-01 20:48 ` Julien Olivain via buildroot
  2026-09-01 21:11   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Julien Olivain via buildroot @ 2026-09-01 20:48 UTC (permalink / raw)
  To: Peter Korsgaard; +Cc: buildroot

Hi Peter,

The commit title says "1.2.3" but should rather be "1.12.3".

On 01/09/2026 21:27, Peter Korsgaard wrote:
> Release notes:
> https://lists.gnu.org/archive/html/info-gnu/2026-08/msg00007.html
> 
> Contains a number of bugfixes, some of which may have (low severity)
> security impact.  As stated by Werner Koch:
> 
>  All in all we received 26 reports alone from ANSSI but as even the 
> reporter
>  mentioned, the real world attack severity is not critical.  Thus we 
> don't
>  consider 1.12.3 a security fix release.  There are some bugs which 
> should
>  be fixed to avoid crashes, and thus may lead to DoS.  However, 16384 
> bit
>  RSA keys can also be used for a practical DoS; it all depends on your 
> use
>  case.
> 
> https://www.openwall.com/lists/oss-security/2026/08/31/11
> 
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
[...]
> diff --git a/package/libgcrypt/libgcrypt.mk 
> b/package/libgcrypt/libgcrypt.mk
> index 0bc281da42..a49897fd4f 100644
> --- a/package/libgcrypt/libgcrypt.mk
> +++ b/package/libgcrypt/libgcrypt.mk
> @@ -4,7 +4,7 @@
>  #
>  
> ################################################################################
> 
> -LIBGCRYPT_VERSION = 1.12.2
> +LIBGCRYPT_VERSION = 1.12.3

Also, this new version introduces build failures:
https://gitlab.com/jolivain/buildroot/-/pipelines/2810830147

For reference, the previous version 1.12.2 passes test-pkg:
https://gitlab.com/jolivain/buildroot/-/pipelines/2810888453

Since those fixes are described as low severity, we should probably
fix those before merging this bump.

>  LIBGCRYPT_SOURCE = libgcrypt-$(LIBGCRYPT_VERSION).tar.bz2
>  LIBGCRYPT_LICENSE = LGPL-2.1+
>  LIBGCRYPT_LICENSE_FILES = COPYING.LIB
> --
> 2.47.3

Best regards,

Julien.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH] package/libgcrypt: bump version to 1.2.3
  2026-09-01 20:48 ` Julien Olivain via buildroot
@ 2026-09-01 21:11   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2026-09-01 21:11 UTC (permalink / raw)
  To: Julien Olivain; +Cc: buildroot

>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:

 > Hi Peter,
 > The commit title says "1.2.3" but should rather be "1.12.3".

Ups, indeed ;)

 > On 01/09/2026 21:27, Peter Korsgaard wrote:
 >> Release notes:
 >> https://lists.gnu.org/archive/html/info-gnu/2026-08/msg00007.html
 >> Contains a number of bugfixes, some of which may have (low severity)
 >> security impact.  As stated by Werner Koch:
 >> All in all we received 26 reports alone from ANSSI but as even the
 >> reporter
 >> mentioned, the real world attack severity is not critical.  Thus we
 >> don't
 >> consider 1.12.3 a security fix release.  There are some bugs which
 >> should
 >> be fixed to avoid crashes, and thus may lead to DoS.  However,
 >> 16384 bit
 >> RSA keys can also be used for a practical DoS; it all depends on
 >> your use
 >> case.
 >> https://www.openwall.com/lists/oss-security/2026/08/31/11
 >> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
 >> ---
 > [...]
 >> diff --git a/package/libgcrypt/libgcrypt.mk
 >> b/package/libgcrypt/libgcrypt.mk
 >> index 0bc281da42..a49897fd4f 100644
 >> --- a/package/libgcrypt/libgcrypt.mk
 >> +++ b/package/libgcrypt/libgcrypt.mk
 >> @@ -4,7 +4,7 @@
 >> #
 >> ################################################################################
 >> -LIBGCRYPT_VERSION = 1.12.2
 >> +LIBGCRYPT_VERSION = 1.12.3

 > Also, this new version introduces build failures:
 > https://gitlab.com/jolivain/buildroot/-/pipelines/2810830147

 > For reference, the previous version 1.12.2 passes test-pkg:
 > https://gitlab.com/jolivain/buildroot/-/pipelines/2810888453

 > Since those fixes are described as low severity, we should probably
 > fix those before merging this bump.

Yes, I will take a look - Thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-09-01 21:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-01 19:27 [Buildroot] [PATCH] package/libgcrypt: bump version to 1.2.3 Peter Korsgaard
2026-09-01 20:48 ` Julien Olivain via buildroot
2026-09-01 21:11   ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).