-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
tracemalloc.start()
and tracemalloc.stop()
race condition
#131566
Comments
The test has data race when setting the global "raw" memory allocator.
The test has data race when setting the global "raw" memory allocator.
Do you want to keep this one open even if you're skipping the test or do you want to close it? Dumb idea but can tracemalloc change the implementation of the raw allocator to switch to a locked raw allocator? |
Thanks - I wanted to close the issue. |
The race is in the load of the allocator function pointer Lines 989 to 1001 in 18249d9
This races with tracemalloc swapping the allocator pointer. Tracemalloc already performs locking inside of I don't think the race will cause any problems in practice. |
This occurs in both the GIL-enabled build and the free threaded build. It only happens in release builds, because
test_tracemalloc.test_tracemalloc_track_race
is skipped in debug builds.Tracemalloc modifies the global "raw" memory allocator. The modification happens under a lock, but other calls to
PyMem_RawMalloc
andPyMem_RawFree
can occur without any locking and without holding the GIL.I think the "fix" is to just skip the test when running under TSAN:
PyMem_RawMalloc()
to require locksHere's an example stack trace:
cpython/Python/tracemalloc.c
Line 825 in b92ee14
cpython/Python/thread_pthread.h
Lines 233 to 244 in b92ee14
See also:
Linked PRs
test_tracemalloc_track_race
under TSAN #131567The text was updated successfully, but these errors were encountered: