summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-12-16 16:50:41 (GMT)
committerYury Selivanov <yury@magic.io>2016-12-16 16:50:41 (GMT)
commitb1461aa78139cd849b507049a77ad2635b78f8a3 (patch)
tree3df2ab9296d73e0e225f663c381cc29ae188a04b
parent610f5d739dd22bce352bde59dce3985c73aaefab (diff)
downloadcpython-b1461aa78139cd849b507049a77ad2635b78f8a3.zip
cpython-b1461aa78139cd849b507049a77ad2635b78f8a3.tar.gz
cpython-b1461aa78139cd849b507049a77ad2635b78f8a3.tar.bz2
Issue #28990: Fix SSL hanging if connection is closed before handshake completed.
-rw-r--r--Lib/asyncio/sslproto.py1
-rw-r--r--Lib/test/test_asyncio/test_sslproto.py10
-rw-r--r--Misc/NEWS4
3 files changed, 15 insertions, 0 deletions
diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py
index 804c5c3..c2c4b95 100644
--- a/Lib/asyncio/sslproto.py
+++ b/Lib/asyncio/sslproto.py
@@ -479,6 +479,7 @@ class SSLProtocol(protocols.Protocol):
self._loop.call_soon(self._app_protocol.connection_lost, exc)
self._transport = None
self._app_transport = None
+ self._wakeup_waiter(exc)
def pause_writing(self):
"""Called when the low-level transport's buffer goes over
diff --git a/Lib/test/test_asyncio/test_sslproto.py b/Lib/test/test_asyncio/test_sslproto.py
index 0ca6d1b..59ff0f6 100644
--- a/Lib/test/test_asyncio/test_sslproto.py
+++ b/Lib/test/test_asyncio/test_sslproto.py
@@ -85,5 +85,15 @@ class SslProtoHandshakeTests(test_utils.TestCase):
# Restore error logging.
log.logger.setLevel(log_level)
+ def test_connection_lost(self):
+ # From issue #472.
+ # yield from waiter hang if lost_connection was called.
+ waiter = asyncio.Future(loop=self.loop)
+ ssl_proto = self.ssl_protocol(waiter)
+ self.connection_made(ssl_proto)
+ ssl_proto.connection_lost(ConnectionAbortedError)
+ test_utils.run_briefly(self.loop)
+ self.assertIsInstance(waiter.exception(), ConnectionAbortedError)
+
if __name__ == '__main__':
unittest.main()
diff --git a/Misc/NEWS b/Misc/NEWS
index f16d207..806a603 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -485,6 +485,10 @@ Library
- Issue #24142: Reading a corrupt config file left the parser in an
invalid state. Original patch by Florian Höch.
+- Issue #28990: Fix SSL hanging if connection is closed before handshake
+ completed.
+ (Patch by HoHo-Ho)
+
IDLE
----