-
-
Notifications
You must be signed in to change notification settings - Fork 34.6k
gh-146452: Fix pickle segfault on concurrent mutation of dict and list #146470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+59
−1
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
8f55561
gh-146452: Fix pickle segfault when pickling dict with concurrent mut…
overlorde c4a8ee1
Merge branch 'main' into fix-issue-146452
overlorde 3e57547
Apply suggestion from @kumaraditya303
kumaraditya303 6276525
change test to use threading_helper.start_threads
kumaraditya303 f83fe04
Merge branch 'main' into fix-issue-146452
kumaraditya303 62b5811
fix news
kumaraditya303 3d305ca
Merge branch 'fix-issue-146452' of https://github.com/overlorde/cpyth…
kumaraditya303 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| import pickle | ||
| import threading | ||
| import unittest | ||
|
|
||
| from test.support import threading_helper | ||
|
|
||
|
|
||
| @threading_helper.requires_working_threading() | ||
| class TestPickleFreeThreading(unittest.TestCase): | ||
|
|
||
| def test_pickle_dumps_with_concurrent_dict_mutation(self): | ||
| # gh-146452: Pickling a dict while another thread mutates it | ||
| # used to segfault. batch_dict_exact() iterated dict items via | ||
| # PyDict_Next() which returns borrowed references, and a | ||
| # concurrent pop/replace could free the value before Py_INCREF | ||
| # got to it. | ||
| shared = {str(i): list(range(20)) for i in range(50)} | ||
|
|
||
| def dumper(): | ||
| for _ in range(1000): | ||
| try: | ||
| pickle.dumps(shared) | ||
| except RuntimeError: | ||
| # "dictionary changed size during iteration" is expected | ||
| pass | ||
|
|
||
| def mutator(): | ||
| for j in range(1000): | ||
| key = str(j % 50) | ||
| shared[key] = list(range(j % 20)) | ||
| if j % 10 == 0: | ||
| shared.pop(key, None) | ||
| shared[key] = [j] | ||
|
|
||
| threads = [] | ||
| for _ in range(10): | ||
| threads.append(threading.Thread(target=dumper)) | ||
| threads.append(threading.Thread(target=mutator)) | ||
|
|
||
| with threading_helper.start_threads(threads): | ||
| pass | ||
|
|
||
| if __name__ == "__main__": | ||
| unittest.main() |
2 changes: 2 additions & 0 deletions
2
Misc/NEWS.d/next/Library/2026-03-26-09-30-00.gh-issue-146452.Y2N6qZ8J.rst
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| Fix segfault in :mod:`pickle` when pickling a dictionary concurrently | ||
| mutated by another thread in the free-threaded build. | ||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.