Skip to content

Commit 6d3db60

Browse files
[AUTO-CHERRYPICK] Patch libxslt for CVE-2024-55549 and CVE-2025-24855 [High] - branch main (#13035)
Co-authored-by: sindhu-karri <[email protected]>
1 parent 72c7003 commit 6d3db60

7 files changed

+193
-9
lines changed

SPECS/libxslt/CVE-2024-55549.patch

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
From 46041b65f2fbddf5c284ee1a1332fa2c515c0515 Mon Sep 17 00:00:00 2001
2+
From: Nick Wellnhofer <[email protected]>
3+
Date: Thu, 5 Dec 2024 12:43:19 +0100
4+
Subject: [PATCH] [CVE-2024-55549] Fix UAF related to excluded namespaces
5+
6+
Definitions of excluded namespaces could be deleted in
7+
xsltParseTemplateContent. Store excluded namespace URIs in the
8+
stylesheet's dictionary instead of referencing the namespace definition.
9+
10+
Thanks to Ivan Fratric for the report!
11+
12+
Fixes #127.
13+
Source: https://gitlab.gnome.org/GNOME/libxslt/-/commit/46041b65f2fbddf5c284ee1a1332fa2c515c0515
14+
Issue: https://gitlab.gnome.org/GNOME/libxslt/-/issues/127
15+
---
16+
libxslt/xslt.c | 12 +++++++++++-
17+
1 file changed, 11 insertions(+), 1 deletion(-)
18+
19+
diff --git a/libxslt/xslt.c b/libxslt/xslt.c
20+
index 7a1ce01..d0e6066 100644
21+
--- a/libxslt/xslt.c
22+
+++ b/libxslt/xslt.c
23+
@@ -153,10 +153,20 @@ xsltParseContentError(xsltStylesheetPtr style,
24+
* in case of error
25+
*/
26+
static int
27+
-exclPrefixPush(xsltStylesheetPtr style, xmlChar * value)
28+
+exclPrefixPush(xsltStylesheetPtr style, xmlChar * orig)
29+
{
30+
+ xmlChar *value;
31+
int i;
32+
33+
+ /*
34+
+ * orig can come from a namespace definition on a node which
35+
+ * could be deleted later, for example in xsltParseTemplateContent.
36+
+ * Store the string in stylesheet's dict to avoid use after free.
37+
+ */
38+
+ value = (xmlChar *) xmlDictLookup(style->dict, orig, -1);
39+
+ if (value == NULL)
40+
+ return(-1);
41+
+
42+
if (style->exclPrefixMax == 0) {
43+
style->exclPrefixMax = 4;
44+
style->exclPrefixTab =
45+
--
46+
2.33.8
47+

SPECS/libxslt/CVE-2025-24855.patch

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
Source: https://gitlab.gnome.org/GNOME/libxslt/-/commit/c7c7f1f78dd202a053996fcefe57eb994aec8ef2
2+
Issue: https://gitlab.gnome.org/GNOME/libxslt/-/issues/128
3+
From c7c7f1f78dd202a053996fcefe57eb994aec8ef2 Mon Sep 17 00:00:00 2001
4+
From: Nick Wellnhofer <[email protected]>
5+
Date: Tue, 17 Dec 2024 15:56:21 +0100
6+
Subject: [PATCH] [CVE-2025-24855] Fix use-after-free of XPath context node
7+
8+
There are several places where the XPath context node isn't restored
9+
after modifying it, leading to use-after-free errors with nested XPath
10+
evaluations and dynamically allocated context nodes.
11+
12+
Restore XPath context node in
13+
14+
- xsltNumberFormatGetValue
15+
- xsltEvalXPathPredicate
16+
- xsltEvalXPathStringNs
17+
- xsltComputeSortResultInternal
18+
19+
In some places, the transformation context node was saved and restored
20+
which shouldn't be necessary.
21+
22+
Thanks to Ivan Fratric for the report!
23+
24+
Fixes #128.
25+
---
26+
libxslt/numbers.c | 5 +++++
27+
libxslt/templates.c | 9 ++++++---
28+
libxslt/xsltutils.c | 4 ++--
29+
3 files changed, 13 insertions(+), 5 deletions(-)
30+
31+
diff --git a/libxslt/numbers.c b/libxslt/numbers.c
32+
index 92023f8..58c61b9 100644
33+
--- a/libxslt/numbers.c
34+
+++ b/libxslt/numbers.c
35+
@@ -708,9 +708,12 @@ xsltNumberFormatGetValue(xmlXPathContextPtr context,
36+
int amount = 0;
37+
xmlBufferPtr pattern;
38+
xmlXPathObjectPtr obj;
39+
+ xmlNodePtr oldNode;
40+
41+
pattern = xmlBufferCreate();
42+
if (pattern != NULL) {
43+
+ oldNode = context->node;
44+
+
45+
xmlBufferCCat(pattern, "number(");
46+
xmlBufferCat(pattern, value);
47+
xmlBufferCCat(pattern, ")");
48+
@@ -723,6 +726,8 @@ xsltNumberFormatGetValue(xmlXPathContextPtr context,
49+
xmlXPathFreeObject(obj);
50+
}
51+
xmlBufferFree(pattern);
52+
+
53+
+ context->node = oldNode;
54+
}
55+
return amount;
56+
}
57+
diff --git a/libxslt/templates.c b/libxslt/templates.c
58+
index 48b73a5..a1a6cc8 100644
59+
--- a/libxslt/templates.c
60+
+++ b/libxslt/templates.c
61+
@@ -61,6 +61,7 @@ xsltEvalXPathPredicate(xsltTransformContextPtr ctxt, xmlXPathCompExprPtr comp,
62+
int oldNsNr;
63+
xmlNsPtr *oldNamespaces;
64+
xmlNodePtr oldInst;
65+
+ xmlNodePtr oldNode;
66+
int oldProximityPosition, oldContextSize;
67+
68+
if ((ctxt == NULL) || (ctxt->inst == NULL)) {
69+
@@ -69,6 +70,7 @@ xsltEvalXPathPredicate(xsltTransformContextPtr ctxt, xmlXPathCompExprPtr comp,
70+
return(0);
71+
}
72+
73+
+ oldNode = ctxt->xpathCtxt->node;
74+
oldContextSize = ctxt->xpathCtxt->contextSize;
75+
oldProximityPosition = ctxt->xpathCtxt->proximityPosition;
76+
oldNsNr = ctxt->xpathCtxt->nsNr;
77+
@@ -96,8 +98,9 @@ xsltEvalXPathPredicate(xsltTransformContextPtr ctxt, xmlXPathCompExprPtr comp,
78+
ctxt->state = XSLT_STATE_STOPPED;
79+
ret = 0;
80+
}
81+
- ctxt->xpathCtxt->nsNr = oldNsNr;
82+
83+
+ ctxt->xpathCtxt->node = oldNode;
84+
+ ctxt->xpathCtxt->nsNr = oldNsNr;
85+
ctxt->xpathCtxt->namespaces = oldNamespaces;
86+
ctxt->inst = oldInst;
87+
ctxt->xpathCtxt->contextSize = oldContextSize;
88+
@@ -137,7 +140,7 @@ xsltEvalXPathStringNs(xsltTransformContextPtr ctxt, xmlXPathCompExprPtr comp,
89+
}
90+
91+
oldInst = ctxt->inst;
92+
- oldNode = ctxt->node;
93+
+ oldNode = ctxt->xpathCtxt->node;
94+
oldPos = ctxt->xpathCtxt->proximityPosition;
95+
oldSize = ctxt->xpathCtxt->contextSize;
96+
oldNsNr = ctxt->xpathCtxt->nsNr;
97+
@@ -167,7 +170,7 @@ xsltEvalXPathStringNs(xsltTransformContextPtr ctxt, xmlXPathCompExprPtr comp,
98+
"xsltEvalXPathString: returns %s\n", ret));
99+
#endif
100+
ctxt->inst = oldInst;
101+
- ctxt->node = oldNode;
102+
+ ctxt->xpathCtxt->node = oldNode;
103+
ctxt->xpathCtxt->contextSize = oldSize;
104+
ctxt->xpathCtxt->proximityPosition = oldPos;
105+
ctxt->xpathCtxt->nsNr = oldNsNr;
106+
diff --git a/libxslt/xsltutils.c b/libxslt/xsltutils.c
107+
index 94097b9..cfe55ce 100644
108+
--- a/libxslt/xsltutils.c
109+
+++ b/libxslt/xsltutils.c
110+
@@ -1002,8 +1002,8 @@ xsltComputeSortResult(xsltTransformContextPtr ctxt, xmlNodePtr sort) {
111+
return(NULL);
112+
}
113+
114+
- oldNode = ctxt->node;
115+
oldInst = ctxt->inst;
116+
+ oldNode = ctxt->xpathCtxt->node;
117+
oldPos = ctxt->xpathCtxt->proximityPosition;
118+
oldSize = ctxt->xpathCtxt->contextSize;
119+
oldNsNr = ctxt->xpathCtxt->nsNr;
120+
@@ -1065,8 +1065,8 @@ xsltComputeSortResult(xsltTransformContextPtr ctxt, xmlNodePtr sort) {
121+
results[i] = NULL;
122+
}
123+
}
124+
- ctxt->node = oldNode;
125+
ctxt->inst = oldInst;
126+
+ ctxt->xpathCtxt->node = oldNode;
127+
ctxt->xpathCtxt->contextSize = oldSize;
128+
ctxt->xpathCtxt->proximityPosition = oldPos;
129+
ctxt->xpathCtxt->nsNr = oldNsNr;
130+
--
131+
2.33.8
132+

SPECS/libxslt/libxslt.spec

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Summary: Libxslt is the XSLT C library developed for the GNOME project. XSLT is a an XML language to define transformation for XML.
22
Name: libxslt
33
Version: 1.1.34
4-
Release: 7%{?dist}
4+
Release: 8%{?dist}
55
License: MIT
66
Vendor: Microsoft Corporation
77
Distribution: Mariner
@@ -11,6 +11,8 @@ Source0: http://xmlsoft.org/sources/%{name}-%{version}.tar.gz
1111
Patch0: CVE-2021-30560.patch
1212
# CVE-2022-29824 is fixed by shared object from libxml2 version 2.9.14
1313
Patch1: CVE-2022-29824.nopatch
14+
Patch2: CVE-2024-55549.patch
15+
Patch3: CVE-2025-24855.patch
1416
BuildRequires: libgcrypt-devel
1517
BuildRequires: libxml2-devel
1618
Requires: libgcrypt
@@ -74,6 +76,9 @@ make %{?_smp_mflags} check
7476
%{_mandir}/man3/*
7577

7678
%changelog
79+
* Mon Mar 17 2025 Sindhu Karri <[email protected]> - 1.1.34-8
80+
- Fix CVE-2025-24855 and CVE-2024-55549
81+
7782
* Tue May 24 2022 Cameron Baird <[email protected]> - 1.1.34-7
7883
- Applying patch for CVE-2021-30560.
7984

toolkit/resources/manifests/package/pkggen_core_aarch64.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ libgpg-error-1.46-1.cm2.aarch64.rpm
218218
libgcrypt-1.10.3-1.cm2.aarch64.rpm
219219
libksba-1.6.3-1.cm2.aarch64.rpm
220220
libksba-devel-1.6.3-1.cm2.aarch64.rpm
221-
libxslt-1.1.34-7.cm2.aarch64.rpm
221+
libxslt-1.1.34-8.cm2.aarch64.rpm
222222
npth-1.6-4.cm2.aarch64.rpm
223223
pinentry-1.2.0-1.cm2.aarch64.rpm
224224
gnupg2-2.4.0-2.cm2.aarch64.rpm

toolkit/resources/manifests/package/pkggen_core_x86_64.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ libgpg-error-1.46-1.cm2.x86_64.rpm
218218
libgcrypt-1.10.3-1.cm2.x86_64.rpm
219219
libksba-1.6.3-1.cm2.x86_64.rpm
220220
libksba-devel-1.6.3-1.cm2.x86_64.rpm
221-
libxslt-1.1.34-7.cm2.x86_64.rpm
221+
libxslt-1.1.34-8.cm2.x86_64.rpm
222222
npth-1.6-4.cm2.x86_64.rpm
223223
pinentry-1.2.0-1.cm2.x86_64.rpm
224224
gnupg2-2.4.0-2.cm2.x86_64.rpm

toolkit/resources/manifests/package/toolchain_aarch64.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ libtool-debuginfo-2.4.6-8.cm2.aarch64.rpm
212212
libxml2-2.10.4-6.cm2.aarch64.rpm
213213
libxml2-debuginfo-2.10.4-6.cm2.aarch64.rpm
214214
libxml2-devel-2.10.4-6.cm2.aarch64.rpm
215-
libxslt-1.1.34-7.cm2.aarch64.rpm
216-
libxslt-debuginfo-1.1.34-7.cm2.aarch64.rpm
217-
libxslt-devel-1.1.34-7.cm2.aarch64.rpm
215+
libxslt-1.1.34-8.cm2.aarch64.rpm
216+
libxslt-debuginfo-1.1.34-8.cm2.aarch64.rpm
217+
libxslt-devel-1.1.34-8.cm2.aarch64.rpm
218218
lua-5.4.4-1.cm2.aarch64.rpm
219219
lua-debuginfo-5.4.4-1.cm2.aarch64.rpm
220220
lua-devel-5.4.4-1.cm2.aarch64.rpm

toolkit/resources/manifests/package/toolchain_x86_64.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,9 @@ libtool-debuginfo-2.4.6-8.cm2.x86_64.rpm
218218
libxml2-2.10.4-6.cm2.x86_64.rpm
219219
libxml2-debuginfo-2.10.4-6.cm2.x86_64.rpm
220220
libxml2-devel-2.10.4-6.cm2.x86_64.rpm
221-
libxslt-1.1.34-7.cm2.x86_64.rpm
222-
libxslt-debuginfo-1.1.34-7.cm2.x86_64.rpm
223-
libxslt-devel-1.1.34-7.cm2.x86_64.rpm
221+
libxslt-1.1.34-8.cm2.x86_64.rpm
222+
libxslt-debuginfo-1.1.34-8.cm2.x86_64.rpm
223+
libxslt-devel-1.1.34-8.cm2.x86_64.rpm
224224
lua-5.4.4-1.cm2.x86_64.rpm
225225
lua-debuginfo-5.4.4-1.cm2.x86_64.rpm
226226
lua-devel-5.4.4-1.cm2.x86_64.rpm

0 commit comments

Comments
 (0)