| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
CVE-2025-59375) (pythonGH-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 <10796600+picnixz@users.noreply.github.com>
|
I'll wait until gh-139366 is merged to ease future backports |
Sorry, something went wrong.
…on API (python#139366) Fix some typos left in f04bea4, and simplify some internal functions to ease maintenance of future mitigation APIs.
|
A core developer needs to review it, and the release manager needs to approve it because we're in RC3 phase. I really want at least two core devs to check this PR to be sure I didn't mess the backports. I didn't backport the docs changes that will be added in the next one (the one for billion laughs). |
Sorry, something went wrong.
|
@picnixz so the plan is to first get review from Gregory and only then Hugo, I see 👍 |
Sorry, something went wrong.
|
I would be happy if you could also review it as you're an expert here as well :') |
Sorry, something went wrong.
There was a problem hiding this comment.
I would be happy if you could also review it as you're an expert here as well :')
@picnixz done, looks good 👍
My method of review has been comparing (1) the diff of #139234 against main with (2) the diff in here. What I found was no difference but:
The tools I used for this were git rebase -i, git diff and Meld.
So if #139234 was alright (which I believe) then very likely this is, too 👍
Sorry, something went wrong.
|
Thank you for the review. I'll let Gregory have a look and then Hugo can hit merge I think (only he can merge during RC phase). For the other branches, I would suggest you continue your branch for 3.13 with the latest stuff (or try to directly cherry-pick this specific PR with a new one). I think we should be able to backport this PR to 3.13 directly without too many conflicts (I hope). |
Sorry, something went wrong.
|
FWIW when to merge this is up to the release manager (hugovk). As we're treating it as a security mitigation feature similar to past such things and adding it to older releases as well, that suggests letting this wait for 3.14.1 is fine. |
Sorry, something went wrong.
|
Note for the RM: we have a UAF in all branches, independently of Expat version: See #139400. So I would prefer that this one is not backported until we fix it. On 3.14 we don't see the crash, but on 3.13 (and probably on older branches), we will also see it. I believe we are able not to crash by chance due to some magic in incremental GC. |
Sorry, something went wrong.
…and a WIP candidate fix at #139403.
@picnixz In my tests on another notebook I saw two other branches affected directly and once we add del parent_parser all branches are. I'm with you that changes in the garbage collector could take part in 3.14 and main behaving slightly differently. |
Sorry, something went wrong.
|
We will merge this one in 3.14.1 (3.14 is now ongoing its release process). To have a good synchronization, we'll also delay 3.10 to 3.13 backports for their next release cycle. |
Sorry, something went wrong.
|
I'm going to work on merging the deadly allocation PR now. Sorry for the delay but I got very busy with my new work & IRL |
Sorry, something went wrong.
This reverts commit 41b0aa2.
|
Ok, so here's the plan:
@hartwork Can you check your existing PRs please? I think it'd be fine to actually merge the 3.10-3.14 ones and their backports as we have roughly 2 months until the next release. |
Sorry, something went wrong.
@picnixz yes please, a backport is not the place to fix up on the original as far as I am concerned.
I believe I got them all into mergable shape and they just need a re-trigger of CI — the read-the-docs one is flaky — to be green and ready. I am missing something? Anything in particular that you'd want me to check or re-check for?
Cool! |
Sorry, something went wrong.
@picnixz thank you! 🙏 |
Sorry, something went wrong.
@picnixz they all end in commit "Drop workaround for 139400 as no-longer-needed" and their commits tell the same story. I'm happy to fix anything that needs fixing, but I believe they're all ready and have been. |
Sorry, something went wrong.
|
Perfect, I'm going to merge them all and then we'll move on to adding the other API (with the docs amendments) |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
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:
(cherry picked from commits f04bea4 and 68a1778)
📚 Documentation preview 📚: https://cpython-previews--139359.org.readthedocs.build/