Crash with PYTHON_LLTRACE=4
due to presence of PyDictKeysObject
on stack
#129432
Labels
3.14
new features, bugs and security fixes
interpreter-core
(Objects, Python, Grammar, and Parser dirs)
type-bug
An unexpected behavior, bug, or error
Bug report
Bug description:
The
dump_stack()
function, used when tracing micro-op execution, crashes if aPyDictKeysObject*
pointer is on the stack.Despite the name,
PyDictKeysObject
is not aPyObject
.Introduced in f978fb4
I think the best fix would be arrange the fields (at least in the debug build) of
PyDictKeysObject
such that thedk_kind
field is placed in the least significant byte of theob_type
field ofPyObject
and changeDictKeysKind
so that none of its values have the low 2 bits set to 0.Then
dump_stack
can check the low bits of theob_type
to see whether the "object" is aPyObject
or aPyDictKeysObject
.Looking forward, we expect to have an unused value for the low bits in
PyStackRef
, so we could assign them the meaning "not a Python object".This would add overhead when pushing and popping
PyDictKeysObject
s, but would make introspection a lot more robust.@mpage
CPython versions tested on:
CPython main branch
Operating systems tested on:
No response
The text was updated successfully, but these errors were encountered: