mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 1/2] libcurl: Version bump. 8.21.0 -> 8.22.0
@ 2026-09-07 16:49 Christian Melki
  2026-09-07 16:49 ` [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl bump " Christian Melki
  2026-09-18  9:02 ` [ptxdist] [APPLIED] libcurl: Version bump. " Michael Olbrich
  0 siblings, 2 replies; 4+ messages in thread
From: Christian Melki @ 2026-09-07 16:49 UTC (permalink / raw)
  To: ptxdist

A bunch of security fixes and bug fixes as usual.
https://curl.se/ch/8.22.0.html

Plugs CVEs:
CVE-2026-82209: domain-scoped PSL domain cookie
CVE-2026-82208: wolfSSL CA-cache hit overrides callback
CVE-2026-80255: secure cookie attribute bypass with tab
CVE-2026-80231: native CA store conn reuse
CVE-2026-80230: OpenSSL pinning bypass
CVE-2026-80229: OpenSSL provider use-after-free
CVE-2026-19931: Negotiate ambient user conn reuse
CVE-2026-18924: HTTP/2 server push UAF
CVE-2026-13608: OpenLDAP SASL authentication bypass

* Pin down a few options. I also disabled the new
RFC9421 http message signatures, but someone might actually
be interested in it. Maybe wire it up to a separate config option?

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/libcurl.make | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/rules/libcurl.make b/rules/libcurl.make
index 3c5b00adb..12507eeb0 100644
--- a/rules/libcurl.make
+++ b/rules/libcurl.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIBCURL) += libcurl
 #
 # Paths and names
 #
-LIBCURL_VERSION	:= 8.21.0
-LIBCURL_SHA256	:= aa1b66a70eace83dc624508745646c08ae561de512ab403adffb93ac87fc72e6
+LIBCURL_VERSION	:= 8.22.0
+LIBCURL_SHA256	:= f7ef3ae8a22e521f289803fe93543eb64c329b58aa73a9e224dfd915a2a5f4f7
 LIBCURL		:= curl-$(LIBCURL_VERSION)
 LIBCURL_SUFFIX	:= tar.xz
 LIBCURL_URL	:= https://curl.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
@@ -69,8 +69,10 @@ LIBCURL_CONF_OPT	:= \
 	--enable-libcurl-option \
 	--disable-libgcc \
 	$(GLOBAL_IPV6_OPTION) \
+	--disable-gssapi-apple \
 	--enable-openssl-auto-load-config \
 	--disable-versioned-symbols \
+	--disable-apple-fast-udp \
 	--disable-windows-unicode \
 	--$(call ptx/disen, PTXCONF_LIBCURL_C_ARES)-threaded-resolver \
 	--$(call ptx/endis, PTXCONF_LIBCURL_VERBOSE)-verbose \
@@ -81,8 +83,8 @@ LIBCURL_CONF_OPT	:= \
 	--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-kerberos-auth \
 	--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-negotiate-auth \
 	--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-aws \
+	--disable-httpsig \
 	--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-ntlm \
-	--enable-tls-srp \
 	--enable-unix-sockets \
 	--$(call ptx/endis, PTXCONF_LIBCURL_COOKIES)-cookies \
 	--enable-socketpair \
-- 
2.43.0




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

