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" |
| 5 | |
Tim Peters | 8470558 | 2004-10-10 02:47:33 +0000 | [diff] [blame] | 6 | /* -------------------------------------------------------------------------- |
| 7 | CAUTION |
| 8 | |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 9 | Always use PyMem_RawMalloc() and PyMem_RawFree() directly in this file. A |
| 10 | number of these functions are advertised as safe to call when the GIL isn't |
| 11 | held, and in a debug build Python redirects (e.g.) PyMem_NEW (etc) to Python's |
| 12 | debugging obmalloc functions. Those aren't thread-safe (they rely on the GIL |
| 13 | to avoid the expense of doing their own locking). |
Tim Peters | 8470558 | 2004-10-10 02:47:33 +0000 | [diff] [blame] | 14 | -------------------------------------------------------------------------- */ |
| 15 | |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 16 | #ifdef HAVE_DLOPEN |
| 17 | #ifdef HAVE_DLFCN_H |
| 18 | #include <dlfcn.h> |
| 19 | #endif |
| 20 | #ifndef RTLD_LAZY |
| 21 | #define RTLD_LAZY 1 |
| 22 | #endif |
| 23 | #endif |
| 24 | |
Benjamin Peterson | 43162b8 | 2012-04-13 11:58:27 -0400 | [diff] [blame] | 25 | #ifdef __cplusplus |
| 26 | extern "C" { |
| 27 | #endif |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 28 | |
Guido van Rossum | 1d5ad90 | 1999-06-18 14:22:24 +0000 | [diff] [blame] | 29 | #ifdef WITH_THREAD |
| 30 | #include "pythread.h" |
| 31 | static PyThread_type_lock head_mutex = NULL; /* Protects interp->tstate_head */ |
Moshe Zadka | 9fb6af9 | 2000-08-04 21:27:47 +0000 | [diff] [blame] | 32 | #define HEAD_INIT() (void)(head_mutex || (head_mutex = PyThread_allocate_lock())) |
Guido van Rossum | 1d5ad90 | 1999-06-18 14:22:24 +0000 | [diff] [blame] | 33 | #define HEAD_LOCK() PyThread_acquire_lock(head_mutex, WAIT_LOCK) |
| 34 | #define HEAD_UNLOCK() PyThread_release_lock(head_mutex) |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 35 | |
| 36 | /* The single PyInterpreterState used by this process' |
| 37 | GILState implementation |
| 38 | */ |
| 39 | static PyInterpreterState *autoInterpreterState = NULL; |
| 40 | static int autoTLSkey = 0; |
Guido van Rossum | 1d5ad90 | 1999-06-18 14:22:24 +0000 | [diff] [blame] | 41 | #else |
| 42 | #define HEAD_INIT() /* Nothing */ |
| 43 | #define HEAD_LOCK() /* Nothing */ |
| 44 | #define HEAD_UNLOCK() /* Nothing */ |
| 45 | #endif |
| 46 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 47 | static PyInterpreterState *interp_head = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 48 | |
Jeffrey Yasskin | 3937083 | 2010-05-03 19:29:34 +0000 | [diff] [blame] | 49 | /* Assuming the current thread holds the GIL, this is the |
| 50 | PyThreadState for the current thread. */ |
| 51 | _Py_atomic_address _PyThreadState_Current = {NULL}; |
Guido van Rossum | 6297a7a | 2003-02-19 15:53:17 +0000 | [diff] [blame] | 52 | PyThreadFrameGetter _PyThreadState_GetFrame = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 53 | |
Michael W. Hudson | ce7da6c | 2005-09-30 08:20:24 +0000 | [diff] [blame] | 54 | #ifdef WITH_THREAD |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 55 | static void _PyGILState_NoteThreadState(PyThreadState* tstate); |
Michael W. Hudson | ce7da6c | 2005-09-30 08:20:24 +0000 | [diff] [blame] | 56 | #endif |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 57 | |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 58 | |
| 59 | PyInterpreterState * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 60 | PyInterpreterState_New(void) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 61 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 62 | PyInterpreterState *interp = (PyInterpreterState *) |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 63 | PyMem_RawMalloc(sizeof(PyInterpreterState)); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 64 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 65 | if (interp != NULL) { |
| 66 | HEAD_INIT(); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 67 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 68 | if (head_mutex == NULL) |
| 69 | Py_FatalError("Can't initialize threads for interpreter"); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 70 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 71 | interp->modules = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 72 | interp->modules_by_index = NULL; |
| 73 | interp->sysdict = NULL; |
| 74 | interp->builtins = NULL; |
| 75 | interp->tstate_head = NULL; |
| 76 | interp->codec_search_path = NULL; |
| 77 | interp->codec_search_cache = NULL; |
| 78 | interp->codec_error_registry = NULL; |
| 79 | interp->codecs_initialized = 0; |
Victor Stinner | 3cbf14b | 2011-04-27 00:24:21 +0200 | [diff] [blame] | 80 | interp->fscodec_initialized = 0; |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 81 | interp->importlib = NULL; |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 82 | #ifdef HAVE_DLOPEN |
| 83 | #ifdef RTLD_NOW |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 84 | interp->dlopenflags = RTLD_NOW; |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 85 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 86 | interp->dlopenflags = RTLD_LAZY; |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 87 | #endif |
| 88 | #endif |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 89 | #ifdef WITH_TSC |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 90 | interp->tscdump = 0; |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 91 | #endif |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 92 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 93 | HEAD_LOCK(); |
| 94 | interp->next = interp_head; |
| 95 | interp_head = interp; |
| 96 | HEAD_UNLOCK(); |
| 97 | } |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 98 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 99 | return interp; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | |
| 103 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 104 | PyInterpreterState_Clear(PyInterpreterState *interp) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 105 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 106 | PyThreadState *p; |
| 107 | HEAD_LOCK(); |
| 108 | for (p = interp->tstate_head; p != NULL; p = p->next) |
| 109 | PyThreadState_Clear(p); |
| 110 | HEAD_UNLOCK(); |
| 111 | Py_CLEAR(interp->codec_search_path); |
| 112 | Py_CLEAR(interp->codec_search_cache); |
| 113 | Py_CLEAR(interp->codec_error_registry); |
| 114 | Py_CLEAR(interp->modules); |
| 115 | Py_CLEAR(interp->modules_by_index); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 116 | Py_CLEAR(interp->sysdict); |
| 117 | Py_CLEAR(interp->builtins); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 118 | Py_CLEAR(interp->importlib); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | |
| 122 | static void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 123 | zapthreads(PyInterpreterState *interp) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 124 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 125 | PyThreadState *p; |
| 126 | /* No need to lock the mutex here because this should only happen |
| 127 | when the threads are all really dead (XXX famous last words). */ |
| 128 | while ((p = interp->tstate_head) != NULL) { |
| 129 | PyThreadState_Delete(p); |
| 130 | } |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | |
| 134 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 135 | PyInterpreterState_Delete(PyInterpreterState *interp) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 136 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 137 | PyInterpreterState **p; |
| 138 | zapthreads(interp); |
| 139 | HEAD_LOCK(); |
| 140 | for (p = &interp_head; ; p = &(*p)->next) { |
| 141 | if (*p == NULL) |
| 142 | Py_FatalError( |
| 143 | "PyInterpreterState_Delete: invalid interp"); |
| 144 | if (*p == interp) |
| 145 | break; |
| 146 | } |
| 147 | if (interp->tstate_head != NULL) |
| 148 | Py_FatalError("PyInterpreterState_Delete: remaining threads"); |
| 149 | *p = interp->next; |
| 150 | HEAD_UNLOCK(); |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 151 | PyMem_RawFree(interp); |
Antoine Pitrou | 8db076c | 2011-10-30 19:13:55 +0100 | [diff] [blame] | 152 | #ifdef WITH_THREAD |
| 153 | if (interp_head == NULL && head_mutex != NULL) { |
| 154 | PyThread_free_lock(head_mutex); |
| 155 | head_mutex = NULL; |
| 156 | } |
| 157 | #endif |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | |
Michael W. Hudson | 019a78e | 2002-11-08 12:53:11 +0000 | [diff] [blame] | 161 | /* Default implementation for _PyThreadState_GetFrame */ |
| 162 | static struct _frame * |
| 163 | threadstate_getframe(PyThreadState *self) |
| 164 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 165 | return self->frame; |
Michael W. Hudson | 019a78e | 2002-11-08 12:53:11 +0000 | [diff] [blame] | 166 | } |
| 167 | |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 168 | static PyThreadState * |
| 169 | new_threadstate(PyInterpreterState *interp, int init) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 170 | { |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 171 | PyThreadState *tstate = (PyThreadState *)PyMem_RawMalloc(sizeof(PyThreadState)); |
Tim Peters | 8470558 | 2004-10-10 02:47:33 +0000 | [diff] [blame] | 172 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 173 | if (_PyThreadState_GetFrame == NULL) |
| 174 | _PyThreadState_GetFrame = threadstate_getframe; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 175 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 176 | if (tstate != NULL) { |
| 177 | tstate->interp = interp; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 178 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 179 | tstate->frame = NULL; |
| 180 | tstate->recursion_depth = 0; |
| 181 | tstate->overflowed = 0; |
| 182 | tstate->recursion_critical = 0; |
| 183 | tstate->tracing = 0; |
| 184 | tstate->use_tracing = 0; |
| 185 | tstate->tick_counter = 0; |
| 186 | tstate->gilstate_counter = 0; |
| 187 | tstate->async_exc = NULL; |
Martin v. Löwis | f9ce67d | 2003-07-13 10:41:53 +0000 | [diff] [blame] | 188 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 189 | tstate->thread_id = PyThread_get_thread_ident(); |
Martin v. Löwis | f9ce67d | 2003-07-13 10:41:53 +0000 | [diff] [blame] | 190 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 191 | tstate->thread_id = 0; |
Martin v. Löwis | f9ce67d | 2003-07-13 10:41:53 +0000 | [diff] [blame] | 192 | #endif |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 193 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 194 | tstate->dict = NULL; |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 195 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 196 | tstate->curexc_type = NULL; |
| 197 | tstate->curexc_value = NULL; |
| 198 | tstate->curexc_traceback = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 199 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 200 | tstate->exc_type = NULL; |
| 201 | tstate->exc_value = NULL; |
| 202 | tstate->exc_traceback = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 203 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 204 | tstate->c_profilefunc = NULL; |
| 205 | tstate->c_tracefunc = NULL; |
| 206 | tstate->c_profileobj = NULL; |
| 207 | tstate->c_traceobj = NULL; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 208 | |
Antoine Pitrou | 2b0218a | 2012-09-06 00:59:49 +0200 | [diff] [blame] | 209 | tstate->trash_delete_nesting = 0; |
| 210 | tstate->trash_delete_later = NULL; |
| 211 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 212 | if (init) |
| 213 | _PyThreadState_Init(tstate); |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 214 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 215 | HEAD_LOCK(); |
Charles-Francois Natali | f28dfdd | 2013-05-08 21:09:52 +0200 | [diff] [blame] | 216 | tstate->prev = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 217 | tstate->next = interp->tstate_head; |
Charles-Francois Natali | f28dfdd | 2013-05-08 21:09:52 +0200 | [diff] [blame] | 218 | if (tstate->next) |
| 219 | tstate->next->prev = tstate; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 220 | interp->tstate_head = tstate; |
| 221 | HEAD_UNLOCK(); |
| 222 | } |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 223 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 224 | return tstate; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 227 | PyThreadState * |
| 228 | PyThreadState_New(PyInterpreterState *interp) |
| 229 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 230 | return new_threadstate(interp, 1); |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | PyThreadState * |
| 234 | _PyThreadState_Prealloc(PyInterpreterState *interp) |
| 235 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 236 | return new_threadstate(interp, 0); |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | void |
| 240 | _PyThreadState_Init(PyThreadState *tstate) |
| 241 | { |
| 242 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 243 | _PyGILState_NoteThreadState(tstate); |
Victor Stinner | 45b9be5 | 2010-03-03 23:28:07 +0000 | [diff] [blame] | 244 | #endif |
| 245 | } |
| 246 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 247 | PyObject* |
Martin v. Löwis | 7800f75 | 2012-06-22 12:20:55 +0200 | [diff] [blame] | 248 | PyState_FindModule(struct PyModuleDef* module) |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 249 | { |
Martin v. Löwis | 7800f75 | 2012-06-22 12:20:55 +0200 | [diff] [blame] | 250 | Py_ssize_t index = module->m_base.m_index; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 251 | PyInterpreterState *state = PyThreadState_GET()->interp; |
| 252 | PyObject *res; |
| 253 | if (index == 0) |
| 254 | return NULL; |
| 255 | if (state->modules_by_index == NULL) |
| 256 | return NULL; |
Antoine Pitrou | 75506e8 | 2012-08-20 19:30:46 +0200 | [diff] [blame] | 257 | if (index >= PyList_GET_SIZE(state->modules_by_index)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 258 | return NULL; |
| 259 | res = PyList_GET_ITEM(state->modules_by_index, index); |
| 260 | return res==Py_None ? NULL : res; |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | int |
| 264 | _PyState_AddModule(PyObject* module, struct PyModuleDef* def) |
| 265 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 266 | PyInterpreterState *state = PyThreadState_GET()->interp; |
| 267 | if (!def) |
| 268 | return -1; |
| 269 | if (!state->modules_by_index) { |
| 270 | state->modules_by_index = PyList_New(0); |
| 271 | if (!state->modules_by_index) |
| 272 | return -1; |
| 273 | } |
| 274 | while(PyList_GET_SIZE(state->modules_by_index) <= def->m_base.m_index) |
| 275 | if (PyList_Append(state->modules_by_index, Py_None) < 0) |
| 276 | return -1; |
| 277 | Py_INCREF(module); |
| 278 | return PyList_SetItem(state->modules_by_index, |
| 279 | def->m_base.m_index, module); |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 280 | } |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 281 | |
Martin v. Löwis | 7800f75 | 2012-06-22 12:20:55 +0200 | [diff] [blame] | 282 | int |
| 283 | PyState_AddModule(PyObject* module, struct PyModuleDef* def) |
| 284 | { |
| 285 | Py_ssize_t index; |
| 286 | PyInterpreterState *state = PyThreadState_GET()->interp; |
| 287 | if (!def) { |
| 288 | Py_FatalError("PyState_AddModule: Module Definition is NULL"); |
| 289 | return -1; |
| 290 | } |
| 291 | index = def->m_base.m_index; |
| 292 | if (state->modules_by_index) { |
| 293 | if(PyList_GET_SIZE(state->modules_by_index) >= index) { |
| 294 | if(module == PyList_GET_ITEM(state->modules_by_index, index)) { |
| 295 | Py_FatalError("PyState_AddModule: Module already added!"); |
| 296 | return -1; |
| 297 | } |
| 298 | } |
| 299 | } |
| 300 | return _PyState_AddModule(module, def); |
| 301 | } |
| 302 | |
| 303 | int |
| 304 | PyState_RemoveModule(struct PyModuleDef* def) |
| 305 | { |
| 306 | Py_ssize_t index = def->m_base.m_index; |
| 307 | PyInterpreterState *state = PyThreadState_GET()->interp; |
| 308 | if (index == 0) { |
| 309 | Py_FatalError("PyState_RemoveModule: Module index invalid."); |
| 310 | return -1; |
| 311 | } |
| 312 | if (state->modules_by_index == NULL) { |
| 313 | Py_FatalError("PyState_RemoveModule: Interpreters module-list not acessible."); |
| 314 | return -1; |
| 315 | } |
| 316 | if (index > PyList_GET_SIZE(state->modules_by_index)) { |
| 317 | Py_FatalError("PyState_RemoveModule: Module index out of bounds."); |
| 318 | return -1; |
| 319 | } |
| 320 | return PyList_SetItem(state->modules_by_index, index, Py_None); |
| 321 | } |
| 322 | |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 323 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 324 | PyThreadState_Clear(PyThreadState *tstate) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 325 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 326 | if (Py_VerboseFlag && tstate->frame != NULL) |
| 327 | fprintf(stderr, |
| 328 | "PyThreadState_Clear: warning: thread still has a frame\n"); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 329 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 330 | Py_CLEAR(tstate->frame); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 331 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 332 | Py_CLEAR(tstate->dict); |
| 333 | Py_CLEAR(tstate->async_exc); |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 334 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 335 | Py_CLEAR(tstate->curexc_type); |
| 336 | Py_CLEAR(tstate->curexc_value); |
| 337 | Py_CLEAR(tstate->curexc_traceback); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 338 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 339 | Py_CLEAR(tstate->exc_type); |
| 340 | Py_CLEAR(tstate->exc_value); |
| 341 | Py_CLEAR(tstate->exc_traceback); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 342 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 343 | tstate->c_profilefunc = NULL; |
| 344 | tstate->c_tracefunc = NULL; |
| 345 | Py_CLEAR(tstate->c_profileobj); |
| 346 | Py_CLEAR(tstate->c_traceobj); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 350 | /* Common code for PyThreadState_Delete() and PyThreadState_DeleteCurrent() */ |
| 351 | static void |
| 352 | tstate_delete_common(PyThreadState *tstate) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 353 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 354 | PyInterpreterState *interp; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 355 | if (tstate == NULL) |
| 356 | Py_FatalError("PyThreadState_Delete: NULL tstate"); |
| 357 | interp = tstate->interp; |
| 358 | if (interp == NULL) |
| 359 | Py_FatalError("PyThreadState_Delete: NULL interp"); |
| 360 | HEAD_LOCK(); |
Charles-Francois Natali | f28dfdd | 2013-05-08 21:09:52 +0200 | [diff] [blame] | 361 | if (tstate->prev) |
| 362 | tstate->prev->next = tstate->next; |
| 363 | else |
| 364 | interp->tstate_head = tstate->next; |
| 365 | if (tstate->next) |
| 366 | tstate->next->prev = tstate->prev; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 367 | HEAD_UNLOCK(); |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 368 | PyMem_RawFree(tstate); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 372 | void |
| 373 | PyThreadState_Delete(PyThreadState *tstate) |
| 374 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 375 | if (tstate == _Py_atomic_load_relaxed(&_PyThreadState_Current)) |
| 376 | Py_FatalError("PyThreadState_Delete: tstate is still current"); |
Tim Peters | f4e6928 | 2006-02-27 17:15:31 +0000 | [diff] [blame] | 377 | #ifdef WITH_THREAD |
Antoine Pitrou | 079ce54 | 2010-09-08 12:37:10 +0000 | [diff] [blame] | 378 | if (autoInterpreterState && PyThread_get_key_value(autoTLSkey) == tstate) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 379 | PyThread_delete_key_value(autoTLSkey); |
Tim Peters | f4e6928 | 2006-02-27 17:15:31 +0000 | [diff] [blame] | 380 | #endif /* WITH_THREAD */ |
Christian Heimes | b9dbc7d | 2013-07-01 23:42:28 +0200 | [diff] [blame] | 381 | tstate_delete_common(tstate); |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | |
| 385 | #ifdef WITH_THREAD |
| 386 | void |
| 387 | PyThreadState_DeleteCurrent() |
| 388 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 389 | PyThreadState *tstate = (PyThreadState*)_Py_atomic_load_relaxed( |
| 390 | &_PyThreadState_Current); |
| 391 | if (tstate == NULL) |
| 392 | Py_FatalError( |
| 393 | "PyThreadState_DeleteCurrent: no current tstate"); |
| 394 | _Py_atomic_store_relaxed(&_PyThreadState_Current, NULL); |
Antoine Pitrou | 079ce54 | 2010-09-08 12:37:10 +0000 | [diff] [blame] | 395 | if (autoInterpreterState && PyThread_get_key_value(autoTLSkey) == tstate) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 396 | PyThread_delete_key_value(autoTLSkey); |
Christian Heimes | b9dbc7d | 2013-07-01 23:42:28 +0200 | [diff] [blame] | 397 | tstate_delete_common(tstate); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 398 | PyEval_ReleaseLock(); |
Guido van Rossum | 2975786 | 2001-01-23 01:46:06 +0000 | [diff] [blame] | 399 | } |
| 400 | #endif /* WITH_THREAD */ |
| 401 | |
| 402 | |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 403 | /* |
| 404 | * Delete all thread states except the one passed as argument. |
| 405 | * Note that, if there is a current thread state, it *must* be the one |
| 406 | * passed as argument. Also, this won't touch any other interpreters |
| 407 | * than the current one, since we don't know which thread state should |
| 408 | * be kept in those other interpreteres. |
| 409 | */ |
| 410 | void |
| 411 | _PyThreadState_DeleteExcept(PyThreadState *tstate) |
| 412 | { |
| 413 | PyInterpreterState *interp = tstate->interp; |
| 414 | PyThreadState *p, *next, *garbage; |
| 415 | HEAD_LOCK(); |
| 416 | /* Remove all thread states, except tstate, from the linked list of |
| 417 | thread states. This will allow calling PyThreadState_Clear() |
Charles-Francois Natali | f28dfdd | 2013-05-08 21:09:52 +0200 | [diff] [blame] | 418 | without holding the lock. */ |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 419 | garbage = interp->tstate_head; |
Charles-Francois Natali | f28dfdd | 2013-05-08 21:09:52 +0200 | [diff] [blame] | 420 | if (garbage == tstate) |
| 421 | garbage = tstate->next; |
| 422 | if (tstate->prev) |
| 423 | tstate->prev->next = tstate->next; |
| 424 | if (tstate->next) |
| 425 | tstate->next->prev = tstate->prev; |
| 426 | tstate->prev = tstate->next = NULL; |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 427 | interp->tstate_head = tstate; |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 428 | HEAD_UNLOCK(); |
| 429 | /* Clear and deallocate all stale thread states. Even if this |
| 430 | executes Python code, we should be safe since it executes |
| 431 | in the current thread, not one of the stale threads. */ |
| 432 | for (p = garbage; p; p = next) { |
| 433 | next = p->next; |
| 434 | PyThreadState_Clear(p); |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 435 | PyMem_RawFree(p); |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 436 | } |
| 437 | } |
| 438 | |
| 439 | |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 440 | PyThreadState * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 441 | PyThreadState_Get(void) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 442 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 443 | PyThreadState *tstate = (PyThreadState*)_Py_atomic_load_relaxed( |
| 444 | &_PyThreadState_Current); |
| 445 | if (tstate == NULL) |
| 446 | Py_FatalError("PyThreadState_Get: no current thread"); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 447 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 448 | return tstate; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | |
| 452 | PyThreadState * |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 453 | PyThreadState_Swap(PyThreadState *newts) |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 454 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 455 | PyThreadState *oldts = (PyThreadState*)_Py_atomic_load_relaxed( |
| 456 | &_PyThreadState_Current); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 457 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 458 | _Py_atomic_store_relaxed(&_PyThreadState_Current, newts); |
| 459 | /* It should not be possible for more than one thread state |
| 460 | to be used for a thread. Check this the best we can in debug |
| 461 | builds. |
| 462 | */ |
Martin v. Löwis | 9e29625 | 2003-05-01 05:25:29 +0000 | [diff] [blame] | 463 | #if defined(Py_DEBUG) && defined(WITH_THREAD) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 464 | if (newts) { |
| 465 | /* This can be called from PyEval_RestoreThread(). Similar |
| 466 | to it, we need to ensure errno doesn't change. |
| 467 | */ |
| 468 | int err = errno; |
| 469 | PyThreadState *check = PyGILState_GetThisThreadState(); |
| 470 | if (check && check->interp == newts->interp && check != newts) |
| 471 | Py_FatalError("Invalid thread state for this thread"); |
| 472 | errno = err; |
| 473 | } |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 474 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 475 | return oldts; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 476 | } |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 477 | |
| 478 | /* An extension mechanism to store arbitrary additional per-thread state. |
| 479 | PyThreadState_GetDict() returns a dictionary that can be used to hold such |
| 480 | 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] | 481 | PyThreadState_GetDict() returns NULL, an exception has *not* been raised |
| 482 | and the caller should assume no per-thread state is available. */ |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 483 | |
| 484 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 485 | PyThreadState_GetDict(void) |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 486 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 487 | PyThreadState *tstate = (PyThreadState*)_Py_atomic_load_relaxed( |
| 488 | &_PyThreadState_Current); |
| 489 | if (tstate == NULL) |
| 490 | return NULL; |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 491 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 492 | if (tstate->dict == NULL) { |
| 493 | PyObject *d; |
| 494 | tstate->dict = d = PyDict_New(); |
| 495 | if (d == NULL) |
| 496 | PyErr_Clear(); |
| 497 | } |
| 498 | return tstate->dict; |
Guido van Rossum | ede0439 | 1998-04-10 20:18:25 +0000 | [diff] [blame] | 499 | } |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 500 | |
| 501 | |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 502 | /* Asynchronously raise an exception in a thread. |
| 503 | Requested by Just van Rossum and Alex Martelli. |
Guido van Rossum | 0f1f63c | 2005-02-08 02:07:57 +0000 | [diff] [blame] | 504 | To prevent naive misuse, you must write your own extension |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 505 | to call this, or use ctypes. Must be called with the GIL held. |
| 506 | Returns the number of tstates modified (normally 1, but 0 if `id` didn't |
| 507 | match any known thread id). Can be called with exc=NULL to clear an |
| 508 | existing async exception. This raises no exceptions. */ |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 509 | |
| 510 | int |
| 511 | PyThreadState_SetAsyncExc(long id, PyObject *exc) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 512 | PyThreadState *tstate = PyThreadState_GET(); |
| 513 | PyInterpreterState *interp = tstate->interp; |
| 514 | PyThreadState *p; |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 515 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 516 | /* Although the GIL is held, a few C API functions can be called |
| 517 | * without the GIL held, and in particular some that create and |
| 518 | * destroy thread and interpreter states. Those can mutate the |
| 519 | * list of thread states we're traversing, so to prevent that we lock |
| 520 | * head_mutex for the duration. |
| 521 | */ |
| 522 | HEAD_LOCK(); |
| 523 | for (p = interp->tstate_head; p != NULL; p = p->next) { |
| 524 | if (p->thread_id == id) { |
| 525 | /* Tricky: we need to decref the current value |
| 526 | * (if any) in p->async_exc, but that can in turn |
| 527 | * allow arbitrary Python code to run, including |
| 528 | * perhaps calls to this function. To prevent |
| 529 | * deadlock, we need to release head_mutex before |
| 530 | * the decref. |
| 531 | */ |
| 532 | PyObject *old_exc = p->async_exc; |
| 533 | Py_XINCREF(exc); |
| 534 | p->async_exc = exc; |
| 535 | HEAD_UNLOCK(); |
| 536 | Py_XDECREF(old_exc); |
| 537 | _PyEval_SignalAsyncExc(); |
| 538 | return 1; |
| 539 | } |
| 540 | } |
| 541 | HEAD_UNLOCK(); |
| 542 | return 0; |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 546 | /* Routines for advanced debuggers, requested by David Beazley. |
| 547 | Don't use unless you know what you are doing! */ |
| 548 | |
| 549 | PyInterpreterState * |
| 550 | PyInterpreterState_Head(void) |
| 551 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 552 | return interp_head; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 553 | } |
| 554 | |
| 555 | PyInterpreterState * |
| 556 | PyInterpreterState_Next(PyInterpreterState *interp) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 557 | return interp->next; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 558 | } |
| 559 | |
| 560 | PyThreadState * |
| 561 | PyInterpreterState_ThreadHead(PyInterpreterState *interp) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 562 | return interp->tstate_head; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 563 | } |
| 564 | |
| 565 | PyThreadState * |
| 566 | PyThreadState_Next(PyThreadState *tstate) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 567 | return tstate->next; |
Guido van Rossum | f5df46d | 2001-07-19 12:19:27 +0000 | [diff] [blame] | 568 | } |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 569 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 570 | /* The implementation of sys._current_frames(). This is intended to be |
| 571 | called with the GIL held, as it will be when called via |
| 572 | sys._current_frames(). It's possible it would work fine even without |
| 573 | the GIL held, but haven't thought enough about that. |
| 574 | */ |
| 575 | PyObject * |
| 576 | _PyThread_CurrentFrames(void) |
| 577 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 578 | PyObject *result; |
| 579 | PyInterpreterState *i; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 580 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 581 | result = PyDict_New(); |
| 582 | if (result == NULL) |
| 583 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 584 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 585 | /* for i in all interpreters: |
| 586 | * for t in all of i's thread states: |
| 587 | * 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] | 588 | * Because these lists can mutate even when the GIL is held, we |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 589 | * need to grab head_mutex for the duration. |
| 590 | */ |
| 591 | HEAD_LOCK(); |
| 592 | for (i = interp_head; i != NULL; i = i->next) { |
| 593 | PyThreadState *t; |
| 594 | for (t = i->tstate_head; t != NULL; t = t->next) { |
| 595 | PyObject *id; |
| 596 | int stat; |
| 597 | struct _frame *frame = t->frame; |
| 598 | if (frame == NULL) |
| 599 | continue; |
| 600 | id = PyLong_FromLong(t->thread_id); |
| 601 | if (id == NULL) |
| 602 | goto Fail; |
| 603 | stat = PyDict_SetItem(result, id, (PyObject *)frame); |
| 604 | Py_DECREF(id); |
| 605 | if (stat < 0) |
| 606 | goto Fail; |
| 607 | } |
| 608 | } |
| 609 | HEAD_UNLOCK(); |
| 610 | return result; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 611 | |
| 612 | Fail: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 613 | HEAD_UNLOCK(); |
| 614 | Py_DECREF(result); |
| 615 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 616 | } |
Guido van Rossum | b8b6d0c | 2003-06-28 21:53:52 +0000 | [diff] [blame] | 617 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 618 | /* Python "auto thread state" API. */ |
| 619 | #ifdef WITH_THREAD |
| 620 | |
| 621 | /* Keep this as a static, as it is not reliable! It can only |
| 622 | ever be compared to the state for the *current* thread. |
| 623 | * If not equal, then it doesn't matter that the actual |
| 624 | value may change immediately after comparison, as it can't |
| 625 | possibly change to the current thread's state. |
| 626 | * If equal, then the current thread holds the lock, so the value can't |
| 627 | change until we yield the lock. |
| 628 | */ |
| 629 | static int |
| 630 | PyThreadState_IsCurrent(PyThreadState *tstate) |
| 631 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 632 | /* Must be the tstate for this thread */ |
| 633 | assert(PyGILState_GetThisThreadState()==tstate); |
| 634 | return tstate == _Py_atomic_load_relaxed(&_PyThreadState_Current); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 635 | } |
| 636 | |
Tim Peters | 4c1f5ec | 2004-10-09 17:25:05 +0000 | [diff] [blame] | 637 | /* Internal initialization/finalization functions called by |
| 638 | Py_Initialize/Py_Finalize |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 639 | */ |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 640 | void |
| 641 | _PyGILState_Init(PyInterpreterState *i, PyThreadState *t) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 642 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 643 | assert(i && t); /* must init with valid states */ |
| 644 | autoTLSkey = PyThread_create_key(); |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 645 | if (autoTLSkey == -1) |
| 646 | Py_FatalError("Could not allocate TLS entry"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 647 | autoInterpreterState = i; |
| 648 | assert(PyThread_get_key_value(autoTLSkey) == NULL); |
| 649 | assert(t->gilstate_counter == 0); |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 650 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 651 | _PyGILState_NoteThreadState(t); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 652 | } |
| 653 | |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 654 | void |
| 655 | _PyGILState_Fini(void) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 656 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 657 | PyThread_delete_key(autoTLSkey); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 658 | autoInterpreterState = NULL; |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 659 | } |
| 660 | |
Charles-François Natali | a233df8 | 2011-11-22 19:49:51 +0100 | [diff] [blame] | 661 | /* Reset the TLS key - called by PyOS_AfterFork(). |
Antoine Pitrou | 0c759fe | 2011-04-27 19:28:05 +0200 | [diff] [blame] | 662 | * This should not be necessary, but some - buggy - pthread implementations |
Charles-François Natali | a233df8 | 2011-11-22 19:49:51 +0100 | [diff] [blame] | 663 | * don't reset TLS upon fork(), see issue #10517. |
Antoine Pitrou | 0c759fe | 2011-04-27 19:28:05 +0200 | [diff] [blame] | 664 | */ |
| 665 | void |
| 666 | _PyGILState_Reinit(void) |
| 667 | { |
| 668 | PyThreadState *tstate = PyGILState_GetThisThreadState(); |
| 669 | PyThread_delete_key(autoTLSkey); |
| 670 | if ((autoTLSkey = PyThread_create_key()) == -1) |
| 671 | Py_FatalError("Could not allocate TLS entry"); |
| 672 | |
Charles-François Natali | a233df8 | 2011-11-22 19:49:51 +0100 | [diff] [blame] | 673 | /* If the thread had an associated auto thread state, reassociate it with |
| 674 | * the new key. */ |
| 675 | if (tstate && PyThread_set_key_value(autoTLSkey, (void *)tstate) < 0) |
Antoine Pitrou | 0c759fe | 2011-04-27 19:28:05 +0200 | [diff] [blame] | 676 | Py_FatalError("Couldn't create autoTLSkey mapping"); |
| 677 | } |
| 678 | |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 679 | /* When a thread state is created for a thread by some mechanism other than |
| 680 | PyGILState_Ensure, it's important that the GILState machinery knows about |
| 681 | it so it doesn't try to create another thread state for the thread (this is |
| 682 | a better fix for SF bug #1010677 than the first one attempted). |
| 683 | */ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 684 | static void |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 685 | _PyGILState_NoteThreadState(PyThreadState* tstate) |
| 686 | { |
Antoine Pitrou | 079ce54 | 2010-09-08 12:37:10 +0000 | [diff] [blame] | 687 | /* If autoTLSkey isn't initialized, this must be the very first |
| 688 | threadstate created in Py_Initialize(). Don't do anything for now |
| 689 | (we'll be back here when _PyGILState_Init is called). */ |
| 690 | if (!autoInterpreterState) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 691 | return; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 692 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 693 | /* Stick the thread state for this thread in thread local storage. |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 694 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 695 | The only situation where you can legitimately have more than one |
| 696 | thread state for an OS level thread is when there are multiple |
| 697 | interpreters, when: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 698 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 699 | a) You shouldn't really be using the PyGILState_ APIs anyway, |
| 700 | and: |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 701 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 702 | b) The slightly odd way PyThread_set_key_value works (see |
| 703 | comments by its implementation) means that the first thread |
| 704 | state created for that given OS level thread will "win", |
| 705 | which seems reasonable behaviour. |
| 706 | */ |
| 707 | if (PyThread_set_key_value(autoTLSkey, (void *)tstate) < 0) |
| 708 | Py_FatalError("Couldn't create autoTLSkey mapping"); |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 709 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 710 | /* PyGILState_Release must not try to delete this thread state. */ |
| 711 | tstate->gilstate_counter = 1; |
Michael W. Hudson | 188d436 | 2005-06-20 16:52:57 +0000 | [diff] [blame] | 712 | } |
| 713 | |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 714 | /* The public functions */ |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 715 | PyThreadState * |
| 716 | PyGILState_GetThisThreadState(void) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 717 | { |
Antoine Pitrou | 079ce54 | 2010-09-08 12:37:10 +0000 | [diff] [blame] | 718 | if (autoInterpreterState == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 719 | return NULL; |
| 720 | return (PyThreadState *)PyThread_get_key_value(autoTLSkey); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 721 | } |
| 722 | |
Kristján Valur Jónsson | 684cd0e | 2013-03-23 03:36:16 -0700 | [diff] [blame] | 723 | int |
| 724 | PyGILState_Check(void) |
| 725 | { |
| 726 | /* can't use PyThreadState_Get() since it will assert that it has the GIL */ |
| 727 | PyThreadState *tstate = (PyThreadState*)_Py_atomic_load_relaxed( |
| 728 | &_PyThreadState_Current); |
| 729 | return tstate && (tstate == PyGILState_GetThisThreadState()); |
| 730 | } |
| 731 | |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 732 | PyGILState_STATE |
| 733 | PyGILState_Ensure(void) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 734 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 735 | int current; |
| 736 | PyThreadState *tcur; |
| 737 | /* Note that we do not auto-init Python here - apart from |
| 738 | potential races with 2 threads auto-initializing, pep-311 |
| 739 | spells out other issues. Embedders are expected to have |
| 740 | called Py_Initialize() and usually PyEval_InitThreads(). |
| 741 | */ |
| 742 | assert(autoInterpreterState); /* Py_Initialize() hasn't been called! */ |
| 743 | tcur = (PyThreadState *)PyThread_get_key_value(autoTLSkey); |
| 744 | if (tcur == NULL) { |
| 745 | /* Create a new thread state for this thread */ |
| 746 | tcur = PyThreadState_New(autoInterpreterState); |
| 747 | if (tcur == NULL) |
| 748 | Py_FatalError("Couldn't create thread-state for new thread"); |
| 749 | /* This is our thread state! We'll need to delete it in the |
| 750 | matching call to PyGILState_Release(). */ |
| 751 | tcur->gilstate_counter = 0; |
| 752 | current = 0; /* new thread state is never current */ |
| 753 | } |
| 754 | else |
| 755 | current = PyThreadState_IsCurrent(tcur); |
| 756 | if (current == 0) |
| 757 | PyEval_RestoreThread(tcur); |
| 758 | /* Update our counter in the thread-state - no need for locks: |
| 759 | - tcur will remain valid as we hold the GIL. |
| 760 | - the counter is safe as we are the only thread "allowed" |
| 761 | to modify this value |
| 762 | */ |
| 763 | ++tcur->gilstate_counter; |
| 764 | return current ? PyGILState_LOCKED : PyGILState_UNLOCKED; |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 765 | } |
| 766 | |
Tim Peters | 19717fa | 2004-10-09 17:38:29 +0000 | [diff] [blame] | 767 | void |
| 768 | PyGILState_Release(PyGILState_STATE oldstate) |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 769 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 770 | PyThreadState *tcur = (PyThreadState *)PyThread_get_key_value( |
| 771 | autoTLSkey); |
| 772 | if (tcur == NULL) |
| 773 | Py_FatalError("auto-releasing thread-state, " |
| 774 | "but no thread-state for this thread"); |
| 775 | /* We must hold the GIL and have our thread state current */ |
| 776 | /* XXX - remove the check - the assert should be fine, |
| 777 | but while this is very new (April 2003), the extra check |
| 778 | by release-only users can't hurt. |
| 779 | */ |
| 780 | if (! PyThreadState_IsCurrent(tcur)) |
| 781 | Py_FatalError("This thread state must be current when releasing"); |
| 782 | assert(PyThreadState_IsCurrent(tcur)); |
| 783 | --tcur->gilstate_counter; |
| 784 | assert(tcur->gilstate_counter >= 0); /* illegal counter value */ |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 785 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 786 | /* If we're going to destroy this thread-state, we must |
| 787 | * clear it while the GIL is held, as destructors may run. |
| 788 | */ |
| 789 | if (tcur->gilstate_counter == 0) { |
| 790 | /* can't have been locked when we created it */ |
| 791 | assert(oldstate == PyGILState_UNLOCKED); |
| 792 | PyThreadState_Clear(tcur); |
| 793 | /* Delete the thread-state. Note this releases the GIL too! |
| 794 | * It's vital that the GIL be held here, to avoid shutdown |
| 795 | * races; see bugs 225673 and 1061968 (that nasty bug has a |
| 796 | * habit of coming back). |
| 797 | */ |
| 798 | PyThreadState_DeleteCurrent(); |
| 799 | } |
| 800 | /* Release the lock if necessary */ |
| 801 | else if (oldstate == PyGILState_UNLOCKED) |
| 802 | PyEval_SaveThread(); |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 803 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 804 | |
Benjamin Peterson | 3bf0175 | 2012-04-13 18:06:36 -0400 | [diff] [blame] | 805 | #endif /* WITH_THREAD */ |
| 806 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 807 | #ifdef __cplusplus |
| 808 | } |
| 809 | #endif |
| 810 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 811 | |