mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-46070: _PyGC_Fini() untracks objects (GH-30577) (GH-30580)
Py_EndInterpreter() now explicitly untracks all objects currently
tracked by the GC. Previously, if an object was used later by another
interpreter, calling PyObject_GC_UnTrack() on the object crashed if
the previous or the next object of the PyGC_Head structure became a
dangling pointer.
(cherry picked from commit 1a4d1c1c9b
)
This commit is contained in:
parent
4ddd5da269
commit
52937c26ad
2 changed files with 29 additions and 0 deletions
|
@ -2149,12 +2149,36 @@ _PyGC_DumpShutdownStats(PyThreadState *tstate)
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
gc_fini_untrack(PyGC_Head *list)
|
||||
{
|
||||
PyGC_Head *gc;
|
||||
for (gc = GC_NEXT(list); gc != list; gc = GC_NEXT(list)) {
|
||||
PyObject *op = FROM_GC(gc);
|
||||
_PyObject_GC_UNTRACK(op);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
_PyGC_Fini(PyThreadState *tstate)
|
||||
{
|
||||
GCState *gcstate = &tstate->interp->gc;
|
||||
Py_CLEAR(gcstate->garbage);
|
||||
Py_CLEAR(gcstate->callbacks);
|
||||
|
||||
if (!_Py_IsMainInterpreter(tstate)) {
|
||||
// bpo-46070: Explicitly untrack all objects currently tracked by the
|
||||
// GC. Otherwise, if an object is used later by another interpreter,
|
||||
// calling PyObject_GC_UnTrack() on the object crashs if the previous
|
||||
// or the next object of the PyGC_Head structure became a dangling
|
||||
// pointer.
|
||||
for (int i = 0; i < NUM_GENERATIONS; i++) {
|
||||
PyGC_Head *gen = GEN_HEAD(gcstate, i);
|
||||
gc_fini_untrack(gen);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* for debugging */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue