Commit 28f07364 authored by Zackery Spytz's avatar Zackery Spytz Committed by Serhiy Storchaka

bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exception set (GH-8282)

parent 56d8f57b
...@@ -968,6 +968,16 @@ class IOTest(unittest.TestCase): ...@@ -968,6 +968,16 @@ class IOTest(unittest.TestCase):
self.assertSequenceEqual(buffer[result:], unused) self.assertSequenceEqual(buffer[result:], unused)
self.assertEqual(len(reader.avail), avail - result) self.assertEqual(len(reader.avail), avail - result)
def test_close_assert(self):
class R(self.IOBase):
def __setattr__(self, name, value):
pass
def flush(self):
raise OSError()
f = R()
# This would cause an assertion failure.
self.assertRaises(OSError, f.close)
class CIOTest(IOTest): class CIOTest(IOTest):
......
In :meth:`io.IOBase.close`, ensure that the :attr:`~io.IOBase.closed`
attribute is not set with a live exception. Patch by Zackery Spytz and Serhiy
Storchaka.
...@@ -224,8 +224,8 @@ static PyObject * ...@@ -224,8 +224,8 @@ static PyObject *
_io__IOBase_close_impl(PyObject *self) _io__IOBase_close_impl(PyObject *self)
/*[clinic end generated code: output=63c6a6f57d783d6d input=f4494d5c31dbc6b7]*/ /*[clinic end generated code: output=63c6a6f57d783d6d input=f4494d5c31dbc6b7]*/
{ {
PyObject *res; PyObject *res, *exc, *val, *tb;
int closed = iobase_is_closed(self); int rc, closed = iobase_is_closed(self);
if (closed < 0) { if (closed < 0) {
return NULL; return NULL;
...@@ -236,9 +236,11 @@ _io__IOBase_close_impl(PyObject *self) ...@@ -236,9 +236,11 @@ _io__IOBase_close_impl(PyObject *self)
res = PyObject_CallMethodObjArgs(self, _PyIO_str_flush, NULL); res = PyObject_CallMethodObjArgs(self, _PyIO_str_flush, NULL);
if (_PyObject_SetAttrId(self, &PyId___IOBase_closed, Py_True) < 0) { PyErr_Fetch(&exc, &val, &tb);
Py_XDECREF(res); rc = _PyObject_SetAttrId(self, &PyId___IOBase_closed, Py_True);
return NULL; _PyErr_ChainExceptions(exc, val, tb);
if (rc < 0) {
Py_CLEAR(res);
} }
if (res == NULL) if (res == NULL)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment