extern void _PySignal_AfterFork(void);
#endif
+PyAPI_FUNC(int) _PyCrossInterpreterData_ReleaseAndRawFree(_PyCrossInterpreterData *);
+
PyAPI_FUNC(int) _PyState_AddModule(
PyThreadState *tstate,
/* interpreters module */
/* low-level access to interpreter primitives */
+#ifndef Py_BUILD_CORE_BUILTIN
+# define Py_BUILD_CORE_MODULE 1
+#endif
+
#include "Python.h"
#include "interpreteridobject.h"
+#include "pycore_pystate.h" // _PyCrossInterpreterData_ReleaseAndRawFree()
/*
return cls;
}
+#define XID_IGNORE_EXC 1
+#define XID_FREE 2
+
static int
-_release_xid_data(_PyCrossInterpreterData *data, int ignoreexc)
+_release_xid_data(_PyCrossInterpreterData *data, int flags)
{
+ int ignoreexc = flags & XID_IGNORE_EXC;
PyObject *exc;
if (ignoreexc) {
exc = PyErr_GetRaisedException();
}
- int res = _PyCrossInterpreterData_Release(data);
+ int res;
+ if (flags & XID_FREE) {
+ res = _PyCrossInterpreterData_ReleaseAndRawFree(data);
+ }
+ else {
+ res = _PyCrossInterpreterData_Release(data);
+ }
if (res < 0) {
/* The owning interpreter is already destroyed. */
if (ignoreexc) {
PyErr_Clear();
}
}
+ if (flags & XID_FREE) {
+ /* Either way, we free the data. */
+ }
if (ignoreexc) {
PyErr_SetRaisedException(exc);
}
_channelitem_clear(_channelitem *item)
{
if (item->data != NULL) {
- (void)_release_xid_data(item->data, 1);
// It was allocated in _channel_send().
- GLOBAL_FREE(item->data);
+ (void)_release_xid_data(item->data, XID_IGNORE_EXC & XID_FREE);
item->data = NULL;
}
item->next = NULL;
PyObject *obj = _PyCrossInterpreterData_NewObject(data);
if (obj == NULL) {
assert(PyErr_Occurred());
- (void)_release_xid_data(data, 1);
- // It was allocated in _channel_send().
- GLOBAL_FREE(data);
+ // It was allocated in _channel_send(), so we free it.
+ (void)_release_xid_data(data, XID_IGNORE_EXC | XID_FREE);
return -1;
}
- int release_res = _release_xid_data(data, 0);
- // It was allocated in _channel_send().
- GLOBAL_FREE(data);
+ // It was allocated in _channel_send(), so we free it.
+ int release_res = _release_xid_data(data, XID_FREE);
if (release_res < 0) {
// The source interpreter has been destroyed already.
assert(PyErr_Occurred());
add_new_exception(MOD, MODULE_NAME "." Py_STRINGIFY(NAME), BASE)
static int
-_release_xid_data(_PyCrossInterpreterData *data, int ignoreexc)
+_release_xid_data(_PyCrossInterpreterData *data)
{
- PyObject *exc;
- if (ignoreexc) {
- exc = PyErr_GetRaisedException();
- }
+ PyObject *exc = PyErr_GetRaisedException();
int res = _PyCrossInterpreterData_Release(data);
if (res < 0) {
/* The owning interpreter is already destroyed. */
_PyCrossInterpreterData_Clear(NULL, data);
- if (ignoreexc) {
- // XXX Emit a warning?
- PyErr_Clear();
- }
- }
- if (ignoreexc) {
- PyErr_SetRaisedException(exc);
+ // XXX Emit a warning?
+ PyErr_Clear();
}
+ PyErr_SetRaisedException(exc);
return res;
}
PyMem_RawFree((void *)item->name);
item->name = NULL;
}
- (void)_release_xid_data(&item->data, 1);
+ (void)_release_xid_data(&item->data);
}
static int
static _sharedns *
_sharedns_new(Py_ssize_t len)
{
- _sharedns *shared = PyMem_NEW(_sharedns, 1);
+ _sharedns *shared = PyMem_RawCalloc(sizeof(_sharedns), 1);
if (shared == NULL) {
PyErr_NoMemory();
return NULL;
}
shared->len = len;
- shared->items = PyMem_NEW(struct _sharednsitem, len);
+ shared->items = PyMem_RawCalloc(sizeof(struct _sharednsitem), len);
if (shared->items == NULL) {
PyErr_NoMemory();
- PyMem_Free(shared);
+ PyMem_RawFree(shared);
return NULL;
}
return shared;
for (Py_ssize_t i=0; i < shared->len; i++) {
_sharednsitem_clear(&shared->items[i]);
}
- PyMem_Free(shared->items);
- PyMem_Free(shared);
+ PyMem_RawFree(shared->items);
+ PyMem_RawFree(shared);
}
static _sharedns *
static inline void
_xidata_clear(_PyCrossInterpreterData *data)
{
- if (data->free != NULL) {
- data->free(data->data);
+ // _PyCrossInterpreterData only has two members that need to be
+ // cleaned up, if set: "data" must be freed and "obj" must be decref'ed.
+ // In both cases the original (owning) interpreter must be used,
+ // which is the caller's responsibility to ensure.
+ if (data->data != NULL) {
+ if (data->free != NULL) {
+ data->free(data->data);
+ }
+ data->data = NULL;
}
- data->data = NULL;
Py_CLEAR(data->obj);
}
return data->new_object(data);
}
-typedef void (*releasefunc)(PyInterpreterState *, void *);
-
-static void
-_call_in_interpreter(PyInterpreterState *interp, releasefunc func, void *arg)
+static int
+_release_xidata_pending(void *data)
{
- /* We would use Py_AddPendingCall() if it weren't specific to the
- * main interpreter (see bpo-33608). In the meantime we take a
- * naive approach.
- */
- _PyRuntimeState *runtime = interp->runtime;
- PyThreadState *save_tstate = NULL;
- if (interp != current_fast_get(runtime)->interp) {
- // XXX Using the "head" thread isn't strictly correct.
- PyThreadState *tstate = PyInterpreterState_ThreadHead(interp);
- // XXX Possible GILState issues?
- save_tstate = _PyThreadState_Swap(runtime, tstate);
- }
-
- // XXX Once the GIL is per-interpreter, this should be called with the
- // calling interpreter's GIL released and the target interpreter's held.
- func(interp, arg);
+ _xidata_clear((_PyCrossInterpreterData *)data);
+ return 0;
+}
- // Switch back.
- if (save_tstate != NULL) {
- _PyThreadState_Swap(runtime, save_tstate);
- }
+static int
+_xidata_release_and_rawfree_pending(void *data)
+{
+ _xidata_clear((_PyCrossInterpreterData *)data);
+ PyMem_RawFree(data);
+ return 0;
}
-int
-_PyCrossInterpreterData_Release(_PyCrossInterpreterData *data)
+static int
+_xidata_release(_PyCrossInterpreterData *data, int rawfree)
{
- if (data->free == NULL && data->obj == NULL) {
+ if ((data->data == NULL || data->free == NULL) && data->obj == NULL) {
// Nothing to release!
- data->data = NULL;
+ if (rawfree) {
+ PyMem_RawFree(data);
+ }
+ else {
+ data->data = NULL;
+ }
return 0;
}
// This function shouldn't have been called.
// XXX Someone leaked some memory...
assert(PyErr_Occurred());
+ if (rawfree) {
+ PyMem_RawFree(data);
+ }
return -1;
}
// "Release" the data and/or the object.
- _call_in_interpreter(interp,
- (releasefunc)_PyCrossInterpreterData_Clear, data);
+ if (interp == current_fast_get(interp->runtime)->interp) {
+ _xidata_clear(data);
+ if (rawfree) {
+ PyMem_RawFree(data);
+ }
+ }
+ else {
+ int (*func)(void *) = _release_xidata_pending;
+ if (rawfree) {
+ func = _xidata_release_and_rawfree_pending;
+ }
+ // XXX Emit a warning if this fails?
+ _PyEval_AddPendingCall(interp, func, data, 0);
+ }
return 0;
}
+int
+_PyCrossInterpreterData_Release(_PyCrossInterpreterData *data)
+{
+ return _xidata_release(data, 0);
+}
+
+int
+_PyCrossInterpreterData_ReleaseAndRawFree(_PyCrossInterpreterData *data)
+{
+ return _xidata_release(data, 1);
+}
+
/* registry of {type -> crossinterpdatafunc} */
/* For now we use a global registry of shareable classes. An