| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | #ifndef Py_INTERNAL_CRITICAL_SECTION_H
 | 
					
						
							|  |  |  | #define Py_INTERNAL_CRITICAL_SECTION_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef Py_BUILD_CORE
 | 
					
						
							|  |  |  | #  error "this header requires Py_BUILD_CORE define"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "pycore_lock.h"        // PyMutex
 | 
					
						
							|  |  |  | #include "pycore_pystate.h"     // _PyThreadState_GET()
 | 
					
						
							|  |  |  | #include <stdint.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Tagged pointers to critical sections use the two least significant bits to
 | 
					
						
							|  |  |  | // mark if the pointed-to critical section is inactive and whether it is a
 | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | // PyCriticalSection2 object.
 | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | #define _Py_CRITICAL_SECTION_INACTIVE       0x1
 | 
					
						
							|  |  |  | #define _Py_CRITICAL_SECTION_TWO_MUTEXES    0x2
 | 
					
						
							|  |  |  | #define _Py_CRITICAL_SECTION_MASK           0x3
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-20 15:52:00 +02:00
										 |  |  | #ifdef Py_GIL_DISABLED
 | 
					
						
							| 
									
										
										
										
											2024-03-28 16:05:08 +01:00
										 |  |  | # define Py_BEGIN_CRITICAL_SECTION_MUT(mutex)                           \
 | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  |     {                                                                   \ | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |         PyCriticalSection _py_cs;                                       \ | 
					
						
							|  |  |  |         _PyCriticalSection_BeginMutex(&_py_cs, mutex) | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | # define Py_BEGIN_CRITICAL_SECTION2_MUT(m1, m2)                         \
 | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  |     {                                                                   \ | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |         PyCriticalSection2 _py_cs2;                                     \ | 
					
						
							|  |  |  |         _PyCriticalSection2_BeginMutex(&_py_cs2, m1, m2) | 
					
						
							| 
									
										
										
										
											2024-02-06 14:03:43 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-22 17:45:34 +00:00
										 |  |  | // Specialized version of critical section locking to safely use
 | 
					
						
							|  |  |  | // PySequence_Fast APIs without the GIL. For performance, the argument *to*
 | 
					
						
							|  |  |  | // PySequence_Fast() is provided to the macro, not the *result* of
 | 
					
						
							|  |  |  | // PySequence_Fast(), which would require an extra test to determine if the
 | 
					
						
							|  |  |  | // lock must be acquired.
 | 
					
						
							|  |  |  | # define Py_BEGIN_CRITICAL_SECTION_SEQUENCE_FAST(original)              \
 | 
					
						
							|  |  |  |     {                                                                   \ | 
					
						
							|  |  |  |         PyObject *_orig_seq = _PyObject_CAST(original);                 \ | 
					
						
							|  |  |  |         const bool _should_lock_cs = PyList_CheckExact(_orig_seq);      \ | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |         PyCriticalSection _cs;                                          \ | 
					
						
							| 
									
										
										
										
											2024-05-22 17:45:34 +00:00
										 |  |  |         if (_should_lock_cs) {                                          \ | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |             _PyCriticalSection_Begin(&_cs, _orig_seq);                  \ | 
					
						
							| 
									
										
										
										
											2024-05-22 17:45:34 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # define Py_END_CRITICAL_SECTION_SEQUENCE_FAST()                        \
 | 
					
						
							|  |  |  |         if (_should_lock_cs) {                                          \ | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |             PyCriticalSection_End(&_cs);                                \ | 
					
						
							| 
									
										
										
										
											2024-05-22 17:45:34 +00:00
										 |  |  |         }                                                               \ | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-06 14:03:43 -08:00
										 |  |  | // Asserts that the mutex is locked.  The mutex must be held by the
 | 
					
						
							|  |  |  | // top-most critical section otherwise there's the possibility
 | 
					
						
							|  |  |  | // that the mutex would be swalled out in some code paths.
 | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | #define _Py_CRITICAL_SECTION_ASSERT_MUTEX_LOCKED(mutex) \
 | 
					
						
							| 
									
										
										
										
											2024-02-06 14:03:43 -08:00
										 |  |  |     _PyCriticalSection_AssertHeld(mutex) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Asserts that the mutex for the given object is locked. The mutex must
 | 
					
						
							|  |  |  | // be held by the top-most critical section otherwise there's the
 | 
					
						
							|  |  |  | // possibility that the mutex would be swalled out in some code paths.
 | 
					
						
							|  |  |  | #ifdef Py_DEBUG
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | # define _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(op)                           \
 | 
					
						
							| 
									
										
										
										
											2024-02-06 14:03:43 -08:00
										 |  |  |     if (Py_REFCNT(op) != 1) {                                                    \ | 
					
						
							|  |  |  |         _Py_CRITICAL_SECTION_ASSERT_MUTEX_LOCKED(&_PyObject_CAST(op)->ob_mutex); \ | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else   /* Py_DEBUG */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | # define _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(op)
 | 
					
						
							| 
									
										
										
										
											2024-02-06 14:03:43 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif  /* Py_DEBUG */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-20 15:52:00 +02:00
										 |  |  | #else  /* !Py_GIL_DISABLED */
 | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | // The critical section APIs are no-ops with the GIL.
 | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | # define Py_BEGIN_CRITICAL_SECTION_MUT(mut) {
 | 
					
						
							|  |  |  | # define Py_BEGIN_CRITICAL_SECTION2_MUT(m1, m2) {
 | 
					
						
							|  |  |  | # define Py_BEGIN_CRITICAL_SECTION_SEQUENCE_FAST(original) {
 | 
					
						
							|  |  |  | # define Py_END_CRITICAL_SECTION_SEQUENCE_FAST() }
 | 
					
						
							| 
									
										
										
										
											2024-02-06 14:03:43 -08:00
										 |  |  | # define _Py_CRITICAL_SECTION_ASSERT_MUTEX_LOCKED(mutex)
 | 
					
						
							|  |  |  | # define _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(op)
 | 
					
						
							| 
									
										
										
										
											2023-11-20 15:52:00 +02:00
										 |  |  | #endif  /* !Py_GIL_DISABLED */
 | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Resumes the top-most critical section.
 | 
					
						
							|  |  |  | PyAPI_FUNC(void) | 
					
						
							|  |  |  | _PyCriticalSection_Resume(PyThreadState *tstate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // (private) slow path for locking the mutex
 | 
					
						
							|  |  |  | PyAPI_FUNC(void) | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | _PyCriticalSection_BeginSlow(PyCriticalSection *c, PyMutex *m); | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | PyAPI_FUNC(void) | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | _PyCriticalSection2_BeginSlow(PyCriticalSection2 *c, PyMutex *m1, PyMutex *m2, | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  |                              int is_m1_locked); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | PyAPI_FUNC(void) | 
					
						
							|  |  |  | _PyCriticalSection_SuspendAll(PyThreadState *tstate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef Py_GIL_DISABLED
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline int | 
					
						
							|  |  |  | _PyCriticalSection_IsActive(uintptr_t tag) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return tag != 0 && (tag & _Py_CRITICAL_SECTION_INACTIVE) == 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | static inline void | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | _PyCriticalSection_BeginMutex(PyCriticalSection *c, PyMutex *m) | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-06-20 11:29:08 -04:00
										 |  |  |     if (PyMutex_LockFast(&m->_bits)) { | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  |         PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |         c->_cs_mutex = m; | 
					
						
							|  |  |  |         c->_cs_prev = tstate->critical_section; | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  |         tstate->critical_section = (uintptr_t)c; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         _PyCriticalSection_BeginSlow(c, m); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | static inline void | 
					
						
							|  |  |  | _PyCriticalSection_Begin(PyCriticalSection *c, PyObject *op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     _PyCriticalSection_BeginMutex(c, &op->ob_mutex); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #define PyCriticalSection_Begin _PyCriticalSection_Begin
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | // Removes the top-most critical section from the thread's stack of critical
 | 
					
						
							|  |  |  | // sections. If the new top-most critical section is inactive, then it is
 | 
					
						
							|  |  |  | // resumed.
 | 
					
						
							|  |  |  | static inline void | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | _PyCriticalSection_Pop(PyCriticalSection *c) | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | { | 
					
						
							|  |  |  |     PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |     uintptr_t prev = c->_cs_prev; | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  |     tstate->critical_section = prev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((prev & _Py_CRITICAL_SECTION_INACTIVE) != 0) { | 
					
						
							|  |  |  |         _PyCriticalSection_Resume(tstate); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | _PyCriticalSection_End(PyCriticalSection *c) | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |     PyMutex_Unlock(c->_cs_mutex); | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  |     _PyCriticalSection_Pop(c); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | #define PyCriticalSection_End _PyCriticalSection_End
 | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | static inline void | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | _PyCriticalSection2_BeginMutex(PyCriticalSection2 *c, PyMutex *m1, PyMutex *m2) | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | { | 
					
						
							|  |  |  |     if (m1 == m2) { | 
					
						
							|  |  |  |         // If the two mutex arguments are the same, treat this as a critical
 | 
					
						
							|  |  |  |         // section with a single mutex.
 | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |         c->_cs_mutex2 = NULL; | 
					
						
							|  |  |  |         _PyCriticalSection_BeginMutex(&c->_cs_base, m1); | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((uintptr_t)m2 < (uintptr_t)m1) { | 
					
						
							|  |  |  |         // Sort the mutexes so that the lower address is locked first.
 | 
					
						
							|  |  |  |         // The exact order does not matter, but we need to acquire the mutexes
 | 
					
						
							|  |  |  |         // in a consistent order to avoid lock ordering deadlocks.
 | 
					
						
							|  |  |  |         PyMutex *tmp = m1; | 
					
						
							|  |  |  |         m1 = m2; | 
					
						
							|  |  |  |         m2 = tmp; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-20 11:29:08 -04:00
										 |  |  |     if (PyMutex_LockFast(&m1->_bits)) { | 
					
						
							|  |  |  |         if (PyMutex_LockFast(&m2->_bits)) { | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  |             PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |             c->_cs_base._cs_mutex = m1; | 
					
						
							|  |  |  |             c->_cs_mutex2 = m2; | 
					
						
							|  |  |  |             c->_cs_base._cs_prev = tstate->critical_section; | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |             uintptr_t p = (uintptr_t)c | _Py_CRITICAL_SECTION_TWO_MUTEXES; | 
					
						
							|  |  |  |             tstate->critical_section = p; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             _PyCriticalSection2_BeginSlow(c, m1, m2, 1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         _PyCriticalSection2_BeginSlow(c, m1, m2, 0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | _PyCriticalSection2_Begin(PyCriticalSection2 *c, PyObject *a, PyObject *b) | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |     _PyCriticalSection2_BeginMutex(c, &a->ob_mutex, &b->ob_mutex); | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | #define PyCriticalSection2_Begin _PyCriticalSection2_Begin
 | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | static inline void | 
					
						
							|  |  |  | _PyCriticalSection2_End(PyCriticalSection2 *c) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (c->_cs_mutex2) { | 
					
						
							|  |  |  |         PyMutex_Unlock(c->_cs_mutex2); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     PyMutex_Unlock(c->_cs_base._cs_mutex); | 
					
						
							|  |  |  |     _PyCriticalSection_Pop(&c->_cs_base); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #define PyCriticalSection2_End _PyCriticalSection2_End
 | 
					
						
							| 
									
										
										
										
											2024-02-06 14:03:43 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static inline void | 
					
						
							| 
									
										
										
										
											2024-02-15 10:54:57 -08:00
										 |  |  | _PyCriticalSection_AssertHeld(PyMutex *mutex) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-02-06 14:03:43 -08:00
										 |  |  | #ifdef Py_DEBUG
 | 
					
						
							|  |  |  |     PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							|  |  |  |     uintptr_t prev = tstate->critical_section; | 
					
						
							|  |  |  |     if (prev & _Py_CRITICAL_SECTION_TWO_MUTEXES) { | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |         PyCriticalSection2 *cs = (PyCriticalSection2 *)(prev & ~_Py_CRITICAL_SECTION_MASK); | 
					
						
							|  |  |  |         assert(cs != NULL && (cs->_cs_base._cs_mutex == mutex || cs->_cs_mutex2 == mutex)); | 
					
						
							| 
									
										
										
										
											2024-02-06 14:03:43 -08:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  |         PyCriticalSection *cs = (PyCriticalSection *)(tstate->critical_section & ~_Py_CRITICAL_SECTION_MASK); | 
					
						
							|  |  |  |         assert(cs != NULL && cs->_cs_mutex == mutex); | 
					
						
							| 
									
										
										
										
											2024-02-06 14:03:43 -08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-21 15:50:18 -04:00
										 |  |  | #endif /* Py_GIL_DISABLED */
 | 
					
						
							| 
									
										
										
										
											2024-02-06 14:03:43 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 17:39:29 -05:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_INTERNAL_CRITICAL_SECTION_H */
 |