]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175...
authorZackery Spytz <zspytz@gmail.com>
Thu, 20 Dec 2018 17:38:52 +0000 (10:38 -0700)
committerSerhiy Storchaka <storchaka@gmail.com>
Thu, 20 Dec 2018 17:38:52 +0000 (19:38 +0200)
(cherry picked from commit 842acaab1376c5c84fd5966bb6070e289880e1ca)

Lib/ctypes/test/test_strings.py
Lib/sqlite3/test/regression.py
Lib/test/test_io.py
Misc/NEWS.d/next/Core and Builtins/2018-12-15-14-01-45.bpo-35504.JtKczP.rst [new file with mode: 0644]
Modules/_ctypes/_ctypes.c
Modules/_io/textio.c
Modules/_sqlite/connection.c
Modules/cjkcodecs/multibytecodec.c
Objects/frameobject.c

index 4b58e7ca4ff3ae6427a985f9d76c3ace51ef07a1..879c58ab627aeabc252584eca84f87a94287856b 100644 (file)
@@ -61,6 +61,13 @@ class StringArrayTestCase(unittest.TestCase):
 ##        print BUF.from_param(c_char_p("python"))
 ##        print BUF.from_param(BUF(*"pyth"))
 
+    def test_del_segfault(self):
+        BUF = c_char * 4
+        buf = BUF()
+        with self.assertRaises(AttributeError):
+            del buf.raw
+
+
 @need_symbol('c_wchar')
 class WStringArrayTestCase(unittest.TestCase):
     def test(self):
index 271afb0a7f0398b2a3a7560de01a6fe4ee965957..42fc7c278b8cbc445b6539f994e2685b3eeaff00 100644 (file)
@@ -361,6 +361,10 @@ class RegressionTests(unittest.TestCase):
         del ref
         support.gc_collect()
 
+    def CheckDelIsolation_levelSegfault(self):
+        with self.assertRaises(AttributeError):
+            del self.con.isolation_level
+
 
 class UnhashableFunc:
     def __hash__(self):
index 8152e6174d35fa759116740035935a1b0be7393e..5ec0b7bb11947d2be994f59e9f560adc61dbe887 100644 (file)
@@ -2807,6 +2807,11 @@ class CTextIOWrapperTest(TextIOWrapperTest):
             t2.buddy = t1
         support.gc_collect()
 
+    def test_del__CHUNK_SIZE_SystemError(self):
+        t = self.TextIOWrapper(self.BytesIO(), encoding='ascii')
+        with self.assertRaises(AttributeError):
+            del t._CHUNK_SIZE
+
     maybeRaises = unittest.TestCase.assertRaises
 
 
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-12-15-14-01-45.bpo-35504.JtKczP.rst b/Misc/NEWS.d/next/Core and Builtins/2018-12-15-14-01-45.bpo-35504.JtKczP.rst
new file mode 100644 (file)
index 0000000..2a4f0f6
--- /dev/null
@@ -0,0 +1,2 @@
+Fix segfaults and :exc:`SystemError`\ s when deleting certain attributes.
+Patch by Zackery Spytz.
index 9aa252d6e26560a20ced9e2b1eb1acbb0fce9a43..8abcd30753a43db958045cc7656decefd60b1259 100644 (file)
@@ -1216,6 +1216,10 @@ CharArray_set_raw(CDataObject *self, PyObject *value)
 #if (PY_VERSION_HEX >= 0x02060000)
     Py_buffer view = { 0 };
 #endif
+    if (value == NULL) {
+        PyErr_SetString(PyExc_AttributeError, "cannot delete attribute");
+        return -1;
+    }
     if (PyBuffer_Check(value)) {
         size = Py_TYPE(value)->tp_as_buffer->bf_getreadbuffer(value, 0, (void *)&ptr);
         if (size < 0)
index 5501da4b3f5cdcd6f6182e26f8b6ec0ae8281b20..12a12f9ef02accd8f4b2d82eb2f262a41b9f80b4 100644 (file)
@@ -2593,6 +2593,10 @@ textiowrapper_chunk_size_set(textio *self, PyObject *arg, void *context)
 {
     Py_ssize_t n;
     CHECK_ATTACHED_INT(self);
+    if (arg == NULL) {
+        PyErr_SetString(PyExc_AttributeError, "cannot delete attribute");
+        return -1;
+    }
     n = PyNumber_AsSsize_t(arg, PyExc_TypeError);
     if (n == -1 && PyErr_Occurred())
         return -1;
index 585453a282074f379b50882d842d1258f0134ae0..18a6b427c2e150062b49523bef53d0e4eea7b20d 100644 (file)
@@ -1131,6 +1131,10 @@ static int pysqlite_connection_set_isolation_level(pysqlite_Connection* self, Py
     PyObject* begin_statement;
     char* begin_statement_str;
 
+    if (isolation_level == NULL) {
+        PyErr_SetString(PyExc_AttributeError, "cannot delete attribute");
+        return -1;
+    }
     Py_XDECREF(self->isolation_level);
 
     if (self->begin_statement) {
index 4b482bf9e251b968f13232c1e773bd279184036e..1ad0ea0f51389ab673ffc09fd3c0ee628216b3b6 100644 (file)
@@ -138,6 +138,10 @@ codecctx_errors_set(MultibyteStatefulCodecContext *self, PyObject *value,
 {
     PyObject *cb;
 
+    if (value == NULL) {
+        PyErr_SetString(PyExc_AttributeError, "cannot delete attribute");
+        return -1;
+    }
     if (!PyString_Check(value)) {
         PyErr_SetString(PyExc_TypeError, "errors must be a string");
         return -1;
index 175874503bb2fdf7617ad5805e5462389e1fe198..4c91dd0c0842d95b8f0f53e55b553b9c0de033e1 100644 (file)
@@ -118,6 +118,10 @@ frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
     int blockstack_top = 0;             /* (ditto) */
     unsigned char setup_op = 0;         /* (ditto) */
 
+    if (p_new_lineno == NULL) {
+        PyErr_SetString(PyExc_AttributeError, "cannot delete attribute");
+        return -1;
+    }
     /* f_lineno must be an integer. */
     if (!PyInt_Check(p_new_lineno)) {
         PyErr_SetString(PyExc_ValueError,