]> granicus.if.org Git - python/commitdiff
Issue #5238: Calling makefile() on an SSL object would prevent the
authorAntoine Pitrou <solipsis@pitrou.net>
Fri, 23 Apr 2010 23:25:45 +0000 (23:25 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Fri, 23 Apr 2010 23:25:45 +0000 (23:25 +0000)
underlying socket from being closed until all objects get truely destroyed.

Lib/ssl.py
Lib/test/test_ssl.py
Misc/NEWS

index 4f291f4486977eb59741508c25da81f3d19196e4..9e88073916bd55d2e30e02e0e47167ae61707aed 100644 (file)
@@ -324,7 +324,9 @@ class SSLSocket(socket):
         from the socket module."""
 
         self._makefile_refs += 1
-        return _fileobject(self, mode, bufsize)
+        # close=True so as to decrement the reference count when done with
+        # the file-like object.
+        return _fileobject(self, mode, bufsize, close=True)
 
 
 
index 5917b513df7e2f1e0a14264560ee405111a74297..c418cd4ea85c379ac83088adfa86e6f1035a6426 100644 (file)
@@ -7,7 +7,9 @@ import asyncore
 import socket
 import select
 import time
+import gc
 import os
+import errno
 import pprint
 import urllib, urlparse
 import traceback
@@ -165,6 +167,22 @@ class BasicTests(unittest.TestCase):
         del ss
         self.assertEqual(wr(), None)
 
+    def test_makefile_close(self):
+        # Issue #5238: creating a file-like object with makefile() shouldn't
+        # leak the underlying file descriptor.
+        ss = ssl.wrap_socket(socket.socket(socket.AF_INET))
+        fd = ss.fileno()
+        f = ss.makefile()
+        f.close()
+        # The fd is still open
+        os.read(fd, 0)
+        # Closing the SSL socket should close the fd too
+        ss.close()
+        gc.collect()
+        with self.assertRaises(OSError) as e:
+            os.read(fd, 0)
+        self.assertEqual(e.exception.errno, errno.EBADF)
+
 
 class NetworkedTests(unittest.TestCase):
 
index 26ce4e051f36af64da930179035c4d93bc5e86af..580f9bf85d249d535969c5dd0609bd5020d8ce55 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #5238: Calling makefile() on an SSL object would prevent the
+  underlying socket from being closed until all objects get truely destroyed.
+
 - Issue #7943: Fix circular reference created when instantiating an SSL
   socket.  Initial patch by Péter Szabó.