Skip to content

Commit 5804f87

Browse files
authored
bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120)
PyThreadState.frame is a borrowed reference, not a strong reference: PyThreadState_Clear() must not call Py_CLEAR(tstate->frame). Remove test_threading.test_warnings_at_exit(): we cannot warranty that the Python thread state of daemon threads is cleared in a reliable way during Python shutdown.
1 parent 472fc84 commit 5804f87

File tree

4 files changed

+14
-30
lines changed

4 files changed

+14
-30
lines changed

Include/cpython/pystate.h

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ struct _ts {
5555
struct _ts *next;
5656
PyInterpreterState *interp;
5757

58+
/* Borrowed reference to the current frame (it can be NULL) */
5859
struct _frame *frame;
5960
int recursion_depth;
6061
char overflowed; /* The stack has overflowed. Allow 50 more calls

Lib/test/test_threading.py

-28
Original file line numberDiff line numberDiff line change
@@ -776,34 +776,6 @@ def __del__(self):
776776
""")
777777
self.assertEqual(out.rstrip(), b"thread_dict.atexit = 'value'")
778778

779-
def test_warnings_at_exit(self):
780-
# bpo-19466: try to call most destructors at Python shutdown before
781-
# destroying Python thread states
782-
filename = __file__
783-
rc, out, err = assert_python_ok("-Wd", "-c", """if 1:
784-
import time
785-
import threading
786-
from test import support
787-
788-
def open_sleep():
789-
# a warning will be emitted when the open file will be
790-
# destroyed (without being explicitly closed) while the daemon
791-
# thread is destroyed
792-
fileobj = open(%a, 'rb')
793-
start_event.set()
794-
time.sleep(support.LONG_TIMEOUT)
795-
796-
start_event = threading.Event()
797-
798-
thread = threading.Thread(target=open_sleep, daemon=True)
799-
thread.start()
800-
801-
# wait until the thread started
802-
start_event.wait()
803-
""" % filename)
804-
self.assertRegex(err.rstrip(),
805-
b"^sys:1: ResourceWarning: unclosed file ")
806-
807779

808780
class ThreadJoinOnShutdown(BaseTestCase):
809781

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Fix :c:func:`PyThreadState_Clear()`. ``PyThreadState.frame`` is a borrowed
2+
reference, not a strong reference: ``PyThreadState_Clear()`` must not call
3+
``Py_CLEAR(tstate->frame)``.

Python/pystate.c

+10-2
Original file line numberDiff line numberDiff line change
@@ -765,11 +765,19 @@ PyThreadState_Clear(PyThreadState *tstate)
765765
{
766766
int verbose = tstate->interp->config.verbose;
767767

768-
if (verbose && tstate->frame != NULL)
768+
if (verbose && tstate->frame != NULL) {
769+
/* bpo-20526: After the main thread calls
770+
_PyRuntimeState_SetFinalizing() in Py_FinalizeEx(), threads must
771+
exit when trying to take the GIL. If a thread exit in the middle of
772+
_PyEval_EvalFrameDefault(), tstate->frame is not reset to its
773+
previous value. It is more likely with daemon threads, but it can
774+
happen with regular threads if threading._shutdown() fails
775+
(ex: interrupted by CTRL+C). */
769776
fprintf(stderr,
770777
"PyThreadState_Clear: warning: thread still has a frame\n");
778+
}
771779

772-
Py_CLEAR(tstate->frame);
780+
/* Don't clear tstate->frame: it is a borrowed reference */
773781

774782
Py_CLEAR(tstate->dict);
775783
Py_CLEAR(tstate->async_exc);

0 commit comments

Comments
 (0)