Skip to content

Commit ad0d55a

Browse files
committed
Merge branch 'master' into sh_merge_master
2 parents 7d37eb9 + 34a118f commit ad0d55a

5 files changed

+132
-11
lines changed

include/pybind11/attr.h

+17-1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ struct dynamic_attr {};
8181
/// Annotation which enables the buffer protocol for a type
8282
struct buffer_protocol {};
8383

84+
/// Annotation which enables releasing the GIL before calling the C++ destructor of wrapped
85+
/// instances (pybind/pybind11#1446).
86+
struct release_gil_before_calling_cpp_dtor {};
87+
8488
/// Annotation which requests that a special metaclass is created for a type
8589
struct metaclass {
8690
handle value;
@@ -272,7 +276,8 @@ struct function_record {
272276
struct type_record {
273277
PYBIND11_NOINLINE type_record()
274278
: multiple_inheritance(false), dynamic_attr(false), buffer_protocol(false),
275-
default_holder(true), module_local(false), is_final(false) {}
279+
default_holder(true), module_local(false), is_final(false),
280+
release_gil_before_calling_cpp_dtor(false) {}
276281

277282
/// Handle to the parent scope
278283
handle scope;
@@ -331,6 +336,9 @@ struct type_record {
331336
/// Is the class inheritable from python classes?
332337
bool is_final : 1;
333338

339+
/// Solves pybind/pybind11#1446
340+
bool release_gil_before_calling_cpp_dtor : 1;
341+
334342
#ifdef PYBIND11_HAS_INTERNALS_WITH_SMART_HOLDER_SUPPORT
335343
holder_enum_t holder_enum_v = holder_enum_t::undefined;
336344
#endif
@@ -607,6 +615,14 @@ struct process_attribute<module_local> : process_attribute_default<module_local>
607615
static void init(const module_local &l, type_record *r) { r->module_local = l.value; }
608616
};
609617

618+
template <>
619+
struct process_attribute<release_gil_before_calling_cpp_dtor>
620+
: process_attribute_default<release_gil_before_calling_cpp_dtor> {
621+
static void init(const release_gil_before_calling_cpp_dtor &, type_record *r) {
622+
r->release_gil_before_calling_cpp_dtor = true;
623+
}
624+
};
625+
610626
/// Process a 'prepend' attribute, putting this at the beginning of the overload chain
611627
template <>
612628
struct process_attribute<prepend> : process_attribute_default<prepend> {

include/pybind11/pybind11.h

+40-10
Original file line numberDiff line numberDiff line change
@@ -1909,7 +1909,6 @@ class class_ : public detail::generic_type {
19091909
record.type_align = alignof(conditional_t<has_alias, type_alias, type> &);
19101910
record.holder_size = sizeof(holder_type);
19111911
record.init_instance = init_instance;
1912-
record.dealloc = dealloc;
19131912

19141913
// A more fitting name would be uses_unique_ptr_holder.
19151914
record.default_holder = detail::is_instantiation<std::unique_ptr, holder_type>::value;
@@ -1934,6 +1933,12 @@ class class_ : public detail::generic_type {
19341933
/* Process optional arguments, if any */
19351934
process_attributes<Extra...>::init(extra..., &record);
19361935

1936+
if (record.release_gil_before_calling_cpp_dtor) {
1937+
record.dealloc = dealloc_release_gil_before_calling_cpp_dtor;
1938+
} else {
1939+
record.dealloc = dealloc_without_manipulating_gil;
1940+
}
1941+
19371942
generic_type::initialize(record);
19381943

19391944
if (has_alias) {
@@ -2323,15 +2328,14 @@ class class_ : public detail::generic_type {
23232328

23242329
#endif // PYBIND11_SMART_HOLDER_ENABLED
23252330

2326-
/// Deallocates an instance; via holder, if constructed; otherwise via operator delete.
2327-
static void dealloc(detail::value_and_holder &v_h) {
2328-
// We could be deallocating because we are cleaning up after a Python exception.
2329-
// If so, the Python error indicator will be set. We need to clear that before
2330-
// running the destructor, in case the destructor code calls more Python.
2331-
// If we don't, the Python API will exit with an exception, and pybind11 will
2332-
// throw error_already_set from the C++ destructor which is forbidden and triggers
2333-
// std::terminate().
2334-
error_scope scope;
2331+
// Deallocates an instance; via holder, if constructed; otherwise via operator delete.
2332+
// NOTE: The Python error indicator needs to cleared BEFORE this function is called.
2333+
// This is because we could be deallocating while cleaning up after a Python exception.
2334+
// If the error indicator is not cleared but the C++ destructor code makes Python C API
2335+
// calls, those calls are likely to generate a new exception, and pybind11 will then
2336+
// throw `error_already_set` from the C++ destructor. This is forbidden and will
2337+
// trigger std::terminate().
2338+
static void dealloc_impl(detail::value_and_holder &v_h) {
23352339
if (v_h.holder_constructed()) {
23362340
v_h.holder<holder_type>().~holder_type();
23372341
v_h.set_holder_constructed(false);
@@ -2342,6 +2346,32 @@ class class_ : public detail::generic_type {
23422346
v_h.value_ptr() = nullptr;
23432347
}
23442348

2349+
static void dealloc_without_manipulating_gil(detail::value_and_holder &v_h) {
2350+
error_scope scope;
2351+
dealloc_impl(v_h);
2352+
}
2353+
2354+
static void dealloc_release_gil_before_calling_cpp_dtor(detail::value_and_holder &v_h) {
2355+
error_scope scope;
2356+
// Intentionally not using `gil_scoped_release` because the non-simple
2357+
// version unconditionally calls `get_internals()`.
2358+
// `Py_BEGIN_ALLOW_THREADS`, `Py_END_ALLOW_THREADS` cannot be used
2359+
// because those macros include `{` and `}`.
2360+
PyThreadState *py_ts = PyEval_SaveThread();
2361+
try {
2362+
dealloc_impl(v_h);
2363+
} catch (...) {
2364+
// This code path is expected to be unreachable unless there is a
2365+
// bug in pybind11 itself.
2366+
// An alternative would be to mark this function, or
2367+
// `dealloc_impl()`, with `nothrow`, but that would be a subtle
2368+
// behavior change and could make debugging more difficult.
2369+
PyEval_RestoreThread(py_ts);
2370+
throw;
2371+
}
2372+
PyEval_RestoreThread(py_ts);
2373+
}
2374+
23452375
static detail::function_record *get_function_record(handle h) {
23462376
h = detail::get_function(h);
23472377
if (!h) {

tests/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ set(PYBIND11_TEST_FILES
115115
test_callbacks
116116
test_chrono
117117
test_class
118+
test_class_release_gil_before_calling_cpp_dtor
118119
test_class_sh_basic
119120
test_class_sh_disowning
120121
test_class_sh_disowning_mi
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#include <pybind11/pybind11.h>
2+
3+
#include "pybind11_tests.h"
4+
5+
#include <string>
6+
#include <unordered_map>
7+
8+
namespace pybind11_tests {
9+
namespace class_release_gil_before_calling_cpp_dtor {
10+
11+
using RegistryType = std::unordered_map<std::string, int>;
12+
13+
static RegistryType &PyGILState_Check_Results() {
14+
static RegistryType singleton; // Local static variables have thread-safe initialization.
15+
return singleton;
16+
}
17+
18+
template <int> // Using int as a trick to easily generate a series of types.
19+
struct ProbeType {
20+
private:
21+
std::string unique_key;
22+
23+
public:
24+
explicit ProbeType(const std::string &unique_key) : unique_key{unique_key} {}
25+
26+
~ProbeType() {
27+
RegistryType &reg = PyGILState_Check_Results();
28+
assert(reg.count(unique_key) == 0);
29+
reg[unique_key] = PyGILState_Check();
30+
}
31+
};
32+
33+
} // namespace class_release_gil_before_calling_cpp_dtor
34+
} // namespace pybind11_tests
35+
36+
TEST_SUBMODULE(class_release_gil_before_calling_cpp_dtor, m) {
37+
using namespace pybind11_tests::class_release_gil_before_calling_cpp_dtor;
38+
39+
py::class_<ProbeType<0>>(m, "ProbeType0").def(py::init<std::string>());
40+
41+
py::class_<ProbeType<1>>(m, "ProbeType1", py::release_gil_before_calling_cpp_dtor())
42+
.def(py::init<std::string>());
43+
44+
m.def("PopPyGILState_Check_Result", [](const std::string &unique_key) -> std::string {
45+
RegistryType &reg = PyGILState_Check_Results();
46+
if (reg.count(unique_key) == 0) {
47+
return "MISSING";
48+
}
49+
int res = reg[unique_key];
50+
reg.erase(unique_key);
51+
return std::to_string(res);
52+
});
53+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from __future__ import annotations
2+
3+
import gc
4+
5+
import pytest
6+
7+
from pybind11_tests import class_release_gil_before_calling_cpp_dtor as m
8+
9+
10+
@pytest.mark.parametrize(
11+
("probe_type", "unique_key", "expected_result"),
12+
[
13+
(m.ProbeType0, "without_manipulating_gil", "1"),
14+
(m.ProbeType1, "release_gil_before_calling_cpp_dtor", "0"),
15+
],
16+
)
17+
def test_gil_state_check_results(probe_type, unique_key, expected_result):
18+
probe_type(unique_key)
19+
gc.collect()
20+
result = m.PopPyGILState_Check_Result(unique_key)
21+
assert result == expected_result

0 commit comments

Comments
 (0)