Skip to content

Commit a03987f

Browse files
committed
[3.14] gh-90949: add Expat API to prevent XML deadly allocations (CVE-2025-59375) (GH-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) Co-authored-by: Bénédikt Tran <[email protected]>
1 parent f2b82b3 commit a03987f

File tree

7 files changed

+573
-30
lines changed

7 files changed

+573
-30
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 :meth:`.SetAllocTrackerActivationThreshold` is
285+
exceeded.
286+
287+
.. versionadded:: next
288+
289+
234290
:class:`xmlparser` objects have the following attributes:
235291

236292

@@ -954,3 +1010,4 @@ The ``errors`` module has the following attributes:
9541010
not. See https://www.w3.org/TR/2006/REC-xml11-20060816/#NT-EncodingDecl
9551011
and https://www.iana.org/assignments/character-sets/character-sets.xhtml.
9561012
1013+
.. |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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +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
10+
import textwrap
711
import unittest
812
import traceback
913
from io import BytesIO
1014
from test import support
11-
from test.support import os_helper
12-
15+
from test.support import import_helper, os_helper
1316
from xml.parsers import expat
1417
from xml.parsers.expat import errors
1518

@@ -809,5 +812,199 @@ def start_element(name, _):
809812
self.assertEqual(started, ['doc'])
810813

811814

