summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2024-09-11 09:05:46 (GMT)
committerGitHub <noreply@github.com>2024-09-11 09:05:46 (GMT)
commita1dbf2ea69acc6ccee6292709af1dadd55c068be (patch)
tree765c7c1124078aae4aa1b38bb9998d564f92ff52 /Objects
parent00ffdf27367fb9aef247644a96f1a9ffb5be1efe (diff)
downloadcpython-a1dbf2ea69acc6ccee6292709af1dadd55c068be.zip
cpython-a1dbf2ea69acc6ccee6292709af1dadd55c068be.tar.gz
cpython-a1dbf2ea69acc6ccee6292709af1dadd55c068be.tar.bz2
gh-77894: Fix a crash when the GC breaks a loop containing a memoryview (GH-123898)
Now a memoryview object can only be cleared if there are no buffers that refer it.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/memoryobject.c55
1 files changed, 27 insertions, 28 deletions
diff --git a/Objects/memoryobject.c b/Objects/memoryobject.c
index 498a37c..a2472d4 100644
--- a/Objects/memoryobject.c
+++ b/Objects/memoryobject.c
@@ -109,8 +109,6 @@ mbuf_release(_PyManagedBufferObject *self)
if (self->flags&_Py_MANAGED_BUFFER_RELEASED)
return;
- /* NOTE: at this point self->exports can still be > 0 if this function
- is called from mbuf_clear() to break up a reference cycle. */
self->flags |= _Py_MANAGED_BUFFER_RELEASED;
/* PyBuffer_Release() decrements master->obj and sets it to NULL. */
@@ -1096,32 +1094,19 @@ PyBuffer_ToContiguous(void *buf, const Py_buffer *src, Py_ssize_t len, char orde
/* Inform the managed buffer that this particular memoryview will not access
the underlying buffer again. If no other memoryviews are registered with
the managed buffer, the underlying buffer is released instantly and
- marked as inaccessible for both the memoryview and the managed buffer.
-
- This function fails if the memoryview itself has exported buffers. */
-static int
+ marked as inaccessible for both the memoryview and the managed buffer. */
+static void
_memory_release(PyMemoryViewObject *self)
{
+ assert(self->exports == 0);
if (self->flags & _Py_MEMORYVIEW_RELEASED)
- return 0;
+ return;
- if (self->exports == 0) {
- self->flags |= _Py_MEMORYVIEW_RELEASED;
- assert(self->mbuf->exports > 0);
- if (--self->mbuf->exports == 0)
- mbuf_release(self->mbuf);
- return 0;
+ self->flags |= _Py_MEMORYVIEW_RELEASED;
+ assert(self->mbuf->exports > 0);
+ if (--self->mbuf->exports == 0) {
+ mbuf_release(self->mbuf);
}
- if (self->exports > 0) {
- PyErr_Format(PyExc_BufferError,
- "memoryview has %zd exported buffer%s", self->exports,
- self->exports==1 ? "" : "s");
- return -1;
- }
-
- PyErr_SetString(PyExc_SystemError,
- "_memory_release(): negative export count");
- return -1;
}
/*[clinic input]
@@ -1134,9 +1119,21 @@ static PyObject *
memoryview_release_impl(PyMemoryViewObject *self)
/*[clinic end generated code: output=d0b7e3ba95b7fcb9 input=bc71d1d51f4a52f0]*/
{
- if (_memory_release(self) < 0)
+ if (self->exports == 0) {
+ _memory_release(self);
+ Py_RETURN_NONE;
+ }
+
+ if (self->exports > 0) {
+ PyErr_Format(PyExc_BufferError,
+ "memoryview has %zd exported buffer%s", self->exports,
+ self->exports==1 ? "" : "s");
return NULL;
- Py_RETURN_NONE;
+ }
+
+ PyErr_SetString(PyExc_SystemError,
+ "memoryview: negative export count");
+ return NULL;
}
static void
@@ -1145,7 +1142,7 @@ memory_dealloc(PyObject *_self)
PyMemoryViewObject *self = (PyMemoryViewObject *)_self;
assert(self->exports == 0);
_PyObject_GC_UNTRACK(self);
- (void)_memory_release(self);
+ _memory_release(self);
Py_CLEAR(self->mbuf);
if (self->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) self);
@@ -1164,8 +1161,10 @@ static int
memory_clear(PyObject *_self)
{
PyMemoryViewObject *self = (PyMemoryViewObject *)_self;
- (void)_memory_release(self);
- Py_CLEAR(self->mbuf);
+ if (self->exports == 0) {
+ _memory_release(self);
+ Py_CLEAR(self->mbuf);
+ }
return 0;
}