* [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl bump 8.21.0 -> 8.22.0
  2026-09-07 16:49 [ptxdist] [PATCH 1/2] libcurl: Version bump. 8.21.0 -> 8.22.0 Christian Melki
@ 2026-09-07 16:49 ` Christian Melki
  2026-09-18  9:02   ` [ptxdist] [APPLIED] " Michael Olbrich
  2026-09-18  9:02 ` [ptxdist] [APPLIED] libcurl: Version bump. " Michael Olbrich
  1 sibling, 1 reply; 4+ messages in thread
From: Christian Melki @ 2026-09-07 16:49 UTC (permalink / raw)
  To: ptxdist

* Pin down changed options.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/host-libcurl.make | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/rules/host-libcurl.make b/rules/host-libcurl.make
index b25e3d329..68b817c53 100644
--- a/rules/host-libcurl.make
+++ b/rules/host-libcurl.make
@@ -52,9 +52,11 @@ HOST_LIBCURL_CONF_OPT	:= \
 	--disable-manual \
 	--enable-libcurl-option \
 	--disable-libgcc \
+	--disable-gssapi-apple \
 	--enable-ipv6 \
 	--enable-openssl-auto-load-config \
 	--disable-versioned-symbols \
+	--disable-apple-fast-udp \
 	--disable-windows-unicode \
 	--enable-threaded-resolver \
 	--disable-verbose \
@@ -65,8 +67,8 @@ HOST_LIBCURL_CONF_OPT	:= \
 	--disable-kerberos-auth \
 	--disable-negotiate-auth \
 	--disable-aws \
+	--disable-httpsig \
 	--disable-ntlm \
-	--disable-tls-srp \
 	--enable-unix-sockets \
 	--disable-cookies \
 	--enable-socketpair \
-- 
2.43.0




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

* Re: [ptxdist] [APPLIED] libcurl: Version bump. 8.21.0 -> 8.22.0
  2026-09-07 16:49 [ptxdist] [PATCH 1/2] libcurl: Version bump. 8.21.0 -> 8.22.0 Christian Melki
  2026-09-07 16:49 ` [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl bump " Christian Melki
@ 2026-09-18  9:02 ` Michael Olbrich
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2026-09-18  9:02 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as c774b2ed99eecfe3675a6592a5d7485ca07c0863.

Michael

[sent from post-receive hook]

On Fri, 18 Sep 2026 11:02:12 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> A bunch of security fixes and bug fixes as usual.
> https://curl.se/ch/8.22.0.html
> 
> Plugs CVEs:
> CVE-2026-82209: domain-scoped PSL domain cookie
> CVE-2026-82208: wolfSSL CA-cache hit overrides callback
> CVE-2026-80255: secure cookie attribute bypass with tab
> CVE-2026-80231: native CA store conn reuse
> CVE-2026-80230: OpenSSL pinning bypass
> CVE-2026-80229: OpenSSL provider use-after-free
> CVE-2026-19931: Negotiate ambient user conn reuse
> CVE-2026-18924: HTTP/2 server push UAF
> CVE-2026-13608: OpenLDAP SASL authentication bypass
> 
> * Pin down a few options. I also disabled the new
> RFC9421 http message signatures, but someone might actually
> be interested in it. Maybe wire it up to a separate config option?
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20260907164925.2663594-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libcurl.make b/rules/libcurl.make
> index 3c5b00adb9cf..12507eeb030b 100644
> --- a/rules/libcurl.make
> +++ b/rules/libcurl.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIBCURL) += libcurl
>  #
>  # Paths and names
>  #
> -LIBCURL_VERSION	:= 8.21.0
> -LIBCURL_SHA256	:= aa1b66a70eace83dc624508745646c08ae561de512ab403adffb93ac87fc72e6
> +LIBCURL_VERSION	:= 8.22.0
> +LIBCURL_SHA256	:= f7ef3ae8a22e521f289803fe93543eb64c329b58aa73a9e224dfd915a2a5f4f7
>  LIBCURL		:= curl-$(LIBCURL_VERSION)
>  LIBCURL_SUFFIX	:= tar.xz
>  LIBCURL_URL	:= https://curl.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
> @@ -69,8 +69,10 @@ LIBCURL_CONF_OPT	:= \
>  	--enable-libcurl-option \
>  	--disable-libgcc \
>  	$(GLOBAL_IPV6_OPTION) \
> +	--disable-gssapi-apple \
>  	--enable-openssl-auto-load-config \
>  	--disable-versioned-symbols \
> +	--disable-apple-fast-udp \
>  	--disable-windows-unicode \
>  	--$(call ptx/disen, PTXCONF_LIBCURL_C_ARES)-threaded-resolver \
>  	--$(call ptx/endis, PTXCONF_LIBCURL_VERBOSE)-verbose \
> @@ -81,8 +83,8 @@ LIBCURL_CONF_OPT	:= \
>  	--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-kerberos-auth \
>  	--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-negotiate-auth \
>  	--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-aws \
> +	--disable-httpsig \
>  	--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-ntlm \
> -	--enable-tls-srp \
>  	--enable-unix-sockets \
>  	--$(call ptx/endis, PTXCONF_LIBCURL_COOKIES)-cookies \
>  	--enable-socketpair \



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

* Re: [ptxdist] [APPLIED] host-libcurl: Follow target libcurl bump 8.21.0 -> 8.22.0
  2026-09-07 16:49 ` [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl bump " Christian Melki
@ 2026-09-18  9:02   ` Michael Olbrich
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2026-09-18  9:02 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 313d44c607f7c0f4b7c780dba63d14115aeb8c97.

Michael

[sent from post-receive hook]

On Fri, 18 Sep 2026 11:02:13 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> * Pin down changed options.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20260907164925.2663594-2-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/host-libcurl.make b/rules/host-libcurl.make
> index b25e3d329f2d..68b817c53e43 100644
> --- a/rules/host-libcurl.make
> +++ b/rules/host-libcurl.make
> @@ -52,9 +52,11 @@ HOST_LIBCURL_CONF_OPT	:= \
>  	--disable-manual \
>  	--enable-libcurl-option \
>  	--disable-libgcc \
> +	--disable-gssapi-apple \
>  	--enable-ipv6 \
>  	--enable-openssl-auto-load-config \
>  	--disable-versioned-symbols \
> +	--disable-apple-fast-udp \
>  	--disable-windows-unicode \
>  	--enable-threaded-resolver \
>  	--disable-verbose \
> @@ -65,8 +67,8 @@ HOST_LIBCURL_CONF_OPT	:= \
>  	--disable-kerberos-auth \
>  	--disable-negotiate-auth \
>  	--disable-aws \
> +	--disable-httpsig \
>  	--disable-ntlm \
> -	--disable-tls-srp \
>  	--enable-unix-sockets \
>  	--disable-cookies \
>  	--enable-socketpair \



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

end of thread, other threads:[~2026-09-18  9:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-07 16:49 [ptxdist] [PATCH 1/2] libcurl: Version bump. 8.21.0 -> 8.22.0 Christian Melki
2026-09-07 16:49 ` [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl bump " Christian Melki
2026-09-18  9:02   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-09-18  9:02 ` [ptxdist] [APPLIED] libcurl: Version bump. " Michael Olbrich

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