From 2a5a5ca012fed6f1224ad225dd7e82e8b6448cd0 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 13 Apr 2001 17:15:47 +0000 Subject: cleanup_helper(): Make sure we invalidate all reference objects before calling any callbacks. This is important since the callback objects only look at themselves to determine that they are invalide. This change avoids a segfault when callbacks use a different reference to an object in the process of being deallocated. This fixes SF bug #415660. --- Modules/_weakref.c | 47 +++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 41 insertions(+), 6 deletions(-) diff --git a/Modules/_weakref.c b/Modules/_weakref.c index 399b4fe..71fe5a3 100644 --- a/Modules/_weakref.c +++ b/Modules/_weakref.c @@ -740,15 +740,22 @@ cleanup_helper(PyObject *object) return; } list = GET_WEAKREFS_LISTPTR(object); - while (*list != NULL) { - PyWeakReference *current = *list; - PyObject *callback = current->wr_callback; + /* Remove the callback-less basic and proxy references */ + if (*list != NULL && (*list)->wr_callback == NULL) { + clear_weakref(*list); + if (*list != NULL && (*list)->wr_callback == NULL) + clear_weakref(*list); + } + if (*list != NULL) { + int count = getweakrefcount(*list); - Py_XINCREF(callback); - clear_weakref(current); - if (callback != NULL) { + if (count == 1) { + PyWeakReference *current = *list; + PyObject *callback = current->wr_callback; PyObject *cbresult; + Py_INCREF(callback); + clear_weakref(current); cbresult = PyObject_CallFunction(callback, "O", current); if (cbresult == NULL) PyErr_WriteUnraisable(callback); @@ -756,6 +763,34 @@ cleanup_helper(PyObject *object) Py_DECREF(cbresult); Py_DECREF(callback); } + else { + PyObject *tuple = PyTuple_New(count * 2); + PyWeakReference *current = *list; + int i = 0; + + for (i = 0; i < count; ++i) { + PyWeakReference *next = current->wr_next; + + Py_INCREF(current); + PyTuple_SET_ITEM(tuple, i * 2, (PyObject *) current); + PyTuple_SET_ITEM(tuple, i * 2 + 1, current->wr_callback); + current->wr_callback = NULL; + next = current->wr_next; + clear_weakref(current); + current = next; + } + for (i = 0; i < count; ++i) { + PyObject *current = PyTuple_GET_ITEM(tuple, i * 2); + PyObject *callback = PyTuple_GET_ITEM(tuple, i * 2 + 1); + PyObject *cbresult = PyObject_CallFunction(callback, "O", + current); + if (cbresult == NULL) + PyErr_WriteUnraisable(callback); + else + Py_DECREF(cbresult); + } + Py_DECREF(tuple); + } } return; } -- cgit v0.12