Harden Unpacker.__init__ re-entry cleanup to prevent buffer/context leaks#687
Merged
Conversation
Copilot
AI
changed the title
[WIP] Fix Unpacker.__init__ re-initialization bugs
Harden Jun 3, 2026
Unpacker.__init__ re-entry cleanup to prevent buffer/context leaks
methane
reviewed
Jun 3, 2026
methane
approved these changes
Jun 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Unpacker.__init__did not safely handle repeated initialization: it replacedself.bufwithout freeing the previous allocation and reinitialized parser state without clearing in-flight stack objects. This PR makes re-entry cleanup explicit and deterministic.Unpackerlifecycle cleanup__cinit__(unpack_init(&self.ctx)) so cleanup paths always operate on initialized state.__init__entry:unpack_clear(&self.ctx)),unpack_init(&self.ctx)),PyMem_Free(self.buf)),self.buf = NULL).Regression coverage for re-initialization
__init__, and asserts:Original prompt
This pull request was created from Copilot chat.