mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
gh-128639: Don't assume one thread in subinterpreter finalization (gh-128640)
Incidentally, this also fixed the warning not showing up if a subinterpreter wasn't cleaned up via _interpreters.destroy. I had to update some of the tests as a result.
This commit is contained in:
parent
c4ad92e155
commit
9859791f9e
6 changed files with 99 additions and 38 deletions
|
@ -647,6 +647,59 @@ class TestInterpreterClose(TestBase):
|
||||||
self.interp_exists(interpid))
|
self.interp_exists(interpid))
|
||||||
|
|
||||||
|
|
||||||
|
def test_remaining_threads(self):
|
||||||
|
r_interp, w_interp = self.pipe()
|
||||||
|
|
||||||
|
FINISHED = b'F'
|
||||||
|
|
||||||
|
# It's unlikely, but technically speaking, it's possible
|
||||||
|
# that the thread could've finished before interp.close() is
|
||||||
|
# reached, so this test might not properly exercise the case.
|
||||||
|
# However, it's quite unlikely and I'm too lazy to deal with it.
|
||||||
|
interp = interpreters.create()
|
||||||
|
interp.exec(f"""if True:
|
||||||
|
import os
|
||||||
|
import threading
|
||||||
|
import time
|
||||||
|
|
||||||
|
def task():
|
||||||
|
time.sleep(1)
|
||||||
|
os.write({w_interp}, {FINISHED!r})
|
||||||
|
|
||||||
|
threads = [threading.Thread(target=task) for _ in range(3)]
|
||||||
|
for t in threads:
|
||||||
|
t.start()
|
||||||
|
""")
|
||||||
|
interp.close()
|
||||||
|
|
||||||
|
self.assertEqual(os.read(r_interp, 1), FINISHED)
|
||||||
|
|
||||||
|
def test_remaining_daemon_threads(self):
|
||||||
|
interp = _interpreters.create(
|
||||||
|
types.SimpleNamespace(
|
||||||
|
use_main_obmalloc=False,
|
||||||
|
allow_fork=False,
|
||||||
|
allow_exec=False,
|
||||||
|
allow_threads=True,
|
||||||
|
allow_daemon_threads=True,
|
||||||
|
check_multi_interp_extensions=True,
|
||||||
|
gil='own',
|
||||||
|
)
|
||||||
|
)
|
||||||
|
_interpreters.exec(interp, f"""if True:
|
||||||
|
import threading
|
||||||
|
import time
|
||||||
|
|
||||||
|
def task():
|
||||||
|
time.sleep(100)
|
||||||
|
|
||||||
|
threads = [threading.Thread(target=task, daemon=True) for _ in range(3)]
|
||||||
|
for t in threads:
|
||||||
|
t.start()
|
||||||
|
""")
|
||||||
|
_interpreters.destroy(interp)
|
||||||
|
|
||||||
|
|
||||||
class TestInterpreterPrepareMain(TestBase):
|
class TestInterpreterPrepareMain(TestBase):
|
||||||
|
|
||||||
def test_empty(self):
|
def test_empty(self):
|
||||||
|
@ -755,7 +808,10 @@ class TestInterpreterExec(TestBase):
|
||||||
spam.eggs()
|
spam.eggs()
|
||||||
|
|
||||||
interp = interpreters.create()
|
interp = interpreters.create()
|
||||||
interp.exec(script)
|
try:
|
||||||
|
interp.exec(script)
|
||||||
|
finally:
|
||||||
|
interp.close()
|
||||||
""")
|
""")
|
||||||
|
|
||||||
stdout, stderr = self.assert_python_failure(scriptfile)
|
stdout, stderr = self.assert_python_failure(scriptfile)
|
||||||
|
@ -764,7 +820,7 @@ class TestInterpreterExec(TestBase):
|
||||||
# File "{interpreters.__file__}", line 179, in exec
|
# File "{interpreters.__file__}", line 179, in exec
|
||||||
self.assertEqual(stderr, dedent(f"""\
|
self.assertEqual(stderr, dedent(f"""\
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
File "{scriptfile}", line 9, in <module>
|
File "{scriptfile}", line 10, in <module>
|
||||||
interp.exec(script)
|
interp.exec(script)
|
||||||
~~~~~~~~~~~^^^^^^^^
|
~~~~~~~~~~~^^^^^^^^
|
||||||
{interpmod_line.strip()}
|
{interpmod_line.strip()}
|
||||||
|
|
|
@ -132,6 +132,7 @@ class StartupTests(TestBase):
|
||||||
'sub': sys.path[0],
|
'sub': sys.path[0],
|
||||||
}}, indent=4), flush=True)
|
}}, indent=4), flush=True)
|
||||||
""")
|
""")
|
||||||
|
interp.close()
|
||||||
'''
|
'''
|
||||||
# <tmp>/
|
# <tmp>/
|
||||||
# pkg/
|
# pkg/
|
||||||
|
@ -172,7 +173,10 @@ class FinalizationTests(TestBase):
|
||||||
argv = [sys.executable, '-c', '''if True:
|
argv = [sys.executable, '-c', '''if True:
|
||||||
from test.support import interpreters
|
from test.support import interpreters
|
||||||
interp = interpreters.create()
|
interp = interpreters.create()
|
||||||
raise Exception
|
try:
|
||||||
|
raise Exception
|
||||||
|
finally:
|
||||||
|
interp.close()
|
||||||
''']
|
''']
|
||||||
proc = subprocess.run(argv, capture_output=True, text=True)
|
proc = subprocess.run(argv, capture_output=True, text=True)
|
||||||
self.assertIn('Traceback', proc.stderr)
|
self.assertIn('Traceback', proc.stderr)
|
||||||
|
|
|
@ -1689,10 +1689,7 @@ class SubinterpThreadingTests(BaseTestCase):
|
||||||
|
|
||||||
_testcapi.run_in_subinterp(%r)
|
_testcapi.run_in_subinterp(%r)
|
||||||
""" % (subinterp_code,)
|
""" % (subinterp_code,)
|
||||||
with test.support.SuppressCrashReport():
|
assert_python_ok("-c", script)
|
||||||
rc, out, err = assert_python_failure("-c", script)
|
|
||||||
self.assertIn("Fatal Python error: Py_EndInterpreter: "
|
|
||||||
"not the last thread", err.decode())
|
|
||||||
|
|
||||||
def _check_allowed(self, before_start='', *,
|
def _check_allowed(self, before_start='', *,
|
||||||
allowed=True,
|
allowed=True,
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Fix a crash when using threads inside of a subinterpreter.
|
|
@ -1395,9 +1395,12 @@ static int test_audit_subinterpreter(void)
|
||||||
PySys_AddAuditHook(_audit_subinterpreter_hook, NULL);
|
PySys_AddAuditHook(_audit_subinterpreter_hook, NULL);
|
||||||
_testembed_initialize();
|
_testembed_initialize();
|
||||||
|
|
||||||
Py_NewInterpreter();
|
PyThreadState *tstate = PyThreadState_Get();
|
||||||
Py_NewInterpreter();
|
for (int i = 0; i < 3; ++i)
|
||||||
Py_NewInterpreter();
|
{
|
||||||
|
Py_EndInterpreter(Py_NewInterpreter());
|
||||||
|
PyThreadState_Swap(tstate);
|
||||||
|
}
|
||||||
|
|
||||||
Py_Finalize();
|
Py_Finalize();
|
||||||
|
|
||||||
|
|
|
@ -1992,6 +1992,7 @@ resolve_final_tstate(_PyRuntimeState *runtime)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
/* Fall back to the current tstate. It's better than nothing. */
|
/* Fall back to the current tstate. It's better than nothing. */
|
||||||
|
// XXX No it's not
|
||||||
main_tstate = tstate;
|
main_tstate = tstate;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2037,6 +2038,16 @@ _Py_Finalize(_PyRuntimeState *runtime)
|
||||||
|
|
||||||
_PyAtExit_Call(tstate->interp);
|
_PyAtExit_Call(tstate->interp);
|
||||||
|
|
||||||
|
/* Clean up any lingering subinterpreters.
|
||||||
|
|
||||||
|
Two preconditions need to be met here:
|
||||||
|
|
||||||
|
- This has to happen before _PyRuntimeState_SetFinalizing is
|
||||||
|
called, or else threads might get prematurely blocked.
|
||||||
|
- The world must not be stopped, as finalizers can run.
|
||||||
|
*/
|
||||||
|
finalize_subinterpreters();
|
||||||
|
|
||||||
assert(_PyThreadState_GET() == tstate);
|
assert(_PyThreadState_GET() == tstate);
|
||||||
|
|
||||||
/* Copy the core config, PyInterpreterState_Delete() free
|
/* Copy the core config, PyInterpreterState_Delete() free
|
||||||
|
@ -2124,9 +2135,6 @@ _Py_Finalize(_PyRuntimeState *runtime)
|
||||||
_PyImport_FiniExternal(tstate->interp);
|
_PyImport_FiniExternal(tstate->interp);
|
||||||
finalize_modules(tstate);
|
finalize_modules(tstate);
|
||||||
|
|
||||||
/* Clean up any lingering subinterpreters. */
|
|
||||||
finalize_subinterpreters();
|
|
||||||
|
|
||||||
/* Print debug stats if any */
|
/* Print debug stats if any */
|
||||||
_PyEval_Fini();
|
_PyEval_Fini();
|
||||||
|
|
||||||
|
@ -2410,9 +2418,8 @@ Py_NewInterpreter(void)
|
||||||
return tstate;
|
return tstate;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Delete an interpreter and its last thread. This requires that the
|
/* Delete an interpreter. This requires that the given thread state
|
||||||
given thread state is current, that the thread has no remaining
|
is current, and that the thread has no remaining frames.
|
||||||
frames, and that it is its interpreter's only remaining thread.
|
|
||||||
It is a fatal error to violate these constraints.
|
It is a fatal error to violate these constraints.
|
||||||
|
|
||||||
(Py_FinalizeEx() doesn't have these constraints -- it zaps
|
(Py_FinalizeEx() doesn't have these constraints -- it zaps
|
||||||
|
@ -2442,14 +2449,15 @@ Py_EndInterpreter(PyThreadState *tstate)
|
||||||
_Py_FinishPendingCalls(tstate);
|
_Py_FinishPendingCalls(tstate);
|
||||||
|
|
||||||
_PyAtExit_Call(tstate->interp);
|
_PyAtExit_Call(tstate->interp);
|
||||||
|
_PyRuntimeState *runtime = interp->runtime;
|
||||||
if (tstate != interp->threads.head || tstate->next != NULL) {
|
_PyEval_StopTheWorldAll(runtime);
|
||||||
Py_FatalError("not the last thread");
|
PyThreadState *list = _PyThreadState_RemoveExcept(tstate);
|
||||||
}
|
|
||||||
|
|
||||||
/* Remaining daemon threads will automatically exit
|
/* Remaining daemon threads will automatically exit
|
||||||
when they attempt to take the GIL (ex: PyEval_RestoreThread()). */
|
when they attempt to take the GIL (ex: PyEval_RestoreThread()). */
|
||||||
_PyInterpreterState_SetFinalizing(interp, tstate);
|
_PyInterpreterState_SetFinalizing(interp, tstate);
|
||||||
|
_PyEval_StartTheWorldAll(runtime);
|
||||||
|
_PyThreadState_DeleteList(list, /*is_after_fork=*/0);
|
||||||
|
|
||||||
// XXX Call something like _PyImport_Disable() here?
|
// XXX Call something like _PyImport_Disable() here?
|
||||||
|
|
||||||
|
@ -2480,6 +2488,8 @@ finalize_subinterpreters(void)
|
||||||
PyInterpreterState *main_interp = _PyInterpreterState_Main();
|
PyInterpreterState *main_interp = _PyInterpreterState_Main();
|
||||||
assert(final_tstate->interp == main_interp);
|
assert(final_tstate->interp == main_interp);
|
||||||
_PyRuntimeState *runtime = main_interp->runtime;
|
_PyRuntimeState *runtime = main_interp->runtime;
|
||||||
|
assert(!runtime->stoptheworld.world_stopped);
|
||||||
|
assert(_PyRuntimeState_GetFinalizing(runtime) == NULL);
|
||||||
struct pyinterpreters *interpreters = &runtime->interpreters;
|
struct pyinterpreters *interpreters = &runtime->interpreters;
|
||||||
|
|
||||||
/* Get the first interpreter in the list. */
|
/* Get the first interpreter in the list. */
|
||||||
|
@ -2508,27 +2518,17 @@ finalize_subinterpreters(void)
|
||||||
|
|
||||||
/* Clean up all remaining subinterpreters. */
|
/* Clean up all remaining subinterpreters. */
|
||||||
while (interp != NULL) {
|
while (interp != NULL) {
|
||||||
assert(!_PyInterpreterState_IsRunningMain(interp));
|
/* Make a tstate for finalization. */
|
||||||
|
PyThreadState *tstate = _PyThreadState_NewBound(interp, _PyThreadState_WHENCE_FINI);
|
||||||
/* Find the tstate to use for fini. We assume the interpreter
|
if (tstate == NULL) {
|
||||||
will have at most one tstate at this point. */
|
// XXX Some graceful way to always get a thread state?
|
||||||
PyThreadState *tstate = interp->threads.head;
|
Py_FatalError("thread state allocation failed");
|
||||||
if (tstate != NULL) {
|
|
||||||
/* Ideally we would be able to use tstate as-is, and rely
|
|
||||||
on it being in a ready state: no exception set, not
|
|
||||||
running anything (tstate->current_frame), matching the
|
|
||||||
current thread ID (tstate->thread_id). To play it safe,
|
|
||||||
we always delete it and use a fresh tstate instead. */
|
|
||||||
assert(tstate != final_tstate);
|
|
||||||
_PyThreadState_Attach(tstate);
|
|
||||||
PyThreadState_Clear(tstate);
|
|
||||||
_PyThreadState_Detach(tstate);
|
|
||||||
PyThreadState_Delete(tstate);
|
|
||||||
}
|
}
|
||||||
tstate = _PyThreadState_NewBound(interp, _PyThreadState_WHENCE_FINI);
|
|
||||||
|
/* Enter the subinterpreter. */
|
||||||
|
_PyThreadState_Attach(tstate);
|
||||||
|
|
||||||
/* Destroy the subinterpreter. */
|
/* Destroy the subinterpreter. */
|
||||||
_PyThreadState_Attach(tstate);
|
|
||||||
Py_EndInterpreter(tstate);
|
Py_EndInterpreter(tstate);
|
||||||
assert(_PyThreadState_GET() == NULL);
|
assert(_PyThreadState_GET() == NULL);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue