Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion graalpython/com.oracle.graal.python.cext/src/memoryobject.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2018, 2025, Oracle and/or its affiliates.
/* Copyright (c) 2018, 2026, Oracle and/or its affiliates.
* Copyright (C) 1996-2020 Python Software Foundation
*
* Licensed under the PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
Expand Down Expand Up @@ -3419,7 +3419,12 @@ GraalPyPrivate_MemoryViewFromObject(PyObject *v, int flags)
{
if (PyObject_CheckBuffer(v)) {
Py_buffer* buffer = malloc(sizeof(Py_buffer));
if (buffer == NULL) {
PyErr_NoMemory();
return NULL;
}
if (PyObject_GetBuffer(v, buffer, flags) < 0) {
free(buffer);
return NULL;
}
int needs_release = 0;
Expand All @@ -3442,6 +3447,11 @@ GraalPyPrivate_MemoryViewFromObject(PyObject *v, int flags)
buffer->shape,
buffer->strides,
buffer->suboffsets);
if (mv == NULL) {
PyBuffer_Release(buffer);
free(buffer);
return NULL;
}
if (!needs_release) {
free(buffer);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
# Copyright (c) 2026, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# The Universal Permissive License (UPL), Version 1.0
#
# Subject to the condition set forth below, permission is hereby granted to any
# person obtaining a copy of this software, associated documentation and/or
# data (collectively the "Software"), free of charge and under any and all
# copyright rights in the Software, and any and all patent rights owned or
# freely licensable by each licensor hereunder covering either (i) the
# unmodified Software as contributed to or provided by such licensor, or (ii)
# the Larger Works (as defined below), to deal in both
#
# (a) the Software, and
#
# (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
# one is included with the Software each a "Larger Work" to which the Software
# is contributed by such licensors),
#
# without restriction, including without limitation the rights to copy, create
# derivative works of, display, perform, and distribute the Software and make,
# use, sell, offer for sale, import, export, have made, and have sold the
# Software and the Larger Work(s), and to sublicense the foregoing rights on
# either these or other terms.
#
# This license is subject to the following condition:
#
# The above copyright notice and either this complete permission notice or at a
# minimum a reference to the UPL must be included in all copies or substantial
# portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

import os
import subprocess
import sys
import textwrap
import unittest
from pathlib import Path
from unittest import skipIf

from . import GRAALPYTHON


@skipIf(not GRAALPYTHON, "requires GraalPy native memory accounting")
class TestPyMemoryViewFromObjectErrorPath(unittest.TestCase):
def assert_script_succeeds(self, script):
# Run each check in a fresh GraalPy process. The RSS assertion is otherwise too noisy because
# the surrounding graalpytest JVM can grow for reasons unrelated to this native Py_buffer path.
script = textwrap.dedent(f"""
import sys

sys.path.insert(0, {str(Path(__file__).parents[2])!r})
""") + textwrap.dedent(script)
env = os.environ.copy()
env["PYTHONHASHSEED"] = "0"
process = subprocess.run(
# CPyExtType imports require debugging builtins in this nested GraalPy process as well.
[sys.executable, "--experimental-options", "--python.EnableDebuggingBuiltins", "-c", script],
capture_output=True,
env=env,
text=True,
)
self.assertEqual(process.returncode, 0, process.stdout + process.stderr)

def test_failing_getbuffer_does_not_leak_py_buffer(self):
self.assert_script_succeeds(r"""
import gc

import __graalpython__
from tests.cpyext import CPyExtType

TestType = CPyExtType(
"TestMemoryViewFailingGetBuffer",
r'''
PyAPI_FUNC(PyObject *) GraalPyPrivate_MemoryViewFromObject(PyObject *v, int flags);

// Advertise buffer support but fail every acquisition attempt.
static int getbuffer(TestMemoryViewFailingGetBufferObject *self, Py_buffer *view, int flags) {
PyErr_SetString(PyExc_BufferError, "buffer export denied");
return -1;
}

static PyBufferProcs as_buffer = {
(getbufferproc)getbuffer,
0,
};

// Keep the repeat loop in C so RSS reflects this native helper path,
// not Python-level memoryview or runtime overhead.
static PyObject* repeat_failing_memoryview_fromobject(PyObject* self, PyObject* args) {
Py_ssize_t count;
if (!PyArg_ParseTuple(args, "n", &count)) {
return NULL;
}
for (Py_ssize_t i = 0; i < count; i++) {
PyObject *mv = GraalPyPrivate_MemoryViewFromObject(self, PyBUF_FULL_RO);
if (mv != NULL) {
Py_DECREF(mv);
PyErr_SetString(PyExc_AssertionError, "GraalPyPrivate_MemoryViewFromObject unexpectedly succeeded");
return NULL;
}
if (!PyErr_ExceptionMatches(PyExc_BufferError)) {
return NULL;
}
PyErr_Clear();
}
Py_RETURN_NONE;
}
''',
tp_as_buffer='&as_buffer',
tp_methods='{"repeat_failing_memoryview_fromobject", repeat_failing_memoryview_fromobject, METH_VARARGS, ""}',
)

obj = TestType()
# Warm up CPyExtType compilation and one-time runtime allocations before measuring RSS.
obj.repeat_failing_memoryview_fromobject(1_000_000)
gc.collect()
baseline = __graalpython__.get_current_rss()

# A leaked Py_buffer is small, so use enough failed calls to make the leak visible in RSS.
obj.repeat_failing_memoryview_fromobject(150_000)
gc.collect()
growth = __graalpython__.get_current_rss() - baseline

if growth >= 10:
raise AssertionError(f"RSS grew by {growth} MiB after failed getbuffer calls")
""")

def test_construction_failure_releases_acquired_buffer(self):
self.assert_script_succeeds(r"""
from tests.cpyext import CPyExtType

ReleaseOnFailureType = CPyExtType(
"TestMemoryViewReleaseOnConstructionFailure",
r'''
PyAPI_FUNC(PyObject *) GraalPyPrivate_MemoryViewFromObject(PyObject *v, int flags);

static int release_count = 0;
static char buf[] = {42};

static int getbuffer(TestMemoryViewReleaseOnConstructionFailureObject *self, Py_buffer *view, int flags) {
// Use a length that is valid for Py_buffer but too large for GraalPy's memoryview shape.
// This makes PyObject_GetBuffer succeed and memoryview construction fail afterwards.
return PyBuffer_FillInfo(view, (PyObject*)self, buf, PY_SSIZE_T_MAX, 1, flags);
}

static void releasebuffer(TestMemoryViewReleaseOnConstructionFailureObject *self, Py_buffer *view) {
release_count++;
}

static PyBufferProcs as_buffer = {
(getbufferproc)getbuffer,
(releasebufferproc)releasebuffer,
};

static PyObject* check_release_on_construction_failure(PyObject* self, PyObject* args) {
PyObject *mv = GraalPyPrivate_MemoryViewFromObject(self, PyBUF_FULL_RO);
if (mv != NULL) {
Py_DECREF(mv);
PyErr_SetString(PyExc_AssertionError, "GraalPyPrivate_MemoryViewFromObject unexpectedly succeeded");
return NULL;
}
if (!PyErr_Occurred()) {
PyErr_SetString(PyExc_AssertionError, "GraalPyPrivate_MemoryViewFromObject failed without an exception");
return NULL;
}
PyErr_Clear();
return PyLong_FromLong(release_count);
}
''',
tp_as_buffer='&as_buffer',
tp_methods='{"check_release_on_construction_failure", check_release_on_construction_failure, METH_NOARGS, ""}',
)

release_count = ReleaseOnFailureType().check_release_on_construction_failure()
if release_count != 1:
raise AssertionError(f"expected one releasebuffer call, got {release_count}")
""")
Loading