1 #include "pycore_interp.h" // _PyInterpreterState.pythread_stacksize
2
3 /* This code implemented by Dag.Gruneau@elsa.preseco.comm.se */
4 /* Fast NonRecursiveMutex support by Yakov Markovitch, markovitch@iso.ru */
5 /* Eliminated some memory leaks, gsw@agere.com */
6
7 #include <windows.h>
8 #include <limits.h>
9 #ifdef HAVE_PROCESS_H
10 #include <process.h>
11 #endif
12
13 /* options */
14 #ifndef _PY_USE_CV_LOCKS
15 #define _PY_USE_CV_LOCKS 1 /* use locks based on cond vars */
16 #endif
17
18 /* Now, define a non-recursive mutex using either condition variables
19 * and critical sections (fast) or using operating system mutexes
20 * (slow)
21 */
22
23 #if _PY_USE_CV_LOCKS
24
25 #include "condvar.h"
26
27 typedef struct _NRMUTEX
28 {
29 PyMUTEX_T cs;
30 PyCOND_T cv;
31 int locked;
32 } NRMUTEX;
33 typedef NRMUTEX *PNRMUTEX;
34
35 PNRMUTEX
AllocNonRecursiveMutex()36 AllocNonRecursiveMutex()
37 {
38 PNRMUTEX m = (PNRMUTEX)PyMem_RawMalloc(sizeof(NRMUTEX));
39 if (!m)
40 return NULL;
41 if (PyCOND_INIT(&m->cv))
42 goto fail;
43 if (PyMUTEX_INIT(&m->cs)) {
44 PyCOND_FINI(&m->cv);
45 goto fail;
46 }
47 m->locked = 0;
48 return m;
49 fail:
50 PyMem_RawFree(m);
51 return NULL;
52 }
53
54 VOID
FreeNonRecursiveMutex(PNRMUTEX mutex)55 FreeNonRecursiveMutex(PNRMUTEX mutex)
56 {
57 if (mutex) {
58 PyCOND_FINI(&mutex->cv);
59 PyMUTEX_FINI(&mutex->cs);
60 PyMem_RawFree(mutex);
61 }
62 }
63
64 DWORD
EnterNonRecursiveMutex(PNRMUTEX mutex,DWORD milliseconds)65 EnterNonRecursiveMutex(PNRMUTEX mutex, DWORD milliseconds)
66 {
67 DWORD result = WAIT_OBJECT_0;
68 if (PyMUTEX_LOCK(&mutex->cs))
69 return WAIT_FAILED;
70 if (milliseconds == INFINITE) {
71 while (mutex->locked) {
72 if (PyCOND_WAIT(&mutex->cv, &mutex->cs)) {
73 result = WAIT_FAILED;
74 break;
75 }
76 }
77 } else if (milliseconds != 0) {
78 /* wait at least until the target */
79 ULONGLONG now, target = GetTickCount64() + milliseconds;
80 while (mutex->locked) {
81 if (PyCOND_TIMEDWAIT(&mutex->cv, &mutex->cs, (long long)milliseconds*1000) < 0) {
82 result = WAIT_FAILED;
83 break;
84 }
85 now = GetTickCount64();
86 if (target <= now)
87 break;
88 milliseconds = (DWORD)(target-now);
89 }
90 }
91 if (!mutex->locked) {
92 mutex->locked = 1;
93 result = WAIT_OBJECT_0;
94 } else if (result == WAIT_OBJECT_0)
95 result = WAIT_TIMEOUT;
96 /* else, it is WAIT_FAILED */
97 PyMUTEX_UNLOCK(&mutex->cs); /* must ignore result here */
98 return result;
99 }
100
101 BOOL
LeaveNonRecursiveMutex(PNRMUTEX mutex)102 LeaveNonRecursiveMutex(PNRMUTEX mutex)
103 {
104 BOOL result;
105 if (PyMUTEX_LOCK(&mutex->cs))
106 return FALSE;
107 mutex->locked = 0;
108 /* condvar APIs return 0 on success. We need to return TRUE on success. */
109 result = !PyCOND_SIGNAL(&mutex->cv);
110 PyMUTEX_UNLOCK(&mutex->cs);
111 return result;
112 }
113
114 #else /* if ! _PY_USE_CV_LOCKS */
115
116 /* NR-locks based on a kernel mutex */
117 #define PNRMUTEX HANDLE
118
119 PNRMUTEX
AllocNonRecursiveMutex()120 AllocNonRecursiveMutex()
121 {
122 return CreateSemaphore(NULL, 1, 1, NULL);
123 }
124
125 VOID
FreeNonRecursiveMutex(PNRMUTEX mutex)126 FreeNonRecursiveMutex(PNRMUTEX mutex)
127 {
128 /* No in-use check */
129 CloseHandle(mutex);
130 }
131
132 DWORD
EnterNonRecursiveMutex(PNRMUTEX mutex,DWORD milliseconds)133 EnterNonRecursiveMutex(PNRMUTEX mutex, DWORD milliseconds)
134 {
135 return WaitForSingleObjectEx(mutex, milliseconds, FALSE);
136 }
137
138 BOOL
LeaveNonRecursiveMutex(PNRMUTEX mutex)139 LeaveNonRecursiveMutex(PNRMUTEX mutex)
140 {
141 return ReleaseSemaphore(mutex, 1, NULL);
142 }
143 #endif /* _PY_USE_CV_LOCKS */
144
145 unsigned long PyThread_get_thread_ident(void);
146
147 #ifdef PY_HAVE_THREAD_NATIVE_ID
148 unsigned long PyThread_get_thread_native_id(void);
149 #endif
150
151 /*
152 * Initialization of the C package, should not be needed.
153 */
154 static void
PyThread__init_thread(void)155 PyThread__init_thread(void)
156 {
157 }
158
159 /*
160 * Thread support.
161 */
162
163 typedef struct {
164 void (*func)(void*);
165 void *arg;
166 } callobj;
167
168 /* thunker to call adapt between the function type used by the system's
169 thread start function and the internally used one. */
170 static unsigned __stdcall
bootstrap(void * call)171 bootstrap(void *call)
172 {
173 callobj *obj = (callobj*)call;
174 void (*func)(void*) = obj->func;
175 void *arg = obj->arg;
176 HeapFree(GetProcessHeap(), 0, obj);
177 func(arg);
178 return 0;
179 }
180
181 unsigned long
PyThread_start_new_thread(void (* func)(void *),void * arg)182 PyThread_start_new_thread(void (*func)(void *), void *arg)
183 {
184 HANDLE hThread;
185 unsigned threadID;
186 callobj *obj;
187
188 dprintf(("%lu: PyThread_start_new_thread called\n",
189 PyThread_get_thread_ident()));
190 if (!initialized)
191 PyThread_init_thread();
192
193 obj = (callobj*)HeapAlloc(GetProcessHeap(), 0, sizeof(*obj));
194 if (!obj)
195 return PYTHREAD_INVALID_THREAD_ID;
196 obj->func = func;
197 obj->arg = arg;
198 PyThreadState *tstate = _PyThreadState_GET();
199 size_t stacksize = tstate ? tstate->interp->pythread_stacksize : 0;
200 hThread = (HANDLE)_beginthreadex(0,
201 Py_SAFE_DOWNCAST(stacksize, Py_ssize_t, unsigned int),
202 bootstrap, obj,
203 0, &threadID);
204 if (hThread == 0) {
205 /* I've seen errno == EAGAIN here, which means "there are
206 * too many threads".
207 */
208 int e = errno;
209 dprintf(("%lu: PyThread_start_new_thread failed, errno %d\n",
210 PyThread_get_thread_ident(), e));
211 threadID = (unsigned)-1;
212 HeapFree(GetProcessHeap(), 0, obj);
213 }
214 else {
215 dprintf(("%lu: PyThread_start_new_thread succeeded: %p\n",
216 PyThread_get_thread_ident(), (void*)hThread));
217 CloseHandle(hThread);
218 }
219 return threadID;
220 }
221
222 /*
223 * Return the thread Id instead of a handle. The Id is said to uniquely identify the
224 * thread in the system
225 */
226 unsigned long
PyThread_get_thread_ident(void)227 PyThread_get_thread_ident(void)
228 {
229 if (!initialized)
230 PyThread_init_thread();
231
232 return GetCurrentThreadId();
233 }
234
235 #ifdef PY_HAVE_THREAD_NATIVE_ID
236 /*
237 * Return the native Thread ID (TID) of the calling thread.
238 * The native ID of a thread is valid and guaranteed to be unique system-wide
239 * from the time the thread is created until the thread has been terminated.
240 */
241 unsigned long
PyThread_get_thread_native_id(void)242 PyThread_get_thread_native_id(void)
243 {
244 if (!initialized) {
245 PyThread_init_thread();
246 }
247
248 DWORD native_id;
249 native_id = GetCurrentThreadId();
250 return (unsigned long) native_id;
251 }
252 #endif
253
254 void _Py_NO_RETURN
PyThread_exit_thread(void)255 PyThread_exit_thread(void)
256 {
257 dprintf(("%lu: PyThread_exit_thread called\n", PyThread_get_thread_ident()));
258 if (!initialized)
259 exit(0);
260 _endthreadex(0);
261 }
262
263 /*
264 * Lock support. It has to be implemented as semaphores.
265 * I [Dag] tried to implement it with mutex but I could find a way to
266 * tell whether a thread already own the lock or not.
267 */
268 PyThread_type_lock
PyThread_allocate_lock(void)269 PyThread_allocate_lock(void)
270 {
271 PNRMUTEX aLock;
272
273 dprintf(("PyThread_allocate_lock called\n"));
274 if (!initialized)
275 PyThread_init_thread();
276
277 aLock = AllocNonRecursiveMutex() ;
278
279 dprintf(("%lu: PyThread_allocate_lock() -> %p\n", PyThread_get_thread_ident(), aLock));
280
281 return (PyThread_type_lock) aLock;
282 }
283
284 void
PyThread_free_lock(PyThread_type_lock aLock)285 PyThread_free_lock(PyThread_type_lock aLock)
286 {
287 dprintf(("%lu: PyThread_free_lock(%p) called\n", PyThread_get_thread_ident(),aLock));
288
289 FreeNonRecursiveMutex(aLock) ;
290 }
291
292 /*
293 * Return 1 on success if the lock was acquired
294 *
295 * and 0 if the lock was not acquired. This means a 0 is returned
296 * if the lock has already been acquired by this thread!
297 */
298 PyLockStatus
PyThread_acquire_lock_timed(PyThread_type_lock aLock,PY_TIMEOUT_T microseconds,int intr_flag)299 PyThread_acquire_lock_timed(PyThread_type_lock aLock,
300 PY_TIMEOUT_T microseconds, int intr_flag)
301 {
302 /* Fow now, intr_flag does nothing on Windows, and lock acquires are
303 * uninterruptible. */
304 PyLockStatus success;
305 PY_TIMEOUT_T milliseconds;
306
307 if (microseconds >= 0) {
308 milliseconds = microseconds / 1000;
309 if (microseconds % 1000 > 0)
310 ++milliseconds;
311 if (milliseconds > PY_DWORD_MAX) {
312 Py_FatalError("Timeout larger than PY_TIMEOUT_MAX");
313 }
314 }
315 else {
316 milliseconds = INFINITE;
317 }
318
319 dprintf(("%lu: PyThread_acquire_lock_timed(%p, %lld) called\n",
320 PyThread_get_thread_ident(), aLock, microseconds));
321
322 if (aLock && EnterNonRecursiveMutex((PNRMUTEX)aLock,
323 (DWORD)milliseconds) == WAIT_OBJECT_0) {
324 success = PY_LOCK_ACQUIRED;
325 }
326 else {
327 success = PY_LOCK_FAILURE;
328 }
329
330 dprintf(("%lu: PyThread_acquire_lock(%p, %lld) -> %d\n",
331 PyThread_get_thread_ident(), aLock, microseconds, success));
332
333 return success;
334 }
335 int
PyThread_acquire_lock(PyThread_type_lock aLock,int waitflag)336 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag)
337 {
338 return PyThread_acquire_lock_timed(aLock, waitflag ? -1 : 0, 0);
339 }
340
341 void
PyThread_release_lock(PyThread_type_lock aLock)342 PyThread_release_lock(PyThread_type_lock aLock)
343 {
344 dprintf(("%lu: PyThread_release_lock(%p) called\n", PyThread_get_thread_ident(),aLock));
345
346 if (!(aLock && LeaveNonRecursiveMutex((PNRMUTEX) aLock)))
347 dprintf(("%lu: Could not PyThread_release_lock(%p) error: %ld\n", PyThread_get_thread_ident(), aLock, GetLastError()));
348 }
349
350 /* minimum/maximum thread stack sizes supported */
351 #define THREAD_MIN_STACKSIZE 0x8000 /* 32 KiB */
352 #define THREAD_MAX_STACKSIZE 0x10000000 /* 256 MiB */
353
354 /* set the thread stack size.
355 * Return 0 if size is valid, -1 otherwise.
356 */
357 static int
_pythread_nt_set_stacksize(size_t size)358 _pythread_nt_set_stacksize(size_t size)
359 {
360 /* set to default */
361 if (size == 0) {
362 _PyInterpreterState_GET()->pythread_stacksize = 0;
363 return 0;
364 }
365
366 /* valid range? */
367 if (size >= THREAD_MIN_STACKSIZE && size < THREAD_MAX_STACKSIZE) {
368 _PyInterpreterState_GET()->pythread_stacksize = size;
369 return 0;
370 }
371
372 return -1;
373 }
374
375 #define THREAD_SET_STACKSIZE(x) _pythread_nt_set_stacksize(x)
376
377
378 /* Thread Local Storage (TLS) API
379
380 This API is DEPRECATED since Python 3.7. See PEP 539 for details.
381 */
382
383 int
PyThread_create_key(void)384 PyThread_create_key(void)
385 {
386 DWORD result = TlsAlloc();
387 if (result == TLS_OUT_OF_INDEXES)
388 return -1;
389 return (int)result;
390 }
391
392 void
PyThread_delete_key(int key)393 PyThread_delete_key(int key)
394 {
395 TlsFree(key);
396 }
397
398 int
PyThread_set_key_value(int key,void * value)399 PyThread_set_key_value(int key, void *value)
400 {
401 BOOL ok = TlsSetValue(key, value);
402 return ok ? 0 : -1;
403 }
404
405 void *
PyThread_get_key_value(int key)406 PyThread_get_key_value(int key)
407 {
408 /* because TLS is used in the Py_END_ALLOW_THREAD macro,
409 * it is necessary to preserve the windows error state, because
410 * it is assumed to be preserved across the call to the macro.
411 * Ideally, the macro should be fixed, but it is simpler to
412 * do it here.
413 */
414 DWORD error = GetLastError();
415 void *result = TlsGetValue(key);
416 SetLastError(error);
417 return result;
418 }
419
420 void
PyThread_delete_key_value(int key)421 PyThread_delete_key_value(int key)
422 {
423 /* NULL is used as "key missing", and it is also the default
424 * given by TlsGetValue() if nothing has been set yet.
425 */
426 TlsSetValue(key, NULL);
427 }
428
429
430 /* reinitialization of TLS is not necessary after fork when using
431 * the native TLS functions. And forking isn't supported on Windows either.
432 */
433 void
PyThread_ReInitTLS(void)434 PyThread_ReInitTLS(void)
435 {
436 }
437
438
439 /* Thread Specific Storage (TSS) API
440
441 Platform-specific components of TSS API implementation.
442 */
443
444 int
PyThread_tss_create(Py_tss_t * key)445 PyThread_tss_create(Py_tss_t *key)
446 {
447 assert(key != NULL);
448 /* If the key has been created, function is silently skipped. */
449 if (key->_is_initialized) {
450 return 0;
451 }
452
453 DWORD result = TlsAlloc();
454 if (result == TLS_OUT_OF_INDEXES) {
455 return -1;
456 }
457 /* In Windows, platform-specific key type is DWORD. */
458 key->_key = result;
459 key->_is_initialized = 1;
460 return 0;
461 }
462
463 void
PyThread_tss_delete(Py_tss_t * key)464 PyThread_tss_delete(Py_tss_t *key)
465 {
466 assert(key != NULL);
467 /* If the key has not been created, function is silently skipped. */
468 if (!key->_is_initialized) {
469 return;
470 }
471
472 TlsFree(key->_key);
473 key->_key = TLS_OUT_OF_INDEXES;
474 key->_is_initialized = 0;
475 }
476
477 int
PyThread_tss_set(Py_tss_t * key,void * value)478 PyThread_tss_set(Py_tss_t *key, void *value)
479 {
480 assert(key != NULL);
481 BOOL ok = TlsSetValue(key->_key, value);
482 return ok ? 0 : -1;
483 }
484
485 void *
PyThread_tss_get(Py_tss_t * key)486 PyThread_tss_get(Py_tss_t *key)
487 {
488 assert(key != NULL);
489 /* because TSS is used in the Py_END_ALLOW_THREAD macro,
490 * it is necessary to preserve the windows error state, because
491 * it is assumed to be preserved across the call to the macro.
492 * Ideally, the macro should be fixed, but it is simpler to
493 * do it here.
494 */
495 DWORD error = GetLastError();
496 void *result = TlsGetValue(key->_key);
497 SetLastError(error);
498 return result;
499 }
500