blob: a926e9753cb491f3c76b16a65bb217d8ee365d9b [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"
Victor Stinner09532fe2019-05-10 23:39:09 +02005#include "pycore_ceval.h"
Victor Stinner331a6a52019-05-27 16:39:22 +02006#include "pycore_initconfig.h"
Victor Stinner621cebe2018-11-12 16:53:38 +01007#include "pycore_pymem.h"
8#include "pycore_pystate.h"
Eric Snow86ea5812019-05-10 13:29:55 -04009#include "pycore_pylifecycle.h"
Guido van Rossuma027efa1997-05-05 20:56:21 +000010
Tim Peters84705582004-10-10 02:47:33 +000011/* --------------------------------------------------------------------------
12CAUTION
13
Victor Stinner1a7425f2013-07-07 16:25:15 +020014Always use PyMem_RawMalloc() and PyMem_RawFree() directly in this file. A
15number of these functions are advertised as safe to call when the GIL isn't
16held, and in a debug build Python redirects (e.g.) PyMem_NEW (etc) to Python's
17debugging obmalloc functions. Those aren't thread-safe (they rely on the GIL
18to avoid the expense of doing their own locking).
Tim Peters84705582004-10-10 02:47:33 +000019-------------------------------------------------------------------------- */
20
Martin v. Löwisf0473d52001-07-18 16:17:16 +000021#ifdef HAVE_DLOPEN
22#ifdef HAVE_DLFCN_H
23#include <dlfcn.h>
24#endif
Serhiy Storchakac2f7d872016-05-04 09:44:44 +030025#if !HAVE_DECL_RTLD_LAZY
Martin v. Löwisf0473d52001-07-18 16:17:16 +000026#define RTLD_LAZY 1
27#endif
28#endif
29
Benjamin Peterson43162b82012-04-13 11:58:27 -040030#ifdef __cplusplus
31extern "C" {
32#endif
Martin v. Löwisf0473d52001-07-18 16:17:16 +000033
Victor Stinner10c8e6a2019-04-26 01:53:18 +020034#define _PyRuntimeGILState_GetThreadState(gilstate) \
35 ((PyThreadState*)_Py_atomic_load_relaxed(&(gilstate)->tstate_current))
36#define _PyRuntimeGILState_SetThreadState(gilstate, value) \
37 _Py_atomic_store_relaxed(&(gilstate)->tstate_current, \
38 (uintptr_t)(value))
39
40/* Forward declarations */
41static PyThreadState *_PyGILState_GetThisThreadState(struct _gilstate_runtime_state *gilstate);
Victor Stinner9da74302019-11-20 11:17:17 +010042static void _PyThreadState_Delete(PyThreadState *tstate, int check_current);
Victor Stinner10c8e6a2019-04-26 01:53:18 +020043
44
Victor Stinner331a6a52019-05-27 16:39:22 +020045static PyStatus
Victor Stinner5d39e042017-11-29 17:20:38 +010046_PyRuntimeState_Init_impl(_PyRuntimeState *runtime)
Eric Snow2ebc5ce2017-09-07 23:51:28 -060047{
Steve Dowerb82e17e2019-05-23 08:45:22 -070048 /* We preserve the hook across init, because there is
49 currently no public API to set it between runtime
50 initialization and interpreter initialization. */
51 void *open_code_hook = runtime->open_code_hook;
52 void *open_code_userdata = runtime->open_code_userdata;
53 _Py_AuditHookEntry *audit_hook_head = runtime->audit_hook_head;
54
Eric Snow2ebc5ce2017-09-07 23:51:28 -060055 memset(runtime, 0, sizeof(*runtime));
Victor Stinner8a1be612016-03-14 22:07:55 +010056
Steve Dowerb82e17e2019-05-23 08:45:22 -070057 runtime->open_code_hook = open_code_hook;
58 runtime->open_code_userdata = open_code_userdata;
59 runtime->audit_hook_head = audit_hook_head;
60
Eric Snow2ebc5ce2017-09-07 23:51:28 -060061 _PyEval_Initialize(&runtime->ceval);
Victor Stinner441b10c2019-09-28 04:28:35 +020062
Victor Stinner3c30a762019-10-01 10:56:37 +020063 PyPreConfig_InitPythonConfig(&runtime->preconfig);
Michael W. Hudson188d4362005-06-20 16:52:57 +000064
Eric Snow2ebc5ce2017-09-07 23:51:28 -060065 runtime->gilstate.check_enabled = 1;
Victor Stinnerf7e5b562017-11-15 15:48:08 -080066
Masayuki Yamamoto731e1892017-10-06 19:41:34 +090067 /* A TSS key must be initialized with Py_tss_NEEDS_INIT
68 in accordance with the specification. */
Victor Stinnerf7e5b562017-11-15 15:48:08 -080069 Py_tss_t initial = Py_tss_NEEDS_INIT;
70 runtime->gilstate.autoTSSkey = initial;
Guido van Rossum1d5ad901999-06-18 14:22:24 +000071
Eric Snow2ebc5ce2017-09-07 23:51:28 -060072 runtime->interpreters.mutex = PyThread_allocate_lock();
Victor Stinnerf7e5b562017-11-15 15:48:08 -080073 if (runtime->interpreters.mutex == NULL) {
Victor Stinner331a6a52019-05-27 16:39:22 +020074 return _PyStatus_ERR("Can't initialize threads for interpreter");
Victor Stinnerf7e5b562017-11-15 15:48:08 -080075 }
Eric Snow2ebc5ce2017-09-07 23:51:28 -060076 runtime->interpreters.next_id = -1;
Eric Snow7f8bfc92018-01-29 18:23:44 -070077
78 runtime->xidregistry.mutex = PyThread_allocate_lock();
79 if (runtime->xidregistry.mutex == NULL) {
Victor Stinner331a6a52019-05-27 16:39:22 +020080 return _PyStatus_ERR("Can't initialize threads for cross-interpreter data registry");
Eric Snow7f8bfc92018-01-29 18:23:44 -070081 }
82
Eric Snow8479a342019-03-08 23:44:33 -070083 // Set it to the ID of the main thread of the main interpreter.
84 runtime->main_thread = PyThread_get_thread_ident();
Eric Snow5be45a62019-03-08 22:47:07 -070085
Victor Stinner331a6a52019-05-27 16:39:22 +020086 return _PyStatus_OK();
Eric Snow2ebc5ce2017-09-07 23:51:28 -060087}
Eric Snow05351c12017-09-05 21:43:08 -070088
Victor Stinner331a6a52019-05-27 16:39:22 +020089PyStatus
Victor Stinner5d39e042017-11-29 17:20:38 +010090_PyRuntimeState_Init(_PyRuntimeState *runtime)
91{
92 /* Force default allocator, since _PyRuntimeState_Fini() must
93 use the same allocator than this function. */
94 PyMemAllocatorEx old_alloc;
95 _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
96
Victor Stinner331a6a52019-05-27 16:39:22 +020097 PyStatus status = _PyRuntimeState_Init_impl(runtime);
Victor Stinner5d39e042017-11-29 17:20:38 +010098
99 PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
Victor Stinner331a6a52019-05-27 16:39:22 +0200100 return status;
Victor Stinner5d39e042017-11-29 17:20:38 +0100101}
102
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600103void
104_PyRuntimeState_Fini(_PyRuntimeState *runtime)
105{
Victor Stinner5d39e042017-11-29 17:20:38 +0100106 /* Force the allocator used by _PyRuntimeState_Init(). */
107 PyMemAllocatorEx old_alloc;
108 _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
Victor Stinnerccb04422017-11-16 03:20:31 -0800109
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600110 if (runtime->interpreters.mutex != NULL) {
111 PyThread_free_lock(runtime->interpreters.mutex);
112 runtime->interpreters.mutex = NULL;
113 }
Victor Stinnerccb04422017-11-16 03:20:31 -0800114
Stéphane Wirtel943395f2019-03-19 11:51:32 +0100115 if (runtime->xidregistry.mutex != NULL) {
116 PyThread_free_lock(runtime->xidregistry.mutex);
117 runtime->xidregistry.mutex = NULL;
118 }
119
Victor Stinnerccb04422017-11-16 03:20:31 -0800120 PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600121}
122
Eric Snow8479a342019-03-08 23:44:33 -0700123/* This function is called from PyOS_AfterFork_Child to ensure that
124 * newly created child processes do not share locks with the parent.
125 */
126
127void
Victor Stinnerb930a2d2019-04-24 17:14:33 +0200128_PyRuntimeState_ReInitThreads(_PyRuntimeState *runtime)
Eric Snow8479a342019-03-08 23:44:33 -0700129{
130 // This was initially set in _PyRuntimeState_Init().
Victor Stinnerb930a2d2019-04-24 17:14:33 +0200131 runtime->main_thread = PyThread_get_thread_ident();
Eric Snow8479a342019-03-08 23:44:33 -0700132
Victor Stinnerb930a2d2019-04-24 17:14:33 +0200133 /* Force default allocator, since _PyRuntimeState_Fini() must
134 use the same allocator than this function. */
135 PyMemAllocatorEx old_alloc;
136 _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
137
138 runtime->interpreters.mutex = PyThread_allocate_lock();
139 runtime->interpreters.main->id_mutex = PyThread_allocate_lock();
140 runtime->xidregistry.mutex = PyThread_allocate_lock();
141
142 PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
143
144 if (runtime->interpreters.mutex == NULL) {
Eric Snow8479a342019-03-08 23:44:33 -0700145 Py_FatalError("Can't initialize lock for runtime interpreters");
146 }
147
Victor Stinnerb930a2d2019-04-24 17:14:33 +0200148 if (runtime->interpreters.main->id_mutex == NULL) {
Eric Snow8479a342019-03-08 23:44:33 -0700149 Py_FatalError("Can't initialize ID lock for main interpreter");
150 }
151
Victor Stinnerb930a2d2019-04-24 17:14:33 +0200152 if (runtime->xidregistry.mutex == NULL) {
Eric Snow8479a342019-03-08 23:44:33 -0700153 Py_FatalError("Can't initialize lock for cross-interpreter data registry");
154 }
155}
156
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200157#define HEAD_LOCK(runtime) \
158 PyThread_acquire_lock((runtime)->interpreters.mutex, WAIT_LOCK)
159#define HEAD_UNLOCK(runtime) \
160 PyThread_release_lock((runtime)->interpreters.mutex)
Eric Snow05351c12017-09-05 21:43:08 -0700161
Victor Stinnerfff7bbf2019-11-20 17:34:39 +0100162int
163_Py_IsMainInterpreter(PyThreadState* tstate)
164{
165 return (tstate->interp == tstate->interp->runtime->interpreters.main);
166}
167
Victor Stinner8bb32302019-04-24 16:47:40 +0200168/* Forward declaration */
169static void _PyGILState_NoteThreadState(
170 struct _gilstate_runtime_state *gilstate, PyThreadState* tstate);
Michael W. Hudson188d4362005-06-20 16:52:57 +0000171
Victor Stinner331a6a52019-05-27 16:39:22 +0200172PyStatus
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600173_PyInterpreterState_Enable(_PyRuntimeState *runtime)
Eric Snowe3774162017-05-22 19:46:40 -0700174{
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200175 struct pyinterpreters *interpreters = &runtime->interpreters;
176 interpreters->next_id = 0;
Victor Stinner5d926472018-03-06 14:31:37 +0100177
178 /* Py_Finalize() calls _PyRuntimeState_Fini() which clears the mutex.
179 Create a new mutex if needed. */
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200180 if (interpreters->mutex == NULL) {
Victor Stinner5d926472018-03-06 14:31:37 +0100181 /* Force default allocator, since _PyRuntimeState_Fini() must
182 use the same allocator than this function. */
183 PyMemAllocatorEx old_alloc;
184 _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
185
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200186 interpreters->mutex = PyThread_allocate_lock();
Victor Stinner5d926472018-03-06 14:31:37 +0100187
188 PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
189
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200190 if (interpreters->mutex == NULL) {
Victor Stinner331a6a52019-05-27 16:39:22 +0200191 return _PyStatus_ERR("Can't initialize threads for interpreter");
Victor Stinnera7368ac2017-11-15 18:11:45 -0800192 }
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600193 }
Victor Stinner5d926472018-03-06 14:31:37 +0100194
Victor Stinner331a6a52019-05-27 16:39:22 +0200195 return _PyStatus_OK();
Eric Snowe3774162017-05-22 19:46:40 -0700196}
Guido van Rossuma027efa1997-05-05 20:56:21 +0000197
198PyInterpreterState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000199PyInterpreterState_New(void)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000200{
Steve Dowerb82e17e2019-05-23 08:45:22 -0700201 if (PySys_Audit("cpython.PyInterpreterState_New", NULL) < 0) {
202 return NULL;
203 }
204
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200205 PyInterpreterState *interp = PyMem_RawMalloc(sizeof(PyInterpreterState));
Victor Stinnerd4341102017-11-23 00:12:09 +0100206 if (interp == NULL) {
207 return NULL;
208 }
209
Eric Snow5be45a62019-03-08 22:47:07 -0700210 memset(interp, 0, sizeof(*interp));
Eric Snow4c6955e2018-02-16 18:53:40 -0700211 interp->id_refcount = -1;
Victor Stinner022be022019-05-22 23:58:50 +0200212
Victor Stinner01b1cc12019-11-20 02:27:56 +0100213 _PyRuntimeState *runtime = &_PyRuntime;
214 interp->runtime = runtime;
215
Victor Stinner72474072019-11-20 12:25:50 +0100216 _PyGC_InitState(&interp->gc);
Victor Stinner8462a492019-10-01 12:06:16 +0200217 PyConfig_InitPythonConfig(&interp->config);
Victor Stinner022be022019-05-22 23:58:50 +0200218
Victor Stinnerd4341102017-11-23 00:12:09 +0100219 interp->eval_frame = _PyEval_EvalFrameDefault;
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000220#ifdef HAVE_DLOPEN
Serhiy Storchakac2f7d872016-05-04 09:44:44 +0300221#if HAVE_DECL_RTLD_NOW
Victor Stinnerd4341102017-11-23 00:12:09 +0100222 interp->dlopenflags = RTLD_NOW;
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000223#else
Victor Stinnerd4341102017-11-23 00:12:09 +0100224 interp->dlopenflags = RTLD_LAZY;
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000225#endif
226#endif
Guido van Rossum25ce5661997-08-02 03:10:38 +0000227
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200228 struct pyinterpreters *interpreters = &runtime->interpreters;
229
230 HEAD_LOCK(runtime);
231 if (interpreters->next_id < 0) {
Victor Stinnerd4341102017-11-23 00:12:09 +0100232 /* overflow or Py_Initialize() not called! */
233 PyErr_SetString(PyExc_RuntimeError,
234 "failed to get an interpreter ID");
Pablo Galindo95d630e2018-08-31 22:49:29 +0100235 PyMem_RawFree(interp);
Victor Stinnerd4341102017-11-23 00:12:09 +0100236 interp = NULL;
Victor Stinnerd4341102017-11-23 00:12:09 +0100237 }
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200238 else {
239 interp->id = interpreters->next_id;
240 interpreters->next_id += 1;
241 interp->next = interpreters->head;
242 if (interpreters->main == NULL) {
243 interpreters->main = interp;
244 }
245 interpreters->head = interp;
246 }
247 HEAD_UNLOCK(runtime);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000248
Pablo Galindo95d630e2018-08-31 22:49:29 +0100249 if (interp == NULL) {
250 return NULL;
251 }
252
Yury Selivanovf23746a2018-01-22 19:11:18 -0500253 interp->tstate_next_unique_id = 0;
254
Steve Dowerb82e17e2019-05-23 08:45:22 -0700255 interp->audit_hooks = NULL;
256
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000257 return interp;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000258}
259
260
Victor Stinner01b1cc12019-11-20 02:27:56 +0100261void
262PyInterpreterState_Clear(PyInterpreterState *interp)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000263{
Victor Stinner01b1cc12019-11-20 02:27:56 +0100264 _PyRuntimeState *runtime = interp->runtime;
265
Steve Dowerb82e17e2019-05-23 08:45:22 -0700266 if (PySys_Audit("cpython.PyInterpreterState_Clear", NULL) < 0) {
267 PyErr_Clear();
268 }
269
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200270 HEAD_LOCK(runtime);
271 for (PyThreadState *p = interp->tstate_head; p != NULL; p = p->next) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000272 PyThreadState_Clear(p);
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200273 }
274 HEAD_UNLOCK(runtime);
Steve Dowerb82e17e2019-05-23 08:45:22 -0700275
276 Py_CLEAR(interp->audit_hooks);
277
Victor Stinner331a6a52019-05-27 16:39:22 +0200278 PyConfig_Clear(&interp->config);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000279 Py_CLEAR(interp->codec_search_path);
280 Py_CLEAR(interp->codec_search_cache);
281 Py_CLEAR(interp->codec_error_registry);
Eric Snow93c92f72017-09-13 23:46:04 -0700282 Py_CLEAR(interp->modules);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000283 Py_CLEAR(interp->modules_by_index);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000284 Py_CLEAR(interp->sysdict);
285 Py_CLEAR(interp->builtins);
Serhiy Storchaka87a5c512014-02-10 18:21:34 +0200286 Py_CLEAR(interp->builtins_copy);
Brett Cannonfd074152012-04-14 14:10:13 -0400287 Py_CLEAR(interp->importlib);
Serhiy Storchaka133138a2016-08-02 22:51:21 +0300288 Py_CLEAR(interp->import_func);
Eric Snowd2fdd1f2019-03-15 17:47:43 -0600289 Py_CLEAR(interp->dict);
Antoine Pitrou346cbd32017-05-27 17:50:54 +0200290#ifdef HAVE_FORK
291 Py_CLEAR(interp->before_forkers);
292 Py_CLEAR(interp->after_forkers_parent);
293 Py_CLEAR(interp->after_forkers_child);
294#endif
Victor Stinner7b3c2522020-03-07 00:24:23 +0100295 if (_PyRuntimeState_GetFinalizing(runtime) == NULL) {
Eric Snow86ea5812019-05-10 13:29:55 -0400296 _PyWarnings_Fini(interp);
297 }
Eric Snow5be45a62019-03-08 22:47:07 -0700298 // XXX Once we have one allocator per interpreter (i.e.
299 // per-interpreter GC) we must ensure that all of the interpreter's
300 // objects have been cleaned up at the point.
Guido van Rossum25ce5661997-08-02 03:10:38 +0000301}
302
303
304static void
Victor Stinner9da74302019-11-20 11:17:17 +0100305zapthreads(PyInterpreterState *interp, int check_current)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000306{
Victor Stinner9da74302019-11-20 11:17:17 +0100307 PyThreadState *tstate;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000308 /* No need to lock the mutex here because this should only happen
309 when the threads are all really dead (XXX famous last words). */
Victor Stinner9da74302019-11-20 11:17:17 +0100310 while ((tstate = interp->tstate_head) != NULL) {
311 _PyThreadState_Delete(tstate, check_current);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000312 }
Guido van Rossum25ce5661997-08-02 03:10:38 +0000313}
314
315
Victor Stinner01b1cc12019-11-20 02:27:56 +0100316void
317PyInterpreterState_Delete(PyInterpreterState *interp)
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200318{
Victor Stinner01b1cc12019-11-20 02:27:56 +0100319 _PyRuntimeState *runtime = interp->runtime;
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200320 struct pyinterpreters *interpreters = &runtime->interpreters;
Victor Stinner9da74302019-11-20 11:17:17 +0100321 zapthreads(interp, 0);
322
323 /* Delete current thread. After this, many C API calls become crashy. */
324 _PyThreadState_Swap(&runtime->gilstate, NULL);
325
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200326 HEAD_LOCK(runtime);
327 PyInterpreterState **p;
328 for (p = &interpreters->head; ; p = &(*p)->next) {
329 if (*p == NULL) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100330 Py_FatalError("invalid interp");
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200331 }
332 if (*p == interp) {
333 break;
334 }
335 }
336 if (interp->tstate_head != NULL) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100337 Py_FatalError("remaining threads");
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200338 }
339 *p = interp->next;
340 if (interpreters->main == interp) {
341 interpreters->main = NULL;
342 if (interpreters->head != NULL) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100343 Py_FatalError("remaining subinterpreters");
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200344 }
345 }
346 HEAD_UNLOCK(runtime);
347 if (interp->id_mutex != NULL) {
348 PyThread_free_lock(interp->id_mutex);
349 }
350 PyMem_RawFree(interp);
351}
352
353
Eric Snow59032962018-09-14 14:17:20 -0700354/*
355 * Delete all interpreter states except the main interpreter. If there
356 * is a current interpreter state, it *must* be the main interpreter.
357 */
358void
Victor Stinnerb930a2d2019-04-24 17:14:33 +0200359_PyInterpreterState_DeleteExceptMain(_PyRuntimeState *runtime)
Eric Snow59032962018-09-14 14:17:20 -0700360{
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200361 struct _gilstate_runtime_state *gilstate = &runtime->gilstate;
Victor Stinnerb930a2d2019-04-24 17:14:33 +0200362 struct pyinterpreters *interpreters = &runtime->interpreters;
363
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200364 PyThreadState *tstate = _PyThreadState_Swap(gilstate, NULL);
Victor Stinnerb930a2d2019-04-24 17:14:33 +0200365 if (tstate != NULL && tstate->interp != interpreters->main) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100366 Py_FatalError("not main interpreter");
Eric Snow59032962018-09-14 14:17:20 -0700367 }
368
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200369 HEAD_LOCK(runtime);
Victor Stinnerb930a2d2019-04-24 17:14:33 +0200370 PyInterpreterState *interp = interpreters->head;
371 interpreters->head = NULL;
Stéphane Wirtelb5409da2019-02-20 15:27:22 +0100372 while (interp != NULL) {
Victor Stinnerb930a2d2019-04-24 17:14:33 +0200373 if (interp == interpreters->main) {
374 interpreters->main->next = NULL;
375 interpreters->head = interp;
Stéphane Wirtelb5409da2019-02-20 15:27:22 +0100376 interp = interp->next;
Eric Snow59032962018-09-14 14:17:20 -0700377 continue;
378 }
379
Victor Stinner01b1cc12019-11-20 02:27:56 +0100380 PyInterpreterState_Clear(interp); // XXX must activate?
Victor Stinner9da74302019-11-20 11:17:17 +0100381 zapthreads(interp, 1);
Eric Snow59032962018-09-14 14:17:20 -0700382 if (interp->id_mutex != NULL) {
383 PyThread_free_lock(interp->id_mutex);
384 }
Stéphane Wirtelb5409da2019-02-20 15:27:22 +0100385 PyInterpreterState *prev_interp = interp;
386 interp = interp->next;
387 PyMem_RawFree(prev_interp);
Eric Snow59032962018-09-14 14:17:20 -0700388 }
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200389 HEAD_UNLOCK(runtime);
Eric Snow59032962018-09-14 14:17:20 -0700390
Victor Stinnerb930a2d2019-04-24 17:14:33 +0200391 if (interpreters->head == NULL) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100392 Py_FatalError("missing main");
Eric Snow59032962018-09-14 14:17:20 -0700393 }
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200394 _PyThreadState_Swap(gilstate, tstate);
Eric Snow59032962018-09-14 14:17:20 -0700395}
396
397
Victor Stinnercaba55b2018-08-03 15:33:52 +0200398PyInterpreterState *
399_PyInterpreterState_Get(void)
400{
Victor Stinner50b48572018-11-01 01:51:40 +0100401 PyThreadState *tstate = _PyThreadState_GET();
Victor Stinnercaba55b2018-08-03 15:33:52 +0200402 if (tstate == NULL) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100403 Py_FatalError("no current thread state");
Victor Stinnercaba55b2018-08-03 15:33:52 +0200404 }
405 PyInterpreterState *interp = tstate->interp;
406 if (interp == NULL) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100407 Py_FatalError("no current interpreter");
Victor Stinnercaba55b2018-08-03 15:33:52 +0200408 }
409 return interp;
410}
411
412
Eric Snowe3774162017-05-22 19:46:40 -0700413int64_t
414PyInterpreterState_GetID(PyInterpreterState *interp)
415{
416 if (interp == NULL) {
417 PyErr_SetString(PyExc_RuntimeError, "no interpreter provided");
418 return -1;
419 }
420 return interp->id;
421}
422
423
Eric Snow5be45a62019-03-08 22:47:07 -0700424static PyInterpreterState *
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200425interp_look_up_id(_PyRuntimeState *runtime, PY_INT64_T requested_id)
Eric Snowb05b7112019-03-01 12:35:10 -0700426{
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200427 PyInterpreterState *interp = runtime->interpreters.head;
Victor Stinner4d61e6e2019-03-04 14:21:28 +0100428 while (interp != NULL) {
429 PY_INT64_T id = PyInterpreterState_GetID(interp);
Eric Snow5be45a62019-03-08 22:47:07 -0700430 if (id < 0) {
Victor Stinner4d61e6e2019-03-04 14:21:28 +0100431 return NULL;
Eric Snow5be45a62019-03-08 22:47:07 -0700432 }
433 if (requested_id == id) {
Victor Stinner4d61e6e2019-03-04 14:21:28 +0100434 return interp;
Eric Snow5be45a62019-03-08 22:47:07 -0700435 }
Victor Stinner4d61e6e2019-03-04 14:21:28 +0100436 interp = PyInterpreterState_Next(interp);
Eric Snowb05b7112019-03-01 12:35:10 -0700437 }
Victor Stinner4d61e6e2019-03-04 14:21:28 +0100438 return NULL;
Eric Snowb05b7112019-03-01 12:35:10 -0700439}
440
Eric Snow5be45a62019-03-08 22:47:07 -0700441PyInterpreterState *
442_PyInterpreterState_LookUpID(PY_INT64_T requested_id)
443{
444 PyInterpreterState *interp = NULL;
445 if (requested_id >= 0) {
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200446 _PyRuntimeState *runtime = &_PyRuntime;
447 HEAD_LOCK(runtime);
448 interp = interp_look_up_id(runtime, requested_id);
449 HEAD_UNLOCK(runtime);
Eric Snow5be45a62019-03-08 22:47:07 -0700450 }
451 if (interp == NULL && !PyErr_Occurred()) {
452 PyErr_Format(PyExc_RuntimeError,
453 "unrecognized interpreter ID %lld", requested_id);
454 }
455 return interp;
456}
457
Eric Snow4c6955e2018-02-16 18:53:40 -0700458
459int
460_PyInterpreterState_IDInitref(PyInterpreterState *interp)
461{
462 if (interp->id_mutex != NULL) {
463 return 0;
464 }
465 interp->id_mutex = PyThread_allocate_lock();
466 if (interp->id_mutex == NULL) {
467 PyErr_SetString(PyExc_RuntimeError,
468 "failed to create init interpreter ID mutex");
469 return -1;
470 }
471 interp->id_refcount = 0;
472 return 0;
473}
474
475
476void
477_PyInterpreterState_IDIncref(PyInterpreterState *interp)
478{
479 if (interp->id_mutex == NULL) {
480 return;
481 }
482 PyThread_acquire_lock(interp->id_mutex, WAIT_LOCK);
483 interp->id_refcount += 1;
484 PyThread_release_lock(interp->id_mutex);
485}
486
487
488void
489_PyInterpreterState_IDDecref(PyInterpreterState *interp)
490{
491 if (interp->id_mutex == NULL) {
492 return;
493 }
Victor Stinner0fd2c302019-06-04 03:15:09 +0200494 struct _gilstate_runtime_state *gilstate = &_PyRuntime.gilstate;
Eric Snow4c6955e2018-02-16 18:53:40 -0700495 PyThread_acquire_lock(interp->id_mutex, WAIT_LOCK);
496 assert(interp->id_refcount != 0);
497 interp->id_refcount -= 1;
498 int64_t refcount = interp->id_refcount;
499 PyThread_release_lock(interp->id_mutex);
500
Eric Snowc11183c2019-03-15 16:35:46 -0600501 if (refcount == 0 && interp->requires_idref) {
Eric Snowf53d9f22018-02-20 16:30:17 -0700502 // XXX Using the "head" thread isn't strictly correct.
503 PyThreadState *tstate = PyInterpreterState_ThreadHead(interp);
504 // XXX Possible GILState issues?
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200505 PyThreadState *save_tstate = _PyThreadState_Swap(gilstate, tstate);
Eric Snow4c6955e2018-02-16 18:53:40 -0700506 Py_EndInterpreter(tstate);
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200507 _PyThreadState_Swap(gilstate, save_tstate);
Eric Snow4c6955e2018-02-16 18:53:40 -0700508 }
509}
510
Eric Snowc11183c2019-03-15 16:35:46 -0600511int
512_PyInterpreterState_RequiresIDRef(PyInterpreterState *interp)
513{
514 return interp->requires_idref;
515}
516
517void
518_PyInterpreterState_RequireIDRef(PyInterpreterState *interp, int required)
519{
520 interp->requires_idref = required ? 1 : 0;
521}
522
Eric Snowc11183c2019-03-15 16:35:46 -0600523PyObject *
524_PyInterpreterState_GetMainModule(PyInterpreterState *interp)
525{
526 if (interp->modules == NULL) {
527 PyErr_SetString(PyExc_RuntimeError, "interpreter not initialized");
528 return NULL;
529 }
530 return PyMapping_GetItemString(interp->modules, "__main__");
531}
532
Eric Snowd2fdd1f2019-03-15 17:47:43 -0600533PyObject *
534PyInterpreterState_GetDict(PyInterpreterState *interp)
535{
536 if (interp->dict == NULL) {
537 interp->dict = PyDict_New();
538 if (interp->dict == NULL) {
539 PyErr_Clear();
540 }
541 }
542 /* Returning NULL means no per-interpreter dict is available. */
543 return interp->dict;
544}
545
Michael W. Hudson019a78e2002-11-08 12:53:11 +0000546/* Default implementation for _PyThreadState_GetFrame */
547static struct _frame *
548threadstate_getframe(PyThreadState *self)
549{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000550 return self->frame;
Michael W. Hudson019a78e2002-11-08 12:53:11 +0000551}
552
Victor Stinner45b9be52010-03-03 23:28:07 +0000553static PyThreadState *
554new_threadstate(PyInterpreterState *interp, int init)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000555{
Victor Stinner01b1cc12019-11-20 02:27:56 +0100556 _PyRuntimeState *runtime = interp->runtime;
Victor Stinner1a7425f2013-07-07 16:25:15 +0200557 PyThreadState *tstate = (PyThreadState *)PyMem_RawMalloc(sizeof(PyThreadState));
Victor Stinner8bb32302019-04-24 16:47:40 +0200558 if (tstate == NULL) {
559 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000560 }
Guido van Rossum25ce5661997-08-02 03:10:38 +0000561
Victor Stinner8bb32302019-04-24 16:47:40 +0200562 if (_PyThreadState_GetFrame == NULL) {
563 _PyThreadState_GetFrame = threadstate_getframe;
564 }
565
566 tstate->interp = interp;
567
568 tstate->frame = NULL;
569 tstate->recursion_depth = 0;
570 tstate->overflowed = 0;
571 tstate->recursion_critical = 0;
572 tstate->stackcheck_counter = 0;
573 tstate->tracing = 0;
574 tstate->use_tracing = 0;
575 tstate->gilstate_counter = 0;
576 tstate->async_exc = NULL;
577 tstate->thread_id = PyThread_get_thread_ident();
578
579 tstate->dict = NULL;
580
581 tstate->curexc_type = NULL;
582 tstate->curexc_value = NULL;
583 tstate->curexc_traceback = NULL;
584
585 tstate->exc_state.exc_type = NULL;
586 tstate->exc_state.exc_value = NULL;
587 tstate->exc_state.exc_traceback = NULL;
588 tstate->exc_state.previous_item = NULL;
589 tstate->exc_info = &tstate->exc_state;
590
591 tstate->c_profilefunc = NULL;
592 tstate->c_tracefunc = NULL;
593 tstate->c_profileobj = NULL;
594 tstate->c_traceobj = NULL;
595
596 tstate->trash_delete_nesting = 0;
597 tstate->trash_delete_later = NULL;
598 tstate->on_delete = NULL;
599 tstate->on_delete_data = NULL;
600
601 tstate->coroutine_origin_tracking_depth = 0;
602
Victor Stinner8bb32302019-04-24 16:47:40 +0200603 tstate->async_gen_firstiter = NULL;
604 tstate->async_gen_finalizer = NULL;
605
606 tstate->context = NULL;
607 tstate->context_ver = 1;
608
Victor Stinner8bb32302019-04-24 16:47:40 +0200609 if (init) {
Victor Stinner01b1cc12019-11-20 02:27:56 +0100610 _PyThreadState_Init(tstate);
Victor Stinner8bb32302019-04-24 16:47:40 +0200611 }
612
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200613 HEAD_LOCK(runtime);
Stefan Krahb3b9ade2020-03-02 21:22:36 +0100614 tstate->id = ++interp->tstate_next_unique_id;
Victor Stinner8bb32302019-04-24 16:47:40 +0200615 tstate->prev = NULL;
616 tstate->next = interp->tstate_head;
617 if (tstate->next)
618 tstate->next->prev = tstate;
619 interp->tstate_head = tstate;
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200620 HEAD_UNLOCK(runtime);
Victor Stinner8bb32302019-04-24 16:47:40 +0200621
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000622 return tstate;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000623}
624
Victor Stinner45b9be52010-03-03 23:28:07 +0000625PyThreadState *
626PyThreadState_New(PyInterpreterState *interp)
627{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000628 return new_threadstate(interp, 1);
Victor Stinner45b9be52010-03-03 23:28:07 +0000629}
630
631PyThreadState *
632_PyThreadState_Prealloc(PyInterpreterState *interp)
633{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000634 return new_threadstate(interp, 0);
Victor Stinner45b9be52010-03-03 23:28:07 +0000635}
636
637void
Victor Stinner01b1cc12019-11-20 02:27:56 +0100638_PyThreadState_Init(PyThreadState *tstate)
Victor Stinner45b9be52010-03-03 23:28:07 +0000639{
Victor Stinner01b1cc12019-11-20 02:27:56 +0100640 _PyGILState_NoteThreadState(&tstate->interp->runtime->gilstate, tstate);
Victor Stinner45b9be52010-03-03 23:28:07 +0000641}
642
Martin v. Löwis1a214512008-06-11 05:26:20 +0000643PyObject*
Martin v. Löwis7800f752012-06-22 12:20:55 +0200644PyState_FindModule(struct PyModuleDef* module)
Martin v. Löwis1a214512008-06-11 05:26:20 +0000645{
Martin v. Löwis7800f752012-06-22 12:20:55 +0200646 Py_ssize_t index = module->m_base.m_index;
Victor Stinner9204fb82018-10-30 15:13:17 +0100647 PyInterpreterState *state = _PyInterpreterState_GET_UNSAFE();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000648 PyObject *res;
Nick Coghland5cacbb2015-05-23 22:24:10 +1000649 if (module->m_slots) {
650 return NULL;
651 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000652 if (index == 0)
653 return NULL;
654 if (state->modules_by_index == NULL)
655 return NULL;
Antoine Pitrou75506e82012-08-20 19:30:46 +0200656 if (index >= PyList_GET_SIZE(state->modules_by_index))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000657 return NULL;
658 res = PyList_GET_ITEM(state->modules_by_index, index);
659 return res==Py_None ? NULL : res;
Martin v. Löwis1a214512008-06-11 05:26:20 +0000660}
661
662int
Victor Stinner82c83bd2019-11-22 18:52:27 +0100663_PyState_AddModule(PyThreadState *tstate, PyObject* module, struct PyModuleDef* def)
Martin v. Löwis1a214512008-06-11 05:26:20 +0000664{
Berker Peksag4b7b5652016-08-22 18:05:56 +0300665 if (!def) {
666 assert(PyErr_Occurred());
667 return -1;
668 }
Nick Coghland5cacbb2015-05-23 22:24:10 +1000669 if (def->m_slots) {
670 PyErr_SetString(PyExc_SystemError,
671 "PyState_AddModule called on module with slots");
672 return -1;
673 }
Victor Stinner82c83bd2019-11-22 18:52:27 +0100674
675 PyInterpreterState *interp = tstate->interp;
676 if (!interp->modules_by_index) {
677 interp->modules_by_index = PyList_New(0);
678 if (!interp->modules_by_index) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000679 return -1;
Victor Stinner82c83bd2019-11-22 18:52:27 +0100680 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000681 }
Victor Stinner82c83bd2019-11-22 18:52:27 +0100682
683 while (PyList_GET_SIZE(interp->modules_by_index) <= def->m_base.m_index) {
684 if (PyList_Append(interp->modules_by_index, Py_None) < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000685 return -1;
Victor Stinner82c83bd2019-11-22 18:52:27 +0100686 }
687 }
688
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000689 Py_INCREF(module);
Victor Stinner82c83bd2019-11-22 18:52:27 +0100690 return PyList_SetItem(interp->modules_by_index,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000691 def->m_base.m_index, module);
Martin v. Löwis1a214512008-06-11 05:26:20 +0000692}
Guido van Rossuma027efa1997-05-05 20:56:21 +0000693
Martin v. Löwis7800f752012-06-22 12:20:55 +0200694int
695PyState_AddModule(PyObject* module, struct PyModuleDef* def)
696{
Martin v. Löwis7800f752012-06-22 12:20:55 +0200697 if (!def) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100698 Py_FatalError("Module Definition is NULL");
Martin v. Löwis7800f752012-06-22 12:20:55 +0200699 return -1;
700 }
Victor Stinner82c83bd2019-11-22 18:52:27 +0100701
702 PyThreadState *tstate = _PyThreadState_GET();
703 PyInterpreterState *interp = tstate->interp;
704 Py_ssize_t index = def->m_base.m_index;
705 if (interp->modules_by_index &&
706 index < PyList_GET_SIZE(interp->modules_by_index) &&
707 module == PyList_GET_ITEM(interp->modules_by_index, index))
708 {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100709 Py_FatalError("Module already added");
Benjamin Peterson39de95b2019-09-12 00:43:22 +0100710 return -1;
Martin v. Löwis7800f752012-06-22 12:20:55 +0200711 }
Victor Stinner82c83bd2019-11-22 18:52:27 +0100712 return _PyState_AddModule(tstate, module, def);
Martin v. Löwis7800f752012-06-22 12:20:55 +0200713}
714
715int
716PyState_RemoveModule(struct PyModuleDef* def)
717{
Nick Coghland5cacbb2015-05-23 22:24:10 +1000718 PyInterpreterState *state;
Martin v. Löwis7800f752012-06-22 12:20:55 +0200719 Py_ssize_t index = def->m_base.m_index;
Nick Coghland5cacbb2015-05-23 22:24:10 +1000720 if (def->m_slots) {
721 PyErr_SetString(PyExc_SystemError,
722 "PyState_RemoveModule called on module with slots");
723 return -1;
724 }
Victor Stinner9204fb82018-10-30 15:13:17 +0100725 state = _PyInterpreterState_GET_UNSAFE();
Martin v. Löwis7800f752012-06-22 12:20:55 +0200726 if (index == 0) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100727 Py_FatalError("Module index invalid");
Martin v. Löwis7800f752012-06-22 12:20:55 +0200728 return -1;
729 }
730 if (state->modules_by_index == NULL) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100731 Py_FatalError("Interpreters module-list not accessible.");
Martin v. Löwis7800f752012-06-22 12:20:55 +0200732 return -1;
733 }
734 if (index > PyList_GET_SIZE(state->modules_by_index)) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100735 Py_FatalError("Module index out of bounds.");
Martin v. Löwis7800f752012-06-22 12:20:55 +0200736 return -1;
737 }
Zackery Spytz2a893432018-12-05 00:14:00 -0700738 Py_INCREF(Py_None);
Martin v. Löwis7800f752012-06-22 12:20:55 +0200739 return PyList_SetItem(state->modules_by_index, index, Py_None);
740}
741
Victor Stinner0a28f8d2019-06-19 02:54:39 +0200742/* Used by PyImport_Cleanup() */
Antoine Pitrou40322e62013-08-11 00:30:09 +0200743void
Victor Stinner0a28f8d2019-06-19 02:54:39 +0200744_PyInterpreterState_ClearModules(PyInterpreterState *interp)
Antoine Pitrou40322e62013-08-11 00:30:09 +0200745{
Victor Stinner0a28f8d2019-06-19 02:54:39 +0200746 if (!interp->modules_by_index) {
747 return;
748 }
749
750 Py_ssize_t i;
751 for (i = 0; i < PyList_GET_SIZE(interp->modules_by_index); i++) {
752 PyObject *m = PyList_GET_ITEM(interp->modules_by_index, i);
753 if (PyModule_Check(m)) {
754 /* cleanup the saved copy of module dicts */
755 PyModuleDef *md = PyModule_GetDef(m);
756 if (md) {
757 Py_CLEAR(md->m_base.m_copy);
Antoine Pitrou40322e62013-08-11 00:30:09 +0200758 }
759 }
Victor Stinner0a28f8d2019-06-19 02:54:39 +0200760 }
761
762 /* Setting modules_by_index to NULL could be dangerous, so we
763 clear the list instead. */
764 if (PyList_SetSlice(interp->modules_by_index,
765 0, PyList_GET_SIZE(interp->modules_by_index),
766 NULL)) {
767 PyErr_WriteUnraisable(interp->modules_by_index);
Antoine Pitrou40322e62013-08-11 00:30:09 +0200768 }
769}
770
Guido van Rossuma027efa1997-05-05 20:56:21 +0000771void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000772PyThreadState_Clear(PyThreadState *tstate)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000773{
Victor Stinner331a6a52019-05-27 16:39:22 +0200774 int verbose = tstate->interp->config.verbose;
Victor Stinner53b7d4e2018-07-25 01:37:05 +0200775
776 if (verbose && tstate->frame != NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000777 fprintf(stderr,
778 "PyThreadState_Clear: warning: thread still has a frame\n");
Guido van Rossum25ce5661997-08-02 03:10:38 +0000779
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000780 Py_CLEAR(tstate->frame);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000781
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000782 Py_CLEAR(tstate->dict);
783 Py_CLEAR(tstate->async_exc);
Guido van Rossumede04391998-04-10 20:18:25 +0000784
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000785 Py_CLEAR(tstate->curexc_type);
786 Py_CLEAR(tstate->curexc_value);
787 Py_CLEAR(tstate->curexc_traceback);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000788
Mark Shannonae3087c2017-10-22 22:41:51 +0100789 Py_CLEAR(tstate->exc_state.exc_type);
790 Py_CLEAR(tstate->exc_state.exc_value);
791 Py_CLEAR(tstate->exc_state.exc_traceback);
Serhiy Storchakabdf42982017-10-26 16:59:40 +0300792
Mark Shannonae3087c2017-10-22 22:41:51 +0100793 /* The stack of exception states should contain just this thread. */
Victor Stinner53b7d4e2018-07-25 01:37:05 +0200794 if (verbose && tstate->exc_info != &tstate->exc_state) {
Mark Shannonae3087c2017-10-22 22:41:51 +0100795 fprintf(stderr,
796 "PyThreadState_Clear: warning: thread still has a generator\n");
797 }
Guido van Rossum25ce5661997-08-02 03:10:38 +0000798
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000799 tstate->c_profilefunc = NULL;
800 tstate->c_tracefunc = NULL;
801 Py_CLEAR(tstate->c_profileobj);
802 Py_CLEAR(tstate->c_traceobj);
Yury Selivanov75445082015-05-11 22:57:16 -0400803
Yury Selivanoveb636452016-09-08 22:01:51 -0700804 Py_CLEAR(tstate->async_gen_firstiter);
805 Py_CLEAR(tstate->async_gen_finalizer);
Yury Selivanovf23746a2018-01-22 19:11:18 -0500806
807 Py_CLEAR(tstate->context);
Victor Stinner4d96b462020-02-01 02:30:25 +0100808
809 if (tstate->on_delete != NULL) {
810 tstate->on_delete(tstate->on_delete_data);
811 }
Guido van Rossum25ce5661997-08-02 03:10:38 +0000812}
813
814
Joannah Nanjekye8855e472019-10-04 08:35:42 -0300815/* Common code for PyThreadState_Delete() and PyThreadState_DeleteCurrent() */
Guido van Rossum29757862001-01-23 01:46:06 +0000816static void
Victor Stinner9da74302019-11-20 11:17:17 +0100817tstate_delete_common(PyThreadState *tstate,
818 struct _gilstate_runtime_state *gilstate)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000819{
Victor Stinner01b1cc12019-11-20 02:27:56 +0100820 _PyRuntimeState *runtime = tstate->interp->runtime;
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200821 if (tstate == NULL) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100822 Py_FatalError("NULL tstate");
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200823 }
824 PyInterpreterState *interp = tstate->interp;
825 if (interp == NULL) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100826 Py_FatalError("NULL interp");
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200827 }
828 HEAD_LOCK(runtime);
Charles-Francois Natalif28dfdd2013-05-08 21:09:52 +0200829 if (tstate->prev)
830 tstate->prev->next = tstate->next;
831 else
832 interp->tstate_head = tstate->next;
833 if (tstate->next)
834 tstate->next->prev = tstate->prev;
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200835 HEAD_UNLOCK(runtime);
Victor Stinner4d96b462020-02-01 02:30:25 +0100836
Victor Stinner1a7425f2013-07-07 16:25:15 +0200837 PyMem_RawFree(tstate);
Victor Stinner9da74302019-11-20 11:17:17 +0100838
839 if (gilstate->autoInterpreterState &&
840 PyThread_tss_get(&gilstate->autoTSSkey) == tstate)
841 {
842 PyThread_tss_set(&gilstate->autoTSSkey, NULL);
843 }
844}
845
846
847static void
848_PyThreadState_Delete(PyThreadState *tstate, int check_current)
849{
850 struct _gilstate_runtime_state *gilstate = &tstate->interp->runtime->gilstate;
851 if (check_current) {
852 if (tstate == _PyRuntimeGILState_GetThreadState(gilstate)) {
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100853 Py_FatalError("tstate is still current");
Victor Stinner9da74302019-11-20 11:17:17 +0100854 }
855 }
856 tstate_delete_common(tstate, gilstate);
Guido van Rossuma027efa1997-05-05 20:56:21 +0000857}
858
859
Victor Stinner01b1cc12019-11-20 02:27:56 +0100860void
861PyThreadState_Delete(PyThreadState *tstate)
Guido van Rossum29757862001-01-23 01:46:06 +0000862{
Victor Stinner9da74302019-11-20 11:17:17 +0100863 _PyThreadState_Delete(tstate, 1);
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200864}
865
866
Joannah Nanjekye2bc43cd2019-09-05 13:06:49 -0300867void
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200868_PyThreadState_DeleteCurrent(_PyRuntimeState *runtime)
869{
870 struct _gilstate_runtime_state *gilstate = &runtime->gilstate;
871 PyThreadState *tstate = _PyRuntimeGILState_GetThreadState(gilstate);
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100872 if (tstate == NULL) {
873 Py_FatalError("no current tstate");
874 }
Victor Stinner9da74302019-11-20 11:17:17 +0100875 tstate_delete_common(tstate, gilstate);
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200876 _PyRuntimeGILState_SetThreadState(gilstate, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000877 PyEval_ReleaseLock();
Guido van Rossum29757862001-01-23 01:46:06 +0000878}
Guido van Rossum29757862001-01-23 01:46:06 +0000879
Joannah Nanjekye8855e472019-10-04 08:35:42 -0300880void
881PyThreadState_DeleteCurrent(void)
882{
883 _PyThreadState_DeleteCurrent(&_PyRuntime);
884}
885
Guido van Rossum29757862001-01-23 01:46:06 +0000886
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200887/*
888 * Delete all thread states except the one passed as argument.
889 * Note that, if there is a current thread state, it *must* be the one
890 * passed as argument. Also, this won't touch any other interpreters
891 * than the current one, since we don't know which thread state should
Min ho Kim39d87b52019-08-31 06:21:19 +1000892 * be kept in those other interpreters.
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200893 */
894void
Victor Stinner0fd2c302019-06-04 03:15:09 +0200895_PyThreadState_DeleteExcept(_PyRuntimeState *runtime, PyThreadState *tstate)
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200896{
897 PyInterpreterState *interp = tstate->interp;
Victor Stinner9ad58ac2020-03-09 23:37:49 +0100898
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200899 HEAD_LOCK(runtime);
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200900 /* Remove all thread states, except tstate, from the linked list of
901 thread states. This will allow calling PyThreadState_Clear()
Charles-Francois Natalif28dfdd2013-05-08 21:09:52 +0200902 without holding the lock. */
Victor Stinner9ad58ac2020-03-09 23:37:49 +0100903 PyThreadState *list = interp->tstate_head;
904 if (list == tstate) {
905 list = tstate->next;
906 }
907 if (tstate->prev) {
Charles-Francois Natalif28dfdd2013-05-08 21:09:52 +0200908 tstate->prev->next = tstate->next;
Victor Stinner9ad58ac2020-03-09 23:37:49 +0100909 }
910 if (tstate->next) {
Charles-Francois Natalif28dfdd2013-05-08 21:09:52 +0200911 tstate->next->prev = tstate->prev;
Victor Stinner9ad58ac2020-03-09 23:37:49 +0100912 }
Charles-Francois Natalif28dfdd2013-05-08 21:09:52 +0200913 tstate->prev = tstate->next = NULL;
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200914 interp->tstate_head = tstate;
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200915 HEAD_UNLOCK(runtime);
Victor Stinner9ad58ac2020-03-09 23:37:49 +0100916
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200917 /* Clear and deallocate all stale thread states. Even if this
918 executes Python code, we should be safe since it executes
919 in the current thread, not one of the stale threads. */
Victor Stinner9ad58ac2020-03-09 23:37:49 +0100920 PyThreadState *p, *next;
921 for (p = list; p; p = next) {
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200922 next = p->next;
923 PyThreadState_Clear(p);
Victor Stinner1a7425f2013-07-07 16:25:15 +0200924 PyMem_RawFree(p);
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200925 }
926}
927
928
Guido van Rossuma027efa1997-05-05 20:56:21 +0000929PyThreadState *
Victor Stinnerbfd316e2016-01-20 11:12:38 +0100930_PyThreadState_UncheckedGet(void)
931{
Victor Stinner50b48572018-11-01 01:51:40 +0100932 return _PyThreadState_GET();
Victor Stinnerbfd316e2016-01-20 11:12:38 +0100933}
934
935
936PyThreadState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000937PyThreadState_Get(void)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000938{
Victor Stinner50b48572018-11-01 01:51:40 +0100939 PyThreadState *tstate = _PyThreadState_GET();
Victor Stinner9e5d30c2020-03-07 00:54:20 +0100940 if (tstate == NULL) {
941 Py_FatalError("no current thread");
942 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000943 return tstate;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000944}
945
946
Victor Stinner09532fe2019-05-10 23:39:09 +0200947PyThreadState *
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200948_PyThreadState_Swap(struct _gilstate_runtime_state *gilstate, PyThreadState *newts)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000949{
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200950 PyThreadState *oldts = _PyRuntimeGILState_GetThreadState(gilstate);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000951
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200952 _PyRuntimeGILState_SetThreadState(gilstate, newts);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000953 /* It should not be possible for more than one thread state
954 to be used for a thread. Check this the best we can in debug
955 builds.
956 */
Antoine Pitroua6a4dc82017-09-07 18:56:24 +0200957#if defined(Py_DEBUG)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000958 if (newts) {
959 /* This can be called from PyEval_RestoreThread(). Similar
960 to it, we need to ensure errno doesn't change.
961 */
962 int err = errno;
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200963 PyThreadState *check = _PyGILState_GetThisThreadState(gilstate);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000964 if (check && check->interp == newts->interp && check != newts)
965 Py_FatalError("Invalid thread state for this thread");
966 errno = err;
967 }
Mark Hammond8d98d2c2003-04-19 15:41:53 +0000968#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000969 return oldts;
Guido van Rossuma027efa1997-05-05 20:56:21 +0000970}
Guido van Rossumede04391998-04-10 20:18:25 +0000971
Victor Stinner10c8e6a2019-04-26 01:53:18 +0200972PyThreadState *
973PyThreadState_Swap(PyThreadState *newts)
974{
975 return _PyThreadState_Swap(&_PyRuntime.gilstate, newts);
976}
977
Guido van Rossumede04391998-04-10 20:18:25 +0000978/* An extension mechanism to store arbitrary additional per-thread state.
979 PyThreadState_GetDict() returns a dictionary that can be used to hold such
980 state; the caller should pick a unique key and store its state there. If
Guido van Rossum0fc8f002003-04-15 15:12:39 +0000981 PyThreadState_GetDict() returns NULL, an exception has *not* been raised
982 and the caller should assume no per-thread state is available. */
Guido van Rossumede04391998-04-10 20:18:25 +0000983
984PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000985PyThreadState_GetDict(void)
Guido van Rossumede04391998-04-10 20:18:25 +0000986{
Victor Stinner50b48572018-11-01 01:51:40 +0100987 PyThreadState *tstate = _PyThreadState_GET();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000988 if (tstate == NULL)
989 return NULL;
Guido van Rossumede04391998-04-10 20:18:25 +0000990
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000991 if (tstate->dict == NULL) {
992 PyObject *d;
993 tstate->dict = d = PyDict_New();
994 if (d == NULL)
995 PyErr_Clear();
996 }
997 return tstate->dict;
Guido van Rossumede04391998-04-10 20:18:25 +0000998}
Guido van Rossumf5df46d2001-07-19 12:19:27 +0000999
1000
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +00001001/* Asynchronously raise an exception in a thread.
1002 Requested by Just van Rossum and Alex Martelli.
Guido van Rossum0f1f63c2005-02-08 02:07:57 +00001003 To prevent naive misuse, you must write your own extension
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00001004 to call this, or use ctypes. Must be called with the GIL held.
1005 Returns the number of tstates modified (normally 1, but 0 if `id` didn't
1006 match any known thread id). Can be called with exc=NULL to clear an
1007 existing async exception. This raises no exceptions. */
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +00001008
1009int
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +02001010PyThreadState_SetAsyncExc(unsigned long id, PyObject *exc)
1011{
Victor Stinner09532fe2019-05-10 23:39:09 +02001012 _PyRuntimeState *runtime = &_PyRuntime;
1013 PyInterpreterState *interp = _PyRuntimeState_GetThreadState(runtime)->interp;
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00001014
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001015 /* Although the GIL is held, a few C API functions can be called
1016 * without the GIL held, and in particular some that create and
1017 * destroy thread and interpreter states. Those can mutate the
1018 * list of thread states we're traversing, so to prevent that we lock
1019 * head_mutex for the duration.
1020 */
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001021 HEAD_LOCK(runtime);
Victor Stinner09532fe2019-05-10 23:39:09 +02001022 for (PyThreadState *p = interp->tstate_head; p != NULL; p = p->next) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001023 if (p->thread_id == id) {
1024 /* Tricky: we need to decref the current value
1025 * (if any) in p->async_exc, but that can in turn
1026 * allow arbitrary Python code to run, including
1027 * perhaps calls to this function. To prevent
1028 * deadlock, we need to release head_mutex before
1029 * the decref.
1030 */
1031 PyObject *old_exc = p->async_exc;
1032 Py_XINCREF(exc);
1033 p->async_exc = exc;
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001034 HEAD_UNLOCK(runtime);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001035 Py_XDECREF(old_exc);
Victor Stinnere225beb2019-06-03 18:14:24 +02001036 _PyEval_SignalAsyncExc(&runtime->ceval);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001037 return 1;
1038 }
1039 }
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001040 HEAD_UNLOCK(runtime);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001041 return 0;
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +00001042}
1043
1044
Guido van Rossumf5df46d2001-07-19 12:19:27 +00001045/* Routines for advanced debuggers, requested by David Beazley.
1046 Don't use unless you know what you are doing! */
1047
1048PyInterpreterState *
1049PyInterpreterState_Head(void)
1050{
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001051 return _PyRuntime.interpreters.head;
Guido van Rossumf5df46d2001-07-19 12:19:27 +00001052}
1053
1054PyInterpreterState *
Eric Snow6b4be192017-05-22 21:36:03 -07001055PyInterpreterState_Main(void)
1056{
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001057 return _PyRuntime.interpreters.main;
Eric Snow6b4be192017-05-22 21:36:03 -07001058}
1059
1060PyInterpreterState *
Guido van Rossumf5df46d2001-07-19 12:19:27 +00001061PyInterpreterState_Next(PyInterpreterState *interp) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001062 return interp->next;
Guido van Rossumf5df46d2001-07-19 12:19:27 +00001063}
1064
1065PyThreadState *
1066PyInterpreterState_ThreadHead(PyInterpreterState *interp) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001067 return interp->tstate_head;
Guido van Rossumf5df46d2001-07-19 12:19:27 +00001068}
1069
1070PyThreadState *
1071PyThreadState_Next(PyThreadState *tstate) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001072 return tstate->next;
Guido van Rossumf5df46d2001-07-19 12:19:27 +00001073}
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001074
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001075/* The implementation of sys._current_frames(). This is intended to be
1076 called with the GIL held, as it will be when called via
1077 sys._current_frames(). It's possible it would work fine even without
1078 the GIL held, but haven't thought enough about that.
1079*/
1080PyObject *
1081_PyThread_CurrentFrames(void)
1082{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001083 PyObject *result;
1084 PyInterpreterState *i;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001085
Steve Dowerb82e17e2019-05-23 08:45:22 -07001086 if (PySys_Audit("sys._current_frames", NULL) < 0) {
1087 return NULL;
1088 }
1089
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001090 result = PyDict_New();
1091 if (result == NULL)
1092 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001093
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001094 /* for i in all interpreters:
1095 * for t in all of i's thread states:
1096 * if t's frame isn't NULL, map t's id to its frame
Ezio Melotti13925002011-03-16 11:05:33 +02001097 * Because these lists can mutate even when the GIL is held, we
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001098 * need to grab head_mutex for the duration.
1099 */
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001100 _PyRuntimeState *runtime = &_PyRuntime;
1101 HEAD_LOCK(runtime);
1102 for (i = runtime->interpreters.head; i != NULL; i = i->next) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001103 PyThreadState *t;
1104 for (t = i->tstate_head; t != NULL; t = t->next) {
1105 PyObject *id;
1106 int stat;
1107 struct _frame *frame = t->frame;
1108 if (frame == NULL)
1109 continue;
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +02001110 id = PyLong_FromUnsignedLong(t->thread_id);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001111 if (id == NULL)
1112 goto Fail;
1113 stat = PyDict_SetItem(result, id, (PyObject *)frame);
1114 Py_DECREF(id);
1115 if (stat < 0)
1116 goto Fail;
1117 }
1118 }
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001119 HEAD_UNLOCK(runtime);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001120 return result;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001121
1122 Fail:
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001123 HEAD_UNLOCK(runtime);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001124 Py_DECREF(result);
1125 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001126}
Guido van Rossumb8b6d0c2003-06-28 21:53:52 +00001127
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001128/* Python "auto thread state" API. */
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001129
1130/* Keep this as a static, as it is not reliable! It can only
1131 ever be compared to the state for the *current* thread.
1132 * If not equal, then it doesn't matter that the actual
1133 value may change immediately after comparison, as it can't
1134 possibly change to the current thread's state.
1135 * If equal, then the current thread holds the lock, so the value can't
1136 change until we yield the lock.
1137*/
1138static int
1139PyThreadState_IsCurrent(PyThreadState *tstate)
1140{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001141 /* Must be the tstate for this thread */
Victor Stinner0fd2c302019-06-04 03:15:09 +02001142 struct _gilstate_runtime_state *gilstate = &_PyRuntime.gilstate;
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001143 assert(_PyGILState_GetThisThreadState(gilstate) == tstate);
1144 return tstate == _PyRuntimeGILState_GetThreadState(gilstate);
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001145}
1146
Tim Peters4c1f5ec2004-10-09 17:25:05 +00001147/* Internal initialization/finalization functions called by
Martin Panterb4ce1fc2015-11-30 03:18:29 +00001148 Py_Initialize/Py_FinalizeEx
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001149*/
Tim Peters19717fa2004-10-09 17:38:29 +00001150void
Victor Stinner01b1cc12019-11-20 02:27:56 +01001151_PyGILState_Init(PyThreadState *tstate)
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001152{
Victor Stinner8bb32302019-04-24 16:47:40 +02001153 /* must init with valid states */
Victor Stinner0fd2c302019-06-04 03:15:09 +02001154 assert(tstate != NULL);
Victor Stinnerb45d2592019-06-20 00:05:23 +02001155 assert(tstate->interp != NULL);
Victor Stinner8bb32302019-04-24 16:47:40 +02001156
Victor Stinner01b1cc12019-11-20 02:27:56 +01001157 struct _gilstate_runtime_state *gilstate = &tstate->interp->runtime->gilstate;
Victor Stinner8bb32302019-04-24 16:47:40 +02001158
1159 if (PyThread_tss_create(&gilstate->autoTSSkey) != 0) {
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001160 Py_FatalError("Could not allocate TSS entry");
1161 }
Victor Stinnerb45d2592019-06-20 00:05:23 +02001162 gilstate->autoInterpreterState = tstate->interp;
Victor Stinner8bb32302019-04-24 16:47:40 +02001163 assert(PyThread_tss_get(&gilstate->autoTSSkey) == NULL);
1164 assert(tstate->gilstate_counter == 0);
Michael W. Hudson188d4362005-06-20 16:52:57 +00001165
Victor Stinner8bb32302019-04-24 16:47:40 +02001166 _PyGILState_NoteThreadState(gilstate, tstate);
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001167}
1168
Victor Stinner861d9ab2016-03-16 22:45:24 +01001169PyInterpreterState *
1170_PyGILState_GetInterpreterStateUnsafe(void)
1171{
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001172 return _PyRuntime.gilstate.autoInterpreterState;
Victor Stinner861d9ab2016-03-16 22:45:24 +01001173}
1174
Tim Peters19717fa2004-10-09 17:38:29 +00001175void
Victor Stinner7eee5be2019-11-20 10:38:34 +01001176_PyGILState_Fini(PyThreadState *tstate)
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001177{
Victor Stinner7eee5be2019-11-20 10:38:34 +01001178 struct _gilstate_runtime_state *gilstate = &tstate->interp->runtime->gilstate;
Victor Stinner8e91c242019-04-24 17:24:01 +02001179 PyThread_tss_delete(&gilstate->autoTSSkey);
1180 gilstate->autoInterpreterState = NULL;
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001181}
1182
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001183/* Reset the TSS key - called by PyOS_AfterFork_Child().
Antoine Pitrou0c759fe2011-04-27 19:28:05 +02001184 * This should not be necessary, but some - buggy - pthread implementations
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001185 * don't reset TSS upon fork(), see issue #10517.
Antoine Pitrou0c759fe2011-04-27 19:28:05 +02001186 */
1187void
Victor Stinnerb930a2d2019-04-24 17:14:33 +02001188_PyGILState_Reinit(_PyRuntimeState *runtime)
Antoine Pitrou0c759fe2011-04-27 19:28:05 +02001189{
Victor Stinnerb930a2d2019-04-24 17:14:33 +02001190 struct _gilstate_runtime_state *gilstate = &runtime->gilstate;
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001191 PyThreadState *tstate = _PyGILState_GetThisThreadState(gilstate);
Victor Stinnerb930a2d2019-04-24 17:14:33 +02001192
1193 PyThread_tss_delete(&gilstate->autoTSSkey);
1194 if (PyThread_tss_create(&gilstate->autoTSSkey) != 0) {
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001195 Py_FatalError("Could not allocate TSS entry");
1196 }
Antoine Pitrou0c759fe2011-04-27 19:28:05 +02001197
Charles-François Natalia233df82011-11-22 19:49:51 +01001198 /* If the thread had an associated auto thread state, reassociate it with
1199 * the new key. */
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001200 if (tstate &&
Victor Stinnerb930a2d2019-04-24 17:14:33 +02001201 PyThread_tss_set(&gilstate->autoTSSkey, (void *)tstate) != 0)
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001202 {
1203 Py_FatalError("Couldn't create autoTSSkey mapping");
1204 }
Antoine Pitrou0c759fe2011-04-27 19:28:05 +02001205}
1206
Michael W. Hudson188d4362005-06-20 16:52:57 +00001207/* When a thread state is created for a thread by some mechanism other than
1208 PyGILState_Ensure, it's important that the GILState machinery knows about
1209 it so it doesn't try to create another thread state for the thread (this is
1210 a better fix for SF bug #1010677 than the first one attempted).
1211*/
Thomas Wouters89f507f2006-12-13 04:49:30 +00001212static void
Victor Stinner8bb32302019-04-24 16:47:40 +02001213_PyGILState_NoteThreadState(struct _gilstate_runtime_state *gilstate, PyThreadState* tstate)
Michael W. Hudson188d4362005-06-20 16:52:57 +00001214{
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001215 /* If autoTSSkey isn't initialized, this must be the very first
Antoine Pitrou079ce542010-09-08 12:37:10 +00001216 threadstate created in Py_Initialize(). Don't do anything for now
1217 (we'll be back here when _PyGILState_Init is called). */
Victor Stinner8bb32302019-04-24 16:47:40 +02001218 if (!gilstate->autoInterpreterState) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001219 return;
Victor Stinner8bb32302019-04-24 16:47:40 +02001220 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001221
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001222 /* Stick the thread state for this thread in thread specific storage.
Michael W. Hudson188d4362005-06-20 16:52:57 +00001223
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001224 The only situation where you can legitimately have more than one
1225 thread state for an OS level thread is when there are multiple
Victor Stinner590cebe2013-12-13 11:08:56 +01001226 interpreters.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001227
Victor Stinner590cebe2013-12-13 11:08:56 +01001228 You shouldn't really be using the PyGILState_ APIs anyway (see issues
1229 #10915 and #15751).
Michael W. Hudson188d4362005-06-20 16:52:57 +00001230
Victor Stinner590cebe2013-12-13 11:08:56 +01001231 The first thread state created for that given OS level thread will
1232 "win", which seems reasonable behaviour.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001233 */
Victor Stinner8bb32302019-04-24 16:47:40 +02001234 if (PyThread_tss_get(&gilstate->autoTSSkey) == NULL) {
1235 if ((PyThread_tss_set(&gilstate->autoTSSkey, (void *)tstate)) != 0) {
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001236 Py_FatalError("Couldn't create autoTSSkey mapping");
Eric Snow2ebc5ce2017-09-07 23:51:28 -06001237 }
Victor Stinner590cebe2013-12-13 11:08:56 +01001238 }
Michael W. Hudson188d4362005-06-20 16:52:57 +00001239
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001240 /* PyGILState_Release must not try to delete this thread state. */
1241 tstate->gilstate_counter = 1;
Michael W. Hudson188d4362005-06-20 16:52:57 +00001242}
1243
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001244/* The public functions */
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001245static PyThreadState *
1246_PyGILState_GetThisThreadState(struct _gilstate_runtime_state *gilstate)
1247{
1248 if (gilstate->autoInterpreterState == NULL)
1249 return NULL;
1250 return (PyThreadState *)PyThread_tss_get(&gilstate->autoTSSkey);
1251}
1252
Tim Peters19717fa2004-10-09 17:38:29 +00001253PyThreadState *
1254PyGILState_GetThisThreadState(void)
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001255{
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001256 return _PyGILState_GetThisThreadState(&_PyRuntime.gilstate);
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001257}
1258
Kristján Valur Jónsson684cd0e2013-03-23 03:36:16 -07001259int
1260PyGILState_Check(void)
1261{
Victor Stinner8a1be612016-03-14 22:07:55 +01001262
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001263 if (!_PyGILState_check_enabled) {
Victor Stinner8a1be612016-03-14 22:07:55 +01001264 return 1;
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09001265 }
Victor Stinner8a1be612016-03-14 22:07:55 +01001266
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001267 struct _gilstate_runtime_state *gilstate = &_PyRuntime.gilstate;
1268 if (!PyThread_tss_is_created(&gilstate->autoTSSkey)) {
1269 return 1;
1270 }
Victor Stinner8a1be612016-03-14 22:07:55 +01001271
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001272 PyThreadState *tstate = _PyRuntimeGILState_GetThreadState(gilstate);
1273 if (tstate == NULL) {
1274 return 0;
1275 }
1276
1277 return (tstate == _PyGILState_GetThisThreadState(gilstate));
Kristján Valur Jónsson684cd0e2013-03-23 03:36:16 -07001278}
1279
Tim Peters19717fa2004-10-09 17:38:29 +00001280PyGILState_STATE
1281PyGILState_Ensure(void)
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001282{
Victor Stinner175a7042020-03-10 00:37:48 +01001283 _PyRuntimeState *runtime = &_PyRuntime;
1284 struct _gilstate_runtime_state *gilstate = &runtime->gilstate;
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001285
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001286 /* Note that we do not auto-init Python here - apart from
1287 potential races with 2 threads auto-initializing, pep-311
1288 spells out other issues. Embedders are expected to have
Victor Stinner175a7042020-03-10 00:37:48 +01001289 called Py_Initialize(). */
1290
1291 /* Ensure that _PyEval_InitThreads() and _PyGILState_Init() have been
1292 called by Py_Initialize() */
1293 assert(_PyEval_ThreadsInitialized(runtime));
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001294 assert(gilstate->autoInterpreterState);
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001295
Victor Stinner175a7042020-03-10 00:37:48 +01001296 PyThreadState *tcur = (PyThreadState *)PyThread_tss_get(&gilstate->autoTSSkey);
1297 int current;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001298 if (tcur == NULL) {
Victor Stinner175a7042020-03-10 00:37:48 +01001299 /* Create a new Python thread state for this thread */
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001300 tcur = PyThreadState_New(gilstate->autoInterpreterState);
Victor Stinner175a7042020-03-10 00:37:48 +01001301 if (tcur == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001302 Py_FatalError("Couldn't create thread-state for new thread");
Victor Stinner175a7042020-03-10 00:37:48 +01001303 }
1304
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001305 /* This is our thread state! We'll need to delete it in the
1306 matching call to PyGILState_Release(). */
1307 tcur->gilstate_counter = 0;
1308 current = 0; /* new thread state is never current */
1309 }
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001310 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001311 current = PyThreadState_IsCurrent(tcur);
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001312 }
1313
1314 if (current == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001315 PyEval_RestoreThread(tcur);
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001316 }
1317
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001318 /* Update our counter in the thread-state - no need for locks:
1319 - tcur will remain valid as we hold the GIL.
1320 - the counter is safe as we are the only thread "allowed"
1321 to modify this value
1322 */
1323 ++tcur->gilstate_counter;
Victor Stinnerb4d1e1f2017-11-30 22:05:00 +01001324
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001325 return current ? PyGILState_LOCKED : PyGILState_UNLOCKED;
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001326}
1327
Tim Peters19717fa2004-10-09 17:38:29 +00001328void
1329PyGILState_Release(PyGILState_STATE oldstate)
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001330{
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001331 _PyRuntimeState *runtime = &_PyRuntime;
1332 PyThreadState *tcur = PyThread_tss_get(&runtime->gilstate.autoTSSkey);
1333 if (tcur == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001334 Py_FatalError("auto-releasing thread-state, "
1335 "but no thread-state for this thread");
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001336 }
1337
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001338 /* We must hold the GIL and have our thread state current */
1339 /* XXX - remove the check - the assert should be fine,
1340 but while this is very new (April 2003), the extra check
1341 by release-only users can't hurt.
1342 */
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001343 if (!PyThreadState_IsCurrent(tcur)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001344 Py_FatalError("This thread state must be current when releasing");
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001345 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001346 assert(PyThreadState_IsCurrent(tcur));
1347 --tcur->gilstate_counter;
1348 assert(tcur->gilstate_counter >= 0); /* illegal counter value */
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001349
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001350 /* If we're going to destroy this thread-state, we must
1351 * clear it while the GIL is held, as destructors may run.
1352 */
1353 if (tcur->gilstate_counter == 0) {
1354 /* can't have been locked when we created it */
1355 assert(oldstate == PyGILState_UNLOCKED);
1356 PyThreadState_Clear(tcur);
1357 /* Delete the thread-state. Note this releases the GIL too!
1358 * It's vital that the GIL be held here, to avoid shutdown
1359 * races; see bugs 225673 and 1061968 (that nasty bug has a
1360 * habit of coming back).
1361 */
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001362 _PyThreadState_DeleteCurrent(runtime);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001363 }
1364 /* Release the lock if necessary */
1365 else if (oldstate == PyGILState_UNLOCKED)
1366 PyEval_SaveThread();
Mark Hammond8d98d2c2003-04-19 15:41:53 +00001367}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001368
Benjamin Peterson3bf01752012-04-13 18:06:36 -04001369
Eric Snow7f8bfc92018-01-29 18:23:44 -07001370/**************************/
1371/* cross-interpreter data */
1372/**************************/
1373
1374/* cross-interpreter data */
1375
1376crossinterpdatafunc _PyCrossInterpreterData_Lookup(PyObject *);
1377
1378/* This is a separate func from _PyCrossInterpreterData_Lookup in order
1379 to keep the registry code separate. */
1380static crossinterpdatafunc
1381_lookup_getdata(PyObject *obj)
1382{
1383 crossinterpdatafunc getdata = _PyCrossInterpreterData_Lookup(obj);
1384 if (getdata == NULL && PyErr_Occurred() == 0)
1385 PyErr_Format(PyExc_ValueError,
1386 "%S does not support cross-interpreter data", obj);
1387 return getdata;
1388}
1389
1390int
1391_PyObject_CheckCrossInterpreterData(PyObject *obj)
1392{
1393 crossinterpdatafunc getdata = _lookup_getdata(obj);
1394 if (getdata == NULL) {
1395 return -1;
1396 }
1397 return 0;
1398}
1399
1400static int
1401_check_xidata(_PyCrossInterpreterData *data)
1402{
1403 // data->data can be anything, including NULL, so we don't check it.
1404
1405 // data->obj may be NULL, so we don't check it.
1406
1407 if (data->interp < 0) {
1408 PyErr_SetString(PyExc_SystemError, "missing interp");
1409 return -1;
1410 }
1411
1412 if (data->new_object == NULL) {
1413 PyErr_SetString(PyExc_SystemError, "missing new_object func");
1414 return -1;
1415 }
1416
1417 // data->free may be NULL, so we don't check it.
1418
1419 return 0;
1420}
1421
1422int
1423_PyObject_GetCrossInterpreterData(PyObject *obj, _PyCrossInterpreterData *data)
1424{
Victor Stinnercaba55b2018-08-03 15:33:52 +02001425 // _PyInterpreterState_Get() aborts if lookup fails, so we don't need
Eric Snow7f8bfc92018-01-29 18:23:44 -07001426 // to check the result for NULL.
Victor Stinnercaba55b2018-08-03 15:33:52 +02001427 PyInterpreterState *interp = _PyInterpreterState_Get();
Eric Snow7f8bfc92018-01-29 18:23:44 -07001428
1429 // Reset data before re-populating.
1430 *data = (_PyCrossInterpreterData){0};
1431 data->free = PyMem_RawFree; // Set a default that may be overridden.
1432
1433 // Call the "getdata" func for the object.
1434 Py_INCREF(obj);
1435 crossinterpdatafunc getdata = _lookup_getdata(obj);
1436 if (getdata == NULL) {
1437 Py_DECREF(obj);
1438 return -1;
1439 }
1440 int res = getdata(obj, data);
1441 Py_DECREF(obj);
1442 if (res != 0) {
1443 return -1;
1444 }
1445
1446 // Fill in the blanks and validate the result.
Eric Snow7f8bfc92018-01-29 18:23:44 -07001447 data->interp = interp->id;
1448 if (_check_xidata(data) != 0) {
1449 _PyCrossInterpreterData_Release(data);
1450 return -1;
1451 }
1452
1453 return 0;
1454}
1455
Victor Stinnere225beb2019-06-03 18:14:24 +02001456static void
Eric Snow63799132018-06-01 18:45:20 -06001457_release_xidata(void *arg)
1458{
1459 _PyCrossInterpreterData *data = (_PyCrossInterpreterData *)arg;
1460 if (data->free != NULL) {
1461 data->free(data->data);
1462 }
1463 Py_XDECREF(data->obj);
Victor Stinnere225beb2019-06-03 18:14:24 +02001464}
1465
1466static void
1467_call_in_interpreter(struct _gilstate_runtime_state *gilstate,
1468 PyInterpreterState *interp,
1469 void (*func)(void *), void *arg)
1470{
1471 /* We would use Py_AddPendingCall() if it weren't specific to the
1472 * main interpreter (see bpo-33608). In the meantime we take a
1473 * naive approach.
1474 */
1475 PyThreadState *save_tstate = NULL;
1476 if (interp != _PyRuntimeGILState_GetThreadState(gilstate)->interp) {
1477 // XXX Using the "head" thread isn't strictly correct.
1478 PyThreadState *tstate = PyInterpreterState_ThreadHead(interp);
1479 // XXX Possible GILState issues?
1480 save_tstate = _PyThreadState_Swap(gilstate, tstate);
1481 }
1482
1483 func(arg);
1484
1485 // Switch back.
1486 if (save_tstate != NULL) {
1487 _PyThreadState_Swap(gilstate, save_tstate);
1488 }
Eric Snow63799132018-06-01 18:45:20 -06001489}
1490
Eric Snow7f8bfc92018-01-29 18:23:44 -07001491void
1492_PyCrossInterpreterData_Release(_PyCrossInterpreterData *data)
1493{
1494 if (data->data == NULL && data->obj == NULL) {
1495 // Nothing to release!
1496 return;
1497 }
1498
Victor Stinnere225beb2019-06-03 18:14:24 +02001499 // Switch to the original interpreter.
Eric Snow7f8bfc92018-01-29 18:23:44 -07001500 PyInterpreterState *interp = _PyInterpreterState_LookUpID(data->interp);
1501 if (interp == NULL) {
Min ho Kimc4cacc82019-07-31 08:16:13 +10001502 // The interpreter was already destroyed.
Eric Snow7f8bfc92018-01-29 18:23:44 -07001503 if (data->free != NULL) {
1504 // XXX Someone leaked some memory...
1505 }
1506 return;
1507 }
Eric Snowf53d9f22018-02-20 16:30:17 -07001508
Eric Snow7f8bfc92018-01-29 18:23:44 -07001509 // "Release" the data and/or the object.
Victor Stinnere225beb2019-06-03 18:14:24 +02001510 struct _gilstate_runtime_state *gilstate = &_PyRuntime.gilstate;
1511 _call_in_interpreter(gilstate, interp, _release_xidata, data);
Eric Snow7f8bfc92018-01-29 18:23:44 -07001512}
1513
1514PyObject *
1515_PyCrossInterpreterData_NewObject(_PyCrossInterpreterData *data)
1516{
1517 return data->new_object(data);
1518}
1519
1520/* registry of {type -> crossinterpdatafunc} */
1521
1522/* For now we use a global registry of shareable classes. An
1523 alternative would be to add a tp_* slot for a class's
1524 crossinterpdatafunc. It would be simpler and more efficient. */
1525
1526static int
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001527_register_xidata(struct _xidregistry *xidregistry, PyTypeObject *cls,
1528 crossinterpdatafunc getdata)
Eric Snow7f8bfc92018-01-29 18:23:44 -07001529{
1530 // Note that we effectively replace already registered classes
1531 // rather than failing.
1532 struct _xidregitem *newhead = PyMem_RawMalloc(sizeof(struct _xidregitem));
1533 if (newhead == NULL)
1534 return -1;
1535 newhead->cls = cls;
1536 newhead->getdata = getdata;
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001537 newhead->next = xidregistry->head;
1538 xidregistry->head = newhead;
Eric Snow7f8bfc92018-01-29 18:23:44 -07001539 return 0;
1540}
1541
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001542static void _register_builtins_for_crossinterpreter_data(struct _xidregistry *xidregistry);
Eric Snow7f8bfc92018-01-29 18:23:44 -07001543
1544int
Eric Snowc11183c2019-03-15 16:35:46 -06001545_PyCrossInterpreterData_RegisterClass(PyTypeObject *cls,
Eric Snow7f8bfc92018-01-29 18:23:44 -07001546 crossinterpdatafunc getdata)
1547{
1548 if (!PyType_Check(cls)) {
1549 PyErr_Format(PyExc_ValueError, "only classes may be registered");
1550 return -1;
1551 }
1552 if (getdata == NULL) {
1553 PyErr_Format(PyExc_ValueError, "missing 'getdata' func");
1554 return -1;
1555 }
1556
1557 // Make sure the class isn't ever deallocated.
1558 Py_INCREF((PyObject *)cls);
1559
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001560 struct _xidregistry *xidregistry = &_PyRuntime.xidregistry ;
1561 PyThread_acquire_lock(xidregistry->mutex, WAIT_LOCK);
1562 if (xidregistry->head == NULL) {
1563 _register_builtins_for_crossinterpreter_data(xidregistry);
Eric Snow7f8bfc92018-01-29 18:23:44 -07001564 }
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001565 int res = _register_xidata(xidregistry, cls, getdata);
1566 PyThread_release_lock(xidregistry->mutex);
Eric Snow7f8bfc92018-01-29 18:23:44 -07001567 return res;
1568}
1569
Eric Snow6d2cd902018-05-16 15:04:57 -04001570/* Cross-interpreter objects are looked up by exact match on the class.
1571 We can reassess this policy when we move from a global registry to a
1572 tp_* slot. */
1573
Eric Snow7f8bfc92018-01-29 18:23:44 -07001574crossinterpdatafunc
1575_PyCrossInterpreterData_Lookup(PyObject *obj)
1576{
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001577 struct _xidregistry *xidregistry = &_PyRuntime.xidregistry ;
Eric Snow7f8bfc92018-01-29 18:23:44 -07001578 PyObject *cls = PyObject_Type(obj);
1579 crossinterpdatafunc getdata = NULL;
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001580 PyThread_acquire_lock(xidregistry->mutex, WAIT_LOCK);
1581 struct _xidregitem *cur = xidregistry->head;
Eric Snow7f8bfc92018-01-29 18:23:44 -07001582 if (cur == NULL) {
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001583 _register_builtins_for_crossinterpreter_data(xidregistry);
1584 cur = xidregistry->head;
Eric Snow7f8bfc92018-01-29 18:23:44 -07001585 }
1586 for(; cur != NULL; cur = cur->next) {
1587 if (cur->cls == (PyTypeObject *)cls) {
1588 getdata = cur->getdata;
1589 break;
1590 }
1591 }
Eric Snow4e9da0d2018-02-02 21:49:49 -07001592 Py_DECREF(cls);
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001593 PyThread_release_lock(xidregistry->mutex);
Eric Snow7f8bfc92018-01-29 18:23:44 -07001594 return getdata;
1595}
1596
1597/* cross-interpreter data for builtin types */
1598
Eric Snow6d2cd902018-05-16 15:04:57 -04001599struct _shared_bytes_data {
1600 char *bytes;
1601 Py_ssize_t len;
1602};
1603
Eric Snow7f8bfc92018-01-29 18:23:44 -07001604static PyObject *
1605_new_bytes_object(_PyCrossInterpreterData *data)
1606{
Eric Snow6d2cd902018-05-16 15:04:57 -04001607 struct _shared_bytes_data *shared = (struct _shared_bytes_data *)(data->data);
1608 return PyBytes_FromStringAndSize(shared->bytes, shared->len);
Eric Snow7f8bfc92018-01-29 18:23:44 -07001609}
1610
1611static int
1612_bytes_shared(PyObject *obj, _PyCrossInterpreterData *data)
1613{
Eric Snow6d2cd902018-05-16 15:04:57 -04001614 struct _shared_bytes_data *shared = PyMem_NEW(struct _shared_bytes_data, 1);
1615 if (PyBytes_AsStringAndSize(obj, &shared->bytes, &shared->len) < 0) {
1616 return -1;
1617 }
1618 data->data = (void *)shared;
Eric Snow63799132018-06-01 18:45:20 -06001619 Py_INCREF(obj);
Eric Snow7f8bfc92018-01-29 18:23:44 -07001620 data->obj = obj; // Will be "released" (decref'ed) when data released.
1621 data->new_object = _new_bytes_object;
Eric Snow6d2cd902018-05-16 15:04:57 -04001622 data->free = PyMem_Free;
1623 return 0;
1624}
1625
1626struct _shared_str_data {
1627 int kind;
1628 const void *buffer;
1629 Py_ssize_t len;
1630};
1631
1632static PyObject *
1633_new_str_object(_PyCrossInterpreterData *data)
1634{
1635 struct _shared_str_data *shared = (struct _shared_str_data *)(data->data);
1636 return PyUnicode_FromKindAndData(shared->kind, shared->buffer, shared->len);
1637}
1638
1639static int
1640_str_shared(PyObject *obj, _PyCrossInterpreterData *data)
1641{
1642 struct _shared_str_data *shared = PyMem_NEW(struct _shared_str_data, 1);
1643 shared->kind = PyUnicode_KIND(obj);
1644 shared->buffer = PyUnicode_DATA(obj);
1645 shared->len = PyUnicode_GET_LENGTH(obj) - 1;
1646 data->data = (void *)shared;
Eric Snow63799132018-06-01 18:45:20 -06001647 Py_INCREF(obj);
Eric Snow6d2cd902018-05-16 15:04:57 -04001648 data->obj = obj; // Will be "released" (decref'ed) when data released.
1649 data->new_object = _new_str_object;
1650 data->free = PyMem_Free;
1651 return 0;
1652}
1653
1654static PyObject *
1655_new_long_object(_PyCrossInterpreterData *data)
1656{
Alexey Izbyshev16f842d2019-02-12 19:06:43 +03001657 return PyLong_FromSsize_t((Py_ssize_t)(data->data));
Eric Snow6d2cd902018-05-16 15:04:57 -04001658}
1659
1660static int
1661_long_shared(PyObject *obj, _PyCrossInterpreterData *data)
1662{
Alexey Izbyshev16f842d2019-02-12 19:06:43 +03001663 /* Note that this means the size of shareable ints is bounded by
1664 * sys.maxsize. Hence on 32-bit architectures that is half the
1665 * size of maximum shareable ints on 64-bit.
1666 */
1667 Py_ssize_t value = PyLong_AsSsize_t(obj);
Eric Snow6d2cd902018-05-16 15:04:57 -04001668 if (value == -1 && PyErr_Occurred()) {
1669 if (PyErr_ExceptionMatches(PyExc_OverflowError)) {
1670 PyErr_SetString(PyExc_OverflowError, "try sending as bytes");
1671 }
1672 return -1;
1673 }
1674 data->data = (void *)value;
1675 data->obj = NULL;
1676 data->new_object = _new_long_object;
1677 data->free = NULL;
Eric Snow7f8bfc92018-01-29 18:23:44 -07001678 return 0;
1679}
1680
1681static PyObject *
1682_new_none_object(_PyCrossInterpreterData *data)
1683{
1684 // XXX Singleton refcounts are problematic across interpreters...
1685 Py_INCREF(Py_None);
1686 return Py_None;
1687}
1688
1689static int
1690_none_shared(PyObject *obj, _PyCrossInterpreterData *data)
1691{
1692 data->data = NULL;
1693 // data->obj remains NULL
1694 data->new_object = _new_none_object;
1695 data->free = NULL; // There is nothing to free.
1696 return 0;
1697}
1698
1699static void
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001700_register_builtins_for_crossinterpreter_data(struct _xidregistry *xidregistry)
Eric Snow7f8bfc92018-01-29 18:23:44 -07001701{
1702 // None
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001703 if (_register_xidata(xidregistry, (PyTypeObject *)PyObject_Type(Py_None), _none_shared) != 0) {
Eric Snow7f8bfc92018-01-29 18:23:44 -07001704 Py_FatalError("could not register None for cross-interpreter sharing");
1705 }
1706
Eric Snow6d2cd902018-05-16 15:04:57 -04001707 // int
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001708 if (_register_xidata(xidregistry, &PyLong_Type, _long_shared) != 0) {
Eric Snow6d2cd902018-05-16 15:04:57 -04001709 Py_FatalError("could not register int for cross-interpreter sharing");
1710 }
1711
Eric Snow7f8bfc92018-01-29 18:23:44 -07001712 // bytes
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001713 if (_register_xidata(xidregistry, &PyBytes_Type, _bytes_shared) != 0) {
Eric Snow7f8bfc92018-01-29 18:23:44 -07001714 Py_FatalError("could not register bytes for cross-interpreter sharing");
1715 }
Eric Snow6d2cd902018-05-16 15:04:57 -04001716
1717 // str
Victor Stinner10c8e6a2019-04-26 01:53:18 +02001718 if (_register_xidata(xidregistry, &PyUnicode_Type, _str_shared) != 0) {
Eric Snow6d2cd902018-05-16 15:04:57 -04001719 Py_FatalError("could not register str for cross-interpreter sharing");
1720 }
Eric Snow7f8bfc92018-01-29 18:23:44 -07001721}
1722
1723
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001724#ifdef __cplusplus
1725}
1726#endif