Skip to content
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

gh-112625: Protect bytearray from being freed by misbehaving iterator inside bytearray.join #112626

Merged
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions Lib/test/test_builtin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2039,6 +2039,23 @@ def test_bytearray_extend_error(self):
bad_iter = map(int, "X")
self.assertRaises(ValueError, array.extend, bad_iter)

def test_bytearray_join_with_misbehaving_iterator(self):
# Issue #112625
array = bytearray(b',')
def iterator():
array.clear()
yield b'A'
yield b'B'
self.assertRaises(BufferError, array.join, iterator())

def test_bytearray_join_with_custom_iterator(self):
# Issue #112625
array = bytearray(b',')
def iterator():
yield b'A'
yield b'B'
self.assertEqual(bytearray(b'A,B'), array.join(iterator()))

def test_construct_singletons(self):
for const in None, Ellipsis, NotImplemented:
tp = type(const)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixes a bug where bytearrays could be cleared while being handled by stringlib join that could result in reading memory after it was freed.
serhiy-storchaka marked this conversation as resolved.
Show resolved Hide resolved
5 changes: 4 additions & 1 deletion Objects/bytearrayobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -2007,7 +2007,10 @@ static PyObject *
bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes)
/*[clinic end generated code: output=a8516370bf68ae08 input=aba6b1f9b30fcb8e]*/
{
return stringlib_bytes_join((PyObject*)self, iterable_of_bytes);
self->ob_exports++; // this protects `self` from being cleared/resized if `iterable_of_bytes` is a custom iterator
PyObject* ret = stringlib_bytes_join((PyObject*)self, iterable_of_bytes);
self->ob_exports--; // unexport `self`
return ret;
}

/*[clinic input]
Expand Down