mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-28 23:55:28 +00:00
Fixed additional patterns: - _PyOpcode_* → _TyOpcode_* (all opcode metadata) - _PyUOpName → _TyUOpName - _PyFunction_* → _TyFunction_* - _PyListIterObject → _TyListIterObject - _Py_T_OBJECT → _Ty_T_OBJECT - Py_BEGIN_ALLOW_THREADS, Py_END_ALLOW_THREADS → Ty_* - PyDoc_STRVAR, PyDoc_STR → TyDoc_* - PyInterpreterState, PyThread_*, PyTime_t → Ty* - PyStructSequence_* → TyStructSequence_* - PyLockStatus → TyLockStatus - PyVarObject_HEAD_INIT → TyVarObject_HEAD_INIT - PyBaseExceptionObject → TyBaseExceptionObject - Fixed _PyExc_ → _TyExc_ in exception macros Build is progressing further. Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
306 lines
8.3 KiB
C
306 lines
8.3 KiB
C
/*
|
|
* C Extension module to test pycore_critical_section.h API.
|
|
*/
|
|
|
|
#include "parts.h"
|
|
#include "pycore_critical_section.h"
|
|
|
|
#ifdef MS_WINDOWS
|
|
# include <windows.h> // Sleep()
|
|
#endif
|
|
|
|
#ifdef Ty_GIL_DISABLED
|
|
#define assert_nogil assert
|
|
#define assert_gil(x)
|
|
#else
|
|
#define assert_gil assert
|
|
#define assert_nogil(x)
|
|
#endif
|
|
|
|
|
|
static TyObject *
|
|
test_critical_sections(TyObject *self, TyObject *Py_UNUSED(args))
|
|
{
|
|
TyObject *d1 = TyDict_New();
|
|
assert(d1 != NULL);
|
|
|
|
TyObject *d2 = TyDict_New();
|
|
assert(d2 != NULL);
|
|
|
|
// Beginning a critical section should lock the associated object and
|
|
// push the critical section onto the thread's stack (in Ty_GIL_DISABLED builds).
|
|
Ty_BEGIN_CRITICAL_SECTION(d1);
|
|
assert_nogil(PyMutex_IsLocked(&d1->ob_mutex));
|
|
assert_nogil(_PyCriticalSection_IsActive(TyThreadState_GET()->critical_section));
|
|
assert_gil(TyThreadState_GET()->critical_section == 0);
|
|
Ty_END_CRITICAL_SECTION();
|
|
assert_nogil(!PyMutex_IsLocked(&d1->ob_mutex));
|
|
|
|
assert_nogil(!PyMutex_IsLocked(&d1->ob_mutex));
|
|
assert_nogil(!PyMutex_IsLocked(&d2->ob_mutex));
|
|
Ty_BEGIN_CRITICAL_SECTION2(d1, d2);
|
|
assert_nogil(PyMutex_IsLocked(&d1->ob_mutex));
|
|
assert_nogil(PyMutex_IsLocked(&d2->ob_mutex));
|
|
Ty_END_CRITICAL_SECTION2();
|
|
assert_nogil(!PyMutex_IsLocked(&d1->ob_mutex));
|
|
assert_nogil(!PyMutex_IsLocked(&d2->ob_mutex));
|
|
|
|
// Passing the same object twice should work (and not deadlock).
|
|
assert_nogil(!PyMutex_IsLocked(&d2->ob_mutex));
|
|
Ty_BEGIN_CRITICAL_SECTION2(d2, d2);
|
|
assert_nogil(PyMutex_IsLocked(&d2->ob_mutex));
|
|
Ty_END_CRITICAL_SECTION2();
|
|
assert_nogil(!PyMutex_IsLocked(&d2->ob_mutex));
|
|
|
|
Ty_DECREF(d2);
|
|
Ty_DECREF(d1);
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
static void
|
|
lock_unlock_object(TyObject *obj, int recurse_depth)
|
|
{
|
|
Ty_BEGIN_CRITICAL_SECTION(obj);
|
|
if (recurse_depth > 0) {
|
|
lock_unlock_object(obj, recurse_depth - 1);
|
|
}
|
|
Ty_END_CRITICAL_SECTION();
|
|
}
|
|
|
|
static void
|
|
lock_unlock_two_objects(TyObject *a, TyObject *b, int recurse_depth)
|
|
{
|
|
Ty_BEGIN_CRITICAL_SECTION2(a, b);
|
|
if (recurse_depth > 0) {
|
|
lock_unlock_two_objects(a, b, recurse_depth - 1);
|
|
}
|
|
Ty_END_CRITICAL_SECTION2();
|
|
}
|
|
|
|
|
|
// Test that nested critical sections do not deadlock if they attempt to lock
|
|
// the same object.
|
|
static TyObject *
|
|
test_critical_sections_nest(TyObject *self, TyObject *Py_UNUSED(args))
|
|
{
|
|
TyObject *a = TyDict_New();
|
|
assert(a != NULL);
|
|
TyObject *b = TyDict_New();
|
|
assert(b != NULL);
|
|
|
|
// Locking an object recursively with this API should not deadlock.
|
|
assert_nogil(!PyMutex_IsLocked(&a->ob_mutex));
|
|
Ty_BEGIN_CRITICAL_SECTION(a);
|
|
assert_nogil(PyMutex_IsLocked(&a->ob_mutex));
|
|
lock_unlock_object(a, 10);
|
|
assert_nogil(PyMutex_IsLocked(&a->ob_mutex));
|
|
Ty_END_CRITICAL_SECTION();
|
|
assert_nogil(!PyMutex_IsLocked(&a->ob_mutex));
|
|
|
|
// Same test but with two objects.
|
|
Ty_BEGIN_CRITICAL_SECTION2(b, a);
|
|
lock_unlock_two_objects(a, b, 10);
|
|
assert_nogil(PyMutex_IsLocked(&a->ob_mutex));
|
|
assert_nogil(PyMutex_IsLocked(&b->ob_mutex));
|
|
Ty_END_CRITICAL_SECTION2();
|
|
|
|
Ty_DECREF(b);
|
|
Ty_DECREF(a);
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
// Test that a critical section is suspended by a Ty_BEGIN_ALLOW_THREADS and
|
|
// resumed by a Ty_END_ALLOW_THREADS.
|
|
static TyObject *
|
|
test_critical_sections_suspend(TyObject *self, TyObject *Py_UNUSED(args))
|
|
{
|
|
TyObject *a = TyDict_New();
|
|
assert(a != NULL);
|
|
|
|
Ty_BEGIN_CRITICAL_SECTION(a);
|
|
assert_nogil(PyMutex_IsLocked(&a->ob_mutex));
|
|
|
|
// Ty_BEGIN_ALLOW_THREADS should suspend the active critical section
|
|
Ty_BEGIN_ALLOW_THREADS
|
|
assert_nogil(!PyMutex_IsLocked(&a->ob_mutex));
|
|
Ty_END_ALLOW_THREADS;
|
|
|
|
// After Ty_END_ALLOW_THREADS the critical section should be resumed.
|
|
assert_nogil(PyMutex_IsLocked(&a->ob_mutex));
|
|
Ty_END_CRITICAL_SECTION();
|
|
|
|
Ty_DECREF(a);
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
#ifdef Ty_CAN_START_THREADS
|
|
struct test_data {
|
|
TyObject *obj1;
|
|
TyObject *obj2;
|
|
TyObject *obj3;
|
|
Ty_ssize_t countdown;
|
|
PyEvent done_event;
|
|
};
|
|
|
|
static void
|
|
thread_critical_sections(void *arg)
|
|
{
|
|
const Ty_ssize_t NUM_ITERS = 200;
|
|
struct test_data *test_data = arg;
|
|
TyGILState_STATE gil = TyGILState_Ensure();
|
|
|
|
for (Ty_ssize_t i = 0; i < NUM_ITERS; i++) {
|
|
Ty_BEGIN_CRITICAL_SECTION(test_data->obj1);
|
|
Ty_END_CRITICAL_SECTION();
|
|
|
|
Ty_BEGIN_CRITICAL_SECTION(test_data->obj2);
|
|
lock_unlock_object(test_data->obj1, 1);
|
|
Ty_END_CRITICAL_SECTION();
|
|
|
|
Ty_BEGIN_CRITICAL_SECTION2(test_data->obj3, test_data->obj1);
|
|
lock_unlock_object(test_data->obj2, 2);
|
|
Ty_END_CRITICAL_SECTION2();
|
|
|
|
Ty_BEGIN_CRITICAL_SECTION(test_data->obj3);
|
|
Ty_BEGIN_ALLOW_THREADS
|
|
Ty_END_ALLOW_THREADS
|
|
Ty_END_CRITICAL_SECTION();
|
|
}
|
|
|
|
TyGILState_Release(gil);
|
|
if (_Ty_atomic_add_ssize(&test_data->countdown, -1) == 1) {
|
|
// last thread to finish sets done_event
|
|
_PyEvent_Notify(&test_data->done_event);
|
|
}
|
|
}
|
|
|
|
static TyObject *
|
|
test_critical_sections_threads(TyObject *self, TyObject *Py_UNUSED(args))
|
|
{
|
|
const Ty_ssize_t NUM_THREADS = 4;
|
|
struct test_data test_data = {
|
|
.obj1 = TyDict_New(),
|
|
.obj2 = TyDict_New(),
|
|
.obj3 = TyDict_New(),
|
|
.countdown = NUM_THREADS,
|
|
};
|
|
assert(test_data.obj1 != NULL);
|
|
assert(test_data.obj2 != NULL);
|
|
assert(test_data.obj3 != NULL);
|
|
|
|
for (Ty_ssize_t i = 0; i < NUM_THREADS; i++) {
|
|
TyThread_start_new_thread(&thread_critical_sections, &test_data);
|
|
}
|
|
PyEvent_Wait(&test_data.done_event);
|
|
|
|
Ty_DECREF(test_data.obj3);
|
|
Ty_DECREF(test_data.obj2);
|
|
Ty_DECREF(test_data.obj1);
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
static void
|
|
pysleep(int ms)
|
|
{
|
|
#ifdef MS_WINDOWS
|
|
Sleep(ms);
|
|
#else
|
|
usleep(ms * 1000);
|
|
#endif
|
|
}
|
|
|
|
struct test_data_gc {
|
|
TyObject *obj;
|
|
Ty_ssize_t num_threads;
|
|
Ty_ssize_t id;
|
|
Ty_ssize_t countdown;
|
|
PyEvent done_event;
|
|
PyEvent ready;
|
|
};
|
|
|
|
static void
|
|
thread_gc(void *arg)
|
|
{
|
|
struct test_data_gc *test_data = arg;
|
|
TyGILState_STATE gil = TyGILState_Ensure();
|
|
|
|
Ty_ssize_t id = _Ty_atomic_add_ssize(&test_data->id, 1);
|
|
if (id == test_data->num_threads - 1) {
|
|
_PyEvent_Notify(&test_data->ready);
|
|
}
|
|
else {
|
|
// wait for all test threads to more reliably reproduce the issue.
|
|
PyEvent_Wait(&test_data->ready);
|
|
}
|
|
|
|
if (id == 0) {
|
|
Ty_BEGIN_CRITICAL_SECTION(test_data->obj);
|
|
// pause long enough that the lock would be handed off directly to
|
|
// a waiting thread.
|
|
pysleep(5);
|
|
TyGC_Collect();
|
|
Ty_END_CRITICAL_SECTION();
|
|
}
|
|
else if (id == 1) {
|
|
pysleep(1);
|
|
Ty_BEGIN_CRITICAL_SECTION(test_data->obj);
|
|
pysleep(1);
|
|
Ty_END_CRITICAL_SECTION();
|
|
}
|
|
else if (id == 2) {
|
|
// sleep long enough so that thread 0 is waiting to stop the world
|
|
pysleep(6);
|
|
Ty_BEGIN_CRITICAL_SECTION(test_data->obj);
|
|
pysleep(1);
|
|
Ty_END_CRITICAL_SECTION();
|
|
}
|
|
|
|
TyGILState_Release(gil);
|
|
if (_Ty_atomic_add_ssize(&test_data->countdown, -1) == 1) {
|
|
// last thread to finish sets done_event
|
|
_PyEvent_Notify(&test_data->done_event);
|
|
}
|
|
}
|
|
|
|
static TyObject *
|
|
test_critical_sections_gc(TyObject *self, TyObject *Py_UNUSED(args))
|
|
{
|
|
// gh-118332: Contended critical sections should not deadlock with GC
|
|
const Ty_ssize_t NUM_THREADS = 3;
|
|
struct test_data_gc test_data = {
|
|
.obj = TyDict_New(),
|
|
.countdown = NUM_THREADS,
|
|
.num_threads = NUM_THREADS,
|
|
};
|
|
assert(test_data.obj != NULL);
|
|
|
|
for (Ty_ssize_t i = 0; i < NUM_THREADS; i++) {
|
|
TyThread_start_new_thread(&thread_gc, &test_data);
|
|
}
|
|
PyEvent_Wait(&test_data.done_event);
|
|
Ty_DECREF(test_data.obj);
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
#endif
|
|
|
|
static TyMethodDef test_methods[] = {
|
|
{"test_critical_sections", test_critical_sections, METH_NOARGS},
|
|
{"test_critical_sections_nest", test_critical_sections_nest, METH_NOARGS},
|
|
{"test_critical_sections_suspend", test_critical_sections_suspend, METH_NOARGS},
|
|
#ifdef Ty_CAN_START_THREADS
|
|
{"test_critical_sections_threads", test_critical_sections_threads, METH_NOARGS},
|
|
{"test_critical_sections_gc", test_critical_sections_gc, METH_NOARGS},
|
|
#endif
|
|
{NULL, NULL} /* sentinel */
|
|
};
|
|
|
|
int
|
|
_PyTestInternalCapi_Init_CriticalSection(TyObject *mod)
|
|
{
|
|
if (TyModule_AddFunctions(mod, test_methods) < 0) {
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|