815+
class AttackProtectionTestBase(abc.ABC):
816+
"""
817+
Base class for testing protections against XML payloads with
818+
disproportionate amplification.
819+
820+
The protections being tested should detect and prevent attacks
821+
that leverage disproportionate amplification from small inputs.
822+
"""
823+
824+
@staticmethod
825+
def exponential_expansion_payload(*, nrows, ncols, text='.'):
826+
"""Create a billion laughs attack payload.
827+
828+
Be careful: the number of total items is pow(n, k), thereby
829+
requiring at least pow(ncols, nrows) * sizeof(text) memory!
830+
"""
831+
template = textwrap.dedent(f"""\
832+
<?xml version="1.0"?>
833+
<!DOCTYPE doc [
834+
<!ENTITY row0 "{text}">
835+
<!ELEMENT doc (#PCDATA)>
836+
{{body}}
837+
]>
838+
<doc>&row{nrows};</doc>
839+
""").rstrip()
840+
841+
body = '\n'.join(
842+
f'<!ENTITY row{i + 1} "{f"&row{i};" * ncols}">'
843+
for i in range(nrows)
844+
)
845+
body = textwrap.indent(body, ' ' * 4)
846+
return template.format(body=body)
847+
848+
def test_payload_generation(self):
849+
# self-test for exponential_expansion_payload()
850+
payload = self.exponential_expansion_payload(nrows=2, ncols=3)
851+
self.assertEqual(payload, textwrap.dedent("""\
852+
<?xml version="1.0"?>
853+
<!DOCTYPE doc [
854+
<!ENTITY row0 ".">
855+
<!ELEMENT doc (#PCDATA)>
856+
<!ENTITY row1 "&row0;&row0;&row0;">
857+
<!ENTITY row2 "&row1;&row1;&row1;">
858+
]>
859+
<doc>&row2;</doc>
860+
""").rstrip())
861+
862+
def assert_root_parser_failure(self, func, /, *args, **kwargs):
863+
"""Check that func(*args, **kwargs) is invalid for a sub-parser."""
864+
msg = "parser must be a root parser"
865+
self.assertRaisesRegex(expat.ExpatError, msg, func, *args, **kwargs)
866+
867+
@abc.abstractmethod
868+
def assert_rejected(self, func, /, *args, **kwargs):
869+
"""Assert that func(*args, **kwargs) triggers the attack protection.
870+
871+
Note: this method must ensure that the attack protection being tested
872+
is the one that is actually triggered at runtime, e.g., by matching
873+
the exact error message.
874+
"""
875+
876+
@abc.abstractmethod
877+
def set_activation_threshold(self, parser, threshold):
878+
"""Set the activation threshold for the tested protection."""
879+
880+
@abc.abstractmethod
881+
def set_maximum_amplification(self, parser, max_factor):
882+
"""Set the maximum amplification factor for the tested protection."""
883+
884+
@abc.abstractmethod
885+
def test_set_activation_threshold__threshold_reached(self):
886+
"""Test when the activation threshold is exceeded."""
887+
888+
@abc.abstractmethod
889+
def test_set_activation_threshold__threshold_not_reached(self):
890+
"""Test when the activation threshold is not exceeded."""
891+
892+
def test_set_activation_threshold__invalid_threshold_type(self):
893+
parser = expat.ParserCreate()
894+
setter = functools.partial(self.set_activation_threshold, parser)
895+
896+
self.assertRaises(TypeError, setter, 1.0)
897+
self.assertRaises(TypeError, setter, -1.5)
898+
self.assertRaises(ValueError, setter, -5)
899+
900+
def test_set_activation_threshold__invalid_threshold_range(self):
901+
_testcapi = import_helper.import_module("_testcapi")
902+
parser = expat.ParserCreate()
903+
setter = functools.partial(self.set_activation_threshold, parser)
904+
905+
self.assertRaises(OverflowError, setter, _testcapi.ULLONG_MAX + 1)
906+
907+
def test_set_activation_threshold__fail_for_subparser(self):
908+
parser = expat.ParserCreate()
909+
subparser = parser.ExternalEntityParserCreate(None)
910+
setter = functools.partial(self.set_activation_threshold, subparser)
911+
self.assert_root_parser_failure(setter, 12345)
912+
913+
@abc.abstractmethod
914+
def test_set_maximum_amplification__amplification_exceeded(self):
915+
"""Test when the amplification factor is exceeded."""
916+
917+
@abc.abstractmethod
918+
def test_set_maximum_amplification__amplification_not_exceeded(self):
919+
"""Test when the amplification factor is not exceeded."""
920+
921+
def test_set_maximum_amplification__infinity(self):
922+
inf = float('inf') # an 'inf' threshold is allowed by Expat
923+
parser = expat.ParserCreate()
924+
self.assertIsNone(self.set_maximum_amplification(parser, inf))
925+
926+
def test_set_maximum_amplification__invalid_max_factor_type(self):
927+
parser = expat.ParserCreate()
928+
setter = functools.partial(self.set_maximum_amplification, parser)
929+
930+
self.assertRaises(TypeError, setter, None)
931+
self.assertRaises(TypeError, setter, 'abc')
932+
933+
def test_set_maximum_amplification__invalid_max_factor_range(self):
934+
parser = expat.ParserCreate()
935+
setter = functools.partial(self.set_maximum_amplification, parser)
936+
937+
msg = re.escape("'max_factor' must be at least 1.0")
938+
self.assertRaisesRegex(expat.ExpatError, msg, setter, float('nan'))
939+
self.assertRaisesRegex(expat.ExpatError, msg, setter, 0.99)
940+
941+
def test_set_maximum_amplification__fail_for_subparser(self):
942+
parser = expat.ParserCreate()
943+
subparser = parser.ExternalEntityParserCreate(None)
944+
setter = functools.partial(self.set_maximum_amplification, subparser)
945+
self.assert_root_parser_failure(setter, 123.45)
946+
947+
948+
@unittest.skipIf(expat.version_info < (2, 7, 2), "requires Expat >= 2.7.2")
949+
class MemoryProtectionTest(AttackProtectionTestBase, unittest.TestCase):
950+
951+
# NOTE: with the default Expat configuration, the billion laughs protection
952+
# may hit before the allocation limiter if exponential_expansion_payload()
953+
# is not carefully parametrized. As such, the payloads should be chosen so
954+
# that either the allocation limiter is hit before other protections are
955+
# triggered or no protection at all is triggered.
956+
957+
def assert_rejected(self, func, /, *args, **kwargs):
958+
"""Check that func(*args, **kwargs) hits the allocation limit."""
959+
msg = r"out of memory: line \d+, column \d+"
960+
self.assertRaisesRegex(expat.ExpatError, msg, func, *args, **kwargs)
961+
962+
def set_activation_threshold(self, parser, threshold):
963+
return parser.SetAllocTrackerActivationThreshold(threshold)
964+
965+
def set_maximum_amplification(self, parser, max_factor):
966+
return parser.SetAllocTrackerMaximumAmplification(max_factor)
967+
968+
def test_set_activation_threshold__threshold_reached(self):
969+
parser = expat.ParserCreate()
970+
# Choose a threshold expected to be always reached.
971+
self.set_activation_threshold(parser, 3)
972+
# Check that the threshold is reached by choosing a small factor
973+
# and a payload whose peak amplification factor exceeds it.
974+
self.assertIsNone(self.set_maximum_amplification(parser, 1.0))
975+
payload = self.exponential_expansion_payload(ncols=10, nrows=4)
976+
self.assert_rejected(parser.Parse, payload, True)
977+
978+
def test_set_activation_threshold__threshold_not_reached(self):
979+
parser = expat.ParserCreate()
980+
# Choose a threshold expected to be never reached.
981+
self.set_activation_threshold(parser, pow(10, 5))
982+
# Check that the threshold is reached by choosing a small factor
983+
# and a payload whose peak amplification factor exceeds it.
984+
self.assertIsNone(self.set_maximum_amplification(parser, 1.0))
985+
payload = self.exponential_expansion_payload(ncols=10, nrows=4)
986+
self.assertIsNotNone(parser.Parse(payload, True))
987+
988+
def test_set_maximum_amplification__amplification_exceeded(self):
989+
parser = expat.ParserCreate()
990+
# Unconditionally enable maximum activation factor.
991+
self.set_activation_threshold(parser, 0)
992+
# Choose a max amplification factor expected to always be exceeded.
993+
self.assertIsNone(self.set_maximum_amplification(parser, 1.0))
994+
# Craft a payload for which the peak amplification factor is > 1.0.
995+
payload = self.exponential_expansion_payload(ncols=1, nrows=2)
996+
self.assert_rejected(parser.Parse, payload, True)
997+
998+
def test_set_maximum_amplification__amplification_not_exceeded(self):
999+
parser = expat.ParserCreate()
1000+
# Unconditionally enable maximum activation factor.
1001+
self.set_activation_threshold(parser, 0)
1002+
# Choose a max amplification factor expected to never be exceeded.
1003+
self.assertIsNone(self.set_maximum_amplification(parser, 1e4))
1004+
# Craft a payload for which the peak amplification factor is < 1e4.
1005+
payload = self.exponential_expansion_payload(ncols=1, nrows=2)
1006+
self.assertIsNotNone(parser.Parse(payload, True))
1007+
1008+
8121009
if __name__ == "__main__":
8131010
unittest.main()
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Add :func:`~xml.parsers.expat.xmlparser.SetAllocTrackerActivationThreshold`
2+
and :func:`~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)