-
-
Notifications
You must be signed in to change notification settings - Fork 31.7k
Don't use PyObject_As*Buffer() functions #67085
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
PyObject_AsCharBuffer(), PyObject_AsReadBuffer() and PyObject_AsWriteBuffer() release the buffer right after acquiring and return a pointer to released buffer. This is not safe and could cause issues sooner or later. These functions shouldn't be used in the stdlib at all. |
Here is a patch which replaces deprecated functions with PyObject_GetBuffer() and like. It also introduce _PyBuffer_Converter for using in PyArgs_Parse* and clinic converter simple_buffer_converter which unlike to Py_buffer_converter ("y*") does not not force C contiguousity (is it correct?). |
Updated patch addresses Antoine's comments. I still hesitate about C-contiguousity. Looks as all buffers created in the stdlib are C-contiguous, so we can't test non-contiguous buffers. Shouldn't PyObject_AsCharBuffer (or even PyObject_AsReadBuffer and_PyBuffer_Converter) accept only C-contiguous buffers? Who are buffer protocol experts? |
PyBUF_SIMPLE enforces contiguity. See https://www.python.org/dev/peps/pep-3118/#access-flags and https://docs.python.org/3/c-api/buffer.html#c.Py_buffer.len Also Stefan's post at http://mail.scipy.org/pipermail/numpy-discussion/2011-August/058189.html Perhaps Stefan can confirm. |
Ah, there is a way to create non-contiguous buffers. >>> b = bytes(range(16))
>>> m = memoryview(b)
>>> m[::2].c_contiguous
False
Then contiguousity check in getbuffer() in Python/getargs.c is redundant. And in most cases the use of _PyBuffer_Converter() and PyObject_GetBuffer() could be replaced by the use of "y*" and "w*" format units. |
Yes, a PyBUF_SIMPLE request implies c-contiguous, so it's ok. |
Here is simplified patch. _PyBuffer_Converter() and "simple_buffer" converter are gone. Fixed few leaks found by Martin. Fixed potential crash in ctypes. Fixed minor bugs and cleaned up ctypes tests for from_buffer(). |
Could you please look at the patch Stefan? |
[Slow internet connection, can't use Rietveld.] CDataType_from_buffer(): I'm not that familiar with ctypes. What is the high level goal here? If so, I think we desperately need direct support for that in |
_CData.from_buffer() is meant to take a writable buffer, and create a “ctypes” object that shares the same memory. So it should not release the buffer until that “ctypes” object is no longer needed. However I don’t know the insides of memoryview() objects that well so I can’t say if the hack-the-memoryview code is correct or not. |
from_buffer() uses a memory buffer of other object. It keeps a reference to the object to prevent deallocation of memory when there will be no more external references. But this doesn't prevent from reallocating of memory of living object (e.g. for resizing of bytearray). So we need to grab the buffer (with PyObject_GetBuffer) in from_buffer() and free it (with PyBuffer_Release) when it is no longer needed. menoryview can do this but needs a hack, because a memoryview created by PyMemoryView_FromBuffer() doesn't release the buffer. May be there is more official way? |
Oh, Martin expressed the same thing better. |
Thanks. No, I don't think there's an official way to accomplish that, PyMemoryView_FromObjectEx(exporter, PyBUF_SIMPLE|PyBUF_WRITABLE) If we can spare a new format code, this could be called directly in Otherwise, you get the exporter from PyArg_ParseTuple() and call If I'm not mistaken, this would save us the intermediate buffer on the |
In any case we need a hack in 3.4. Let open new issue for adding PyMemoryView_FromObjectEx() or like. |
Nice patch. I've found one issue (see Rietveld). I'm not sure |
New changeset 1da9630e9b7f by Serhiy Storchaka in branch '3.4': New changeset 2e684ce772de by Serhiy Storchaka in branch 'default': New changeset 0024537a4687 by Serhiy Storchaka in branch 'default': |
Thanks Antoine and Stefan for your reviews. |
Please see bpo-25498 for a crash possibly caused by the memoryview hack in CDataType_from_buffer(). |
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: