blob: 140d2fba8efd3de7b92fd938f1d7f7e1e40f27fc [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"
Eric Snow2ebc5ce2017-09-07 23:51:28 -06005#include "internal/pystate.h"
Guido van Rossuma027efa1997-05-05 20:56:21 +00006
Victor Stinnerb02ef712016-01-22 14:09:55 +01007#define GET_TSTATE() \
8 ((PyThreadState*)_Py_atomic_load_relaxed(&_PyThreadState_Current))
9#define SET_TSTATE(value) \
Benjamin Petersonca470632016-09-06 13:47:26 -070010 _Py_atomic_store_relaxed(&_PyThreadState_Current, (uintptr_t)(value))
Victor Stinnerb02ef712016-01-22 14:09:55 +010011#define GET_INTERP_STATE() \
12 (GET_TSTATE()->interp)
13
Victor Stinnerbfd316e2016-01-20 11:12:38 +010014
Tim Peters84705582004-10-10 02:47:33 +000015/* --------------------------------------------------------------------------
16CAUTION
17
Victor Stinner1a7425f2013-07-07 16:25:15 +020018Always use PyMem_RawMalloc() and PyMem_RawFree() directly in this file. A
19number of these functions are advertised as safe to call when the GIL isn't
20held, and in a debug build Python redirects (e.g.) PyMem_NEW (etc) to Python's
21debugging obmalloc functions. Those aren't thread-safe (they rely on the GIL
22to avoid the expense of doing their own locking).
Tim Peters84705582004-10-10 02:47:33 +000023-------------------------------------------------------------------------- */
24
Martin v. Löwisf0473d52001-07-18 16:17:16 +000025#ifdef HAVE_DLOPEN
26#ifdef HAVE_DLFCN_H
27#include <dlfcn.h>
28#endif
Serhiy Storchakac2f7d872016-05-04 09:44:44 +030029#if !HAVE_DECL_RTLD_LAZY
Martin v. Löwisf0473d52001-07-18 16:17:16 +000030#define RTLD_LAZY 1
31#endif
32#endif
33
Benjamin Peterson43162b82012-04-13 11:58:27 -040034#ifdef __cplusplus
35extern "C" {
36#endif
Martin v. Löwisf0473d52001-07-18 16:17:16 +000037
Victor Stinner5d39e042017-11-29 17:20:38 +010038static _PyInitError
39_PyRuntimeState_Init_impl(_PyRuntimeState *runtime)
Eric Snow2ebc5ce2017-09-07 23:51:28 -060040{
41 memset(runtime, 0, sizeof(*runtime));
Victor Stinner8a1be612016-03-14 22:07:55 +010042
Eric Snow2ebc5ce2017-09-07 23:51:28 -060043 _PyGC_Initialize(&runtime->gc);
44 _PyEval_Initialize(&runtime->ceval);
Michael W. Hudson188d4362005-06-20 16:52:57 +000045
Eric Snow2ebc5ce2017-09-07 23:51:28 -060046 runtime->gilstate.check_enabled = 1;
Victor Stinnerf7e5b562017-11-15 15:48:08 -080047
Masayuki Yamamoto731e1892017-10-06 19:41:34 +090048 /* A TSS key must be initialized with Py_tss_NEEDS_INIT
49 in accordance with the specification. */
Victor Stinnerf7e5b562017-11-15 15:48:08 -080050 Py_tss_t initial = Py_tss_NEEDS_INIT;
51 runtime->gilstate.autoTSSkey = initial;
Guido van Rossum1d5ad901999-06-18 14:22:24 +000052
Eric Snow2ebc5ce2017-09-07 23:51:28 -060053 runtime->interpreters.mutex = PyThread_allocate_lock();
Victor Stinnerf7e5b562017-11-15 15:48:08 -080054 if (runtime->interpreters.mutex == NULL) {
55 return _Py_INIT_ERR("Can't initialize threads for interpreter");
56 }
Eric Snow2ebc5ce2017-09-07 23:51:28 -060057 runtime->interpreters.next_id = -1;
Eric Snow7f8bfc92018-01-29 18:23:44 -070058
59 runtime->xidregistry.mutex = PyThread_allocate_lock();
60 if (runtime->xidregistry.mutex == NULL) {
61 return _Py_INIT_ERR("Can't initialize threads for cross-interpreter data registry");
62 }
63
Victor Stinnerf7e5b562017-11-15 15:48:08 -080064 return _Py_INIT_OK();
Eric Snow2ebc5ce2017-09-07 23:51:28 -060065}
Eric Snow05351c12017-09-05 21:43:08 -070066
Victor Stinner5d39e042017-11-29 17:20:38 +010067_PyInitError
68_PyRuntimeState_Init(_PyRuntimeState *runtime)
69{
70 /* Force default allocator, since _PyRuntimeState_Fini() must
71 use the same allocator than this function. */
72 PyMemAllocatorEx old_alloc;
73 _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
74
75 _PyInitError err = _PyRuntimeState_Init_impl(runtime);
76
77 PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
78 return err;
79}
80
Eric Snow2ebc5ce2017-09-07 23:51:28 -060081void
82_PyRuntimeState_Fini(_PyRuntimeState *runtime)
83{
Victor Stinner5d39e042017-11-29 17:20:38 +010084 /* Force the allocator used by _PyRuntimeState_Init(). */
85 PyMemAllocatorEx old_alloc;
86 _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
Victor Stinnerccb04422017-11-16 03:20:31 -080087
Eric Snow2ebc5ce2017-09-07 23:51:28 -060088 if (runtime->interpreters.mutex != NULL) {
89 PyThread_free_lock(runtime->interpreters.mutex);
90 runtime->interpreters.mutex = NULL;
91 }
Victor Stinnerccb04422017-11-16 03:20:31 -080092
93 PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
Eric Snow2ebc5ce2017-09-07 23:51:28 -060094}
95
96#define HEAD_LOCK() PyThread_acquire_lock(_PyRuntime.interpreters.mutex, \
97 WAIT_LOCK)
98#define HEAD_UNLOCK() PyThread_release_lock(_PyRuntime.interpreters.mutex)
Eric Snow05351c12017-09-05 21:43:08 -070099
Michael W. Hudson188d4362005-06-20 16:52:57 +0000100static void _PyGILState_NoteThreadState(PyThreadState* tstate);
101
Victor Stinnera7368ac2017-11-15 18:11:45 -0800102_PyInitError
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600103_PyInterpreterState_Enable(_PyRuntimeState *runtime)
Eric Snowe3774162017-05-22 19:46:40 -0700104{
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600105 runtime->interpreters.next_id = 0;
Miss Islington (bot)31e2b762018-03-06 05:52:27 -0800106
107 /* Py_Finalize() calls _PyRuntimeState_Fini() which clears the mutex.
108 Create a new mutex if needed. */
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600109 if (runtime->interpreters.mutex == NULL) {
Miss Islington (bot)31e2b762018-03-06 05:52:27 -0800110 /* Force default allocator, since _PyRuntimeState_Fini() must
111 use the same allocator than this function. */
112 PyMemAllocatorEx old_alloc;
113 _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
114
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600115 runtime->interpreters.mutex = PyThread_allocate_lock();
Miss Islington (bot)31e2b762018-03-06 05:52:27 -0800116
117 PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
118
Victor Stinnera7368ac2017-11-15 18:11:45 -0800119 if (runtime->interpreters.mutex == NULL) {
120 return _Py_INIT_ERR("Can't initialize threads for interpreter");
121 }
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600122 }
Miss Islington (bot)31e2b762018-03-06 05:52:27 -0800123
Victor Stinnera7368ac2017-11-15 18:11:45 -0800124 return _Py_INIT_OK();
Eric Snowe3774162017-05-22 19:46:40 -0700125}
Guido van Rossuma027efa1997-05-05 20:56:21 +0000126
127PyInterpreterState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000128PyInterpreterState_New(void)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000129{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000130 PyInterpreterState *interp = (PyInterpreterState *)
Victor Stinner1a7425f2013-07-07 16:25:15 +0200131 PyMem_RawMalloc(sizeof(PyInterpreterState));
Guido van Rossum25ce5661997-08-02 03:10:38 +0000132
Victor Stinnerd4341102017-11-23 00:12:09 +0100133 if (interp == NULL) {
134 return NULL;
135 }
136
Miss Islington (bot)3db05a32018-02-16 18:15:24 -0800137 interp->id_refcount = -1;
138 interp->id_mutex = NULL;
Victor Stinnerd4341102017-11-23 00:12:09 +0100139 interp->modules = NULL;
140 interp->modules_by_index = NULL;
141 interp->sysdict = NULL;
142 interp->builtins = NULL;
143 interp->builtins_copy = NULL;
144 interp->tstate_head = NULL;
145 interp->check_interval = 100;
146 interp->num_threads = 0;
147 interp->pythread_stacksize = 0;
148 interp->codec_search_path = NULL;
149 interp->codec_search_cache = NULL;
150 interp->codec_error_registry = NULL;
151 interp->codecs_initialized = 0;
152 interp->fscodec_initialized = 0;
153 interp->core_config = _PyCoreConfig_INIT;
154 interp->config = _PyMainInterpreterConfig_INIT;
155 interp->importlib = NULL;
156 interp->import_func = NULL;
157 interp->eval_frame = _PyEval_EvalFrameDefault;
158 interp->co_extra_user_count = 0;
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000159#ifdef HAVE_DLOPEN
Serhiy Storchakac2f7d872016-05-04 09:44:44 +0300160#if HAVE_DECL_RTLD_NOW
Victor Stinnerd4341102017-11-23 00:12:09 +0100161 interp->dlopenflags = RTLD_NOW;
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000162#else
Victor Stinnerd4341102017-11-23 00:12:09 +0100163 interp->dlopenflags = RTLD_LAZY;
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000164#endif
165#endif
Antoine Pitrou346cbd32017-05-27 17:50:54 +0200166#ifdef HAVE_FORK
Victor Stinnerd4341102017-11-23 00:12:09 +0100167 interp->before_forkers = NULL;
168 interp->after_forkers_parent = NULL;
169 interp->after_forkers_child = NULL;
Antoine Pitrou346cbd32017-05-27 17:50:54 +0200170#endif
Marcel Plch776407f2017-12-20 11:17:58 +0100171 interp->pyexitfunc = NULL;
172 interp->pyexitmodule = NULL;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000173
Victor Stinnerd4341102017-11-23 00:12:09 +0100174 HEAD_LOCK();
175 interp->next = _PyRuntime.interpreters.head;
176 if (_PyRuntime.interpreters.main == NULL) {
177 _PyRuntime.interpreters.main = interp;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000178 }
Victor Stinnerd4341102017-11-23 00:12:09 +0100179 _PyRuntime.interpreters.head = interp;
180 if (_PyRuntime.interpreters.next_id < 0) {
181 /* overflow or Py_Initialize() not called! */
182 PyErr_SetString(PyExc_RuntimeError,
183 "failed to get an interpreter ID");
Eric Snow7f8bfc92018-01-29 18:23:44 -0700184 /* XXX deallocate! */
Victor Stinnerd4341102017-11-23 00:12:09 +0100185 interp = NULL;
186 } else {
187 interp->id = _PyRuntime.interpreters.next_id;
188 _PyRuntime.interpreters.next_id += 1;
189 }
190 HEAD_UNLOCK();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000191
Yury Selivanovf23746a2018-01-22 19:11:18 -0500192 interp->tstate_next_unique_id = 0;
193
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000194 return interp;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000195}
196
197
198void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000199PyInterpreterState_Clear(PyInterpreterState *interp)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000200{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000201 PyThreadState *p;
202 HEAD_LOCK();
203 for (p = interp->tstate_head; p != NULL; p = p->next)
204 PyThreadState_Clear(p);
205 HEAD_UNLOCK();
Victor Stinnerda273412017-12-15 01:46:02 +0100206 _PyCoreConfig_Clear(&interp->core_config);
207 _PyMainInterpreterConfig_Clear(&interp->config);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000208 Py_CLEAR(interp->codec_search_path);
209 Py_CLEAR(interp->codec_search_cache);
210 Py_CLEAR(interp->codec_error_registry);
Eric Snow93c92f72017-09-13 23:46:04 -0700211 Py_CLEAR(interp->modules);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000212 Py_CLEAR(interp->modules_by_index);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000213 Py_CLEAR(interp->sysdict);
214 Py_CLEAR(interp->builtins);
Serhiy Storchaka87a5c512014-02-10 18:21:34 +0200215 Py_CLEAR(interp->builtins_copy);
Brett Cannonfd074152012-04-14 14:10:13 -0400216 Py_CLEAR(interp->importlib);
Serhiy Storchaka133138a2016-08-02 22:51:21 +0300217 Py_CLEAR(interp->import_func);
Antoine Pitrou346cbd32017-05-27 17:50:54 +0200218#ifdef HAVE_FORK
219 Py_CLEAR(interp->before_forkers);
220 Py_CLEAR(interp->after_forkers_parent);
221 Py_CLEAR(interp->after_forkers_child);
222#endif
Guido van Rossum25ce5661997-08-02 03:10:38 +0000223}
224
225
226static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000227zapthreads(PyInterpreterState *interp)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000228{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000229 PyThreadState *p;
230 /* No need to lock the mutex here because this should only happen
231 when the threads are all really dead (XXX famous last words). */
232 while ((p = interp->tstate_head) != NULL) {
233 PyThreadState_Delete(p);
234 }
Guido van Rossum25ce5661997-08-02 03:10:38 +0000235}
236
237
238void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000239PyInterpreterState_Delete(PyInterpreterState *interp)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000240{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000241 PyInterpreterState **p;
242 zapthreads(interp);
243 HEAD_LOCK();
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600244 for (p = &_PyRuntime.interpreters.head; ; p = &(*p)->next) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000245 if (*p == NULL)
246 Py_FatalError(
247 "PyInterpreterState_Delete: invalid interp");
248 if (*p == interp)
249 break;
250 }
251 if (interp->tstate_head != NULL)
252 Py_FatalError("PyInterpreterState_Delete: remaining threads");
253 *p = interp->next;
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600254 if (_PyRuntime.interpreters.main == interp) {
255 _PyRuntime.interpreters.main = NULL;
256 if (_PyRuntime.interpreters.head != NULL)
Eric Snow6b4be192017-05-22 21:36:03 -0700257 Py_FatalError("PyInterpreterState_Delete: remaining subinterpreters");
258 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000259 HEAD_UNLOCK();
Miss Islington (bot)3db05a32018-02-16 18:15:24 -0800260 if (interp->id_mutex != NULL) {
261 PyThread_free_lock(interp->id_mutex);
262 }
Victor Stinner1a7425f2013-07-07 16:25:15 +0200263 PyMem_RawFree(interp);
Guido van Rossuma027efa1997-05-05 20:56:21 +0000264}
265
266
Eric Snowe3774162017-05-22 19:46:40 -0700267int64_t
268PyInterpreterState_GetID(PyInterpreterState *interp)
269{
270 if (interp == NULL) {
271 PyErr_SetString(PyExc_RuntimeError, "no interpreter provided");
272 return -1;
273 }
274 return interp->id;
275}
276
277
Eric Snow7f8bfc92018-01-29 18:23:44 -0700278PyInterpreterState *
279_PyInterpreterState_LookUpID(PY_INT64_T requested_id)
280{
281 if (requested_id < 0)
282 goto error;
283
284 PyInterpreterState *interp = PyInterpreterState_Head();
285 while (interp != NULL) {
286 PY_INT64_T id = PyInterpreterState_GetID(interp);
287 if (id < 0)
288 return NULL;
289 if (requested_id == id)
290 return interp;
291 interp = PyInterpreterState_Next(interp);
292 }
293
294error:
295 PyErr_Format(PyExc_RuntimeError,
296 "unrecognized interpreter ID %lld", requested_id);
297 return NULL;
298}
299
Miss Islington (bot)3db05a32018-02-16 18:15:24 -0800300
301int
302_PyInterpreterState_IDInitref(PyInterpreterState *interp)
303{
304 if (interp->id_mutex != NULL) {
305 return 0;
306 }
307 interp->id_mutex = PyThread_allocate_lock();
308 if (interp->id_mutex == NULL) {
309 PyErr_SetString(PyExc_RuntimeError,
310 "failed to create init interpreter ID mutex");
311 return -1;
312 }
313 interp->id_refcount = 0;
314 return 0;
315}
316
317
318void
319_PyInterpreterState_IDIncref(PyInterpreterState *interp)
320{
321 if (interp->id_mutex == NULL) {
322 return;
323 }
324 PyThread_acquire_lock(interp->id_mutex, WAIT_LOCK);
325 interp->id_refcount += 1;
326 PyThread_release_lock(interp->id_mutex);
327}
328
329
330void
331_PyInterpreterState_IDDecref(PyInterpreterState *interp)
332{
333 if (interp->id_mutex == NULL) {
334 return;
335 }
336 PyThread_acquire_lock(interp->id_mutex, WAIT_LOCK);
337 assert(interp->id_refcount != 0);
338 interp->id_refcount -= 1;
339 int64_t refcount = interp->id_refcount;
340 PyThread_release_lock(interp->id_mutex);
341
342 if (refcount == 0) {
Miss Islington (bot)eed3c7a2018-02-20 16:09:41 -0800343 // XXX Using the "head" thread isn't strictly correct.
344 PyThreadState *tstate = PyInterpreterState_ThreadHead(interp);
345 // XXX Possible GILState issues?
346 PyThreadState *save_tstate = PyThreadState_Swap(tstate);
Miss Islington (bot)3db05a32018-02-16 18:15:24 -0800347 Py_EndInterpreter(tstate);
348 PyThreadState_Swap(save_tstate);
349 }
350}
351
352
Michael W. Hudson019a78e2002-11-08 12:53:11 +0000353/* Default implementation for _PyThreadState_GetFrame */
354static struct _frame *
355threadstate_getframe(PyThreadState *self)
356{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000357 return self->frame;
Michael W. Hudson019a78e2002-11-08 12:53:11 +0000358}
359
Victor Stinner45b9be52010-03-03 23:28:07 +0000360static PyThreadState *
361new_threadstate(PyInterpreterState *interp, int init)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000362{
Victor Stinner1a7425f2013-07-07 16:25:15 +0200363 PyThreadState *tstate = (PyThreadState *)PyMem_RawMalloc(sizeof(PyThreadState));
Tim Peters84705582004-10-10 02:47:33 +0000364
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000365 if (_PyThreadState_GetFrame == NULL)
366 _PyThreadState_GetFrame = threadstate_getframe;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000367
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000368 if (tstate != NULL) {
369 tstate->interp = interp;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000370
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000371 tstate->frame = NULL;
372 tstate->recursion_depth = 0;
373 tstate->overflowed = 0;
374 tstate->recursion_critical = 0;
pdox18967932017-10-25 23:03:01 -0700375 tstate->stackcheck_counter = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000376 tstate->tracing = 0;
377 tstate->use_tracing = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000378 tstate->gilstate_counter = 0;
379 tstate->async_exc = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000380 tstate->thread_id = PyThread_get_thread_ident();
Guido van Rossuma027efa1997-05-05 20:56:21 +0000381
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000382 tstate->dict = NULL;
Guido van Rossumede04391998-04-10 20:18:25 +0000383
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000384 tstate->curexc_type = NULL;
385 tstate->curexc_value = NULL;
386 tstate->curexc_traceback = NULL;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000387
Mark Shannonae3087c2017-10-22 22:41:51 +0100388 tstate->exc_state.exc_type = NULL;
389 tstate->exc_state.exc_value = NULL;
390 tstate->exc_state.exc_traceback = NULL;
391 tstate->exc_state.previous_item = NULL;
392 tstate->exc_info = &tstate->exc_state;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000393
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000394 tstate->c_profilefunc = NULL;
395 tstate->c_tracefunc = NULL;
396 tstate->c_profileobj = NULL;
397 tstate->c_traceobj = NULL;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000398
Antoine Pitrou2b0218a2012-09-06 00:59:49 +0200399 tstate->trash_delete_nesting = 0;
400 tstate->trash_delete_later = NULL;
Antoine Pitrou7b476992013-09-07 23:38:37 +0200401 tstate->on_delete = NULL;
402 tstate->on_delete_data = NULL;
Antoine Pitrou2b0218a2012-09-06 00:59:49 +0200403
Nathaniel J. Smithfc2f4072018-01-21 06:44:07 -0800404 tstate->coroutine_origin_tracking_depth = 0;
405
Yury Selivanov75445082015-05-11 22:57:16 -0400406 tstate->coroutine_wrapper = NULL;
Yury Selivanovaab3c4a2015-06-02 18:43:51 -0400407 tstate->in_coroutine_wrapper = 0;
Yury Selivanov75445082015-05-11 22:57:16 -0400408
Yury Selivanoveb636452016-09-08 22:01:51 -0700409 tstate->async_gen_firstiter = NULL;
410 tstate->async_gen_finalizer = NULL;
411
Yury Selivanovf23746a2018-01-22 19:11:18 -0500412 tstate->context = NULL;
413 tstate->context_ver = 1;
414
415 tstate->id = ++interp->tstate_next_unique_id;
416
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000417 if (init)
418 _PyThreadState_Init(tstate);
Michael W. Hudson188d4362005-06-20 16:52:57 +0000419
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000420 HEAD_LOCK();
Charles-Francois Natalif28dfdd2013-05-08 21:09:52 +0200421 tstate->prev = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000422 tstate->next = interp->tstate_head;
Charles-Francois Natalif28dfdd2013-05-08 21:09:52 +0200423 if (tstate->next)
424 tstate->next->prev = tstate;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000425 interp->tstate_head = tstate;
426 HEAD_UNLOCK();
427 }
Guido van Rossum25ce5661997-08-02 03:10:38 +0000428
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000429 return tstate;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000430}
431
Victor Stinner45b9be52010-03-03 23:28:07 +0000432PyThreadState *
433PyThreadState_New(PyInterpreterState *interp)
434{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000435 return new_threadstate(interp, 1);
Victor Stinner45b9be52010-03-03 23:28:07 +0000436}
437
438PyThreadState *
439_PyThreadState_Prealloc(PyInterpreterState *interp)
440{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000441 return new_threadstate(interp, 0);
Victor Stinner45b9be52010-03-03 23:28:07 +0000442}
443
444void
445_PyThreadState_Init(PyThreadState *tstate)
446{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000447 _PyGILState_NoteThreadState(tstate);
Victor Stinner45b9be52010-03-03 23:28:07 +0000448}
449
Martin v. Löwis1a214512008-06-11 05:26:20 +0000450PyObject*
Martin v. Löwis7800f752012-06-22 12:20:55 +0200451PyState_FindModule(struct PyModuleDef* module)
Martin v. Löwis1a214512008-06-11 05:26:20 +0000452{
Martin v. Löwis7800f752012-06-22 12:20:55 +0200453 Py_ssize_t index = module->m_base.m_index;
Victor Stinnerb02ef712016-01-22 14:09:55 +0100454 PyInterpreterState *state = GET_INTERP_STATE();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000455 PyObject *res;
Nick Coghland5cacbb2015-05-23 22:24:10 +1000456 if (module->m_slots) {
457 return NULL;
458 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000459 if (index == 0)
460 return NULL;
461 if (state->modules_by_index == NULL)
462 return NULL;
Antoine Pitrou75506e82012-08-20 19:30:46 +0200463 if (index >= PyList_GET_SIZE(state->modules_by_index))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000464 return NULL;
465 res = PyList_GET_ITEM(state->modules_by_index, index);
466 return res==Py_None ? NULL : res;
Martin v. Löwis1a214512008-06-11 05:26:20 +0000467}
468
469int
470_PyState_AddModule(PyObject* module, struct PyModuleDef* def)
471{
Nick Coghland5cacbb2015-05-23 22:24:10 +1000472 PyInterpreterState *state;
Berker Peksag4b7b5652016-08-22 18:05:56 +0300473 if (!def) {
474 assert(PyErr_Occurred());
475 return -1;
476 }
Nick Coghland5cacbb2015-05-23 22:24:10 +1000477 if (def->m_slots) {
478 PyErr_SetString(PyExc_SystemError,
479 "PyState_AddModule called on module with slots");
480 return -1;
481 }
Victor Stinnerb02ef712016-01-22 14:09:55 +0100482 state = GET_INTERP_STATE();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000483 if (!state->modules_by_index) {
484 state->modules_by_index = PyList_New(0);
485 if (!state->modules_by_index)
486 return -1;
487 }
488 while(PyList_GET_SIZE(state->modules_by_index) <= def->m_base.m_index)
489 if (PyList_Append(state->modules_by_index, Py_None) < 0)
490 return -1;
491 Py_INCREF(module);
492 return PyList_SetItem(state->modules_by_index,
493 def->m_base.m_index, module);
Martin v. Löwis1a214512008-06-11 05:26:20 +0000494}
Guido van Rossuma027efa1997-05-05 20:56:21 +0000495
Martin v. Löwis7800f752012-06-22 12:20:55 +0200496int
497PyState_AddModule(PyObject* module, struct PyModuleDef* def)
498{
499 Py_ssize_t index;
Victor Stinnerb02ef712016-01-22 14:09:55 +0100500 PyInterpreterState *state = GET_INTERP_STATE();
Martin v. Löwis7800f752012-06-22 12:20:55 +0200501 if (!def) {
502 Py_FatalError("PyState_AddModule: Module Definition is NULL");
503 return -1;
504 }
505 index = def->m_base.m_index;
506 if (state->modules_by_index) {
507 if(PyList_GET_SIZE(state->modules_by_index) >= index) {
508 if(module == PyList_GET_ITEM(state->modules_by_index, index)) {
509 Py_FatalError("PyState_AddModule: Module already added!");
510 return -1;
511 }
512 }
513 }
514 return _PyState_AddModule(module, def);
515}
516
517int
518PyState_RemoveModule(struct PyModuleDef* def)
519{
Nick Coghland5cacbb2015-05-23 22:24:10 +1000520 PyInterpreterState *state;
Martin v. Löwis7800f752012-06-22 12:20:55 +0200521 Py_ssize_t index = def->m_base.m_index;
Nick Coghland5cacbb2015-05-23 22:24:10 +1000522 if (def->m_slots) {
523 PyErr_SetString(PyExc_SystemError,
524 "PyState_RemoveModule called on module with slots");
525 return -1;
526 }
Victor Stinnerb02ef712016-01-22 14:09:55 +0100527 state = GET_INTERP_STATE();
Martin v. Löwis7800f752012-06-22 12:20:55 +0200528 if (index == 0) {
529 Py_FatalError("PyState_RemoveModule: Module index invalid.");
530 return -1;
531 }
532 if (state->modules_by_index == NULL) {
533 Py_FatalError("PyState_RemoveModule: Interpreters module-list not acessible.");
534 return -1;
535 }
536 if (index > PyList_GET_SIZE(state->modules_by_index)) {
537 Py_FatalError("PyState_RemoveModule: Module index out of bounds.");
538 return -1;
539 }
540 return PyList_SetItem(state->modules_by_index, index, Py_None);
541}
542
Antoine Pitrou40322e62013-08-11 00:30:09 +0200543/* used by import.c:PyImport_Cleanup */
544void
545_PyState_ClearModules(void)
546{
Victor Stinnerb02ef712016-01-22 14:09:55 +0100547 PyInterpreterState *state = GET_INTERP_STATE();
Antoine Pitrou40322e62013-08-11 00:30:09 +0200548 if (state->modules_by_index) {
549 Py_ssize_t i;
550 for (i = 0; i < PyList_GET_SIZE(state->modules_by_index); i++) {
551 PyObject *m = PyList_GET_ITEM(state->modules_by_index, i);
552 if (PyModule_Check(m)) {
553 /* cleanup the saved copy of module dicts */
554 PyModuleDef *md = PyModule_GetDef(m);
555 if (md)
556 Py_CLEAR(md->m_base.m_copy);
557 }
558 }
559 /* Setting modules_by_index to NULL could be dangerous, so we
560 clear the list instead. */
561 if (PyList_SetSlice(state->modules_by_index,
562 0, PyList_GET_SIZE(state->modules_by_index),
563 NULL))
564 PyErr_WriteUnraisable(state->modules_by_index);
565 }
566}
567
Guido van Rossuma027efa1997-05-05 20:56:21 +0000568void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000569PyThreadState_Clear(PyThreadState *tstate)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000570{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000571 if (Py_VerboseFlag && tstate->frame != NULL)
572 fprintf(stderr,
573 "PyThreadState_Clear: warning: thread still has a frame\n");
Guido van Rossum25ce5661997-08-02 03:10:38 +0000574
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000575 Py_CLEAR(tstate->frame);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000576
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000577 Py_CLEAR(tstate->dict);
578 Py_CLEAR(tstate->async_exc);
Guido van Rossumede04391998-04-10 20:18:25 +0000579
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000580 Py_CLEAR(tstate->curexc_type);
581 Py_CLEAR(tstate->curexc_value);
582 Py_CLEAR(tstate->curexc_traceback);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000583
Mark Shannonae3087c2017-10-22 22:41:51 +0100584 Py_CLEAR(tstate->exc_state.exc_type);
585 Py_CLEAR(tstate->exc_state.exc_value);
586 Py_CLEAR(tstate->exc_state.exc_traceback);
Serhiy Storchakabdf42982017-10-26 16:59:40 +0300587
Mark Shannonae3087c2017-10-22 22:41:51 +0100588 /* The stack of exception states should contain just this thread. */
589 assert(tstate->exc_info->previous_item == NULL);
590 if (Py_VerboseFlag && tstate->exc_info != &tstate->exc_state) {
591 fprintf(stderr,
592 "PyThreadState_Clear: warning: thread still has a generator\n");
593 }
Guido van Rossum25ce5661997-08-02 03:10:38 +0000594
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000595 tstate->c_profilefunc = NULL;
596 tstate->c_tracefunc = NULL;
597 Py_CLEAR(tstate->c_profileobj);
598 Py_CLEAR(tstate->c_traceobj);
Yury Selivanov75445082015-05-11 22:57:16 -0400599
600 Py_CLEAR(tstate->coroutine_wrapper);
Yury Selivanoveb636452016-09-08 22:01:51 -0700601 Py_CLEAR(tstate->async_gen_firstiter);
602 Py_CLEAR(tstate->async_gen_finalizer);
Yury Selivanovf23746a2018-01-22 19:11:18 -0500603
604 Py_CLEAR(tstate->context);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000605}
606
607
Guido van Rossum29757862001-01-23 01:46:06 +0000608/* Common code for PyThreadState_Delete() and PyThreadState_DeleteCurrent() */
609static void
610tstate_delete_common(PyThreadState *tstate)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000611{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000612 PyInterpreterState *interp;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000613 if (tstate == NULL)
614 Py_FatalError("PyThreadState_Delete: NULL tstate");
615 interp = tstate->interp;
616 if (interp == NULL)
617 Py_FatalError("PyThreadState_Delete: NULL interp");
618 HEAD_LOCK();
Charles-Francois Natalif28dfdd2013-05-08 21:09:52 +0200619 if (tstate->prev)
620 tstate->prev->next = tstate->next;
621 else
622 interp->tstate_head = tstate->next;
623 if (tstate->next)
624 tstate->next->prev = tstate->prev;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000625 HEAD_UNLOCK();
Antoine Pitrou7b476992013-09-07 23:38:37 +0200626 if (tstate->on_delete != NULL) {
627 tstate->on_delete(tstate->on_delete_data);
628 }
Victor Stinner1a7425f2013-07-07 16:25:15 +0200629 PyMem_RawFree(tstate);
Guido van Rossuma027efa1997-05-05 20:56:21 +0000630}
631
632
Guido van Rossum29757862001-01-23 01:46:06 +0000633void
634PyThreadState_Delete(PyThreadState *tstate)
635{
Victor Stinnerb02ef712016-01-22 14:09:55 +0100636 if (tstate == GET_TSTATE())
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000637 Py_FatalError("PyThreadState_Delete: tstate is still current");
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600638 if (_PyRuntime.gilstate.autoInterpreterState &&
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900639 PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == tstate)
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600640 {
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900641 PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, NULL);
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600642 }
Christian Heimesb9dbc7d2013-07-01 23:42:28 +0200643 tstate_delete_common(tstate);
Guido van Rossum29757862001-01-23 01:46:06 +0000644}
645
646
Guido van Rossum29757862001-01-23 01:46:06 +0000647void
648PyThreadState_DeleteCurrent()
649{
Victor Stinnerb02ef712016-01-22 14:09:55 +0100650 PyThreadState *tstate = GET_TSTATE();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000651 if (tstate == NULL)
652 Py_FatalError(
653 "PyThreadState_DeleteCurrent: no current tstate");
Victor Stinner8a1be612016-03-14 22:07:55 +0100654 tstate_delete_common(tstate);
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600655 if (_PyRuntime.gilstate.autoInterpreterState &&
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900656 PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == tstate)
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600657 {
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900658 PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, NULL);
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600659 }
Victor Stinner8a1be612016-03-14 22:07:55 +0100660 SET_TSTATE(NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000661 PyEval_ReleaseLock();
Guido van Rossum29757862001-01-23 01:46:06 +0000662}
Guido van Rossum29757862001-01-23 01:46:06 +0000663
664
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200665/*
666 * Delete all thread states except the one passed as argument.
667 * Note that, if there is a current thread state, it *must* be the one
668 * passed as argument. Also, this won't touch any other interpreters
669 * than the current one, since we don't know which thread state should
670 * be kept in those other interpreteres.
671 */
672void
673_PyThreadState_DeleteExcept(PyThreadState *tstate)
674{
675 PyInterpreterState *interp = tstate->interp;
676 PyThreadState *p, *next, *garbage;
677 HEAD_LOCK();
678 /* Remove all thread states, except tstate, from the linked list of
679 thread states. This will allow calling PyThreadState_Clear()
Charles-Francois Natalif28dfdd2013-05-08 21:09:52 +0200680 without holding the lock. */
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200681 garbage = interp->tstate_head;
Charles-Francois Natalif28dfdd2013-05-08 21:09:52 +0200682 if (garbage == tstate)
683 garbage = tstate->next;
684 if (tstate->prev)
685 tstate->prev->next = tstate->next;
686 if (tstate->next)
687 tstate->next->prev = tstate->prev;
688 tstate->prev = tstate->next = NULL;
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200689 interp->tstate_head = tstate;
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200690 HEAD_UNLOCK();
691 /* Clear and deallocate all stale thread states. Even if this
692 executes Python code, we should be safe since it executes
693 in the current thread, not one of the stale threads. */
694 for (p = garbage; p; p = next) {
695 next = p->next;
696 PyThreadState_Clear(p);
Victor Stinner1a7425f2013-07-07 16:25:15 +0200697 PyMem_RawFree(p);
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200698 }
699}
700
701
Guido van Rossuma027efa1997-05-05 20:56:21 +0000702PyThreadState *
Victor Stinnerbfd316e2016-01-20 11:12:38 +0100703_PyThreadState_UncheckedGet(void)
704{
Victor Stinnerb02ef712016-01-22 14:09:55 +0100705 return GET_TSTATE();
Victor Stinnerbfd316e2016-01-20 11:12:38 +0100706}
707
708
709PyThreadState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000710PyThreadState_Get(void)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000711{
Victor Stinnerb02ef712016-01-22 14:09:55 +0100712 PyThreadState *tstate = GET_TSTATE();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000713 if (tstate == NULL)
714 Py_FatalError("PyThreadState_Get: no current thread");
Guido van Rossum25ce5661997-08-02 03:10:38 +0000715
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000716 return tstate;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000717}
718
719
720PyThreadState *
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000721PyThreadState_Swap(PyThreadState *newts)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000722{
Victor Stinnerb02ef712016-01-22 14:09:55 +0100723 PyThreadState *oldts = GET_TSTATE();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000724
Victor Stinnerb02ef712016-01-22 14:09:55 +0100725 SET_TSTATE(newts);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000726 /* It should not be possible for more than one thread state
727 to be used for a thread. Check this the best we can in debug
728 builds.
729 */
Antoine Pitroua6a4dc82017-09-07 18:56:24 +0200730#if defined(Py_DEBUG)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000731 if (newts) {
732 /* This can be called from PyEval_RestoreThread(). Similar
733 to it, we need to ensure errno doesn't change.
734 */
735 int err = errno;
736 PyThreadState *check = PyGILState_GetThisThreadState();
737 if (check && check->interp == newts->interp && check != newts)
738 Py_FatalError("Invalid thread state for this thread");
739 errno = err;
740 }
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000741#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000742 return oldts;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000743}
Guido van Rossumede04391998-04-10 20:18:25 +0000744
745/* An extension mechanism to store arbitrary additional per-thread state.
746 PyThreadState_GetDict() returns a dictionary that can be used to hold such
747 state; the caller should pick a unique key and store its state there. If
Guido van Rossum0fc8f002003-04-15 15:12:39 +0000748 PyThreadState_GetDict() returns NULL, an exception has *not* been raised
749 and the caller should assume no per-thread state is available. */
Guido van Rossumede04391998-04-10 20:18:25 +0000750
751PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000752PyThreadState_GetDict(void)
Guido van Rossumede04391998-04-10 20:18:25 +0000753{
Victor Stinnerb02ef712016-01-22 14:09:55 +0100754 PyThreadState *tstate = GET_TSTATE();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000755 if (tstate == NULL)
756 return NULL;
Guido van Rossumede04391998-04-10 20:18:25 +0000757
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000758 if (tstate->dict == NULL) {
759 PyObject *d;
760 tstate->dict = d = PyDict_New();
761 if (d == NULL)
762 PyErr_Clear();
763 }
764 return tstate->dict;
Guido van Rossumede04391998-04-10 20:18:25 +0000765}
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000766
767
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +0000768/* Asynchronously raise an exception in a thread.
769 Requested by Just van Rossum and Alex Martelli.
Guido van Rossum0f1f63c2005-02-08 02:07:57 +0000770 To prevent naive misuse, you must write your own extension
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000771 to call this, or use ctypes. Must be called with the GIL held.
772 Returns the number of tstates modified (normally 1, but 0 if `id` didn't
773 match any known thread id). Can be called with exc=NULL to clear an
774 existing async exception. This raises no exceptions. */
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +0000775
776int
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200777PyThreadState_SetAsyncExc(unsigned long id, PyObject *exc)
778{
Victor Stinnerb02ef712016-01-22 14:09:55 +0100779 PyInterpreterState *interp = GET_INTERP_STATE();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000780 PyThreadState *p;
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000781
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000782 /* Although the GIL is held, a few C API functions can be called
783 * without the GIL held, and in particular some that create and
784 * destroy thread and interpreter states. Those can mutate the
785 * list of thread states we're traversing, so to prevent that we lock
786 * head_mutex for the duration.
787 */
788 HEAD_LOCK();
789 for (p = interp->tstate_head; p != NULL; p = p->next) {
790 if (p->thread_id == id) {
791 /* Tricky: we need to decref the current value
792 * (if any) in p->async_exc, but that can in turn
793 * allow arbitrary Python code to run, including
794 * perhaps calls to this function. To prevent
795 * deadlock, we need to release head_mutex before
796 * the decref.
797 */
798 PyObject *old_exc = p->async_exc;
799 Py_XINCREF(exc);
800 p->async_exc = exc;
801 HEAD_UNLOCK();
802 Py_XDECREF(old_exc);
803 _PyEval_SignalAsyncExc();
804 return 1;
805 }
806 }
807 HEAD_UNLOCK();
808 return 0;
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +0000809}
810
811
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000812/* Routines for advanced debuggers, requested by David Beazley.
813 Don't use unless you know what you are doing! */
814
815PyInterpreterState *
816PyInterpreterState_Head(void)
817{
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600818 return _PyRuntime.interpreters.head;
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000819}
820
821PyInterpreterState *
Eric Snow6b4be192017-05-22 21:36:03 -0700822PyInterpreterState_Main(void)
823{
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600824 return _PyRuntime.interpreters.main;
Eric Snow6b4be192017-05-22 21:36:03 -0700825}
826
827PyInterpreterState *
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000828PyInterpreterState_Next(PyInterpreterState *interp) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000829 return interp->next;
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000830}
831
832PyThreadState *
833PyInterpreterState_ThreadHead(PyInterpreterState *interp) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000834 return interp->tstate_head;
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000835}
836
837PyThreadState *
838PyThreadState_Next(PyThreadState *tstate) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000839 return tstate->next;
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000840}
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000841
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000842/* The implementation of sys._current_frames(). This is intended to be
843 called with the GIL held, as it will be when called via
844 sys._current_frames(). It's possible it would work fine even without
845 the GIL held, but haven't thought enough about that.
846*/
847PyObject *
848_PyThread_CurrentFrames(void)
849{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000850 PyObject *result;
851 PyInterpreterState *i;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000852
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000853 result = PyDict_New();
854 if (result == NULL)
855 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000856
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000857 /* for i in all interpreters:
858 * for t in all of i's thread states:
859 * if t's frame isn't NULL, map t's id to its frame
Ezio Melotti13925002011-03-16 11:05:33 +0200860 * Because these lists can mutate even when the GIL is held, we
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000861 * need to grab head_mutex for the duration.
862 */
863 HEAD_LOCK();
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600864 for (i = _PyRuntime.interpreters.head; i != NULL; i = i->next) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000865 PyThreadState *t;
866 for (t = i->tstate_head; t != NULL; t = t->next) {
867 PyObject *id;
868 int stat;
869 struct _frame *frame = t->frame;
870 if (frame == NULL)
871 continue;
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200872 id = PyLong_FromUnsignedLong(t->thread_id);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000873 if (id == NULL)
874 goto Fail;
875 stat = PyDict_SetItem(result, id, (PyObject *)frame);
876 Py_DECREF(id);
877 if (stat < 0)
878 goto Fail;
879 }
880 }
881 HEAD_UNLOCK();
882 return result;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000883
884 Fail:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000885 HEAD_UNLOCK();
886 Py_DECREF(result);
887 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000888}
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +0000889
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000890/* Python "auto thread state" API. */
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000891
892/* Keep this as a static, as it is not reliable! It can only
893 ever be compared to the state for the *current* thread.
894 * If not equal, then it doesn't matter that the actual
895 value may change immediately after comparison, as it can't
896 possibly change to the current thread's state.
897 * If equal, then the current thread holds the lock, so the value can't
898 change until we yield the lock.
899*/
900static int
901PyThreadState_IsCurrent(PyThreadState *tstate)
902{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000903 /* Must be the tstate for this thread */
904 assert(PyGILState_GetThisThreadState()==tstate);
Victor Stinnerb02ef712016-01-22 14:09:55 +0100905 return tstate == GET_TSTATE();
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000906}
907
Tim Peters4c1f5ec2004-10-09 17:25:05 +0000908/* Internal initialization/finalization functions called by
Martin Panterb4ce1fc2015-11-30 03:18:29 +0000909 Py_Initialize/Py_FinalizeEx
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000910*/
Tim Peters19717fa2004-10-09 17:38:29 +0000911void
912_PyGILState_Init(PyInterpreterState *i, PyThreadState *t)
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000913{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000914 assert(i && t); /* must init with valid states */
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900915 if (PyThread_tss_create(&_PyRuntime.gilstate.autoTSSkey) != 0) {
916 Py_FatalError("Could not allocate TSS entry");
917 }
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600918 _PyRuntime.gilstate.autoInterpreterState = i;
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900919 assert(PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000920 assert(t->gilstate_counter == 0);
Michael W. Hudson188d4362005-06-20 16:52:57 +0000921
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000922 _PyGILState_NoteThreadState(t);
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000923}
924
Victor Stinner861d9ab2016-03-16 22:45:24 +0100925PyInterpreterState *
926_PyGILState_GetInterpreterStateUnsafe(void)
927{
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600928 return _PyRuntime.gilstate.autoInterpreterState;
Victor Stinner861d9ab2016-03-16 22:45:24 +0100929}
930
Tim Peters19717fa2004-10-09 17:38:29 +0000931void
932_PyGILState_Fini(void)
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000933{
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900934 PyThread_tss_delete(&_PyRuntime.gilstate.autoTSSkey);
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600935 _PyRuntime.gilstate.autoInterpreterState = NULL;
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000936}
937
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900938/* Reset the TSS key - called by PyOS_AfterFork_Child().
Antoine Pitrou0c759fe2011-04-27 19:28:05 +0200939 * This should not be necessary, but some - buggy - pthread implementations
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900940 * don't reset TSS upon fork(), see issue #10517.
Antoine Pitrou0c759fe2011-04-27 19:28:05 +0200941 */
942void
943_PyGILState_Reinit(void)
944{
Miss Islington (bot)31e2b762018-03-06 05:52:27 -0800945 /* Force default allocator, since _PyRuntimeState_Fini() must
946 use the same allocator than this function. */
947 PyMemAllocatorEx old_alloc;
948 _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
949
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600950 _PyRuntime.interpreters.mutex = PyThread_allocate_lock();
Miss Islington (bot)31e2b762018-03-06 05:52:27 -0800951
952 PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
953
954 if (_PyRuntime.interpreters.mutex == NULL) {
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600955 Py_FatalError("Can't initialize threads for interpreter");
Miss Islington (bot)31e2b762018-03-06 05:52:27 -0800956 }
957
Antoine Pitrou0c759fe2011-04-27 19:28:05 +0200958 PyThreadState *tstate = PyGILState_GetThisThreadState();
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900959 PyThread_tss_delete(&_PyRuntime.gilstate.autoTSSkey);
960 if (PyThread_tss_create(&_PyRuntime.gilstate.autoTSSkey) != 0) {
961 Py_FatalError("Could not allocate TSS entry");
962 }
Antoine Pitrou0c759fe2011-04-27 19:28:05 +0200963
Charles-François Natalia233df82011-11-22 19:49:51 +0100964 /* If the thread had an associated auto thread state, reassociate it with
965 * the new key. */
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900966 if (tstate &&
967 PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, (void *)tstate) != 0)
968 {
969 Py_FatalError("Couldn't create autoTSSkey mapping");
970 }
Antoine Pitrou0c759fe2011-04-27 19:28:05 +0200971}
972
Michael W. Hudson188d4362005-06-20 16:52:57 +0000973/* When a thread state is created for a thread by some mechanism other than
974 PyGILState_Ensure, it's important that the GILState machinery knows about
975 it so it doesn't try to create another thread state for the thread (this is
976 a better fix for SF bug #1010677 than the first one attempted).
977*/
Thomas Wouters89f507f2006-12-13 04:49:30 +0000978static void
Michael W. Hudson188d4362005-06-20 16:52:57 +0000979_PyGILState_NoteThreadState(PyThreadState* tstate)
980{
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900981 /* If autoTSSkey isn't initialized, this must be the very first
Antoine Pitrou079ce542010-09-08 12:37:10 +0000982 threadstate created in Py_Initialize(). Don't do anything for now
983 (we'll be back here when _PyGILState_Init is called). */
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600984 if (!_PyRuntime.gilstate.autoInterpreterState)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000985 return;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000986
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900987 /* Stick the thread state for this thread in thread specific storage.
Michael W. Hudson188d4362005-06-20 16:52:57 +0000988
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000989 The only situation where you can legitimately have more than one
990 thread state for an OS level thread is when there are multiple
Victor Stinner590cebe2013-12-13 11:08:56 +0100991 interpreters.
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000992
Victor Stinner590cebe2013-12-13 11:08:56 +0100993 You shouldn't really be using the PyGILState_ APIs anyway (see issues
994 #10915 and #15751).
Michael W. Hudson188d4362005-06-20 16:52:57 +0000995
Victor Stinner590cebe2013-12-13 11:08:56 +0100996 The first thread state created for that given OS level thread will
997 "win", which seems reasonable behaviour.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000998 */
Masayuki Yamamoto731e1892017-10-06 19:41:34 +0900999 if (PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == NULL) {
1000 if ((PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, (void *)tstate)
1001 ) != 0)
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001002 {
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001003 Py_FatalError("Couldn't create autoTSSkey mapping");
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001004 }
Victor Stinner590cebe2013-12-13 11:08:56 +01001005 }
Michael W. Hudson188d4362005-06-20 16:52:57 +00001006
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001007 /* PyGILState_Release must not try to delete this thread state. */
1008 tstate->gilstate_counter = 1;
Michael W. Hudson188d4362005-06-20 16:52:57 +00001009}
1010
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001011/* The public functions */
Tim Peters19717fa2004-10-09 17:38:29 +00001012PyThreadState *
1013PyGILState_GetThisThreadState(void)
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001014{
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001015 if (_PyRuntime.gilstate.autoInterpreterState == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001016 return NULL;
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001017 return (PyThreadState *)PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey);
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001018}
1019
Kristján Valur Jónsson684cd0e2013-03-23 03:36:16 -07001020int
1021PyGILState_Check(void)
1022{
Victor Stinner8a1be612016-03-14 22:07:55 +01001023 PyThreadState *tstate;
1024
1025 if (!_PyGILState_check_enabled)
1026 return 1;
1027
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001028 if (!PyThread_tss_is_created(&_PyRuntime.gilstate.autoTSSkey)) {
Victor Stinner8a1be612016-03-14 22:07:55 +01001029 return 1;
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001030 }
Victor Stinner8a1be612016-03-14 22:07:55 +01001031
1032 tstate = GET_TSTATE();
1033 if (tstate == NULL)
1034 return 0;
1035
1036 return (tstate == PyGILState_GetThisThreadState());
Kristján Valur Jónsson684cd0e2013-03-23 03:36:16 -07001037}
1038
Tim Peters19717fa2004-10-09 17:38:29 +00001039PyGILState_STATE
1040PyGILState_Ensure(void)
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001041{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001042 int current;
1043 PyThreadState *tcur;
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001044 int need_init_threads = 0;
1045
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001046 /* Note that we do not auto-init Python here - apart from
1047 potential races with 2 threads auto-initializing, pep-311
1048 spells out other issues. Embedders are expected to have
1049 called Py_Initialize() and usually PyEval_InitThreads().
1050 */
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001051 /* Py_Initialize() hasn't been called! */
1052 assert(_PyRuntime.gilstate.autoInterpreterState);
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001053
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001054 tcur = (PyThreadState *)PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001055 if (tcur == NULL) {
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001056 need_init_threads = 1;
Victor Stinner62ca1002013-12-13 01:46:43 +01001057
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001058 /* Create a new thread state for this thread */
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001059 tcur = PyThreadState_New(_PyRuntime.gilstate.autoInterpreterState);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001060 if (tcur == NULL)
1061 Py_FatalError("Couldn't create thread-state for new thread");
1062 /* This is our thread state! We'll need to delete it in the
1063 matching call to PyGILState_Release(). */
1064 tcur->gilstate_counter = 0;
1065 current = 0; /* new thread state is never current */
1066 }
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001067 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001068 current = PyThreadState_IsCurrent(tcur);
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001069 }
1070
1071 if (current == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001072 PyEval_RestoreThread(tcur);
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001073 }
1074
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001075 /* Update our counter in the thread-state - no need for locks:
1076 - tcur will remain valid as we hold the GIL.
1077 - the counter is safe as we are the only thread "allowed"
1078 to modify this value
1079 */
1080 ++tcur->gilstate_counter;
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001081
1082 if (need_init_threads) {
1083 /* At startup, Python has no concrete GIL. If PyGILState_Ensure() is
1084 called from a new thread for the first time, we need the create the
1085 GIL. */
1086 PyEval_InitThreads();
1087 }
1088
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001089 return current ? PyGILState_LOCKED : PyGILState_UNLOCKED;
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001090}
1091
Tim Peters19717fa2004-10-09 17:38:29 +00001092void
1093PyGILState_Release(PyGILState_STATE oldstate)
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001094{
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001095 PyThreadState *tcur = (PyThreadState *)PyThread_tss_get(
1096 &_PyRuntime.gilstate.autoTSSkey);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001097 if (tcur == NULL)
1098 Py_FatalError("auto-releasing thread-state, "
1099 "but no thread-state for this thread");
1100 /* We must hold the GIL and have our thread state current */
1101 /* XXX - remove the check - the assert should be fine,
1102 but while this is very new (April 2003), the extra check
1103 by release-only users can't hurt.
1104 */
1105 if (! PyThreadState_IsCurrent(tcur))
1106 Py_FatalError("This thread state must be current when releasing");
1107 assert(PyThreadState_IsCurrent(tcur));
1108 --tcur->gilstate_counter;
1109 assert(tcur->gilstate_counter >= 0); /* illegal counter value */
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001110
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001111 /* If we're going to destroy this thread-state, we must
1112 * clear it while the GIL is held, as destructors may run.
1113 */
1114 if (tcur->gilstate_counter == 0) {
1115 /* can't have been locked when we created it */
1116 assert(oldstate == PyGILState_UNLOCKED);
1117 PyThreadState_Clear(tcur);
1118 /* Delete the thread-state. Note this releases the GIL too!
1119 * It's vital that the GIL be held here, to avoid shutdown
1120 * races; see bugs 225673 and 1061968 (that nasty bug has a
1121 * habit of coming back).
1122 */
1123 PyThreadState_DeleteCurrent();
1124 }
1125 /* Release the lock if necessary */
1126 else if (oldstate == PyGILState_UNLOCKED)
1127 PyEval_SaveThread();
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001128}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001129
Benjamin Peterson3bf01752012-04-13 18:06:36 -04001130
Eric Snow7f8bfc92018-01-29 18:23:44 -07001131/**************************/
1132/* cross-interpreter data */
1133/**************************/
1134
1135/* cross-interpreter data */
1136
1137crossinterpdatafunc _PyCrossInterpreterData_Lookup(PyObject *);
1138
1139/* This is a separate func from _PyCrossInterpreterData_Lookup in order
1140 to keep the registry code separate. */
1141static crossinterpdatafunc
1142_lookup_getdata(PyObject *obj)
1143{
1144 crossinterpdatafunc getdata = _PyCrossInterpreterData_Lookup(obj);
1145 if (getdata == NULL && PyErr_Occurred() == 0)
1146 PyErr_Format(PyExc_ValueError,
1147 "%S does not support cross-interpreter data", obj);
1148 return getdata;
1149}
1150
1151int
1152_PyObject_CheckCrossInterpreterData(PyObject *obj)
1153{
1154 crossinterpdatafunc getdata = _lookup_getdata(obj);
1155 if (getdata == NULL) {
1156 return -1;
1157 }
1158 return 0;
1159}
1160
1161static int
1162_check_xidata(_PyCrossInterpreterData *data)
1163{
1164 // data->data can be anything, including NULL, so we don't check it.
1165
1166 // data->obj may be NULL, so we don't check it.
1167
1168 if (data->interp < 0) {
1169 PyErr_SetString(PyExc_SystemError, "missing interp");
1170 return -1;
1171 }
1172
1173 if (data->new_object == NULL) {
1174 PyErr_SetString(PyExc_SystemError, "missing new_object func");
1175 return -1;
1176 }
1177
1178 // data->free may be NULL, so we don't check it.
1179
1180 return 0;
1181}
1182
1183int
1184_PyObject_GetCrossInterpreterData(PyObject *obj, _PyCrossInterpreterData *data)
1185{
1186 PyThreadState *tstate = PyThreadState_Get();
1187 // PyThreadState_Get() aborts if lookup fails, so we don't need
1188 // to check the result for NULL.
1189 PyInterpreterState *interp = tstate->interp;
1190
1191 // Reset data before re-populating.
1192 *data = (_PyCrossInterpreterData){0};
1193 data->free = PyMem_RawFree; // Set a default that may be overridden.
1194
1195 // Call the "getdata" func for the object.
1196 Py_INCREF(obj);
1197 crossinterpdatafunc getdata = _lookup_getdata(obj);
1198 if (getdata == NULL) {
1199 Py_DECREF(obj);
1200 return -1;
1201 }
1202 int res = getdata(obj, data);
1203 Py_DECREF(obj);
1204 if (res != 0) {
1205 return -1;
1206 }
1207
1208 // Fill in the blanks and validate the result.
1209 Py_XINCREF(data->obj);
1210 data->interp = interp->id;
1211 if (_check_xidata(data) != 0) {
1212 _PyCrossInterpreterData_Release(data);
1213 return -1;
1214 }
1215
1216 return 0;
1217}
1218
1219void
1220_PyCrossInterpreterData_Release(_PyCrossInterpreterData *data)
1221{
1222 if (data->data == NULL && data->obj == NULL) {
1223 // Nothing to release!
1224 return;
1225 }
1226
1227 // Switch to the original interpreter.
1228 PyInterpreterState *interp = _PyInterpreterState_LookUpID(data->interp);
1229 if (interp == NULL) {
1230 // The intepreter was already destroyed.
1231 if (data->free != NULL) {
1232 // XXX Someone leaked some memory...
1233 }
1234 return;
1235 }
Miss Islington (bot)eed3c7a2018-02-20 16:09:41 -08001236
1237 PyThreadState *save_tstate = NULL;
1238 if (interp != PyThreadState_Get()->interp) {
1239 // XXX Using the "head" thread isn't strictly correct.
1240 PyThreadState *tstate = PyInterpreterState_ThreadHead(interp);
1241 // XXX Possible GILState issues?
1242 save_tstate = PyThreadState_Swap(tstate);
1243 }
Eric Snow7f8bfc92018-01-29 18:23:44 -07001244
1245 // "Release" the data and/or the object.
1246 if (data->free != NULL) {
1247 data->free(data->data);
1248 }
1249 Py_XDECREF(data->obj);
1250
1251 // Switch back.
Miss Islington (bot)eed3c7a2018-02-20 16:09:41 -08001252 if (save_tstate != NULL) {
Eric Snow7f8bfc92018-01-29 18:23:44 -07001253 PyThreadState_Swap(save_tstate);
Miss Islington (bot)eed3c7a2018-02-20 16:09:41 -08001254 }
Eric Snow7f8bfc92018-01-29 18:23:44 -07001255}
1256
1257PyObject *
1258_PyCrossInterpreterData_NewObject(_PyCrossInterpreterData *data)
1259{
1260 return data->new_object(data);
1261}
1262
1263/* registry of {type -> crossinterpdatafunc} */
1264
1265/* For now we use a global registry of shareable classes. An
1266 alternative would be to add a tp_* slot for a class's
1267 crossinterpdatafunc. It would be simpler and more efficient. */
1268
1269static int
1270_register_xidata(PyTypeObject *cls, crossinterpdatafunc getdata)
1271{
1272 // Note that we effectively replace already registered classes
1273 // rather than failing.
1274 struct _xidregitem *newhead = PyMem_RawMalloc(sizeof(struct _xidregitem));
1275 if (newhead == NULL)
1276 return -1;
1277 newhead->cls = cls;
1278 newhead->getdata = getdata;
1279 newhead->next = _PyRuntime.xidregistry.head;
1280 _PyRuntime.xidregistry.head = newhead;
1281 return 0;
1282}
1283
1284static void _register_builtins_for_crossinterpreter_data(void);
1285
1286int
1287_PyCrossInterpreterData_Register_Class(PyTypeObject *cls,
1288 crossinterpdatafunc getdata)
1289{
1290 if (!PyType_Check(cls)) {
1291 PyErr_Format(PyExc_ValueError, "only classes may be registered");
1292 return -1;
1293 }
1294 if (getdata == NULL) {
1295 PyErr_Format(PyExc_ValueError, "missing 'getdata' func");
1296 return -1;
1297 }
1298
1299 // Make sure the class isn't ever deallocated.
1300 Py_INCREF((PyObject *)cls);
1301
1302 PyThread_acquire_lock(_PyRuntime.xidregistry.mutex, WAIT_LOCK);
1303 if (_PyRuntime.xidregistry.head == NULL) {
1304 _register_builtins_for_crossinterpreter_data();
1305 }
1306 int res = _register_xidata(cls, getdata);
1307 PyThread_release_lock(_PyRuntime.xidregistry.mutex);
1308 return res;
1309}
1310
1311crossinterpdatafunc
1312_PyCrossInterpreterData_Lookup(PyObject *obj)
1313{
1314 PyObject *cls = PyObject_Type(obj);
1315 crossinterpdatafunc getdata = NULL;
1316 PyThread_acquire_lock(_PyRuntime.xidregistry.mutex, WAIT_LOCK);
1317 struct _xidregitem *cur = _PyRuntime.xidregistry.head;
1318 if (cur == NULL) {
1319 _register_builtins_for_crossinterpreter_data();
1320 cur = _PyRuntime.xidregistry.head;
1321 }
1322 for(; cur != NULL; cur = cur->next) {
1323 if (cur->cls == (PyTypeObject *)cls) {
1324 getdata = cur->getdata;
1325 break;
1326 }
1327 }
Miss Islington (bot)f33eced2018-02-02 21:38:57 -08001328 Py_DECREF(cls);
Eric Snow7f8bfc92018-01-29 18:23:44 -07001329 PyThread_release_lock(_PyRuntime.xidregistry.mutex);
1330 return getdata;
1331}
1332
1333/* cross-interpreter data for builtin types */
1334
1335static PyObject *
1336_new_bytes_object(_PyCrossInterpreterData *data)
1337{
1338 return PyBytes_FromString((char *)(data->data));
1339}
1340
1341static int
1342_bytes_shared(PyObject *obj, _PyCrossInterpreterData *data)
1343{
1344 data->data = (void *)(PyBytes_AS_STRING(obj));
1345 data->obj = obj; // Will be "released" (decref'ed) when data released.
1346 data->new_object = _new_bytes_object;
1347 data->free = NULL; // Do not free the data (it belongs to the object).
1348 return 0;
1349}
1350
1351static PyObject *
1352_new_none_object(_PyCrossInterpreterData *data)
1353{
1354 // XXX Singleton refcounts are problematic across interpreters...
1355 Py_INCREF(Py_None);
1356 return Py_None;
1357}
1358
1359static int
1360_none_shared(PyObject *obj, _PyCrossInterpreterData *data)
1361{
1362 data->data = NULL;
1363 // data->obj remains NULL
1364 data->new_object = _new_none_object;
1365 data->free = NULL; // There is nothing to free.
1366 return 0;
1367}
1368
1369static void
1370_register_builtins_for_crossinterpreter_data(void)
1371{
1372 // None
1373 if (_register_xidata((PyTypeObject *)PyObject_Type(Py_None), _none_shared) != 0) {
1374 Py_FatalError("could not register None for cross-interpreter sharing");
1375 }
1376
1377 // bytes
1378 if (_register_xidata(&PyBytes_Type, _bytes_shared) != 0) {
1379 Py_FatalError("could not register bytes for cross-interpreter sharing");
1380 }
1381}
1382
1383
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001384#ifdef __cplusplus
1385}
1386#endif