]> granicus.if.org Git - python/commitdiff
Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actual...
authorJesus Cea <jcea@jcea.es>
Wed, 21 Sep 2011 01:47:39 +0000 (03:47 +0200)
committerJesus Cea <jcea@jcea.es>
Wed, 21 Sep 2011 01:47:39 +0000 (03:47 +0200)
Lib/test/test_multiprocessing.py
Misc/NEWS
Modules/_multiprocessing/multiprocessing.c

index c2a2f194885456691887222a00e511aa062bcd27..0e480a92e5d3e602e76e46b23c17caef48620e0a 100644 (file)
@@ -1574,6 +1574,23 @@ class _TestConnection(BaseTestCase):
         with open(test_support.TESTFN, "rb") as f:
             self.assertEqual(f.read(), b"bar")
 
+    @classmethod
+    def _send_data_without_fd(self, conn):
+        os.write(conn.fileno(), b"\0")
+
+    @unittest.skipIf(sys.platform == "win32", "doesn't make sense on Windows")
+    def test_missing_fd_transfer(self):
+        # Check that exception is raised when received data is not
+        # accompanied by a file descriptor in ancillary data.
+        if self.TYPE != 'processes':
+            self.skipTest("only makes sense with processes")
+        conn, child_conn = self.Pipe(duplex=True)
+
+        p = self.Process(target=self._send_data_without_fd, args=(child_conn,))
+        p.daemon = True
+        p.start()
+        self.assertRaises(RuntimeError, reduction.recv_handle, conn)
+        p.join()
 
 class _TestListenerClient(BaseTestCase):
 
index 30cde1dba516731f88593e77226c13661b9a91fc..fa4022ecd94f0967d52667c438b52214043e5c43 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -201,6 +201,9 @@ Library
 Extension Modules
 -----------------
 
+- Issue #13022: Fix: _multiprocessing.recvfd() doesn't check that
+  file descriptor was actually received.
+
 - Issue #12483: ctypes: Fix a crash when the destruction of a callback
   object triggers the garbage collector.
 
index 7582664f19d7e13bb1bce69da3618238a4512c9f..31a8da846775b651b1ccae75cb97151ba2cab90e 100644 (file)
@@ -177,6 +177,17 @@ multiprocessing_recvfd(PyObject *self, PyObject *args)
     if (res < 0)
         return PyErr_SetFromErrno(PyExc_OSError);
 
+    if (msg.msg_controllen < CMSG_LEN(sizeof(int)) ||
+        (cmsg = CMSG_FIRSTHDR(&msg)) == NULL ||
+        cmsg->cmsg_level != SOL_SOCKET ||
+        cmsg->cmsg_type != SCM_RIGHTS ||
+        cmsg->cmsg_len < CMSG_LEN(sizeof(int))) {
+        /* If at least one control message is present, there should be
+           no room for any further data in the buffer. */
+        PyErr_SetString(PyExc_RuntimeError, "No file descriptor received");
+        return NULL;
+    }
+
     fd = * (int *) CMSG_DATA(cmsg);
     return Py_BuildValue("i", fd);
 }