blob: 0c5d1929c309ffa1ebc61d5481c40ed45a3300a1 [file] [log] [blame]
Guido van Rossumc3f82b61995-01-17 16:29:31 +00001
2/* This code implemented by Dag.Gruneau@elsa.preseco.comm.se */
Guido van Rossum706262b2000-05-04 18:47:15 +00003/* Fast NonRecursiveMutex support by Yakov Markovitch, markovitch@iso.ru */
Tim Peterse64ef932002-02-28 21:34:34 +00004/* Eliminated some memory leaks, gsw@agere.com */
Guido van Rossumc3f82b61995-01-17 16:29:31 +00005
Guido van Rossum49b12261997-08-14 20:12:58 +00006#include <windows.h>
7#include <limits.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +00008#ifdef HAVE_PROCESS_H
Guido van Rossum49b12261997-08-14 20:12:58 +00009#include <process.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000010#endif
Guido van Rossumc3f82b61995-01-17 16:29:31 +000011
Guido van Rossum706262b2000-05-04 18:47:15 +000012typedef struct NRMUTEX {
13 LONG owned ;
14 DWORD thread_id ;
15 HANDLE hevent ;
16} NRMUTEX, *PNRMUTEX ;
17
Andrew MacIntyre63f0db62006-06-04 12:59:59 +000018
19BOOL
20InitializeNonRecursiveMutex(PNRMUTEX mutex)
Guido van Rossum706262b2000-05-04 18:47:15 +000021{
Guido van Rossum706262b2000-05-04 18:47:15 +000022 mutex->owned = -1 ; /* No threads have entered NonRecursiveMutex */
23 mutex->thread_id = 0 ;
24 mutex->hevent = CreateEvent(NULL, FALSE, FALSE, NULL) ;
25 return mutex->hevent != NULL ; /* TRUE if the mutex is created */
26}
27
Andrew MacIntyre63f0db62006-06-04 12:59:59 +000028VOID
29DeleteNonRecursiveMutex(PNRMUTEX mutex)
Guido van Rossum706262b2000-05-04 18:47:15 +000030{
31 /* No in-use check */
32 CloseHandle(mutex->hevent) ;
33 mutex->hevent = NULL ; /* Just in case */
34}
35
Andrew MacIntyre63f0db62006-06-04 12:59:59 +000036DWORD
37EnterNonRecursiveMutex(PNRMUTEX mutex, BOOL wait)
Guido van Rossum706262b2000-05-04 18:47:15 +000038{
39 /* Assume that the thread waits successfully */
40 DWORD ret ;
41
42 /* InterlockedIncrement(&mutex->owned) == 0 means that no thread currently owns the mutex */
43 if (!wait)
44 {
Kristján Valur Jónssonf0303942007-05-03 20:27:03 +000045 if (InterlockedCompareExchange(&mutex->owned, 0, -1) != -1)
Guido van Rossum706262b2000-05-04 18:47:15 +000046 return WAIT_TIMEOUT ;
47 ret = WAIT_OBJECT_0 ;
48 }
49 else
50 ret = InterlockedIncrement(&mutex->owned) ?
51 /* Some thread owns the mutex, let's wait... */
52 WaitForSingleObject(mutex->hevent, INFINITE) : WAIT_OBJECT_0 ;
53
54 mutex->thread_id = GetCurrentThreadId() ; /* We own it */
55 return ret ;
56}
57
Andrew MacIntyre63f0db62006-06-04 12:59:59 +000058BOOL
59LeaveNonRecursiveMutex(PNRMUTEX mutex)
Guido van Rossum706262b2000-05-04 18:47:15 +000060{
61 /* We don't own the mutex */
62 mutex->thread_id = 0 ;
63 return
64 InterlockedDecrement(&mutex->owned) < 0 ||
65 SetEvent(mutex->hevent) ; /* Other threads are waiting, wake one on them up */
66}
67
Andrew MacIntyre63f0db62006-06-04 12:59:59 +000068PNRMUTEX
69AllocNonRecursiveMutex(void)
Guido van Rossum706262b2000-05-04 18:47:15 +000070{
71 PNRMUTEX mutex = (PNRMUTEX)malloc(sizeof(NRMUTEX)) ;
72 if (mutex && !InitializeNonRecursiveMutex(mutex))
73 {
74 free(mutex) ;
75 mutex = NULL ;
76 }
77 return mutex ;
78}
79
Andrew MacIntyre63f0db62006-06-04 12:59:59 +000080void
81FreeNonRecursiveMutex(PNRMUTEX mutex)
Guido van Rossum706262b2000-05-04 18:47:15 +000082{
83 if (mutex)
84 {
85 DeleteNonRecursiveMutex(mutex) ;
86 free(mutex) ;
87 }
88}
89
Guido van Rossum65d5b571998-12-21 19:32:43 +000090long PyThread_get_thread_ident(void);
Guido van Rossumc3f82b61995-01-17 16:29:31 +000091
92/*
Guido van Rossumc3f82b61995-01-17 16:29:31 +000093 * Initialization of the C package, should not be needed.
94 */
Andrew MacIntyre63f0db62006-06-04 12:59:59 +000095static void
96PyThread__init_thread(void)
Guido van Rossumc3f82b61995-01-17 16:29:31 +000097{
98}
99
100/*
101 * Thread support.
102 */
Guido van Rossum3c288632001-10-16 21:13:49 +0000103
104typedef struct {
105 void (*func)(void*);
Tim Peters2e7e7df2003-07-04 04:40:45 +0000106 void *arg;
Guido van Rossum3c288632001-10-16 21:13:49 +0000107} callobj;
108
Martin v. Löwise3422fa2009-01-12 08:11:24 +0000109/* thunker to call adapt between the function type used by the system's
110thread start function and the internally used one. */
111#if defined(MS_WINCE)
112static DWORD WINAPI
113#else
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000114static unsigned __stdcall
Martin v. Löwise3422fa2009-01-12 08:11:24 +0000115#endif
Guido van Rossum3c288632001-10-16 21:13:49 +0000116bootstrap(void *call)
117{
118 callobj *obj = (callobj*)call;
Guido van Rossum3c288632001-10-16 21:13:49 +0000119 void (*func)(void*) = obj->func;
120 void *arg = obj->arg;
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000121 HeapFree(GetProcessHeap(), 0, obj);
Guido van Rossum3c288632001-10-16 21:13:49 +0000122 func(arg);
123 return 0;
124}
125
Tim Peters2e7e7df2003-07-04 04:40:45 +0000126long
127PyThread_start_new_thread(void (*func)(void *), void *arg)
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000128{
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000129 HANDLE hThread;
130 unsigned threadID;
131 callobj *obj;
132
Tim Peters2e7e7df2003-07-04 04:40:45 +0000133 dprintf(("%ld: PyThread_start_new_thread called\n",
134 PyThread_get_thread_ident()));
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000135 if (!initialized)
Guido van Rossum65d5b571998-12-21 19:32:43 +0000136 PyThread_init_thread();
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000137
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000138 obj = (callobj*)HeapAlloc(GetProcessHeap(), 0, sizeof(*obj));
139 if (!obj)
Tim Peters2e7e7df2003-07-04 04:40:45 +0000140 return -1;
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000141 obj->func = func;
142 obj->arg = arg;
Martin v. Löwise3422fa2009-01-12 08:11:24 +0000143#if defined(MS_WINCE)
144 hThread = CreateThread(NULL,
145 Py_SAFE_DOWNCAST(_pythread_stacksize, Py_ssize_t, SIZE_T),
146 bootstrap, obj, 0, &threadID);
147#else
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000148 hThread = (HANDLE)_beginthreadex(0,
Kristján Valur Jónssonf0303942007-05-03 20:27:03 +0000149 Py_SAFE_DOWNCAST(_pythread_stacksize,
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000150 Py_ssize_t, unsigned int),
151 bootstrap, obj,
152 0, &threadID);
Martin v. Löwise3422fa2009-01-12 08:11:24 +0000153#endif
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000154 if (hThread == 0) {
Martin v. Löwise3422fa2009-01-12 08:11:24 +0000155#if defined(MS_WINCE)
156 /* Save error in variable, to prevent PyThread_get_thread_ident
157 from clobbering it. */
158 unsigned e = GetLastError();
159 dprintf(("%ld: PyThread_start_new_thread failed, win32 error code %u\n",
160 PyThread_get_thread_ident(), e));
161#else
Tim Peters2e7e7df2003-07-04 04:40:45 +0000162 /* I've seen errno == EAGAIN here, which means "there are
163 * too many threads".
164 */
Martin v. Löwise3422fa2009-01-12 08:11:24 +0000165 int e = errno;
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000166 dprintf(("%ld: PyThread_start_new_thread failed, errno %d\n",
Martin v. Löwise3422fa2009-01-12 08:11:24 +0000167 PyThread_get_thread_ident(), e));
168#endif
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000169 threadID = (unsigned)-1;
170 HeapFree(GetProcessHeap(), 0, obj);
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000171 }
Tim Peters2e7e7df2003-07-04 04:40:45 +0000172 else {
173 dprintf(("%ld: PyThread_start_new_thread succeeded: %p\n",
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000174 PyThread_get_thread_ident(), (void*)hThread));
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000175 CloseHandle(hThread);
Tim Peters2e7e7df2003-07-04 04:40:45 +0000176 }
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000177 return (long) threadID;
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000178}
179
180/*
181 * Return the thread Id instead of an handle. The Id is said to uniquely identify the
182 * thread in the system
183 */
Andrew MacIntyre63f0db62006-06-04 12:59:59 +0000184long
185PyThread_get_thread_ident(void)
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000186{
187 if (!initialized)
Guido van Rossum65d5b571998-12-21 19:32:43 +0000188 PyThread_init_thread();
Guido van Rossum706262b2000-05-04 18:47:15 +0000189
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000190 return GetCurrentThreadId();
191}
192
Andrew MacIntyre63f0db62006-06-04 12:59:59 +0000193void
194PyThread_exit_thread(void)
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000195{
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000196 dprintf(("%ld: PyThread_exit_thread called\n", PyThread_get_thread_ident()));
197 if (!initialized)
198 exit(0);
Martin v. Löwise3422fa2009-01-12 08:11:24 +0000199#if defined(MS_WINCE)
200 ExitThread(0);
201#else
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000202 _endthreadex(0);
Martin v. Löwise3422fa2009-01-12 08:11:24 +0000203#endif
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000204}
205
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000206/*
207 * Lock support. It has too be implemented as semaphores.
208 * I [Dag] tried to implement it with mutex but I could find a way to
209 * tell whether a thread already own the lock or not.
210 */
Andrew MacIntyre63f0db62006-06-04 12:59:59 +0000211PyThread_type_lock
212PyThread_allocate_lock(void)
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000213{
Guido van Rossum706262b2000-05-04 18:47:15 +0000214 PNRMUTEX aLock;
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000215
Guido van Rossum65d5b571998-12-21 19:32:43 +0000216 dprintf(("PyThread_allocate_lock called\n"));
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000217 if (!initialized)
Guido van Rossum65d5b571998-12-21 19:32:43 +0000218 PyThread_init_thread();
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000219
Guido van Rossum706262b2000-05-04 18:47:15 +0000220 aLock = AllocNonRecursiveMutex() ;
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000221
Fred Drakea44d3532000-06-30 15:01:00 +0000222 dprintf(("%ld: PyThread_allocate_lock() -> %p\n", PyThread_get_thread_ident(), aLock));
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000223
Guido van Rossum65d5b571998-12-21 19:32:43 +0000224 return (PyThread_type_lock) aLock;
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000225}
226
Andrew MacIntyre63f0db62006-06-04 12:59:59 +0000227void
228PyThread_free_lock(PyThread_type_lock aLock)
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000229{
Fred Drakea44d3532000-06-30 15:01:00 +0000230 dprintf(("%ld: PyThread_free_lock(%p) called\n", PyThread_get_thread_ident(),aLock));
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000231
Guido van Rossum706262b2000-05-04 18:47:15 +0000232 FreeNonRecursiveMutex(aLock) ;
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000233}
234
235/*
236 * Return 1 on success if the lock was acquired
237 *
238 * and 0 if the lock was not acquired. This means a 0 is returned
239 * if the lock has already been acquired by this thread!
240 */
Andrew MacIntyre63f0db62006-06-04 12:59:59 +0000241int
242PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag)
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000243{
Guido van Rossum706262b2000-05-04 18:47:15 +0000244 int success ;
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000245
Fred Drakea44d3532000-06-30 15:01:00 +0000246 dprintf(("%ld: PyThread_acquire_lock(%p, %d) called\n", PyThread_get_thread_ident(),aLock, waitflag));
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000247
Georg Brandlaf410b52005-07-08 22:26:13 +0000248 success = aLock && EnterNonRecursiveMutex((PNRMUTEX) aLock, (waitflag ? INFINITE : 0)) == WAIT_OBJECT_0 ;
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000249
Fred Drakea44d3532000-06-30 15:01:00 +0000250 dprintf(("%ld: PyThread_acquire_lock(%p, %d) -> %d\n", PyThread_get_thread_ident(),aLock, waitflag, success));
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000251
252 return success;
253}
254
Andrew MacIntyre63f0db62006-06-04 12:59:59 +0000255void
256PyThread_release_lock(PyThread_type_lock aLock)
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000257{
Fred Drakea44d3532000-06-30 15:01:00 +0000258 dprintf(("%ld: PyThread_release_lock(%p) called\n", PyThread_get_thread_ident(),aLock));
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000259
Guido van Rossum706262b2000-05-04 18:47:15 +0000260 if (!(aLock && LeaveNonRecursiveMutex((PNRMUTEX) aLock)))
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +0000261 dprintf(("%ld: Could not PyThread_release_lock(%p) error: %ld\n", PyThread_get_thread_ident(), aLock, GetLastError()));
Guido van Rossumc3f82b61995-01-17 16:29:31 +0000262}
Andrew MacIntyre92913322006-06-13 15:04:24 +0000263
264/* minimum/maximum thread stack sizes supported */
265#define THREAD_MIN_STACKSIZE 0x8000 /* 32kB */
266#define THREAD_MAX_STACKSIZE 0x10000000 /* 256MB */
267
268/* set the thread stack size.
269 * Return 0 if size is valid, -1 otherwise.
270 */
271static int
272_pythread_nt_set_stacksize(size_t size)
273{
274 /* set to default */
275 if (size == 0) {
276 _pythread_stacksize = 0;
277 return 0;
278 }
279
280 /* valid range? */
281 if (size >= THREAD_MIN_STACKSIZE && size < THREAD_MAX_STACKSIZE) {
282 _pythread_stacksize = size;
283 return 0;
284 }
285
286 return -1;
287}
288
289#define THREAD_SET_STACKSIZE(x) _pythread_nt_set_stacksize(x)
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000290
291
292/* use native Windows TLS functions */
293#define Py_HAVE_NATIVE_TLS
294
295#ifdef Py_HAVE_NATIVE_TLS
296int
297PyThread_create_key(void)
298{
299 return (int) TlsAlloc();
300}
301
302void
303PyThread_delete_key(int key)
304{
305 TlsFree(key);
306}
307
308/* We must be careful to emulate the strange semantics implemented in thread.c,
309 * where the value is only set if it hasn't been set before.
310 */
311int
312PyThread_set_key_value(int key, void *value)
313{
314 BOOL ok;
315 void *oldvalue;
316
317 assert(value != NULL);
318 oldvalue = TlsGetValue(key);
319 if (oldvalue != NULL)
320 /* ignore value if already set */
321 return 0;
322 ok = TlsSetValue(key, value);
323 if (!ok)
324 return -1;
325 return 0;
326}
327
328void *
329PyThread_get_key_value(int key)
330{
Kristján Valur Jónssonabb70e92009-01-10 12:14:31 +0000331 /* because TLS is used in the Py_END_ALLOW_THREAD macro,
332 * it is necessary to preserve the windows error state, because
333 * it is assumed to be preserved across the call to the macro.
334 * Ideally, the macro should be fixed, but it is simpler to
335 * do it here.
336 */
337 DWORD error = GetLastError();
338 void *result = TlsGetValue(key);
339 SetLastError(error);
340 return result;
Kristján Valur Jónsson00f2df42009-01-09 20:03:27 +0000341}
342
343void
344PyThread_delete_key_value(int key)
345{
346 /* NULL is used as "key missing", and it is also the default
347 * given by TlsGetValue() if nothing has been set yet.
348 */
349 TlsSetValue(key, NULL);
350}
351
352/* reinitialization of TLS is not necessary after fork when using
353 * the native TLS functions. And forking isn't supported on Windows either.
354 */
355void
356PyThread_ReInitTLS(void)
357{}
358
359#endif