Skip to content

Commit bc36bd1

Browse files
authored
[3.13] gh-90949: add Expat API to prevent XML deadly allocations (CVE-2025-59375) (GH-139234) (#139367)
* gh-90949: add Expat API to prevent XML deadly allocations (CVE-2025-59375) (#139234) Expose the XML Expat 2.7.2 mitigation APIs to disallow use of disproportional amounts of dynamic memory from within an Expat parser (see CVE-2025-59375 for instance). The exposed APIs are available on Expat parsers, that is, parsers created by `xml.parsers.expat.ParserCreate()`, as: - `parser.SetAllocTrackerActivationThreshold(threshold)`, and - `parser.SetAllocTrackerMaximumAmplification(max_factor)`. (cherry picked from commit f04bea4) (cherry picked from commit 68a1778)
1 parent 6ba31ca commit bc36bd1

File tree

7 files changed

+582
-31
lines changed

7 files changed

+582
-31
lines changed

Doc/library/pyexpat.rst

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ The :mod:`xml.parsers.expat` module contains two functions:
7272
*encoding* [1]_ is given it will override the implicit or explicit encoding of the
7373
document.
7474

75+
.. _xmlparser-non-root:
76+
77+
Parsers created through :func:`!ParserCreate` are called "root" parsers,
78+
in the sense that they do not have any parent parser attached. Non-root
79+
parsers are created by :meth:`parser.ExternalEntityParserCreate
80+
<xmlparser.ExternalEntityParserCreate>`.
81+
7582
Expat can optionally do XML namespace processing for you, enabled by providing a
7683
value for *namespace_separator*. The value must be a one-character string; a
7784
:exc:`ValueError` will be raised if the string has an illegal length (``None``
@@ -231,6 +238,55 @@ XMLParser Objects
231238
.. versionadded:: 3.13
232239

233240

241+
:class:`!xmlparser` objects have the following methods to mitigate some
242+
common XML vulnerabilities.
243+
244+
.. method:: xmlparser.SetAllocTrackerActivationThreshold(threshold, /)
245+
246+
Sets the number of allocated bytes of dynamic memory needed to activate
247+
protection against disproportionate use of RAM.
248+
249+
By default, parser objects have an allocation activation threshold of 64 MiB,
250+
or equivalently 67,108,864 bytes.
251+
252+
An :exc:`ExpatError` is raised if this method is called on a
253+
|xml-non-root-parser| parser.
254+
The corresponding :attr:`~ExpatError.lineno` and :attr:`~ExpatError.offset`
255+
should not be used as they may have no special meaning.
256+
257+
.. versionadded:: next
258+
259+
.. method:: xmlparser.SetAllocTrackerMaximumAmplification(max_factor, /)
260+
261+
Sets the maximum amplification factor between direct input and bytes
262+
of dynamic memory allocated.
263+
264+
The amplification factor is calculated as ``allocated / direct``
265+
while parsing, where ``direct`` is the number of bytes read from
266+
the primary document in parsing and ``allocated`` is the number
267+
of bytes of dynamic memory allocated in the parser hierarchy.
268+
269+
The *max_factor* value must be a non-NaN :class:`float` value greater than
270+
or equal to 1.0. Amplification factors greater than 100.0 can be observed
271+
near the start of parsing even with benign files in practice. In particular,
272+
the activation threshold should be carefully chosen to avoid false positives.
273+
274+
By default, parser objects have a maximum amplification factor of 100.0.
275+
276+
An :exc:`ExpatError` is raised if this method is called on a
277+
|xml-non-root-parser| parser or if *max_factor* is outside the valid range.
278+
The corresponding :attr:`~ExpatError.lineno` and :attr:`~ExpatError.offset`
279+
should not be used as they may have no special meaning.
280+
281+
.. note::
282+
283+
The maximum amplification factor is only considered if the threshold
284+
that can be adjusted by :meth:`.SetAllocTrackerActivationThreshold`
285+
is exceeded.
286+
287+
.. versionadded:: next
288+
289+
234290
:class:`xmlparser` objects have the following attributes:
235291

236292

@@ -947,3 +1003,4 @@ The ``errors`` module has the following attributes:
9471003
not. See https://www.w3.org/TR/2006/REC-xml11-20060816/#NT-EncodingDecl
9481004
and https://www.iana.org/assignments/character-sets/character-sets.xhtml.
9491005
1006+
.. |xml-non-root-parser| replace:: :ref:`non-root <xmlparser-non-root>`

Include/pyexpat.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ struct PyExpat_CAPI
5252
int (*SetHashSalt)(XML_Parser parser, unsigned long hash_salt);
5353
/* might be NULL for expat < 2.6.0 */
5454
XML_Bool (*SetReparseDeferralEnabled)(XML_Parser parser, XML_Bool enabled);
55+
/* might be NULL for expat < 2.7.2 */
56+
XML_Bool (*SetAllocTrackerActivationThreshold)(
57+
XML_Parser parser, unsigned long long activationThresholdBytes);
58+
XML_Bool (*SetAllocTrackerMaximumAmplification)(
59+
XML_Parser parser, float maxAmplificationFactor);
5560
/* always add new stuff to the end! */
5661
};
5762

Lib/test/test_pyexpat.py

Lines changed: 199 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
# XXX TypeErrors on calling handlers, or on bad return values from a
22
# handler, are obscure and unhelpful.
33

4+
import abc
5+
import functools
46
import os
7+
import re
58
import sys
69
import sysconfig
7-
import unittest
810
import textwrap
11+
import unittest
912
import traceback
1013
from io import BytesIO
1114
from test import support
12-
from test.support import os_helper
13-
15+
from test.support import import_helper, os_helper
1416
from xml.parsers import expat
1517
from xml.parsers.expat import errors
1618

@@ -863,5 +865,199 @@ def start_element(name, _):
863865
self.assertEqual(started, ['doc'])
864866

865867

868+
class AttackProtectionTestBase(abc.ABC):
869+
"""
870+
Base class for testing protections against XML payloads with
871+
disproportionate amplification.
872+
873+
The protections being tested should detect and prevent attacks
874+
that leverage disproportionate amplification from small inputs.
875+
"""
876+
877+
@staticmethod
878+
def exponential_expansion_payload(*, nrows, ncols, text='.'):
879+
"""Create a billion laughs attack payload.
880+
881+
Be careful: the number of total items is pow(n, k), thereby
882+
requiring at least pow(ncols, nrows) * sizeof(text) memory!
883+
"""
884+
template = textwrap.dedent(f"""\
885+
<?xml version="1.0"?>
886+
<!DOCTYPE doc [
887+
<!ENTITY row0 "{text}">
888+
<!ELEMENT doc (#PCDATA)>
889+
{{body}}
890+
]>
891+
<doc>&row{nrows};</doc>
892+
""").rstrip()
893+
894+
body = '\n'.join(
895+
f'<!ENTITY row{i + 1} "{f"&row{i};" * ncols}">'
896+
for i in range(nrows)
897+
)
898+
body = textwrap.indent(body, ' ' * 4)
899+
return template.format(body=body)
900+
901+
def test_payload_generation(self):
902+
# self-test for exponential_expansion_payload()
903+
payload = self.exponential_expansion_payload(nrows=2, ncols=3)
904+
self.assertEqual(payload, textwrap.dedent("""\
905+
<?xml version="1.0"?>
906+
<!DOCTYPE doc [
907+
<!ENTITY row0 ".">
908+
<!ELEMENT doc (#PCDATA)>
909+
<!ENTITY row1 "&row0;&row0;&row0;">
910+
<!ENTITY row2 "&row1;&row1;&row1;">
911+
]>
912+
<doc>&row2;</doc>
913+
""").rstrip())
914+
915+
def assert_root_parser_failure(self, func, /, *args, **kwargs):
916+
"""Check that func(*args, **kwargs) is invalid for a sub-parser."""
917+
msg = "parser must be a root parser"
918+
self.assertRaisesRegex(expat.ExpatError, msg, func, *args, **kwargs)
919+
920+
@abc.abstractmethod
921+
def assert_rejected(self, func, /, *args, **kwargs):
922+
"""Assert that func(*args, **kwargs) triggers the attack protection.
923+
924+
Note: this method must ensure that the attack protection being tested
925+
is the one that is actually triggered at runtime, e.g., by matching
926+
the exact error message.
927+
"""
928+
929+
@abc.abstractmethod
930+
def set_activation_threshold(self, parser, threshold):
931+
"""Set the activation threshold for the tested protection."""
932+
933+
@abc.abstractmethod
934+
def set_maximum_amplification(self, parser, max_factor):
935+
"""Set the maximum amplification factor for the tested protection."""
936+
937+
@abc.abstractmethod
938+
def test_set_activation_threshold__threshold_reached(self):
939+
"""Test when the activation threshold is exceeded."""
940+
941+
@abc.abstractmethod
942+
def test_set_activation_threshold__threshold_not_reached(self):
943+
"""Test when the activation threshold is not exceeded."""
944+
945+
def test_set_activation_threshold__invalid_threshold_type(self):
946+
parser = expat.ParserCreate()
947+
setter = functools.partial(self.set_activation_threshold, parser)
948+
949+
self.assertRaises(TypeError, setter, 1.0)
950+
self.assertRaises(TypeError, setter, -1.5)
951+
self.assertRaises(ValueError, setter, -5)
952+
953+
def test_set_activation_threshold__invalid_threshold_range(self):
954+
_testcapi = import_helper.import_module("_testcapi")
955+
parser = expat.ParserCreate()
956+
setter = functools.partial(self.set_activation_threshold, parser)
957+
958+
self.assertRaises(OverflowError, setter, _testcapi.ULLONG_MAX + 1)
959+
960+
def test_set_activation_threshold__fail_for_subparser(self):
961+
parser = expat.ParserCreate()
962+
subparser = parser.ExternalEntityParserCreate(None)
963+
setter = functools.partial(self.set_activation_threshold, subparser)
964+
self.assert_root_parser_failure(setter, 12345)
965+
966+
@abc.abstractmethod
967+
def test_set_maximum_amplification__amplification_exceeded(self):
968+
"""Test when the amplification factor is exceeded."""
969+
970+
@abc.abstractmethod
971+
def test_set_maximum_amplification__amplification_not_exceeded(self):
972+
"""Test when the amplification factor is not exceeded."""
973+
974+
def test_set_maximum_amplification__infinity(self):
975+
inf = float('inf') # an 'inf' threshold is allowed by Expat
976+
parser = expat.ParserCreate()
977+
self.assertIsNone(self.set_maximum_amplification(parser, inf))
978+
979+
def test_set_maximum_amplification__invalid_max_factor_type(self):
980+
parser = expat.ParserCreate()
981+
setter = functools.partial(self.set_maximum_amplification, parser)
982+
983+
self.assertRaises(TypeError, setter, None)
984+
self.assertRaises(TypeError, setter, 'abc')
985+
986+
def test_set_maximum_amplification__invalid_max_factor_range(self):
987+
parser = expat.ParserCreate()
988+
setter = functools.partial(self.set_maximum_amplification, parser)
989+
990+
msg = re.escape("'max_factor' must be at least 1.0")
991+
self.assertRaisesRegex(expat.ExpatError, msg, setter, float('nan'))
992+
self.assertRaisesRegex(expat.ExpatError, msg, setter, 0.99)
993+
994+
def test_set_maximum_amplification__fail_for_subparser(self):
995+
parser = expat.ParserCreate()
996+
subparser = parser.ExternalEntityParserCreate(None)
997+
setter = functools.partial(self.set_maximum_amplification, subparser)
998+
self.assert_root_parser_failure(setter, 123.45)
999+
1000+
1001+
@unittest.skipIf(expat.version_info < (2, 7, 2), "requires Expat >= 2.7.2")
1002+
class MemoryProtectionTest(AttackProtectionTestBase, unittest.TestCase):
1003+
1004+
# NOTE: with the default Expat configuration, the billion laughs protection
1005+
# may hit before the allocation limiter if exponential_expansion_payload()
1006+
# is not carefully parametrized. As such, the payloads should be chosen so
1007+
# that either the allocation limiter is hit before other protections are
1008+
# triggered or no protection at all is triggered.
1009+
1010+
def assert_rejected(self, func, /, *args, **kwargs):
1011+
"""Check that func(*args, **kwargs) hits the allocation limit."""
1012+
msg = r"out of memory: line \d+, column \d+"
1013+
self.assertRaisesRegex(expat.ExpatError, msg, func, *args, **kwargs)
1014+
1015+
def set_activation_threshold(self, parser, threshold):
1016+
return parser.SetAllocTrackerActivationThreshold(threshold)
1017+
1018+
def set_maximum_amplification(self, parser, max_factor):
1019+
return parser.SetAllocTrackerMaximumAmplification(max_factor)
1020+
1021+
def test_set_activation_threshold__threshold_reached(self):
1022+
parser = expat.ParserCreate()
1023+
# Choose a threshold expected to be always reached.
1024+
self.set_activation_threshold(parser, 3)
1025+
# Check that the threshold is reached by choosing a small factor
1026+
# and a payload whose peak amplification factor exceeds it.
1027+
self.assertIsNone(self.set_maximum_amplification(parser, 1.0))
1028+
payload = self.exponential_expansion_payload(ncols=10, nrows=4)
1029+
self.assert_rejected(parser.Parse, payload, True)
1030+
1031+
def test_set_activation_threshold__threshold_not_reached(self):
1032+
parser = expat.ParserCreate()
1033+
# Choose a threshold expected to be never reached.
1034+
self.set_activation_threshold(parser, pow(10, 5))
1035+
# Check that the threshold is reached by choosing a small factor
1036+
# and a payload whose peak amplification factor exceeds it.
1037+
self.assertIsNone(self.set_maximum_amplification(parser, 1.0))
1038+
payload = self.exponential_expansion_payload(ncols=10, nrows=4)
1039+
self.assertIsNotNone(parser.Parse(payload, True))
1040+
1041+
def test_set_maximum_amplification__amplification_exceeded(self):
1042+
parser = expat.ParserCreate()
1043+
# Unconditionally enable maximum activation factor.
1044+
self.set_activation_threshold(parser, 0)
1045+
# Choose a max amplification factor expected to always be exceeded.
1046+
self.assertIsNone(self.set_maximum_amplification(parser, 1.0))
1047+
# Craft a payload for which the peak amplification factor is > 1.0.
1048+
payload = self.exponential_expansion_payload(ncols=1, nrows=2)
1049+
self.assert_rejected(parser.Parse, payload, True)
1050+
1051+
def test_set_maximum_amplification__amplification_not_exceeded(self):
1052+
parser = expat.ParserCreate()
1053+
# Unconditionally enable maximum activation factor.
1054+
self.set_activation_threshold(parser, 0)
1055+
# Choose a max amplification factor expected to never be exceeded.
1056+
self.assertIsNone(self.set_maximum_amplification(parser, 1e4))
1057+
# Craft a payload for which the peak amplification factor is < 1e4.
1058+
payload = self.exponential_expansion_payload(ncols=1, nrows=2)
1059+
self.assertIsNotNone(parser.Parse(payload, True))
1060+
1061+
8661062
if __name__ == "__main__":
8671063
unittest.main()
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Add :meth:`~xml.parsers.expat.xmlparser.SetAllocTrackerActivationThreshold`
2+
and :meth:`~xml.parsers.expat.xmlparser.SetAllocTrackerMaximumAmplification`
3+
to :ref:`xmlparser <xmlparser-objects>` objects to prevent use of
4+
disproportional amounts of dynamic memory from within an Expat parser.
5+
Patch by Bénédikt Tran.

0 commit comments

Comments
 (0)