Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 1 | |
| 2 | /* Thread and interpreter state structures and their interfaces */ |
| 3 | |
| 4 | #include "Python.h" |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 5 | #include "internal/pystate.h" |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 6 | |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 7 | #define GET_TSTATE() \ |
| 8 | ((PyThreadState*)_Py_atomic_load_relaxed(&_PyThreadState_Current)) |
| 9 | #define SET_TSTATE(value) \ |
Benjamin Peterson | ca47063 | 2016-09-06 13:47:26 -0700 | [diff] [blame] | 10 | _Py_atomic_store_relaxed(&_PyThreadState_Current, (uintptr_t)(value)) |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 11 | #define GET_INTERP_STATE() \ |
| 12 | (GET_TSTATE()->interp) |
| 13 | |
Victor Stinner | bfd316e | 2016-01-20 11:12:38 +0100 | [diff] [blame] | 14 | |
Tim Peters | 8470558 | 2004-10-10 02:47:33 +0000 | [diff] [blame] | 15 | /* -------------------------------------------------------------------------- |
| 16 | CAUTION |
| 17 | |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 18 | Always use PyMem_RawMalloc() and PyMem_RawFree() directly in this file. A |
| 19 | number of these functions are advertised as safe to call when the GIL isn't |
| 20 | held, and in a debug build Python redirects (e.g.) PyMem_NEW (etc) to Python's |
| 21 | debugging obmalloc functions. Those aren't thread-safe (they rely on the GIL |
| 22 | to avoid the expense of doing their own locking). |
Tim Peters | 8470558 | 2004-10-10 02:47:33 +0000 | [diff] [blame] | 23 | -------------------------------------------------------------------------- */ |
| 24 | |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 25 | #ifdef HAVE_DLOPEN |
| 26 | #ifdef HAVE_DLFCN_H |
| 27 | #include <dlfcn.h> |
| 28 | #endif |
Serhiy Storchaka | c2f7d87 | 2016-05-04 09:44:44 +0300 | [diff] [blame] | 29 | #if !HAVE_DECL_RTLD_LAZY |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 30 | #define RTLD_LAZY 1 |
| 31 | #endif |
| 32 | #endif |
| 33 | |
Benjamin Peterson | 43162b8 | 2012-04-13 11:58:27 -0400 | [diff] [blame] | 34 | #ifdef __cplusplus |
| 35 | extern "C" { |
| 36 | #endif |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 37 | |
Victor Stinner | 5d39e04 | 2017-11-29 17:20:38 +0100 | [diff] [blame] | 38 | static _PyInitError |
| 39 | _PyRuntimeState_Init_impl(_PyRuntimeState *runtime) |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 40 | { |
| 41 | memset(runtime, 0, sizeof(*runtime)); |
Victor Stinner | 8a1be61 | 2016-03-14 22:07:55 +0100 | [diff] [blame] | 42 | |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 43 | _PyGC_Initialize(&runtime->gc); |
| 44 | _PyEval_Initialize(&runtime->ceval); |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 45 | |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 46 | runtime->gilstate.check_enabled = 1; |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 47 | |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 48 | /* A TSS key must be initialized with Py_tss_NEEDS_INIT |
| 49 | in accordance with the specification. */ |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 50 | Py_tss_t initial = Py_tss_NEEDS_INIT; |
| 51 | runtime->gilstate.autoTSSkey = initial; |
Guido van Rossum | 1d5ad90 | 1999-06-18 14:22:24 +0000 | [diff] [blame] | 52 | |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 53 | runtime->interpreters.mutex = PyThread_allocate_lock(); |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 54 | if (runtime->interpreters.mutex == NULL) { |
| 55 | return _Py_INIT_ERR("Can't initialize threads for interpreter"); |
| 56 | } |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 57 | runtime->interpreters.next_id = -1; |
Eric Snow | 7f8bfc9 | 2018-01-29 18:23:44 -0700 | [diff] [blame] | 58 | |
| 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 Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 64 | return _Py_INIT_OK(); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 65 | } |
Eric Snow | 05351c1 | 2017-09-05 21:43:08 -0700 | [diff] [blame] | 66 | |
Victor Stinner | 5d39e04 | 2017-11-29 17:20:38 +0100 | [diff] [blame] | 67 | _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 Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 81 | void |
| 82 | _PyRuntimeState_Fini(_PyRuntimeState *runtime) |
| 83 | { |
Victor Stinner | 5d39e04 | 2017-11-29 17:20:38 +0100 | [diff] [blame] | 84 | /* Force the allocator used by _PyRuntimeState_Init(). */ |
| 85 | PyMemAllocatorEx old_alloc; |
| 86 | _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc); |
Victor Stinner | ccb0442 | 2017-11-16 03:20:31 -0800 | [diff] [blame] | 87 | |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 88 | if (runtime->interpreters.mutex != NULL) { |
| 89 | PyThread_free_lock(runtime->interpreters.mutex); |
| 90 | runtime->interpreters.mutex = NULL; |
| 91 | } |
Victor Stinner | ccb0442 | 2017-11-16 03:20:31 -0800 | [diff] [blame] | 92 | |
| 93 | PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 94 | } |
| 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 Snow | 05351c1 | 2017-09-05 21:43:08 -0700 | [diff] [blame] | 99 | |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 100 | static void _PyGILState_NoteThreadState(PyThreadState* tstate); |
| 101 | |
Victor Stinner | a7368ac | 2017-11-15 18:11:45 -0800 | [diff] [blame] | 102 | _PyInitError |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 103 | _PyInterpreterState_Enable(_PyRuntimeState *runtime) |
Eric Snow | e377416 | 2017-05-22 19:46:40 -0700 | [diff] [blame] | 104 | { |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 105 | runtime->interpreters.next_id = 0; |
| 106 | /* Since we only call _PyRuntimeState_Init() once per process |
| 107 | (see _PyRuntime_Initialize()), we make sure the mutex is |
| 108 | initialized here. */ |
| 109 | if (runtime->interpreters.mutex == NULL) { |
| 110 | runtime->interpreters.mutex = PyThread_allocate_lock(); |
Victor Stinner | a7368ac | 2017-11-15 18:11:45 -0800 | [diff] [blame] | 111 | if (runtime->interpreters.mutex == NULL) { |
| 112 | return _Py_INIT_ERR("Can't initialize threads for interpreter"); |
| 113 | } |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 114 | } |
Victor Stinner | a7368ac | 2017-11-15 18:11:45 -0800 | [diff] [blame] | 115 | return _Py_INIT_OK(); |
Eric Snow | e377416 | 2017-05-22 19:46:40 -0700 | [diff] [blame] | 116 | } |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 117 | |
| 118 | PyInterpreterState * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 119 | PyInterpreterState_New(void) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 120 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 121 | PyInterpreterState *interp = (PyInterpreterState *) |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 122 | PyMem_RawMalloc(sizeof(PyInterpreterState)); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 123 | |
Victor Stinner | d434110 | 2017-11-23 00:12:09 +0100 | [diff] [blame] | 124 | if (interp == NULL) { |
| 125 | return NULL; |
| 126 | } |
| 127 | |
Miss Islington (bot) | 3db05a3 | 2018-02-16 18:15:24 -0800 | [diff] [blame] | 128 | interp->id_refcount = -1; |
| 129 | interp->id_mutex = NULL; |
Victor Stinner | d434110 | 2017-11-23 00:12:09 +0100 | [diff] [blame] | 130 | interp->modules = NULL; |
| 131 | interp->modules_by_index = NULL; |
| 132 | interp->sysdict = NULL; |
| 133 | interp->builtins = NULL; |
| 134 | interp->builtins_copy = NULL; |
| 135 | interp->tstate_head = NULL; |
| 136 | interp->check_interval = 100; |
| 137 | interp->num_threads = 0; |
| 138 | interp->pythread_stacksize = 0; |
| 139 | interp->codec_search_path = NULL; |
| 140 | interp->codec_search_cache = NULL; |
| 141 | interp->codec_error_registry = NULL; |
| 142 | interp->codecs_initialized = 0; |
| 143 | interp->fscodec_initialized = 0; |
| 144 | interp->core_config = _PyCoreConfig_INIT; |
| 145 | interp->config = _PyMainInterpreterConfig_INIT; |
| 146 | interp->importlib = NULL; |
| 147 | interp->import_func = NULL; |
| 148 | interp->eval_frame = _PyEval_EvalFrameDefault; |
| 149 | interp->co_extra_user_count = 0; |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 150 | #ifdef HAVE_DLOPEN |
Serhiy Storchaka | c2f7d87 | 2016-05-04 09:44:44 +0300 | [diff] [blame] | 151 | #if HAVE_DECL_RTLD_NOW |
Victor Stinner | d434110 | 2017-11-23 00:12:09 +0100 | [diff] [blame] | 152 | interp->dlopenflags = RTLD_NOW; |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 153 | #else |
Victor Stinner | d434110 | 2017-11-23 00:12:09 +0100 | [diff] [blame] | 154 | interp->dlopenflags = RTLD_LAZY; |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 155 | #endif |
| 156 | #endif |
Antoine Pitrou | 346cbd3 | 2017-05-27 17:50:54 +0200 | [diff] [blame] | 157 | #ifdef HAVE_FORK |
Victor Stinner | d434110 | 2017-11-23 00:12:09 +0100 | [diff] [blame] | 158 | interp->before_forkers = NULL; |
| 159 | interp->after_forkers_parent = NULL; |
| 160 | interp->after_forkers_child = NULL; |
Antoine Pitrou | 346cbd3 | 2017-05-27 17:50:54 +0200 | [diff] [blame] | 161 | #endif |
Marcel Plch | 776407f | 2017-12-20 11:17:58 +0100 | [diff] [blame] | 162 | interp->pyexitfunc = NULL; |
| 163 | interp->pyexitmodule = NULL; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 164 | |
Victor Stinner | d434110 | 2017-11-23 00:12:09 +0100 | [diff] [blame] | 165 | HEAD_LOCK(); |
| 166 | interp->next = _PyRuntime.interpreters.head; |
| 167 | if (_PyRuntime.interpreters.main == NULL) { |
| 168 | _PyRuntime.interpreters.main = interp; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 169 | } |
Victor Stinner | d434110 | 2017-11-23 00:12:09 +0100 | [diff] [blame] | 170 | _PyRuntime.interpreters.head = interp; |
| 171 | if (_PyRuntime.interpreters.next_id < 0) { |
| 172 | /* overflow or Py_Initialize() not called! */ |
| 173 | PyErr_SetString(PyExc_RuntimeError, |
| 174 | "failed to get an interpreter ID"); |
Eric Snow | 7f8bfc9 | 2018-01-29 18:23:44 -0700 | [diff] [blame] | 175 | /* XXX deallocate! */ |
Victor Stinner | d434110 | 2017-11-23 00:12:09 +0100 | [diff] [blame] | 176 | interp = NULL; |
| 177 | } else { |
| 178 | interp->id = _PyRuntime.interpreters.next_id; |
| 179 | _PyRuntime.interpreters.next_id += 1; |
| 180 | } |
| 181 | HEAD_UNLOCK(); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 182 | |
Yury Selivanov | f23746a | 2018-01-22 19:11:18 -0500 | [diff] [blame] | 183 | interp->tstate_next_unique_id = 0; |
| 184 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 185 | return interp; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | |
| 189 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 190 | PyInterpreterState_Clear(PyInterpreterState *interp) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 191 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 192 | PyThreadState *p; |
| 193 | HEAD_LOCK(); |
| 194 | for (p = interp->tstate_head; p != NULL; p = p->next) |
| 195 | PyThreadState_Clear(p); |
| 196 | HEAD_UNLOCK(); |
Victor Stinner | da27341 | 2017-12-15 01:46:02 +0100 | [diff] [blame] | 197 | _PyCoreConfig_Clear(&interp->core_config); |
| 198 | _PyMainInterpreterConfig_Clear(&interp->config); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 199 | Py_CLEAR(interp->codec_search_path); |
| 200 | Py_CLEAR(interp->codec_search_cache); |
| 201 | Py_CLEAR(interp->codec_error_registry); |
Eric Snow | 93c92f7 | 2017-09-13 23:46:04 -0700 | [diff] [blame] | 202 | Py_CLEAR(interp->modules); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 203 | Py_CLEAR(interp->modules_by_index); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 204 | Py_CLEAR(interp->sysdict); |
| 205 | Py_CLEAR(interp->builtins); |
Serhiy Storchaka | 87a5c51 | 2014-02-10 18:21:34 +0200 | [diff] [blame] | 206 | Py_CLEAR(interp->builtins_copy); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 207 | Py_CLEAR(interp->importlib); |
Serhiy Storchaka | 133138a | 2016-08-02 22:51:21 +0300 | [diff] [blame] | 208 | Py_CLEAR(interp->import_func); |
Antoine Pitrou | 346cbd3 | 2017-05-27 17:50:54 +0200 | [diff] [blame] | 209 | #ifdef HAVE_FORK |
| 210 | Py_CLEAR(interp->before_forkers); |
| 211 | Py_CLEAR(interp->after_forkers_parent); |
| 212 | Py_CLEAR(interp->after_forkers_child); |
| 213 | #endif |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | |
| 217 | static void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 218 | zapthreads(PyInterpreterState *interp) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 219 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 220 | PyThreadState *p; |
| 221 | /* No need to lock the mutex here because this should only happen |
| 222 | when the threads are all really dead (XXX famous last words). */ |
| 223 | while ((p = interp->tstate_head) != NULL) { |
| 224 | PyThreadState_Delete(p); |
| 225 | } |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | |
| 229 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 230 | PyInterpreterState_Delete(PyInterpreterState *interp) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 231 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 232 | PyInterpreterState **p; |
| 233 | zapthreads(interp); |
| 234 | HEAD_LOCK(); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 235 | for (p = &_PyRuntime.interpreters.head; ; p = &(*p)->next) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 236 | if (*p == NULL) |
| 237 | Py_FatalError( |
| 238 | "PyInterpreterState_Delete: invalid interp"); |
| 239 | if (*p == interp) |
| 240 | break; |
| 241 | } |
| 242 | if (interp->tstate_head != NULL) |
| 243 | Py_FatalError("PyInterpreterState_Delete: remaining threads"); |
| 244 | *p = interp->next; |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 245 | if (_PyRuntime.interpreters.main == interp) { |
| 246 | _PyRuntime.interpreters.main = NULL; |
| 247 | if (_PyRuntime.interpreters.head != NULL) |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 248 | Py_FatalError("PyInterpreterState_Delete: remaining subinterpreters"); |
| 249 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 250 | HEAD_UNLOCK(); |
Miss Islington (bot) | 3db05a3 | 2018-02-16 18:15:24 -0800 | [diff] [blame] | 251 | if (interp->id_mutex != NULL) { |
| 252 | PyThread_free_lock(interp->id_mutex); |
| 253 | } |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 254 | PyMem_RawFree(interp); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | |
Eric Snow | e377416 | 2017-05-22 19:46:40 -0700 | [diff] [blame] | 258 | int64_t |
| 259 | PyInterpreterState_GetID(PyInterpreterState *interp) |
| 260 | { |
| 261 | if (interp == NULL) { |
| 262 | PyErr_SetString(PyExc_RuntimeError, "no interpreter provided"); |
| 263 | return -1; |
| 264 | } |
| 265 | return interp->id; |
| 266 | } |
| 267 | |
| 268 | |
Eric Snow | 7f8bfc9 | 2018-01-29 18:23:44 -0700 | [diff] [blame] | 269 | PyInterpreterState * |
| 270 | _PyInterpreterState_LookUpID(PY_INT64_T requested_id) |
| 271 | { |
| 272 | if (requested_id < 0) |
| 273 | goto error; |
| 274 | |
| 275 | PyInterpreterState *interp = PyInterpreterState_Head(); |
| 276 | while (interp != NULL) { |
| 277 | PY_INT64_T id = PyInterpreterState_GetID(interp); |
| 278 | if (id < 0) |
| 279 | return NULL; |
| 280 | if (requested_id == id) |
| 281 | return interp; |
| 282 | interp = PyInterpreterState_Next(interp); |
| 283 | } |
| 284 | |
| 285 | error: |
| 286 | PyErr_Format(PyExc_RuntimeError, |
| 287 | "unrecognized interpreter ID %lld", requested_id); |
| 288 | return NULL; |
| 289 | } |
| 290 | |
Miss Islington (bot) | 3db05a3 | 2018-02-16 18:15:24 -0800 | [diff] [blame] | 291 | |
| 292 | int |
| 293 | _PyInterpreterState_IDInitref(PyInterpreterState *interp) |
| 294 | { |
| 295 | if (interp->id_mutex != NULL) { |
| 296 | return 0; |
| 297 | } |
| 298 | interp->id_mutex = PyThread_allocate_lock(); |
| 299 | if (interp->id_mutex == NULL) { |
| 300 | PyErr_SetString(PyExc_RuntimeError, |
| 301 | "failed to create init interpreter ID mutex"); |
| 302 | return -1; |
| 303 | } |
| 304 | interp->id_refcount = 0; |
| 305 | return 0; |
| 306 | } |
| 307 | |
| 308 | |
| 309 | void |
| 310 | _PyInterpreterState_IDIncref(PyInterpreterState *interp) |
| 311 | { |
| 312 | if (interp->id_mutex == NULL) { |
| 313 | return; |
| 314 | } |
| 315 | PyThread_acquire_lock(interp->id_mutex, WAIT_LOCK); |
| 316 | interp->id_refcount += 1; |
| 317 | PyThread_release_lock(interp->id_mutex); |
| 318 | } |
| 319 | |
| 320 | |
| 321 | void |
| 322 | _PyInterpreterState_IDDecref(PyInterpreterState *interp) |
| 323 | { |
| 324 | if (interp->id_mutex == NULL) { |
| 325 | return; |
| 326 | } |
| 327 | PyThread_acquire_lock(interp->id_mutex, WAIT_LOCK); |
| 328 | assert(interp->id_refcount != 0); |
| 329 | interp->id_refcount -= 1; |
| 330 | int64_t refcount = interp->id_refcount; |
| 331 | PyThread_release_lock(interp->id_mutex); |
| 332 | |
| 333 | if (refcount == 0) { |
Miss Islington (bot) | eed3c7a | 2018-02-20 16:09:41 -0800 | [diff] [blame^] | 334 | // XXX Using the "head" thread isn't strictly correct. |
| 335 | PyThreadState *tstate = PyInterpreterState_ThreadHead(interp); |
| 336 | // XXX Possible GILState issues? |
| 337 | PyThreadState *save_tstate = PyThreadState_Swap(tstate); |
Miss Islington (bot) | 3db05a3 | 2018-02-16 18:15:24 -0800 | [diff] [blame] | 338 | Py_EndInterpreter(tstate); |
| 339 | PyThreadState_Swap(save_tstate); |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | |
Michael W. Hudson | 019a78e | 2002-11-08 12:53:11 +0000 | [diff] [blame] | 344 | /* Default implementation for _PyThreadState_GetFrame */ |
| 345 | static struct _frame * |
| 346 | threadstate_getframe(PyThreadState *self) |
| 347 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 348 | return self->frame; |
Michael W. Hudson | 019a78e | 2002-11-08 12:53:11 +0000 | [diff] [blame] | 349 | } |
| 350 | |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 351 | static PyThreadState * |
| 352 | new_threadstate(PyInterpreterState *interp, int init) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 353 | { |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 354 | PyThreadState *tstate = (PyThreadState *)PyMem_RawMalloc(sizeof(PyThreadState)); |
Tim Peters | 8470558 | 2004-10-10 02:47:33 +0000 | [diff] [blame] | 355 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 356 | if (_PyThreadState_GetFrame == NULL) |
| 357 | _PyThreadState_GetFrame = threadstate_getframe; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 358 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 359 | if (tstate != NULL) { |
| 360 | tstate->interp = interp; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 361 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 362 | tstate->frame = NULL; |
| 363 | tstate->recursion_depth = 0; |
| 364 | tstate->overflowed = 0; |
| 365 | tstate->recursion_critical = 0; |
pdox | 1896793 | 2017-10-25 23:03:01 -0700 | [diff] [blame] | 366 | tstate->stackcheck_counter = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 367 | tstate->tracing = 0; |
| 368 | tstate->use_tracing = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 369 | tstate->gilstate_counter = 0; |
| 370 | tstate->async_exc = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 371 | tstate->thread_id = PyThread_get_thread_ident(); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 372 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 373 | tstate->dict = NULL; |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 374 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 375 | tstate->curexc_type = NULL; |
| 376 | tstate->curexc_value = NULL; |
| 377 | tstate->curexc_traceback = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 378 | |
Mark Shannon | ae3087c | 2017-10-22 22:41:51 +0100 | [diff] [blame] | 379 | tstate->exc_state.exc_type = NULL; |
| 380 | tstate->exc_state.exc_value = NULL; |
| 381 | tstate->exc_state.exc_traceback = NULL; |
| 382 | tstate->exc_state.previous_item = NULL; |
| 383 | tstate->exc_info = &tstate->exc_state; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 384 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 385 | tstate->c_profilefunc = NULL; |
| 386 | tstate->c_tracefunc = NULL; |
| 387 | tstate->c_profileobj = NULL; |
| 388 | tstate->c_traceobj = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 389 | |
Antoine Pitrou | 2b0218a | 2012-09-06 00:59:49 +0200 | [diff] [blame] | 390 | tstate->trash_delete_nesting = 0; |
| 391 | tstate->trash_delete_later = NULL; |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 392 | tstate->on_delete = NULL; |
| 393 | tstate->on_delete_data = NULL; |
Antoine Pitrou | 2b0218a | 2012-09-06 00:59:49 +0200 | [diff] [blame] | 394 | |
Nathaniel J. Smith | fc2f407 | 2018-01-21 06:44:07 -0800 | [diff] [blame] | 395 | tstate->coroutine_origin_tracking_depth = 0; |
| 396 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 397 | tstate->coroutine_wrapper = NULL; |
Yury Selivanov | aab3c4a | 2015-06-02 18:43:51 -0400 | [diff] [blame] | 398 | tstate->in_coroutine_wrapper = 0; |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 399 | |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 400 | tstate->async_gen_firstiter = NULL; |
| 401 | tstate->async_gen_finalizer = NULL; |
| 402 | |
Yury Selivanov | f23746a | 2018-01-22 19:11:18 -0500 | [diff] [blame] | 403 | tstate->context = NULL; |
| 404 | tstate->context_ver = 1; |
| 405 | |
| 406 | tstate->id = ++interp->tstate_next_unique_id; |
| 407 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 408 | if (init) |
| 409 | _PyThreadState_Init(tstate); |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 410 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 411 | HEAD_LOCK(); |
Charles-Francois Natali | f28dfdd | 2013-05-08 21:09:52 +0200 | [diff] [blame] | 412 | tstate->prev = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 413 | tstate->next = interp->tstate_head; |
Charles-Francois Natali | f28dfdd | 2013-05-08 21:09:52 +0200 | [diff] [blame] | 414 | if (tstate->next) |
| 415 | tstate->next->prev = tstate; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 416 | interp->tstate_head = tstate; |
| 417 | HEAD_UNLOCK(); |
| 418 | } |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 419 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 420 | return tstate; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 421 | } |
| 422 | |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 423 | PyThreadState * |
| 424 | PyThreadState_New(PyInterpreterState *interp) |
| 425 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 426 | return new_threadstate(interp, 1); |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 427 | } |
| 428 | |
| 429 | PyThreadState * |
| 430 | _PyThreadState_Prealloc(PyInterpreterState *interp) |
| 431 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 432 | return new_threadstate(interp, 0); |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | void |
| 436 | _PyThreadState_Init(PyThreadState *tstate) |
| 437 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 438 | _PyGILState_NoteThreadState(tstate); |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 439 | } |
| 440 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 441 | PyObject* |
Martin v. Löwis | 7800f75 | 2012-06-22 12:20:55 +0200 | [diff] [blame] | 442 | PyState_FindModule(struct PyModuleDef* module) |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 443 | { |
Martin v. Löwis | 7800f75 | 2012-06-22 12:20:55 +0200 | [diff] [blame] | 444 | Py_ssize_t index = module->m_base.m_index; |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 445 | PyInterpreterState *state = GET_INTERP_STATE(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 446 | PyObject *res; |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 447 | if (module->m_slots) { |
| 448 | return NULL; |
| 449 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 450 | if (index == 0) |
| 451 | return NULL; |
| 452 | if (state->modules_by_index == NULL) |
| 453 | return NULL; |
Antoine Pitrou | 75506e8 | 2012-08-20 19:30:46 +0200 | [diff] [blame] | 454 | if (index >= PyList_GET_SIZE(state->modules_by_index)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 455 | return NULL; |
| 456 | res = PyList_GET_ITEM(state->modules_by_index, index); |
| 457 | return res==Py_None ? NULL : res; |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | int |
| 461 | _PyState_AddModule(PyObject* module, struct PyModuleDef* def) |
| 462 | { |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 463 | PyInterpreterState *state; |
Berker Peksag | 4b7b565 | 2016-08-22 18:05:56 +0300 | [diff] [blame] | 464 | if (!def) { |
| 465 | assert(PyErr_Occurred()); |
| 466 | return -1; |
| 467 | } |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 468 | if (def->m_slots) { |
| 469 | PyErr_SetString(PyExc_SystemError, |
| 470 | "PyState_AddModule called on module with slots"); |
| 471 | return -1; |
| 472 | } |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 473 | state = GET_INTERP_STATE(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 474 | if (!state->modules_by_index) { |
| 475 | state->modules_by_index = PyList_New(0); |
| 476 | if (!state->modules_by_index) |
| 477 | return -1; |
| 478 | } |
| 479 | while(PyList_GET_SIZE(state->modules_by_index) <= def->m_base.m_index) |
| 480 | if (PyList_Append(state->modules_by_index, Py_None) < 0) |
| 481 | return -1; |
| 482 | Py_INCREF(module); |
| 483 | return PyList_SetItem(state->modules_by_index, |
| 484 | def->m_base.m_index, module); |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 485 | } |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 486 | |
Martin v. Löwis | 7800f75 | 2012-06-22 12:20:55 +0200 | [diff] [blame] | 487 | int |
| 488 | PyState_AddModule(PyObject* module, struct PyModuleDef* def) |
| 489 | { |
| 490 | Py_ssize_t index; |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 491 | PyInterpreterState *state = GET_INTERP_STATE(); |
Martin v. Löwis | 7800f75 | 2012-06-22 12:20:55 +0200 | [diff] [blame] | 492 | if (!def) { |
| 493 | Py_FatalError("PyState_AddModule: Module Definition is NULL"); |
| 494 | return -1; |
| 495 | } |
| 496 | index = def->m_base.m_index; |
| 497 | if (state->modules_by_index) { |
| 498 | if(PyList_GET_SIZE(state->modules_by_index) >= index) { |
| 499 | if(module == PyList_GET_ITEM(state->modules_by_index, index)) { |
| 500 | Py_FatalError("PyState_AddModule: Module already added!"); |
| 501 | return -1; |
| 502 | } |
| 503 | } |
| 504 | } |
| 505 | return _PyState_AddModule(module, def); |
| 506 | } |
| 507 | |
| 508 | int |
| 509 | PyState_RemoveModule(struct PyModuleDef* def) |
| 510 | { |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 511 | PyInterpreterState *state; |
Martin v. Löwis | 7800f75 | 2012-06-22 12:20:55 +0200 | [diff] [blame] | 512 | Py_ssize_t index = def->m_base.m_index; |
Nick Coghlan | d5cacbb | 2015-05-23 22:24:10 +1000 | [diff] [blame] | 513 | if (def->m_slots) { |
| 514 | PyErr_SetString(PyExc_SystemError, |
| 515 | "PyState_RemoveModule called on module with slots"); |
| 516 | return -1; |
| 517 | } |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 518 | state = GET_INTERP_STATE(); |
Martin v. Löwis | 7800f75 | 2012-06-22 12:20:55 +0200 | [diff] [blame] | 519 | if (index == 0) { |
| 520 | Py_FatalError("PyState_RemoveModule: Module index invalid."); |
| 521 | return -1; |
| 522 | } |
| 523 | if (state->modules_by_index == NULL) { |
| 524 | Py_FatalError("PyState_RemoveModule: Interpreters module-list not acessible."); |
| 525 | return -1; |
| 526 | } |
| 527 | if (index > PyList_GET_SIZE(state->modules_by_index)) { |
| 528 | Py_FatalError("PyState_RemoveModule: Module index out of bounds."); |
| 529 | return -1; |
| 530 | } |
| 531 | return PyList_SetItem(state->modules_by_index, index, Py_None); |
| 532 | } |
| 533 | |
Antoine Pitrou | 40322e6 | 2013-08-11 00:30:09 +0200 | [diff] [blame] | 534 | /* used by import.c:PyImport_Cleanup */ |
| 535 | void |
| 536 | _PyState_ClearModules(void) |
| 537 | { |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 538 | PyInterpreterState *state = GET_INTERP_STATE(); |
Antoine Pitrou | 40322e6 | 2013-08-11 00:30:09 +0200 | [diff] [blame] | 539 | if (state->modules_by_index) { |
| 540 | Py_ssize_t i; |
| 541 | for (i = 0; i < PyList_GET_SIZE(state->modules_by_index); i++) { |
| 542 | PyObject *m = PyList_GET_ITEM(state->modules_by_index, i); |
| 543 | if (PyModule_Check(m)) { |
| 544 | /* cleanup the saved copy of module dicts */ |
| 545 | PyModuleDef *md = PyModule_GetDef(m); |
| 546 | if (md) |
| 547 | Py_CLEAR(md->m_base.m_copy); |
| 548 | } |
| 549 | } |
| 550 | /* Setting modules_by_index to NULL could be dangerous, so we |
| 551 | clear the list instead. */ |
| 552 | if (PyList_SetSlice(state->modules_by_index, |
| 553 | 0, PyList_GET_SIZE(state->modules_by_index), |
| 554 | NULL)) |
| 555 | PyErr_WriteUnraisable(state->modules_by_index); |
| 556 | } |
| 557 | } |
| 558 | |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 559 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 560 | PyThreadState_Clear(PyThreadState *tstate) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 561 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 562 | if (Py_VerboseFlag && tstate->frame != NULL) |
| 563 | fprintf(stderr, |
| 564 | "PyThreadState_Clear: warning: thread still has a frame\n"); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 565 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 566 | Py_CLEAR(tstate->frame); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 567 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 568 | Py_CLEAR(tstate->dict); |
| 569 | Py_CLEAR(tstate->async_exc); |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 570 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 571 | Py_CLEAR(tstate->curexc_type); |
| 572 | Py_CLEAR(tstate->curexc_value); |
| 573 | Py_CLEAR(tstate->curexc_traceback); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 574 | |
Mark Shannon | ae3087c | 2017-10-22 22:41:51 +0100 | [diff] [blame] | 575 | Py_CLEAR(tstate->exc_state.exc_type); |
| 576 | Py_CLEAR(tstate->exc_state.exc_value); |
| 577 | Py_CLEAR(tstate->exc_state.exc_traceback); |
Serhiy Storchaka | bdf4298 | 2017-10-26 16:59:40 +0300 | [diff] [blame] | 578 | |
Mark Shannon | ae3087c | 2017-10-22 22:41:51 +0100 | [diff] [blame] | 579 | /* The stack of exception states should contain just this thread. */ |
| 580 | assert(tstate->exc_info->previous_item == NULL); |
| 581 | if (Py_VerboseFlag && tstate->exc_info != &tstate->exc_state) { |
| 582 | fprintf(stderr, |
| 583 | "PyThreadState_Clear: warning: thread still has a generator\n"); |
| 584 | } |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 585 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 586 | tstate->c_profilefunc = NULL; |
| 587 | tstate->c_tracefunc = NULL; |
| 588 | Py_CLEAR(tstate->c_profileobj); |
| 589 | Py_CLEAR(tstate->c_traceobj); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 590 | |
| 591 | Py_CLEAR(tstate->coroutine_wrapper); |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 592 | Py_CLEAR(tstate->async_gen_firstiter); |
| 593 | Py_CLEAR(tstate->async_gen_finalizer); |
Yury Selivanov | f23746a | 2018-01-22 19:11:18 -0500 | [diff] [blame] | 594 | |
| 595 | Py_CLEAR(tstate->context); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 596 | } |
| 597 | |
| 598 | |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 599 | /* Common code for PyThreadState_Delete() and PyThreadState_DeleteCurrent() */ |
| 600 | static void |
| 601 | tstate_delete_common(PyThreadState *tstate) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 602 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 603 | PyInterpreterState *interp; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 604 | if (tstate == NULL) |
| 605 | Py_FatalError("PyThreadState_Delete: NULL tstate"); |
| 606 | interp = tstate->interp; |
| 607 | if (interp == NULL) |
| 608 | Py_FatalError("PyThreadState_Delete: NULL interp"); |
| 609 | HEAD_LOCK(); |
Charles-Francois Natali | f28dfdd | 2013-05-08 21:09:52 +0200 | [diff] [blame] | 610 | if (tstate->prev) |
| 611 | tstate->prev->next = tstate->next; |
| 612 | else |
| 613 | interp->tstate_head = tstate->next; |
| 614 | if (tstate->next) |
| 615 | tstate->next->prev = tstate->prev; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 616 | HEAD_UNLOCK(); |
Antoine Pitrou | 7b47699 | 2013-09-07 23:38:37 +0200 | [diff] [blame] | 617 | if (tstate->on_delete != NULL) { |
| 618 | tstate->on_delete(tstate->on_delete_data); |
| 619 | } |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 620 | PyMem_RawFree(tstate); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 624 | void |
| 625 | PyThreadState_Delete(PyThreadState *tstate) |
| 626 | { |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 627 | if (tstate == GET_TSTATE()) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 628 | Py_FatalError("PyThreadState_Delete: tstate is still current"); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 629 | if (_PyRuntime.gilstate.autoInterpreterState && |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 630 | PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == tstate) |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 631 | { |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 632 | PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, NULL); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 633 | } |
Christian Heimes | b9dbc7d | 2013-07-01 23:42:28 +0200 | [diff] [blame] | 634 | tstate_delete_common(tstate); |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 638 | void |
| 639 | PyThreadState_DeleteCurrent() |
| 640 | { |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 641 | PyThreadState *tstate = GET_TSTATE(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 642 | if (tstate == NULL) |
| 643 | Py_FatalError( |
| 644 | "PyThreadState_DeleteCurrent: no current tstate"); |
Victor Stinner | 8a1be61 | 2016-03-14 22:07:55 +0100 | [diff] [blame] | 645 | tstate_delete_common(tstate); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 646 | if (_PyRuntime.gilstate.autoInterpreterState && |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 647 | PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == tstate) |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 648 | { |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 649 | PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, NULL); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 650 | } |
Victor Stinner | 8a1be61 | 2016-03-14 22:07:55 +0100 | [diff] [blame] | 651 | SET_TSTATE(NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 652 | PyEval_ReleaseLock(); |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 653 | } |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 654 | |
| 655 | |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 656 | /* |
| 657 | * Delete all thread states except the one passed as argument. |
| 658 | * Note that, if there is a current thread state, it *must* be the one |
| 659 | * passed as argument. Also, this won't touch any other interpreters |
| 660 | * than the current one, since we don't know which thread state should |
| 661 | * be kept in those other interpreteres. |
| 662 | */ |
| 663 | void |
| 664 | _PyThreadState_DeleteExcept(PyThreadState *tstate) |
| 665 | { |
| 666 | PyInterpreterState *interp = tstate->interp; |
| 667 | PyThreadState *p, *next, *garbage; |
| 668 | HEAD_LOCK(); |
| 669 | /* Remove all thread states, except tstate, from the linked list of |
| 670 | thread states. This will allow calling PyThreadState_Clear() |
Charles-Francois Natali | f28dfdd | 2013-05-08 21:09:52 +0200 | [diff] [blame] | 671 | without holding the lock. */ |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 672 | garbage = interp->tstate_head; |
Charles-Francois Natali | f28dfdd | 2013-05-08 21:09:52 +0200 | [diff] [blame] | 673 | if (garbage == tstate) |
| 674 | garbage = tstate->next; |
| 675 | if (tstate->prev) |
| 676 | tstate->prev->next = tstate->next; |
| 677 | if (tstate->next) |
| 678 | tstate->next->prev = tstate->prev; |
| 679 | tstate->prev = tstate->next = NULL; |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 680 | interp->tstate_head = tstate; |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 681 | HEAD_UNLOCK(); |
| 682 | /* Clear and deallocate all stale thread states. Even if this |
| 683 | executes Python code, we should be safe since it executes |
| 684 | in the current thread, not one of the stale threads. */ |
| 685 | for (p = garbage; p; p = next) { |
| 686 | next = p->next; |
| 687 | PyThreadState_Clear(p); |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 688 | PyMem_RawFree(p); |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 689 | } |
| 690 | } |
| 691 | |
| 692 | |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 693 | PyThreadState * |
Victor Stinner | bfd316e | 2016-01-20 11:12:38 +0100 | [diff] [blame] | 694 | _PyThreadState_UncheckedGet(void) |
| 695 | { |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 696 | return GET_TSTATE(); |
Victor Stinner | bfd316e | 2016-01-20 11:12:38 +0100 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | |
| 700 | PyThreadState * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 701 | PyThreadState_Get(void) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 702 | { |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 703 | PyThreadState *tstate = GET_TSTATE(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 704 | if (tstate == NULL) |
| 705 | Py_FatalError("PyThreadState_Get: no current thread"); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 706 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 707 | return tstate; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 708 | } |
| 709 | |
| 710 | |
| 711 | PyThreadState * |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 712 | PyThreadState_Swap(PyThreadState *newts) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 713 | { |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 714 | PyThreadState *oldts = GET_TSTATE(); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 715 | |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 716 | SET_TSTATE(newts); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 717 | /* It should not be possible for more than one thread state |
| 718 | to be used for a thread. Check this the best we can in debug |
| 719 | builds. |
| 720 | */ |
Antoine Pitrou | a6a4dc8 | 2017-09-07 18:56:24 +0200 | [diff] [blame] | 721 | #if defined(Py_DEBUG) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 722 | if (newts) { |
| 723 | /* This can be called from PyEval_RestoreThread(). Similar |
| 724 | to it, we need to ensure errno doesn't change. |
| 725 | */ |
| 726 | int err = errno; |
| 727 | PyThreadState *check = PyGILState_GetThisThreadState(); |
| 728 | if (check && check->interp == newts->interp && check != newts) |
| 729 | Py_FatalError("Invalid thread state for this thread"); |
| 730 | errno = err; |
| 731 | } |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 732 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 733 | return oldts; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 734 | } |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 735 | |
| 736 | /* An extension mechanism to store arbitrary additional per-thread state. |
| 737 | PyThreadState_GetDict() returns a dictionary that can be used to hold such |
| 738 | state; the caller should pick a unique key and store its state there. If |
Guido van Rossum | 0fc8f00 | 2003-04-15 15:12:39 +0000 | [diff] [blame] | 739 | PyThreadState_GetDict() returns NULL, an exception has *not* been raised |
| 740 | and the caller should assume no per-thread state is available. */ |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 741 | |
| 742 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 743 | PyThreadState_GetDict(void) |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 744 | { |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 745 | PyThreadState *tstate = GET_TSTATE(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 746 | if (tstate == NULL) |
| 747 | return NULL; |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 748 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 749 | if (tstate->dict == NULL) { |
| 750 | PyObject *d; |
| 751 | tstate->dict = d = PyDict_New(); |
| 752 | if (d == NULL) |
| 753 | PyErr_Clear(); |
| 754 | } |
| 755 | return tstate->dict; |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 756 | } |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 757 | |
| 758 | |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 759 | /* Asynchronously raise an exception in a thread. |
| 760 | Requested by Just van Rossum and Alex Martelli. |
Guido van Rossum | 0f1f63c | 2005-02-08 02:07:57 +0000 | [diff] [blame] | 761 | To prevent naive misuse, you must write your own extension |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 762 | to call this, or use ctypes. Must be called with the GIL held. |
| 763 | Returns the number of tstates modified (normally 1, but 0 if `id` didn't |
| 764 | match any known thread id). Can be called with exc=NULL to clear an |
| 765 | existing async exception. This raises no exceptions. */ |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 766 | |
| 767 | int |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 768 | PyThreadState_SetAsyncExc(unsigned long id, PyObject *exc) |
| 769 | { |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 770 | PyInterpreterState *interp = GET_INTERP_STATE(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 771 | PyThreadState *p; |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 772 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 773 | /* Although the GIL is held, a few C API functions can be called |
| 774 | * without the GIL held, and in particular some that create and |
| 775 | * destroy thread and interpreter states. Those can mutate the |
| 776 | * list of thread states we're traversing, so to prevent that we lock |
| 777 | * head_mutex for the duration. |
| 778 | */ |
| 779 | HEAD_LOCK(); |
| 780 | for (p = interp->tstate_head; p != NULL; p = p->next) { |
| 781 | if (p->thread_id == id) { |
| 782 | /* Tricky: we need to decref the current value |
| 783 | * (if any) in p->async_exc, but that can in turn |
| 784 | * allow arbitrary Python code to run, including |
| 785 | * perhaps calls to this function. To prevent |
| 786 | * deadlock, we need to release head_mutex before |
| 787 | * the decref. |
| 788 | */ |
| 789 | PyObject *old_exc = p->async_exc; |
| 790 | Py_XINCREF(exc); |
| 791 | p->async_exc = exc; |
| 792 | HEAD_UNLOCK(); |
| 793 | Py_XDECREF(old_exc); |
| 794 | _PyEval_SignalAsyncExc(); |
| 795 | return 1; |
| 796 | } |
| 797 | } |
| 798 | HEAD_UNLOCK(); |
| 799 | return 0; |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 800 | } |
| 801 | |
| 802 | |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 803 | /* Routines for advanced debuggers, requested by David Beazley. |
| 804 | Don't use unless you know what you are doing! */ |
| 805 | |
| 806 | PyInterpreterState * |
| 807 | PyInterpreterState_Head(void) |
| 808 | { |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 809 | return _PyRuntime.interpreters.head; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | PyInterpreterState * |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 813 | PyInterpreterState_Main(void) |
| 814 | { |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 815 | return _PyRuntime.interpreters.main; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 816 | } |
| 817 | |
| 818 | PyInterpreterState * |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 819 | PyInterpreterState_Next(PyInterpreterState *interp) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 820 | return interp->next; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | PyThreadState * |
| 824 | PyInterpreterState_ThreadHead(PyInterpreterState *interp) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 825 | return interp->tstate_head; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | PyThreadState * |
| 829 | PyThreadState_Next(PyThreadState *tstate) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 830 | return tstate->next; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 831 | } |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 832 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 833 | /* The implementation of sys._current_frames(). This is intended to be |
| 834 | called with the GIL held, as it will be when called via |
| 835 | sys._current_frames(). It's possible it would work fine even without |
| 836 | the GIL held, but haven't thought enough about that. |
| 837 | */ |
| 838 | PyObject * |
| 839 | _PyThread_CurrentFrames(void) |
| 840 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 841 | PyObject *result; |
| 842 | PyInterpreterState *i; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 843 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 844 | result = PyDict_New(); |
| 845 | if (result == NULL) |
| 846 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 847 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 848 | /* for i in all interpreters: |
| 849 | * for t in all of i's thread states: |
| 850 | * if t's frame isn't NULL, map t's id to its frame |
Ezio Melotti | 1392500 | 2011-03-16 11:05:33 +0200 | [diff] [blame] | 851 | * Because these lists can mutate even when the GIL is held, we |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 852 | * need to grab head_mutex for the duration. |
| 853 | */ |
| 854 | HEAD_LOCK(); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 855 | for (i = _PyRuntime.interpreters.head; i != NULL; i = i->next) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 856 | PyThreadState *t; |
| 857 | for (t = i->tstate_head; t != NULL; t = t->next) { |
| 858 | PyObject *id; |
| 859 | int stat; |
| 860 | struct _frame *frame = t->frame; |
| 861 | if (frame == NULL) |
| 862 | continue; |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 863 | id = PyLong_FromUnsignedLong(t->thread_id); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 864 | if (id == NULL) |
| 865 | goto Fail; |
| 866 | stat = PyDict_SetItem(result, id, (PyObject *)frame); |
| 867 | Py_DECREF(id); |
| 868 | if (stat < 0) |
| 869 | goto Fail; |
| 870 | } |
| 871 | } |
| 872 | HEAD_UNLOCK(); |
| 873 | return result; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 874 | |
| 875 | Fail: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 876 | HEAD_UNLOCK(); |
| 877 | Py_DECREF(result); |
| 878 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 879 | } |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 880 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 881 | /* Python "auto thread state" API. */ |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 882 | |
| 883 | /* Keep this as a static, as it is not reliable! It can only |
| 884 | ever be compared to the state for the *current* thread. |
| 885 | * If not equal, then it doesn't matter that the actual |
| 886 | value may change immediately after comparison, as it can't |
| 887 | possibly change to the current thread's state. |
| 888 | * If equal, then the current thread holds the lock, so the value can't |
| 889 | change until we yield the lock. |
| 890 | */ |
| 891 | static int |
| 892 | PyThreadState_IsCurrent(PyThreadState *tstate) |
| 893 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 894 | /* Must be the tstate for this thread */ |
| 895 | assert(PyGILState_GetThisThreadState()==tstate); |
Victor Stinner | b02ef71 | 2016-01-22 14:09:55 +0100 | [diff] [blame] | 896 | return tstate == GET_TSTATE(); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 897 | } |
| 898 | |
Tim Peters | 4c1f5ec | 2004-10-09 17:25:05 +0000 | [diff] [blame] | 899 | /* Internal initialization/finalization functions called by |
Martin Panter | b4ce1fc | 2015-11-30 03:18:29 +0000 | [diff] [blame] | 900 | Py_Initialize/Py_FinalizeEx |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 901 | */ |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 902 | void |
| 903 | _PyGILState_Init(PyInterpreterState *i, PyThreadState *t) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 904 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 905 | assert(i && t); /* must init with valid states */ |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 906 | if (PyThread_tss_create(&_PyRuntime.gilstate.autoTSSkey) != 0) { |
| 907 | Py_FatalError("Could not allocate TSS entry"); |
| 908 | } |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 909 | _PyRuntime.gilstate.autoInterpreterState = i; |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 910 | assert(PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 911 | assert(t->gilstate_counter == 0); |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 912 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 913 | _PyGILState_NoteThreadState(t); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 914 | } |
| 915 | |
Victor Stinner | 861d9ab | 2016-03-16 22:45:24 +0100 | [diff] [blame] | 916 | PyInterpreterState * |
| 917 | _PyGILState_GetInterpreterStateUnsafe(void) |
| 918 | { |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 919 | return _PyRuntime.gilstate.autoInterpreterState; |
Victor Stinner | 861d9ab | 2016-03-16 22:45:24 +0100 | [diff] [blame] | 920 | } |
| 921 | |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 922 | void |
| 923 | _PyGILState_Fini(void) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 924 | { |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 925 | PyThread_tss_delete(&_PyRuntime.gilstate.autoTSSkey); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 926 | _PyRuntime.gilstate.autoInterpreterState = NULL; |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 927 | } |
| 928 | |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 929 | /* Reset the TSS key - called by PyOS_AfterFork_Child(). |
Antoine Pitrou | 0c759fe | 2011-04-27 19:28:05 +0200 | [diff] [blame] | 930 | * This should not be necessary, but some - buggy - pthread implementations |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 931 | * don't reset TSS upon fork(), see issue #10517. |
Antoine Pitrou | 0c759fe | 2011-04-27 19:28:05 +0200 | [diff] [blame] | 932 | */ |
| 933 | void |
| 934 | _PyGILState_Reinit(void) |
| 935 | { |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 936 | _PyRuntime.interpreters.mutex = PyThread_allocate_lock(); |
| 937 | if (_PyRuntime.interpreters.mutex == NULL) |
| 938 | Py_FatalError("Can't initialize threads for interpreter"); |
Antoine Pitrou | 0c759fe | 2011-04-27 19:28:05 +0200 | [diff] [blame] | 939 | PyThreadState *tstate = PyGILState_GetThisThreadState(); |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 940 | PyThread_tss_delete(&_PyRuntime.gilstate.autoTSSkey); |
| 941 | if (PyThread_tss_create(&_PyRuntime.gilstate.autoTSSkey) != 0) { |
| 942 | Py_FatalError("Could not allocate TSS entry"); |
| 943 | } |
Antoine Pitrou | 0c759fe | 2011-04-27 19:28:05 +0200 | [diff] [blame] | 944 | |
Charles-François Natali | a233df8 | 2011-11-22 19:49:51 +0100 | [diff] [blame] | 945 | /* If the thread had an associated auto thread state, reassociate it with |
| 946 | * the new key. */ |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 947 | if (tstate && |
| 948 | PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, (void *)tstate) != 0) |
| 949 | { |
| 950 | Py_FatalError("Couldn't create autoTSSkey mapping"); |
| 951 | } |
Antoine Pitrou | 0c759fe | 2011-04-27 19:28:05 +0200 | [diff] [blame] | 952 | } |
| 953 | |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 954 | /* When a thread state is created for a thread by some mechanism other than |
| 955 | PyGILState_Ensure, it's important that the GILState machinery knows about |
| 956 | it so it doesn't try to create another thread state for the thread (this is |
| 957 | a better fix for SF bug #1010677 than the first one attempted). |
| 958 | */ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 959 | static void |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 960 | _PyGILState_NoteThreadState(PyThreadState* tstate) |
| 961 | { |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 962 | /* If autoTSSkey isn't initialized, this must be the very first |
Antoine Pitrou | 079ce54 | 2010-09-08 12:37:10 +0000 | [diff] [blame] | 963 | threadstate created in Py_Initialize(). Don't do anything for now |
| 964 | (we'll be back here when _PyGILState_Init is called). */ |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 965 | if (!_PyRuntime.gilstate.autoInterpreterState) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 966 | return; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 967 | |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 968 | /* Stick the thread state for this thread in thread specific storage. |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 969 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 970 | The only situation where you can legitimately have more than one |
| 971 | thread state for an OS level thread is when there are multiple |
Victor Stinner | 590cebe | 2013-12-13 11:08:56 +0100 | [diff] [blame] | 972 | interpreters. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 973 | |
Victor Stinner | 590cebe | 2013-12-13 11:08:56 +0100 | [diff] [blame] | 974 | You shouldn't really be using the PyGILState_ APIs anyway (see issues |
| 975 | #10915 and #15751). |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 976 | |
Victor Stinner | 590cebe | 2013-12-13 11:08:56 +0100 | [diff] [blame] | 977 | The first thread state created for that given OS level thread will |
| 978 | "win", which seems reasonable behaviour. |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 979 | */ |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 980 | if (PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == NULL) { |
| 981 | if ((PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, (void *)tstate) |
| 982 | ) != 0) |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 983 | { |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 984 | Py_FatalError("Couldn't create autoTSSkey mapping"); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 985 | } |
Victor Stinner | 590cebe | 2013-12-13 11:08:56 +0100 | [diff] [blame] | 986 | } |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 987 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 988 | /* PyGILState_Release must not try to delete this thread state. */ |
| 989 | tstate->gilstate_counter = 1; |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 990 | } |
| 991 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 992 | /* The public functions */ |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 993 | PyThreadState * |
| 994 | PyGILState_GetThisThreadState(void) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 995 | { |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 996 | if (_PyRuntime.gilstate.autoInterpreterState == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 997 | return NULL; |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 998 | return (PyThreadState *)PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 999 | } |
| 1000 | |
Kristján Valur Jónsson | 684cd0e | 2013-03-23 03:36:16 -0700 | [diff] [blame] | 1001 | int |
| 1002 | PyGILState_Check(void) |
| 1003 | { |
Victor Stinner | 8a1be61 | 2016-03-14 22:07:55 +0100 | [diff] [blame] | 1004 | PyThreadState *tstate; |
| 1005 | |
| 1006 | if (!_PyGILState_check_enabled) |
| 1007 | return 1; |
| 1008 | |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 1009 | if (!PyThread_tss_is_created(&_PyRuntime.gilstate.autoTSSkey)) { |
Victor Stinner | 8a1be61 | 2016-03-14 22:07:55 +0100 | [diff] [blame] | 1010 | return 1; |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 1011 | } |
Victor Stinner | 8a1be61 | 2016-03-14 22:07:55 +0100 | [diff] [blame] | 1012 | |
| 1013 | tstate = GET_TSTATE(); |
| 1014 | if (tstate == NULL) |
| 1015 | return 0; |
| 1016 | |
| 1017 | return (tstate == PyGILState_GetThisThreadState()); |
Kristján Valur Jónsson | 684cd0e | 2013-03-23 03:36:16 -0700 | [diff] [blame] | 1018 | } |
| 1019 | |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 1020 | PyGILState_STATE |
| 1021 | PyGILState_Ensure(void) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 1022 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1023 | int current; |
| 1024 | PyThreadState *tcur; |
Victor Stinner | b4d1e1f | 2017-11-30 22:05:00 +0100 | [diff] [blame] | 1025 | int need_init_threads = 0; |
| 1026 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1027 | /* Note that we do not auto-init Python here - apart from |
| 1028 | potential races with 2 threads auto-initializing, pep-311 |
| 1029 | spells out other issues. Embedders are expected to have |
| 1030 | called Py_Initialize() and usually PyEval_InitThreads(). |
| 1031 | */ |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 1032 | /* Py_Initialize() hasn't been called! */ |
| 1033 | assert(_PyRuntime.gilstate.autoInterpreterState); |
Victor Stinner | b4d1e1f | 2017-11-30 22:05:00 +0100 | [diff] [blame] | 1034 | |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 1035 | tcur = (PyThreadState *)PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1036 | if (tcur == NULL) { |
Victor Stinner | b4d1e1f | 2017-11-30 22:05:00 +0100 | [diff] [blame] | 1037 | need_init_threads = 1; |
Victor Stinner | 62ca100 | 2013-12-13 01:46:43 +0100 | [diff] [blame] | 1038 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1039 | /* Create a new thread state for this thread */ |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 1040 | tcur = PyThreadState_New(_PyRuntime.gilstate.autoInterpreterState); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1041 | if (tcur == NULL) |
| 1042 | Py_FatalError("Couldn't create thread-state for new thread"); |
| 1043 | /* This is our thread state! We'll need to delete it in the |
| 1044 | matching call to PyGILState_Release(). */ |
| 1045 | tcur->gilstate_counter = 0; |
| 1046 | current = 0; /* new thread state is never current */ |
| 1047 | } |
Victor Stinner | b4d1e1f | 2017-11-30 22:05:00 +0100 | [diff] [blame] | 1048 | else { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1049 | current = PyThreadState_IsCurrent(tcur); |
Victor Stinner | b4d1e1f | 2017-11-30 22:05:00 +0100 | [diff] [blame] | 1050 | } |
| 1051 | |
| 1052 | if (current == 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1053 | PyEval_RestoreThread(tcur); |
Victor Stinner | b4d1e1f | 2017-11-30 22:05:00 +0100 | [diff] [blame] | 1054 | } |
| 1055 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1056 | /* Update our counter in the thread-state - no need for locks: |
| 1057 | - tcur will remain valid as we hold the GIL. |
| 1058 | - the counter is safe as we are the only thread "allowed" |
| 1059 | to modify this value |
| 1060 | */ |
| 1061 | ++tcur->gilstate_counter; |
Victor Stinner | b4d1e1f | 2017-11-30 22:05:00 +0100 | [diff] [blame] | 1062 | |
| 1063 | if (need_init_threads) { |
| 1064 | /* At startup, Python has no concrete GIL. If PyGILState_Ensure() is |
| 1065 | called from a new thread for the first time, we need the create the |
| 1066 | GIL. */ |
| 1067 | PyEval_InitThreads(); |
| 1068 | } |
| 1069 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1070 | return current ? PyGILState_LOCKED : PyGILState_UNLOCKED; |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 1071 | } |
| 1072 | |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 1073 | void |
| 1074 | PyGILState_Release(PyGILState_STATE oldstate) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 1075 | { |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 1076 | PyThreadState *tcur = (PyThreadState *)PyThread_tss_get( |
| 1077 | &_PyRuntime.gilstate.autoTSSkey); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1078 | if (tcur == NULL) |
| 1079 | Py_FatalError("auto-releasing thread-state, " |
| 1080 | "but no thread-state for this thread"); |
| 1081 | /* We must hold the GIL and have our thread state current */ |
| 1082 | /* XXX - remove the check - the assert should be fine, |
| 1083 | but while this is very new (April 2003), the extra check |
| 1084 | by release-only users can't hurt. |
| 1085 | */ |
| 1086 | if (! PyThreadState_IsCurrent(tcur)) |
| 1087 | Py_FatalError("This thread state must be current when releasing"); |
| 1088 | assert(PyThreadState_IsCurrent(tcur)); |
| 1089 | --tcur->gilstate_counter; |
| 1090 | assert(tcur->gilstate_counter >= 0); /* illegal counter value */ |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 1091 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1092 | /* If we're going to destroy this thread-state, we must |
| 1093 | * clear it while the GIL is held, as destructors may run. |
| 1094 | */ |
| 1095 | if (tcur->gilstate_counter == 0) { |
| 1096 | /* can't have been locked when we created it */ |
| 1097 | assert(oldstate == PyGILState_UNLOCKED); |
| 1098 | PyThreadState_Clear(tcur); |
| 1099 | /* Delete the thread-state. Note this releases the GIL too! |
| 1100 | * It's vital that the GIL be held here, to avoid shutdown |
| 1101 | * races; see bugs 225673 and 1061968 (that nasty bug has a |
| 1102 | * habit of coming back). |
| 1103 | */ |
| 1104 | PyThreadState_DeleteCurrent(); |
| 1105 | } |
| 1106 | /* Release the lock if necessary */ |
| 1107 | else if (oldstate == PyGILState_UNLOCKED) |
| 1108 | PyEval_SaveThread(); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 1109 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1110 | |
Benjamin Peterson | 3bf0175 | 2012-04-13 18:06:36 -0400 | [diff] [blame] | 1111 | |
Eric Snow | 7f8bfc9 | 2018-01-29 18:23:44 -0700 | [diff] [blame] | 1112 | /**************************/ |
| 1113 | /* cross-interpreter data */ |
| 1114 | /**************************/ |
| 1115 | |
| 1116 | /* cross-interpreter data */ |
| 1117 | |
| 1118 | crossinterpdatafunc _PyCrossInterpreterData_Lookup(PyObject *); |
| 1119 | |
| 1120 | /* This is a separate func from _PyCrossInterpreterData_Lookup in order |
| 1121 | to keep the registry code separate. */ |
| 1122 | static crossinterpdatafunc |
| 1123 | _lookup_getdata(PyObject *obj) |
| 1124 | { |
| 1125 | crossinterpdatafunc getdata = _PyCrossInterpreterData_Lookup(obj); |
| 1126 | if (getdata == NULL && PyErr_Occurred() == 0) |
| 1127 | PyErr_Format(PyExc_ValueError, |
| 1128 | "%S does not support cross-interpreter data", obj); |
| 1129 | return getdata; |
| 1130 | } |
| 1131 | |
| 1132 | int |
| 1133 | _PyObject_CheckCrossInterpreterData(PyObject *obj) |
| 1134 | { |
| 1135 | crossinterpdatafunc getdata = _lookup_getdata(obj); |
| 1136 | if (getdata == NULL) { |
| 1137 | return -1; |
| 1138 | } |
| 1139 | return 0; |
| 1140 | } |
| 1141 | |
| 1142 | static int |
| 1143 | _check_xidata(_PyCrossInterpreterData *data) |
| 1144 | { |
| 1145 | // data->data can be anything, including NULL, so we don't check it. |
| 1146 | |
| 1147 | // data->obj may be NULL, so we don't check it. |
| 1148 | |
| 1149 | if (data->interp < 0) { |
| 1150 | PyErr_SetString(PyExc_SystemError, "missing interp"); |
| 1151 | return -1; |
| 1152 | } |
| 1153 | |
| 1154 | if (data->new_object == NULL) { |
| 1155 | PyErr_SetString(PyExc_SystemError, "missing new_object func"); |
| 1156 | return -1; |
| 1157 | } |
| 1158 | |
| 1159 | // data->free may be NULL, so we don't check it. |
| 1160 | |
| 1161 | return 0; |
| 1162 | } |
| 1163 | |
| 1164 | int |
| 1165 | _PyObject_GetCrossInterpreterData(PyObject *obj, _PyCrossInterpreterData *data) |
| 1166 | { |
| 1167 | PyThreadState *tstate = PyThreadState_Get(); |
| 1168 | // PyThreadState_Get() aborts if lookup fails, so we don't need |
| 1169 | // to check the result for NULL. |
| 1170 | PyInterpreterState *interp = tstate->interp; |
| 1171 | |
| 1172 | // Reset data before re-populating. |
| 1173 | *data = (_PyCrossInterpreterData){0}; |
| 1174 | data->free = PyMem_RawFree; // Set a default that may be overridden. |
| 1175 | |
| 1176 | // Call the "getdata" func for the object. |
| 1177 | Py_INCREF(obj); |
| 1178 | crossinterpdatafunc getdata = _lookup_getdata(obj); |
| 1179 | if (getdata == NULL) { |
| 1180 | Py_DECREF(obj); |
| 1181 | return -1; |
| 1182 | } |
| 1183 | int res = getdata(obj, data); |
| 1184 | Py_DECREF(obj); |
| 1185 | if (res != 0) { |
| 1186 | return -1; |
| 1187 | } |
| 1188 | |
| 1189 | // Fill in the blanks and validate the result. |
| 1190 | Py_XINCREF(data->obj); |
| 1191 | data->interp = interp->id; |
| 1192 | if (_check_xidata(data) != 0) { |
| 1193 | _PyCrossInterpreterData_Release(data); |
| 1194 | return -1; |
| 1195 | } |
| 1196 | |
| 1197 | return 0; |
| 1198 | } |
| 1199 | |
| 1200 | void |
| 1201 | _PyCrossInterpreterData_Release(_PyCrossInterpreterData *data) |
| 1202 | { |
| 1203 | if (data->data == NULL && data->obj == NULL) { |
| 1204 | // Nothing to release! |
| 1205 | return; |
| 1206 | } |
| 1207 | |
| 1208 | // Switch to the original interpreter. |
| 1209 | PyInterpreterState *interp = _PyInterpreterState_LookUpID(data->interp); |
| 1210 | if (interp == NULL) { |
| 1211 | // The intepreter was already destroyed. |
| 1212 | if (data->free != NULL) { |
| 1213 | // XXX Someone leaked some memory... |
| 1214 | } |
| 1215 | return; |
| 1216 | } |
Miss Islington (bot) | eed3c7a | 2018-02-20 16:09:41 -0800 | [diff] [blame^] | 1217 | |
| 1218 | PyThreadState *save_tstate = NULL; |
| 1219 | if (interp != PyThreadState_Get()->interp) { |
| 1220 | // XXX Using the "head" thread isn't strictly correct. |
| 1221 | PyThreadState *tstate = PyInterpreterState_ThreadHead(interp); |
| 1222 | // XXX Possible GILState issues? |
| 1223 | save_tstate = PyThreadState_Swap(tstate); |
| 1224 | } |
Eric Snow | 7f8bfc9 | 2018-01-29 18:23:44 -0700 | [diff] [blame] | 1225 | |
| 1226 | // "Release" the data and/or the object. |
| 1227 | if (data->free != NULL) { |
| 1228 | data->free(data->data); |
| 1229 | } |
| 1230 | Py_XDECREF(data->obj); |
| 1231 | |
| 1232 | // Switch back. |
Miss Islington (bot) | eed3c7a | 2018-02-20 16:09:41 -0800 | [diff] [blame^] | 1233 | if (save_tstate != NULL) { |
Eric Snow | 7f8bfc9 | 2018-01-29 18:23:44 -0700 | [diff] [blame] | 1234 | PyThreadState_Swap(save_tstate); |
Miss Islington (bot) | eed3c7a | 2018-02-20 16:09:41 -0800 | [diff] [blame^] | 1235 | } |
Eric Snow | 7f8bfc9 | 2018-01-29 18:23:44 -0700 | [diff] [blame] | 1236 | } |
| 1237 | |
| 1238 | PyObject * |
| 1239 | _PyCrossInterpreterData_NewObject(_PyCrossInterpreterData *data) |
| 1240 | { |
| 1241 | return data->new_object(data); |
| 1242 | } |
| 1243 | |
| 1244 | /* registry of {type -> crossinterpdatafunc} */ |
| 1245 | |
| 1246 | /* For now we use a global registry of shareable classes. An |
| 1247 | alternative would be to add a tp_* slot for a class's |
| 1248 | crossinterpdatafunc. It would be simpler and more efficient. */ |
| 1249 | |
| 1250 | static int |
| 1251 | _register_xidata(PyTypeObject *cls, crossinterpdatafunc getdata) |
| 1252 | { |
| 1253 | // Note that we effectively replace already registered classes |
| 1254 | // rather than failing. |
| 1255 | struct _xidregitem *newhead = PyMem_RawMalloc(sizeof(struct _xidregitem)); |
| 1256 | if (newhead == NULL) |
| 1257 | return -1; |
| 1258 | newhead->cls = cls; |
| 1259 | newhead->getdata = getdata; |
| 1260 | newhead->next = _PyRuntime.xidregistry.head; |
| 1261 | _PyRuntime.xidregistry.head = newhead; |
| 1262 | return 0; |
| 1263 | } |
| 1264 | |
| 1265 | static void _register_builtins_for_crossinterpreter_data(void); |
| 1266 | |
| 1267 | int |
| 1268 | _PyCrossInterpreterData_Register_Class(PyTypeObject *cls, |
| 1269 | crossinterpdatafunc getdata) |
| 1270 | { |
| 1271 | if (!PyType_Check(cls)) { |
| 1272 | PyErr_Format(PyExc_ValueError, "only classes may be registered"); |
| 1273 | return -1; |
| 1274 | } |
| 1275 | if (getdata == NULL) { |
| 1276 | PyErr_Format(PyExc_ValueError, "missing 'getdata' func"); |
| 1277 | return -1; |
| 1278 | } |
| 1279 | |
| 1280 | // Make sure the class isn't ever deallocated. |
| 1281 | Py_INCREF((PyObject *)cls); |
| 1282 | |
| 1283 | PyThread_acquire_lock(_PyRuntime.xidregistry.mutex, WAIT_LOCK); |
| 1284 | if (_PyRuntime.xidregistry.head == NULL) { |
| 1285 | _register_builtins_for_crossinterpreter_data(); |
| 1286 | } |
| 1287 | int res = _register_xidata(cls, getdata); |
| 1288 | PyThread_release_lock(_PyRuntime.xidregistry.mutex); |
| 1289 | return res; |
| 1290 | } |
| 1291 | |
| 1292 | crossinterpdatafunc |
| 1293 | _PyCrossInterpreterData_Lookup(PyObject *obj) |
| 1294 | { |
| 1295 | PyObject *cls = PyObject_Type(obj); |
| 1296 | crossinterpdatafunc getdata = NULL; |
| 1297 | PyThread_acquire_lock(_PyRuntime.xidregistry.mutex, WAIT_LOCK); |
| 1298 | struct _xidregitem *cur = _PyRuntime.xidregistry.head; |
| 1299 | if (cur == NULL) { |
| 1300 | _register_builtins_for_crossinterpreter_data(); |
| 1301 | cur = _PyRuntime.xidregistry.head; |
| 1302 | } |
| 1303 | for(; cur != NULL; cur = cur->next) { |
| 1304 | if (cur->cls == (PyTypeObject *)cls) { |
| 1305 | getdata = cur->getdata; |
| 1306 | break; |
| 1307 | } |
| 1308 | } |
Miss Islington (bot) | f33eced | 2018-02-02 21:38:57 -0800 | [diff] [blame] | 1309 | Py_DECREF(cls); |
Eric Snow | 7f8bfc9 | 2018-01-29 18:23:44 -0700 | [diff] [blame] | 1310 | PyThread_release_lock(_PyRuntime.xidregistry.mutex); |
| 1311 | return getdata; |
| 1312 | } |
| 1313 | |
| 1314 | /* cross-interpreter data for builtin types */ |
| 1315 | |
| 1316 | static PyObject * |
| 1317 | _new_bytes_object(_PyCrossInterpreterData *data) |
| 1318 | { |
| 1319 | return PyBytes_FromString((char *)(data->data)); |
| 1320 | } |
| 1321 | |
| 1322 | static int |
| 1323 | _bytes_shared(PyObject *obj, _PyCrossInterpreterData *data) |
| 1324 | { |
| 1325 | data->data = (void *)(PyBytes_AS_STRING(obj)); |
| 1326 | data->obj = obj; // Will be "released" (decref'ed) when data released. |
| 1327 | data->new_object = _new_bytes_object; |
| 1328 | data->free = NULL; // Do not free the data (it belongs to the object). |
| 1329 | return 0; |
| 1330 | } |
| 1331 | |
| 1332 | static PyObject * |
| 1333 | _new_none_object(_PyCrossInterpreterData *data) |
| 1334 | { |
| 1335 | // XXX Singleton refcounts are problematic across interpreters... |
| 1336 | Py_INCREF(Py_None); |
| 1337 | return Py_None; |
| 1338 | } |
| 1339 | |
| 1340 | static int |
| 1341 | _none_shared(PyObject *obj, _PyCrossInterpreterData *data) |
| 1342 | { |
| 1343 | data->data = NULL; |
| 1344 | // data->obj remains NULL |
| 1345 | data->new_object = _new_none_object; |
| 1346 | data->free = NULL; // There is nothing to free. |
| 1347 | return 0; |
| 1348 | } |
| 1349 | |
| 1350 | static void |
| 1351 | _register_builtins_for_crossinterpreter_data(void) |
| 1352 | { |
| 1353 | // None |
| 1354 | if (_register_xidata((PyTypeObject *)PyObject_Type(Py_None), _none_shared) != 0) { |
| 1355 | Py_FatalError("could not register None for cross-interpreter sharing"); |
| 1356 | } |
| 1357 | |
| 1358 | // bytes |
| 1359 | if (_register_xidata(&PyBytes_Type, _bytes_shared) != 0) { |
| 1360 | Py_FatalError("could not register bytes for cross-interpreter sharing"); |
| 1361 | } |
| 1362 | } |
| 1363 | |
| 1364 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1365 | #ifdef __cplusplus |
| 1366 | } |
| 1367 | #endif |