gh-143008: Safer TextIOWrapper underlying stream access#145957
Open
cmaloney wants to merge 2 commits intopython:mainfrom
Open
gh-143008: Safer TextIOWrapper underlying stream access#145957cmaloney wants to merge 2 commits intopython:mainfrom
cmaloney wants to merge 2 commits intopython:mainfrom
Conversation
TextIOWrapper keeps its underlying stream in a member called `self->buffer`. That stream can be detached by user code, such as custom `.flush` implementations resulting in `self->buffer` being set to NULL. The implementation often checked at the start of functions if `self->buffer` is in a good state, but did not always recheck after other Python code was called which could modify `self->buffer`. The cases which need to be re-checked are hard to spot so rather than rely on reviewer effort create better safety by making all self->buffer access go through helper functions. Thank you yihong0618 for the test, NEWS and initial implementation in pythongh-143041. Co-authored-by: yihong0618 <zouzou0208@gmail.com>
Contributor
|
wow that is cool thanks |
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.
TextIOWrapper keeps its underlying stream in a member called
self->buffer. That stream can be detached by user code, such as custom.flush()implementations, resulting inself->bufferbeing set to NULL. The implementation often checked at the start of functions ifself->bufferis in a good state but did not always recheck after other Python code which could modifyself->buffer.The cases which need to be re-checked are hard to spot so rather than rely on reviewer effort make a better safety net by changing all
self->bufferaccess to go through helper functions.Thank you @yihong0618 for the test, NEWS and an initial implementation in gh-143041.
TextIOWrapper.truncatevia re-entrantflush#143008