blob: cfd61d00986dc740cc2249cfd5ff51d3dc4c88fa [file] [log] [blame]
Guido van Rossuma027efa1997-05-05 20:56:21 +00001
2/* Thread and interpreter state structures and their interfaces */
3
4#include "Python.h"
5
Tim Peters84705582004-10-10 02:47:33 +00006/* --------------------------------------------------------------------------
7CAUTION
8
9Always use malloc() and free() directly in this file. A number of these
10functions are advertised as safe to call when the GIL isn't held, and in
11a debug build Python redirects (e.g.) PyMem_NEW (etc) to Python's debugging
12obmalloc functions. Those aren't thread-safe (they rely on the GIL to avoid
13the expense of doing their own locking).
14-------------------------------------------------------------------------- */
15
Martin v. Löwisf0473d52001-07-18 16:17:16 +000016#ifdef HAVE_DLOPEN
17#ifdef HAVE_DLFCN_H
18#include <dlfcn.h>
19#endif
20#ifndef RTLD_LAZY
21#define RTLD_LAZY 1
22#endif
23#endif
24
Benjamin Peterson43162b82012-04-13 11:58:27 -040025#ifdef __cplusplus
26extern "C" {
27#endif
Martin v. Löwisf0473d52001-07-18 16:17:16 +000028
Guido van Rossum1d5ad901999-06-18 14:22:24 +000029#ifdef WITH_THREAD
30#include "pythread.h"
31static PyThread_type_lock head_mutex = NULL; /* Protects interp->tstate_head */
Moshe Zadka9fb6af92000-08-04 21:27:47 +000032#define HEAD_INIT() (void)(head_mutex || (head_mutex = PyThread_allocate_lock()))
Guido van Rossum1d5ad901999-06-18 14:22:24 +000033#define HEAD_LOCK() PyThread_acquire_lock(head_mutex, WAIT_LOCK)
34#define HEAD_UNLOCK() PyThread_release_lock(head_mutex)
Michael W. Hudson188d4362005-06-20 16:52:57 +000035
36/* The single PyInterpreterState used by this process'
37 GILState implementation
38*/
39static PyInterpreterState *autoInterpreterState = NULL;
40static int autoTLSkey = 0;
Guido van Rossum1d5ad901999-06-18 14:22:24 +000041#else
42#define HEAD_INIT() /* Nothing */
43#define HEAD_LOCK() /* Nothing */
44#define HEAD_UNLOCK() /* Nothing */
45#endif
46
Guido van Rossum25ce5661997-08-02 03:10:38 +000047static PyInterpreterState *interp_head = NULL;
Guido van Rossuma027efa1997-05-05 20:56:21 +000048
Jeffrey Yasskin39370832010-05-03 19:29:34 +000049/* Assuming the current thread holds the GIL, this is the
50 PyThreadState for the current thread. */
51_Py_atomic_address _PyThreadState_Current = {NULL};
Guido van Rossum6297a7a2003-02-19 15:53:17 +000052PyThreadFrameGetter _PyThreadState_GetFrame = NULL;
Guido van Rossuma027efa1997-05-05 20:56:21 +000053
Michael W. Hudsonce7da6c2005-09-30 08:20:24 +000054#ifdef WITH_THREAD
Michael W. Hudson188d4362005-06-20 16:52:57 +000055static void _PyGILState_NoteThreadState(PyThreadState* tstate);
Michael W. Hudsonce7da6c2005-09-30 08:20:24 +000056#endif
Michael W. Hudson188d4362005-06-20 16:52:57 +000057
Guido van Rossuma027efa1997-05-05 20:56:21 +000058
59PyInterpreterState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000060PyInterpreterState_New(void)
Guido van Rossuma027efa1997-05-05 20:56:21 +000061{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000062 PyInterpreterState *interp = (PyInterpreterState *)
63 malloc(sizeof(PyInterpreterState));
Guido van Rossum25ce5661997-08-02 03:10:38 +000064
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000065 if (interp != NULL) {
66 HEAD_INIT();
Thomas Wouters0e3f5912006-08-11 14:57:12 +000067#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000068 if (head_mutex == NULL)
69 Py_FatalError("Can't initialize threads for interpreter");
Thomas Wouters0e3f5912006-08-11 14:57:12 +000070#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000071 interp->modules = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000072 interp->modules_by_index = NULL;
73 interp->sysdict = NULL;
74 interp->builtins = NULL;
75 interp->tstate_head = NULL;
76 interp->codec_search_path = NULL;
77 interp->codec_search_cache = NULL;
78 interp->codec_error_registry = NULL;
79 interp->codecs_initialized = 0;
Victor Stinner3cbf14b2011-04-27 00:24:21 +020080 interp->fscodec_initialized = 0;
Brett Cannonfd074152012-04-14 14:10:13 -040081 interp->importlib = NULL;
Martin v. Löwisf0473d52001-07-18 16:17:16 +000082#ifdef HAVE_DLOPEN
83#ifdef RTLD_NOW
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000084 interp->dlopenflags = RTLD_NOW;
Martin v. Löwisf0473d52001-07-18 16:17:16 +000085#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000086 interp->dlopenflags = RTLD_LAZY;
Martin v. Löwisf0473d52001-07-18 16:17:16 +000087#endif
88#endif
Martin v. Löwisf30d60e2004-06-08 08:17:44 +000089#ifdef WITH_TSC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000090 interp->tscdump = 0;
Martin v. Löwisf30d60e2004-06-08 08:17:44 +000091#endif
Guido van Rossum25ce5661997-08-02 03:10:38 +000092
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000093 HEAD_LOCK();
94 interp->next = interp_head;
95 interp_head = interp;
96 HEAD_UNLOCK();
97 }
Guido van Rossum25ce5661997-08-02 03:10:38 +000098
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000099 return interp;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000100}
101
102
103void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000104PyInterpreterState_Clear(PyInterpreterState *interp)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000105{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000106 PyThreadState *p;
107 HEAD_LOCK();
108 for (p = interp->tstate_head; p != NULL; p = p->next)
109 PyThreadState_Clear(p);
110 HEAD_UNLOCK();
111 Py_CLEAR(interp->codec_search_path);
112 Py_CLEAR(interp->codec_search_cache);
113 Py_CLEAR(interp->codec_error_registry);
114 Py_CLEAR(interp->modules);
115 Py_CLEAR(interp->modules_by_index);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000116 Py_CLEAR(interp->sysdict);
117 Py_CLEAR(interp->builtins);
Brett Cannonfd074152012-04-14 14:10:13 -0400118 Py_CLEAR(interp->importlib);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000119}
120
121
122static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000123zapthreads(PyInterpreterState *interp)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000124{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000125 PyThreadState *p;
126 /* No need to lock the mutex here because this should only happen
127 when the threads are all really dead (XXX famous last words). */
128 while ((p = interp->tstate_head) != NULL) {
129 PyThreadState_Delete(p);
130 }
Guido van Rossum25ce5661997-08-02 03:10:38 +0000131}
132
133
134void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000135PyInterpreterState_Delete(PyInterpreterState *interp)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000136{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000137 PyInterpreterState **p;
138 zapthreads(interp);
139 HEAD_LOCK();
140 for (p = &interp_head; ; p = &(*p)->next) {
141 if (*p == NULL)
142 Py_FatalError(
143 "PyInterpreterState_Delete: invalid interp");
144 if (*p == interp)
145 break;
146 }
147 if (interp->tstate_head != NULL)
148 Py_FatalError("PyInterpreterState_Delete: remaining threads");
149 *p = interp->next;
150 HEAD_UNLOCK();
151 free(interp);
Antoine Pitrou8db076c2011-10-30 19:13:55 +0100152#ifdef WITH_THREAD
153 if (interp_head == NULL && head_mutex != NULL) {
154 PyThread_free_lock(head_mutex);
155 head_mutex = NULL;
156 }
157#endif
Guido van Rossuma027efa1997-05-05 20:56:21 +0000158}
159
160
Michael W. Hudson019a78e2002-11-08 12:53:11 +0000161/* Default implementation for _PyThreadState_GetFrame */
162static struct _frame *
163threadstate_getframe(PyThreadState *self)
164{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000165 return self->frame;
Michael W. Hudson019a78e2002-11-08 12:53:11 +0000166}
167
Victor Stinner45b9be52010-03-03 23:28:07 +0000168static PyThreadState *
169new_threadstate(PyInterpreterState *interp, int init)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000170{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000171 PyThreadState *tstate = (PyThreadState *)malloc(sizeof(PyThreadState));
Tim Peters84705582004-10-10 02:47:33 +0000172
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000173 if (_PyThreadState_GetFrame == NULL)
174 _PyThreadState_GetFrame = threadstate_getframe;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000175
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000176 if (tstate != NULL) {
177 tstate->interp = interp;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000178
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000179 tstate->frame = NULL;
180 tstate->recursion_depth = 0;
181 tstate->overflowed = 0;
182 tstate->recursion_critical = 0;
183 tstate->tracing = 0;
184 tstate->use_tracing = 0;
185 tstate->tick_counter = 0;
186 tstate->gilstate_counter = 0;
187 tstate->async_exc = NULL;
Martin v. Löwisf9ce67d2003-07-13 10:41:53 +0000188#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000189 tstate->thread_id = PyThread_get_thread_ident();
Martin v. Löwisf9ce67d2003-07-13 10:41:53 +0000190#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000191 tstate->thread_id = 0;
Martin v. Löwisf9ce67d2003-07-13 10:41:53 +0000192#endif
Guido van Rossuma027efa1997-05-05 20:56:21 +0000193
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000194 tstate->dict = NULL;
Guido van Rossumede04391998-04-10 20:18:25 +0000195
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000196 tstate->curexc_type = NULL;
197 tstate->curexc_value = NULL;
198 tstate->curexc_traceback = NULL;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000199
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000200 tstate->exc_type = NULL;
201 tstate->exc_value = NULL;
202 tstate->exc_traceback = NULL;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000203
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000204 tstate->c_profilefunc = NULL;
205 tstate->c_tracefunc = NULL;
206 tstate->c_profileobj = NULL;
207 tstate->c_traceobj = NULL;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000208
Antoine Pitrou2b0218a2012-09-06 00:59:49 +0200209 tstate->trash_delete_nesting = 0;
210 tstate->trash_delete_later = NULL;
211
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000212 if (init)
213 _PyThreadState_Init(tstate);
Michael W. Hudson188d4362005-06-20 16:52:57 +0000214
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000215 HEAD_LOCK();
216 tstate->next = interp->tstate_head;
217 interp->tstate_head = tstate;
218 HEAD_UNLOCK();
219 }
Guido van Rossum25ce5661997-08-02 03:10:38 +0000220
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000221 return tstate;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000222}
223
Victor Stinner45b9be52010-03-03 23:28:07 +0000224PyThreadState *
225PyThreadState_New(PyInterpreterState *interp)
226{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000227 return new_threadstate(interp, 1);
Victor Stinner45b9be52010-03-03 23:28:07 +0000228}
229
230PyThreadState *
231_PyThreadState_Prealloc(PyInterpreterState *interp)
232{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000233 return new_threadstate(interp, 0);
Victor Stinner45b9be52010-03-03 23:28:07 +0000234}
235
236void
237_PyThreadState_Init(PyThreadState *tstate)
238{
239#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000240 _PyGILState_NoteThreadState(tstate);
Victor Stinner45b9be52010-03-03 23:28:07 +0000241#endif
242}
243
Martin v. Löwis1a214512008-06-11 05:26:20 +0000244PyObject*
Martin v. Löwis7800f752012-06-22 12:20:55 +0200245PyState_FindModule(struct PyModuleDef* module)
Martin v. Löwis1a214512008-06-11 05:26:20 +0000246{
Martin v. Löwis7800f752012-06-22 12:20:55 +0200247 Py_ssize_t index = module->m_base.m_index;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000248 PyInterpreterState *state = PyThreadState_GET()->interp;
249 PyObject *res;
250 if (index == 0)
251 return NULL;
252 if (state->modules_by_index == NULL)
253 return NULL;
Antoine Pitrou75506e82012-08-20 19:30:46 +0200254 if (index >= PyList_GET_SIZE(state->modules_by_index))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000255 return NULL;
256 res = PyList_GET_ITEM(state->modules_by_index, index);
257 return res==Py_None ? NULL : res;
Martin v. Löwis1a214512008-06-11 05:26:20 +0000258}
259
260int
261_PyState_AddModule(PyObject* module, struct PyModuleDef* def)
262{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000263 PyInterpreterState *state = PyThreadState_GET()->interp;
264 if (!def)
265 return -1;
266 if (!state->modules_by_index) {
267 state->modules_by_index = PyList_New(0);
268 if (!state->modules_by_index)
269 return -1;
270 }
271 while(PyList_GET_SIZE(state->modules_by_index) <= def->m_base.m_index)
272 if (PyList_Append(state->modules_by_index, Py_None) < 0)
273 return -1;
274 Py_INCREF(module);
275 return PyList_SetItem(state->modules_by_index,
276 def->m_base.m_index, module);
Martin v. Löwis1a214512008-06-11 05:26:20 +0000277}
Guido van Rossuma027efa1997-05-05 20:56:21 +0000278
Martin v. Löwis7800f752012-06-22 12:20:55 +0200279int
280PyState_AddModule(PyObject* module, struct PyModuleDef* def)
281{
282 Py_ssize_t index;
283 PyInterpreterState *state = PyThreadState_GET()->interp;
284 if (!def) {
285 Py_FatalError("PyState_AddModule: Module Definition is NULL");
286 return -1;
287 }
288 index = def->m_base.m_index;
289 if (state->modules_by_index) {
290 if(PyList_GET_SIZE(state->modules_by_index) >= index) {
291 if(module == PyList_GET_ITEM(state->modules_by_index, index)) {
292 Py_FatalError("PyState_AddModule: Module already added!");
293 return -1;
294 }
295 }
296 }
297 return _PyState_AddModule(module, def);
298}
299
300int
301PyState_RemoveModule(struct PyModuleDef* def)
302{
303 Py_ssize_t index = def->m_base.m_index;
304 PyInterpreterState *state = PyThreadState_GET()->interp;
305 if (index == 0) {
306 Py_FatalError("PyState_RemoveModule: Module index invalid.");
307 return -1;
308 }
309 if (state->modules_by_index == NULL) {
310 Py_FatalError("PyState_RemoveModule: Interpreters module-list not acessible.");
311 return -1;
312 }
313 if (index > PyList_GET_SIZE(state->modules_by_index)) {
314 Py_FatalError("PyState_RemoveModule: Module index out of bounds.");
315 return -1;
316 }
317 return PyList_SetItem(state->modules_by_index, index, Py_None);
318}
319
Guido van Rossuma027efa1997-05-05 20:56:21 +0000320void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000321PyThreadState_Clear(PyThreadState *tstate)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000322{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000323 if (Py_VerboseFlag && tstate->frame != NULL)
324 fprintf(stderr,
325 "PyThreadState_Clear: warning: thread still has a frame\n");
Guido van Rossum25ce5661997-08-02 03:10:38 +0000326
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000327 Py_CLEAR(tstate->frame);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000328
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000329 Py_CLEAR(tstate->dict);
330 Py_CLEAR(tstate->async_exc);
Guido van Rossumede04391998-04-10 20:18:25 +0000331
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000332 Py_CLEAR(tstate->curexc_type);
333 Py_CLEAR(tstate->curexc_value);
334 Py_CLEAR(tstate->curexc_traceback);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000335
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000336 Py_CLEAR(tstate->exc_type);
337 Py_CLEAR(tstate->exc_value);
338 Py_CLEAR(tstate->exc_traceback);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000339
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000340 tstate->c_profilefunc = NULL;
341 tstate->c_tracefunc = NULL;
342 Py_CLEAR(tstate->c_profileobj);
343 Py_CLEAR(tstate->c_traceobj);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000344}
345
346
Guido van Rossum29757862001-01-23 01:46:06 +0000347/* Common code for PyThreadState_Delete() and PyThreadState_DeleteCurrent() */
348static void
349tstate_delete_common(PyThreadState *tstate)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000350{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000351 PyInterpreterState *interp;
352 PyThreadState **p;
353 PyThreadState *prev_p = NULL;
354 if (tstate == NULL)
355 Py_FatalError("PyThreadState_Delete: NULL tstate");
356 interp = tstate->interp;
357 if (interp == NULL)
358 Py_FatalError("PyThreadState_Delete: NULL interp");
359 HEAD_LOCK();
360 for (p = &interp->tstate_head; ; p = &(*p)->next) {
361 if (*p == NULL)
362 Py_FatalError(
363 "PyThreadState_Delete: invalid tstate");
364 if (*p == tstate)
365 break;
366 /* Sanity check. These states should never happen but if
367 * they do we must abort. Otherwise we'll end up spinning in
368 * in a tight loop with the lock held. A similar check is done
369 * in thread.c find_key(). */
370 if (*p == prev_p)
371 Py_FatalError(
372 "PyThreadState_Delete: small circular list(!)"
373 " and tstate not found.");
374 prev_p = *p;
375 if ((*p)->next == interp->tstate_head)
376 Py_FatalError(
377 "PyThreadState_Delete: circular list(!) and"
378 " tstate not found.");
379 }
380 *p = tstate->next;
381 HEAD_UNLOCK();
382 free(tstate);
Guido van Rossuma027efa1997-05-05 20:56:21 +0000383}
384
385
Guido van Rossum29757862001-01-23 01:46:06 +0000386void
387PyThreadState_Delete(PyThreadState *tstate)
388{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000389 if (tstate == _Py_atomic_load_relaxed(&_PyThreadState_Current))
390 Py_FatalError("PyThreadState_Delete: tstate is still current");
391 tstate_delete_common(tstate);
Tim Petersf4e69282006-02-27 17:15:31 +0000392#ifdef WITH_THREAD
Antoine Pitrou079ce542010-09-08 12:37:10 +0000393 if (autoInterpreterState && PyThread_get_key_value(autoTLSkey) == tstate)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000394 PyThread_delete_key_value(autoTLSkey);
Tim Petersf4e69282006-02-27 17:15:31 +0000395#endif /* WITH_THREAD */
Guido van Rossum29757862001-01-23 01:46:06 +0000396}
397
398
399#ifdef WITH_THREAD
400void
401PyThreadState_DeleteCurrent()
402{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000403 PyThreadState *tstate = (PyThreadState*)_Py_atomic_load_relaxed(
404 &_PyThreadState_Current);
405 if (tstate == NULL)
406 Py_FatalError(
407 "PyThreadState_DeleteCurrent: no current tstate");
408 _Py_atomic_store_relaxed(&_PyThreadState_Current, NULL);
409 tstate_delete_common(tstate);
Antoine Pitrou079ce542010-09-08 12:37:10 +0000410 if (autoInterpreterState && PyThread_get_key_value(autoTLSkey) == tstate)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000411 PyThread_delete_key_value(autoTLSkey);
412 PyEval_ReleaseLock();
Guido van Rossum29757862001-01-23 01:46:06 +0000413}
414#endif /* WITH_THREAD */
415
416
Guido van Rossuma027efa1997-05-05 20:56:21 +0000417PyThreadState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000418PyThreadState_Get(void)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000419{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000420 PyThreadState *tstate = (PyThreadState*)_Py_atomic_load_relaxed(
421 &_PyThreadState_Current);
422 if (tstate == NULL)
423 Py_FatalError("PyThreadState_Get: no current thread");
Guido van Rossum25ce5661997-08-02 03:10:38 +0000424
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000425 return tstate;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000426}
427
428
429PyThreadState *
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000430PyThreadState_Swap(PyThreadState *newts)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000431{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000432 PyThreadState *oldts = (PyThreadState*)_Py_atomic_load_relaxed(
433 &_PyThreadState_Current);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000434
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000435 _Py_atomic_store_relaxed(&_PyThreadState_Current, newts);
436 /* It should not be possible for more than one thread state
437 to be used for a thread. Check this the best we can in debug
438 builds.
439 */
Martin v. Löwis9e296252003-05-01 05:25:29 +0000440#if defined(Py_DEBUG) && defined(WITH_THREAD)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000441 if (newts) {
442 /* This can be called from PyEval_RestoreThread(). Similar
443 to it, we need to ensure errno doesn't change.
444 */
445 int err = errno;
446 PyThreadState *check = PyGILState_GetThisThreadState();
447 if (check && check->interp == newts->interp && check != newts)
448 Py_FatalError("Invalid thread state for this thread");
449 errno = err;
450 }
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000451#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000452 return oldts;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000453}
Guido van Rossumede04391998-04-10 20:18:25 +0000454
455/* An extension mechanism to store arbitrary additional per-thread state.
456 PyThreadState_GetDict() returns a dictionary that can be used to hold such
457 state; the caller should pick a unique key and store its state there. If
Guido van Rossum0fc8f002003-04-15 15:12:39 +0000458 PyThreadState_GetDict() returns NULL, an exception has *not* been raised
459 and the caller should assume no per-thread state is available. */
Guido van Rossumede04391998-04-10 20:18:25 +0000460
461PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000462PyThreadState_GetDict(void)
Guido van Rossumede04391998-04-10 20:18:25 +0000463{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000464 PyThreadState *tstate = (PyThreadState*)_Py_atomic_load_relaxed(
465 &_PyThreadState_Current);
466 if (tstate == NULL)
467 return NULL;
Guido van Rossumede04391998-04-10 20:18:25 +0000468
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000469 if (tstate->dict == NULL) {
470 PyObject *d;
471 tstate->dict = d = PyDict_New();
472 if (d == NULL)
473 PyErr_Clear();
474 }
475 return tstate->dict;
Guido van Rossumede04391998-04-10 20:18:25 +0000476}
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000477
478
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +0000479/* Asynchronously raise an exception in a thread.
480 Requested by Just van Rossum and Alex Martelli.
Guido van Rossum0f1f63c2005-02-08 02:07:57 +0000481 To prevent naive misuse, you must write your own extension
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000482 to call this, or use ctypes. Must be called with the GIL held.
483 Returns the number of tstates modified (normally 1, but 0 if `id` didn't
484 match any known thread id). Can be called with exc=NULL to clear an
485 existing async exception. This raises no exceptions. */
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +0000486
487int
488PyThreadState_SetAsyncExc(long id, PyObject *exc) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000489 PyThreadState *tstate = PyThreadState_GET();
490 PyInterpreterState *interp = tstate->interp;
491 PyThreadState *p;
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000492
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000493 /* Although the GIL is held, a few C API functions can be called
494 * without the GIL held, and in particular some that create and
495 * destroy thread and interpreter states. Those can mutate the
496 * list of thread states we're traversing, so to prevent that we lock
497 * head_mutex for the duration.
498 */
499 HEAD_LOCK();
500 for (p = interp->tstate_head; p != NULL; p = p->next) {
501 if (p->thread_id == id) {
502 /* Tricky: we need to decref the current value
503 * (if any) in p->async_exc, but that can in turn
504 * allow arbitrary Python code to run, including
505 * perhaps calls to this function. To prevent
506 * deadlock, we need to release head_mutex before
507 * the decref.
508 */
509 PyObject *old_exc = p->async_exc;
510 Py_XINCREF(exc);
511 p->async_exc = exc;
512 HEAD_UNLOCK();
513 Py_XDECREF(old_exc);
514 _PyEval_SignalAsyncExc();
515 return 1;
516 }
517 }
518 HEAD_UNLOCK();
519 return 0;
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +0000520}
521
522
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000523/* Routines for advanced debuggers, requested by David Beazley.
524 Don't use unless you know what you are doing! */
525
526PyInterpreterState *
527PyInterpreterState_Head(void)
528{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000529 return interp_head;
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000530}
531
532PyInterpreterState *
533PyInterpreterState_Next(PyInterpreterState *interp) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000534 return interp->next;
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000535}
536
537PyThreadState *
538PyInterpreterState_ThreadHead(PyInterpreterState *interp) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000539 return interp->tstate_head;
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000540}
541
542PyThreadState *
543PyThreadState_Next(PyThreadState *tstate) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000544 return tstate->next;
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000545}
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000546
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000547/* The implementation of sys._current_frames(). This is intended to be
548 called with the GIL held, as it will be when called via
549 sys._current_frames(). It's possible it would work fine even without
550 the GIL held, but haven't thought enough about that.
551*/
552PyObject *
553_PyThread_CurrentFrames(void)
554{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000555 PyObject *result;
556 PyInterpreterState *i;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000557
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000558 result = PyDict_New();
559 if (result == NULL)
560 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000561
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000562 /* for i in all interpreters:
563 * for t in all of i's thread states:
564 * if t's frame isn't NULL, map t's id to its frame
Ezio Melotti13925002011-03-16 11:05:33 +0200565 * Because these lists can mutate even when the GIL is held, we
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000566 * need to grab head_mutex for the duration.
567 */
568 HEAD_LOCK();
569 for (i = interp_head; i != NULL; i = i->next) {
570 PyThreadState *t;
571 for (t = i->tstate_head; t != NULL; t = t->next) {
572 PyObject *id;
573 int stat;
574 struct _frame *frame = t->frame;
575 if (frame == NULL)
576 continue;
577 id = PyLong_FromLong(t->thread_id);
578 if (id == NULL)
579 goto Fail;
580 stat = PyDict_SetItem(result, id, (PyObject *)frame);
581 Py_DECREF(id);
582 if (stat < 0)
583 goto Fail;
584 }
585 }
586 HEAD_UNLOCK();
587 return result;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000588
589 Fail:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000590 HEAD_UNLOCK();
591 Py_DECREF(result);
592 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000593}
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +0000594
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000595/* Python "auto thread state" API. */
596#ifdef WITH_THREAD
597
598/* Keep this as a static, as it is not reliable! It can only
599 ever be compared to the state for the *current* thread.
600 * If not equal, then it doesn't matter that the actual
601 value may change immediately after comparison, as it can't
602 possibly change to the current thread's state.
603 * If equal, then the current thread holds the lock, so the value can't
604 change until we yield the lock.
605*/
606static int
607PyThreadState_IsCurrent(PyThreadState *tstate)
608{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000609 /* Must be the tstate for this thread */
610 assert(PyGILState_GetThisThreadState()==tstate);
611 return tstate == _Py_atomic_load_relaxed(&_PyThreadState_Current);
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000612}
613
Tim Peters4c1f5ec2004-10-09 17:25:05 +0000614/* Internal initialization/finalization functions called by
615 Py_Initialize/Py_Finalize
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000616*/
Tim Peters19717fa2004-10-09 17:38:29 +0000617void
618_PyGILState_Init(PyInterpreterState *i, PyThreadState *t)
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000619{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000620 assert(i && t); /* must init with valid states */
621 autoTLSkey = PyThread_create_key();
Kristján Valur Jónsson2fea9b92010-09-20 02:11:49 +0000622 if (autoTLSkey == -1)
623 Py_FatalError("Could not allocate TLS entry");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000624 autoInterpreterState = i;
625 assert(PyThread_get_key_value(autoTLSkey) == NULL);
626 assert(t->gilstate_counter == 0);
Michael W. Hudson188d4362005-06-20 16:52:57 +0000627
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000628 _PyGILState_NoteThreadState(t);
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000629}
630
Tim Peters19717fa2004-10-09 17:38:29 +0000631void
632_PyGILState_Fini(void)
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000633{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000634 PyThread_delete_key(autoTLSkey);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000635 autoInterpreterState = NULL;
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000636}
637
Charles-François Natalia233df82011-11-22 19:49:51 +0100638/* Reset the TLS key - called by PyOS_AfterFork().
Antoine Pitrou0c759fe2011-04-27 19:28:05 +0200639 * This should not be necessary, but some - buggy - pthread implementations
Charles-François Natalia233df82011-11-22 19:49:51 +0100640 * don't reset TLS upon fork(), see issue #10517.
Antoine Pitrou0c759fe2011-04-27 19:28:05 +0200641 */
642void
643_PyGILState_Reinit(void)
644{
645 PyThreadState *tstate = PyGILState_GetThisThreadState();
646 PyThread_delete_key(autoTLSkey);
647 if ((autoTLSkey = PyThread_create_key()) == -1)
648 Py_FatalError("Could not allocate TLS entry");
649
Charles-François Natalia233df82011-11-22 19:49:51 +0100650 /* If the thread had an associated auto thread state, reassociate it with
651 * the new key. */
652 if (tstate && PyThread_set_key_value(autoTLSkey, (void *)tstate) < 0)
Antoine Pitrou0c759fe2011-04-27 19:28:05 +0200653 Py_FatalError("Couldn't create autoTLSkey mapping");
654}
655
Michael W. Hudson188d4362005-06-20 16:52:57 +0000656/* When a thread state is created for a thread by some mechanism other than
657 PyGILState_Ensure, it's important that the GILState machinery knows about
658 it so it doesn't try to create another thread state for the thread (this is
659 a better fix for SF bug #1010677 than the first one attempted).
660*/
Thomas Wouters89f507f2006-12-13 04:49:30 +0000661static void
Michael W. Hudson188d4362005-06-20 16:52:57 +0000662_PyGILState_NoteThreadState(PyThreadState* tstate)
663{
Antoine Pitrou079ce542010-09-08 12:37:10 +0000664 /* If autoTLSkey isn't initialized, this must be the very first
665 threadstate created in Py_Initialize(). Don't do anything for now
666 (we'll be back here when _PyGILState_Init is called). */
667 if (!autoInterpreterState)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000668 return;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000669
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000670 /* Stick the thread state for this thread in thread local storage.
Michael W. Hudson188d4362005-06-20 16:52:57 +0000671
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000672 The only situation where you can legitimately have more than one
673 thread state for an OS level thread is when there are multiple
674 interpreters, when:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000675
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000676 a) You shouldn't really be using the PyGILState_ APIs anyway,
677 and:
Michael W. Hudson188d4362005-06-20 16:52:57 +0000678
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000679 b) The slightly odd way PyThread_set_key_value works (see
680 comments by its implementation) means that the first thread
681 state created for that given OS level thread will "win",
682 which seems reasonable behaviour.
683 */
684 if (PyThread_set_key_value(autoTLSkey, (void *)tstate) < 0)
685 Py_FatalError("Couldn't create autoTLSkey mapping");
Michael W. Hudson188d4362005-06-20 16:52:57 +0000686
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000687 /* PyGILState_Release must not try to delete this thread state. */
688 tstate->gilstate_counter = 1;
Michael W. Hudson188d4362005-06-20 16:52:57 +0000689}
690
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000691/* The public functions */
Tim Peters19717fa2004-10-09 17:38:29 +0000692PyThreadState *
693PyGILState_GetThisThreadState(void)
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000694{
Antoine Pitrou079ce542010-09-08 12:37:10 +0000695 if (autoInterpreterState == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000696 return NULL;
697 return (PyThreadState *)PyThread_get_key_value(autoTLSkey);
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000698}
699
Tim Peters19717fa2004-10-09 17:38:29 +0000700PyGILState_STATE
701PyGILState_Ensure(void)
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000702{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000703 int current;
704 PyThreadState *tcur;
705 /* Note that we do not auto-init Python here - apart from
706 potential races with 2 threads auto-initializing, pep-311
707 spells out other issues. Embedders are expected to have
708 called Py_Initialize() and usually PyEval_InitThreads().
709 */
710 assert(autoInterpreterState); /* Py_Initialize() hasn't been called! */
711 tcur = (PyThreadState *)PyThread_get_key_value(autoTLSkey);
712 if (tcur == NULL) {
713 /* Create a new thread state for this thread */
714 tcur = PyThreadState_New(autoInterpreterState);
715 if (tcur == NULL)
716 Py_FatalError("Couldn't create thread-state for new thread");
717 /* This is our thread state! We'll need to delete it in the
718 matching call to PyGILState_Release(). */
719 tcur->gilstate_counter = 0;
720 current = 0; /* new thread state is never current */
721 }
722 else
723 current = PyThreadState_IsCurrent(tcur);
724 if (current == 0)
725 PyEval_RestoreThread(tcur);
726 /* Update our counter in the thread-state - no need for locks:
727 - tcur will remain valid as we hold the GIL.
728 - the counter is safe as we are the only thread "allowed"
729 to modify this value
730 */
731 ++tcur->gilstate_counter;
732 return current ? PyGILState_LOCKED : PyGILState_UNLOCKED;
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000733}
734
Tim Peters19717fa2004-10-09 17:38:29 +0000735void
736PyGILState_Release(PyGILState_STATE oldstate)
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000737{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000738 PyThreadState *tcur = (PyThreadState *)PyThread_get_key_value(
739 autoTLSkey);
740 if (tcur == NULL)
741 Py_FatalError("auto-releasing thread-state, "
742 "but no thread-state for this thread");
743 /* We must hold the GIL and have our thread state current */
744 /* XXX - remove the check - the assert should be fine,
745 but while this is very new (April 2003), the extra check
746 by release-only users can't hurt.
747 */
748 if (! PyThreadState_IsCurrent(tcur))
749 Py_FatalError("This thread state must be current when releasing");
750 assert(PyThreadState_IsCurrent(tcur));
751 --tcur->gilstate_counter;
752 assert(tcur->gilstate_counter >= 0); /* illegal counter value */
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000753
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000754 /* If we're going to destroy this thread-state, we must
755 * clear it while the GIL is held, as destructors may run.
756 */
757 if (tcur->gilstate_counter == 0) {
758 /* can't have been locked when we created it */
759 assert(oldstate == PyGILState_UNLOCKED);
760 PyThreadState_Clear(tcur);
761 /* Delete the thread-state. Note this releases the GIL too!
762 * It's vital that the GIL be held here, to avoid shutdown
763 * races; see bugs 225673 and 1061968 (that nasty bug has a
764 * habit of coming back).
765 */
766 PyThreadState_DeleteCurrent();
767 }
768 /* Release the lock if necessary */
769 else if (oldstate == PyGILState_UNLOCKED)
770 PyEval_SaveThread();
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000771}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000772
Benjamin Peterson3bf01752012-04-13 18:06:36 -0400773#endif /* WITH_THREAD */
774
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000775#ifdef __cplusplus
776}
777#endif
778
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000779