ctypes resize and byref/addressof is not thread-safe under free-threaded build #131336
Labels
extension-modules
C modules in the Modules dir
topic-ctypes
topic-free-threading
type-bug
An unexpected behavior, bug, or error
Bug report
Bug description:
I'm reviewing the https://github.com/python/cpython/blob/main/Modules/_ctypes/callproc.c. I believe I found a possible UB if
resize
andbyref
/addressof
are used from different threads without any locking (AFAIU it is valid for free-threaded build and not for GIL-enabled).resize
doesrealloc
-cpython/Modules/_ctypes/callproc.c
Lines 1934 to 1938 in d07e9eb
After
realloc
the old value ofobj->b_ptr
is no longer valid, and any access to it is UB. If another thread callsaddressof
cpython/Modules/_ctypes/callproc.c
Line 1847 in d07e9eb
byref
cpython/Modules/_ctypes/callproc.c
Line 1827 in d07e9eb
Should we protect them with
LOCK_PTR
?CPython versions tested on:
CPython main branch
Operating systems tested on:
No response
The text was updated successfully, but these errors were encountered: