public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Cc: Adolf Belka <adolf.belka@ipfire.org>
Subject: [PATCH] libxml2: Update to version 2.15.3
Date: Sun, 26 Apr 2026 13:44:15 +0200	[thread overview]
Message-ID: <20260426114418.122889-26-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20260426114418.122889-1-adolf.belka@ipfire.org>

- Update from version 2.15.1 to 2.15.3
- Update of rootfile
- Five CVE fixes applied in 2.15.2
- Changelog
2.15.3
Security
- parser: Pass userData to SAX text callbacks in xmlParseReference (type-confusion)
- entities: copy children in xmlCopyEntity
- c14n: Fix Type confusion in xmlC14NProcessAttrsAxis
- python: Do not decref string after adding to the list (double-free / use-after-free)
- c14n: Reuse tmp_str, xmlStrcat reallocates *cur (double-free)
Improvements
- schemas: Fix relative schemaLocation resolution in XSI assembly in streaming mode
- xmlreader: propagate reader resource loaders to validator parsers
- python: Make python bindings python2 compatible
- xmlregexp: Fix escape-sequence character range matching
- xmlreader: Free input in xmlReaderForFd (memory-leak)
- xmlstring: Free cur on every error for xmlStrncat (memory-leak)
- catalog: Free xmlCatalogResolveCache on cleanup (memory leak)
- Fix nanohttp.c build when --without-output
- test: fix mismatched signed/unsigned comparison
2.15.2
Security
- CVE-2026-1757 fix: Memory leak in xmllint Shell - shell.c
- CVE-2026-0990 fix: Prevent infinite recursion in
  xmlCatalogListXMLResolve
- CVE-2026-0992 fix: Exponential behavior when handling
- parser: Fix infinite loop in xmlCtxtParseContent
- CVE-2025-10911 libxslt related: Ignore next/prev of documents when
  traversing XPath
- CVE-2026-0989 fix: Add RelaxNG include limit
- xmlIO: use size_t for buffer size reallocation
- uri: fix signed integer overflow in xmlBuildRelativeURISafe
- schematron: fix memory leaks on error paths in xmlSchematronParseRule
- catalog: fix stack overflow from self-referencing SGML CATALOG entries
Improvements
- fuzz: Make fuzzy encoding match more lenient
- Fix C14N type confusion
- meson: Fix build with Meson < 1.3
- xmllint: Use zlib directly
- xmllint: New option to separate xpath results using null, --xpath0
- autotools: Make valgrind actually check for leaks
- meson: Add valgrind test setup
- Fix xmlOutputBufferGetContent output when encoder is set
- threads: don't force _WIN32_WINNT to Vista if it's set to a higher value
- dist: Add generated documentation to the dist as "dist-doc" folder
  to simplify downstream packaging of doc
- Fix xmlRemoveEntity removing from wrong hash table
- use duplicating variant in relaxng to mitigate UAF
- Fix memory leak in xmlTextWriterStartAttributeNS on OOM
- meson: remove hardcoded buildtype=debug default
- Fix memory leak of prefix in xmlTextWriterStartElementNS()
- writer: Add a few extra NULL checks to avoid memory leaks on corrupt
  writer path.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/libxml2 | 2 +-
 lfs/libxml2                     | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/config/rootfiles/common/libxml2 b/config/rootfiles/common/libxml2
index 779b249ea..5a4f85793 100644
--- a/config/rootfiles/common/libxml2
+++ b/config/rootfiles/common/libxml2
@@ -54,5 +54,5 @@
 #usr/lib/libxml2.la
 #usr/lib/libxml2.so
 usr/lib/libxml2.so.16
-usr/lib/libxml2.so.16.1.1
+usr/lib/libxml2.so.16.1.3
 #usr/lib/pkgconfig/libxml-2.0.pc
diff --git a/lfs/libxml2 b/lfs/libxml2
index c1ea739eb..84ebb0a0a 100644
--- a/lfs/libxml2
+++ b/lfs/libxml2
@@ -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        = 2.15.1
+VER        = 2.15.3
 #          https://download.gnome.org/sources/libxml2/
 
 THISAPP    = libxml2-$(VER)
@@ -43,7 +43,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 73c4d17adacda67d71c5a120c7de2324df1db35963cadbe18166dafe122e1f10dcab9d4fed0e128c077a5ca31432bfaf72f742c42680251660d397ab8bc3538b
+$(DL_FILE)_BLAKE2 = 2ff478b46a40957386cd1ed0627bfc0f2433f47e786f20db3942304c90289adaeb1d9c3f12665df312b86cfac42f8e4dbc18e965bf90018f93c230b9b862df66
 
 install : $(TARGET)
 
-- 
2.54.0



  parent reply	other threads:[~2026-04-26 11:44 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-26 11:43 [PATCH] core202: Ship coreutils Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship glib Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship hwdata Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship iproute2 Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship libcap Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship libgcrypt Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship libjpeg Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship libxml2 Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship parted Adolf Belka
2026-04-26 11:43 ` [PATCH] core202: Ship texinfo Adolf Belka
2026-04-26 11:44 ` [PATCH] coreutils: Update to version 9.11 Adolf Belka
2026-04-26 11:44 ` [PATCH] git: Update to version 2.54.0 Adolf Belka
2026-04-26 11:44 ` [PATCH] glib: Update to version 2.88.0 Adolf Belka
2026-04-26 11:44 ` [PATCH] harfbuzz: Update to version 14.2.0 Adolf Belka
2026-04-26 11:44 ` [PATCH] hwdata: Update to version 0.406 Adolf Belka
2026-04-26 11:44 ` [PATCH] iana-etc: Update to version 20260409 Adolf Belka
2026-04-26 11:44 ` [PATCH] iperf3: Update to version 3.21 Adolf Belka
2026-04-26 11:44 ` [PATCH] iproute2: Update to version 7.0.0 Adolf Belka
2026-04-26 11:44 ` [PATCH] libcap-ng: Update to version 0.9.3 Adolf Belka
2026-04-26 11:44 ` [PATCH] libcap: Update to version 2.78 Adolf Belka
2026-04-26 11:44 ` [PATCH] libgcrypt: Update to version 1.12.2 Adolf Belka
2026-04-26 11:44 ` [PATCH] libjpeg: Update to version 3.1.4.1 Adolf Belka
2026-04-26 11:44 ` [PATCH] libmpc: Update to version 1.4.1 Adolf Belka
2026-04-26 11:44 ` [PATCH] libpng: Update to version 1.6.58 Adolf Belka
2026-04-26 11:44 ` [PATCH] libsodium: Update to version 1.0.22 Adolf Belka
2026-04-26 11:44 ` Adolf Belka [this message]
2026-04-26 11:44 ` [PATCH] parted: Update to version 3.7 Adolf Belka
2026-04-26 11:44 ` [PATCH] pciutils: Update to version 3.15.0 Adolf Belka
2026-04-26 11:44 ` [PATCH] texinfo: Update to version 7.3 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=20260426114418.122889-26-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