Fix CVE-2024-56171 (RHEL-80119)

Resolves: RHEL-80119
This commit is contained in:
David King 2025-02-24 11:43:05 +00:00
parent 8f8bb25065
commit bcbd29232c
2 changed files with 47 additions and 1 deletions

View File

@ -0,0 +1,41 @@
From 245b70d7d2768572ae1b05b3668ca858b9ec4ed4 Mon Sep 17 00:00:00 2001
From: Nick Wellnhofer <wellnhofer@aevum.de>
Date: Tue, 10 Dec 2024 16:52:05 +0100
Subject: [PATCH] [CVE-2024-56171] Fix use-after-free after
xmlSchemaItemListAdd
xmlSchemaItemListAdd can reallocate the items array. Update local
variables after adding item in
- xmlSchemaIDCFillNodeTables
- xmlSchemaBubbleIDCNodeTables
Fixes #828.
---
xmlschemas.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/xmlschemas.c b/xmlschemas.c
index d276faf10..28b14bd44 100644
--- a/xmlschemas.c
+++ b/xmlschemas.c
@@ -23388,6 +23388,7 @@ xmlSchemaIDCFillNodeTables(xmlSchemaValidCtxtPtr vctxt,
}
if (xmlSchemaItemListAdd(bind->dupls, bind->nodeTable[j]) == -1)
goto internal_error;
+ dupls = (xmlSchemaPSVIIDCNodePtr *) bind->dupls->items;
/*
* Remove the duplicate entry from the IDC node-table.
*/
@@ -23604,6 +23605,8 @@ xmlSchemaBubbleIDCNodeTables(xmlSchemaValidCtxtPtr vctxt)
goto internal_error;
}
xmlSchemaItemListAdd(parBind->dupls, parNode);
+ dupls = (xmlSchemaPSVIIDCNodePtr *)
+ parBind->dupls->items;
} else {
/*
* Add the node-table entry (node and key-sequence) of
--
GitLab

View File

@ -1,6 +1,6 @@
Name: libxml2 Name: libxml2
Version: 2.12.5 Version: 2.12.5
Release: 4%{?dist} Release: 5%{?dist}
Summary: Library providing XML and HTML support Summary: Library providing XML and HTML support
# list.c, dict.c and few others use ISC-Veillard # list.c, dict.c and few others use ISC-Veillard
@ -20,6 +20,8 @@ Patch0: libxml2-multilib.patch
Patch1: libxml2-2.12.0-python3-unicode-errors.patch Patch1: libxml2-2.12.0-python3-unicode-errors.patch
# https://issues.redhat.com/browse/RHEL-72060 # https://issues.redhat.com/browse/RHEL-72060
Patch2: libxml2-2.12.5-CVE-2024-40896.patch Patch2: libxml2-2.12.5-CVE-2024-40896.patch
# https://issues.redhat.com/browse/RHEL-80119
Patch3: libxml2-2.12.5-CVE-2024-56171.patch
BuildRequires: cmake-rpm-macros BuildRequires: cmake-rpm-macros
BuildRequires: gcc BuildRequires: gcc
@ -160,6 +162,9 @@ popd
%{python3_sitelib}/__pycache__/drv_libxml2.* %{python3_sitelib}/__pycache__/drv_libxml2.*
%changelog %changelog
* Mon Feb 24 2025 David King <dking@redhat.com> - 2.12.5-5
- Fix CVE-2024-56171 (RHEL-80119)
* Tue Dec 24 2024 David King <amigadave@amigadave.com> - 2.12.5-4 * Tue Dec 24 2024 David King <amigadave@amigadave.com> - 2.12.5-4
- Fix CVE-2024-40896 (RHEL-72060) - Fix CVE-2024-40896 (RHEL-72060)