blob: 79b201c91066e284ca1d8ea0f1663808f2f7ffe1 [file] [log] [blame]
Victor Stinner231b4042015-01-14 00:19:09 +01001import collections
Victor Stinner978a9af2015-01-29 17:50:58 +01002import warnings
Victor Stinner231b4042015-01-14 00:19:09 +01003try:
4 import ssl
5except ImportError: # pragma: no cover
6 ssl = None
7
Yury Selivanov2a8911c2015-08-04 15:56:33 -04008from . import compat
Victor Stinner231b4042015-01-14 00:19:09 +01009from . import protocols
10from . import transports
11from .log import logger
12
13
14def _create_transport_context(server_side, server_hostname):
15 if server_side:
16 raise ValueError('Server side SSL needs a valid SSLContext')
17
18 # Client side may pass ssl=True to use a default
19 # context; in that case the sslcontext passed is None.
20 # The default is secure for client connections.
21 if hasattr(ssl, 'create_default_context'):
22 # Python 3.4+: use up-to-date strong settings.
23 sslcontext = ssl.create_default_context()
24 if not server_hostname:
25 sslcontext.check_hostname = False
26 else:
27 # Fallback for Python 3.3.
28 sslcontext = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
29 sslcontext.options |= ssl.OP_NO_SSLv2
30 sslcontext.options |= ssl.OP_NO_SSLv3
31 sslcontext.set_default_verify_paths()
32 sslcontext.verify_mode = ssl.CERT_REQUIRED
33 return sslcontext
34
35
36def _is_sslproto_available():
37 return hasattr(ssl, "MemoryBIO")
38
39
40# States of an _SSLPipe.
41_UNWRAPPED = "UNWRAPPED"
42_DO_HANDSHAKE = "DO_HANDSHAKE"
43_WRAPPED = "WRAPPED"
44_SHUTDOWN = "SHUTDOWN"
45
46
47class _SSLPipe(object):
48 """An SSL "Pipe".
49
50 An SSL pipe allows you to communicate with an SSL/TLS protocol instance
51 through memory buffers. It can be used to implement a security layer for an
52 existing connection where you don't have access to the connection's file
53 descriptor, or for some reason you don't want to use it.
54
55 An SSL pipe can be in "wrapped" and "unwrapped" mode. In unwrapped mode,
56 data is passed through untransformed. In wrapped mode, application level
57 data is encrypted to SSL record level data and vice versa. The SSL record
58 level is the lowest level in the SSL protocol suite and is what travels
59 as-is over the wire.
60
61 An SslPipe initially is in "unwrapped" mode. To start SSL, call
62 do_handshake(). To shutdown SSL again, call unwrap().
63 """
64
65 max_size = 256 * 1024 # Buffer size passed to read()
66
67 def __init__(self, context, server_side, server_hostname=None):
68 """
69 The *context* argument specifies the ssl.SSLContext to use.
70
71 The *server_side* argument indicates whether this is a server side or
72 client side transport.
73
74 The optional *server_hostname* argument can be used to specify the
75 hostname you are connecting to. You may only specify this parameter if
76 the _ssl module supports Server Name Indication (SNI).
77 """
78 self._context = context
79 self._server_side = server_side
80 self._server_hostname = server_hostname
81 self._state = _UNWRAPPED
82 self._incoming = ssl.MemoryBIO()
83 self._outgoing = ssl.MemoryBIO()
84 self._sslobj = None
85 self._need_ssldata = False
86 self._handshake_cb = None
87 self._shutdown_cb = None
88
89 @property
90 def context(self):
91 """The SSL context passed to the constructor."""
92 return self._context
93
94 @property
95 def ssl_object(self):
96 """The internal ssl.SSLObject instance.
97
98 Return None if the pipe is not wrapped.
99 """
100 return self._sslobj
101
102 @property
103 def need_ssldata(self):
104 """Whether more record level data is needed to complete a handshake
105 that is currently in progress."""
106 return self._need_ssldata
107
108 @property
109 def wrapped(self):
110 """
111 Whether a security layer is currently in effect.
112
113 Return False during handshake.
114 """
115 return self._state == _WRAPPED
116
117 def do_handshake(self, callback=None):
118 """Start the SSL handshake.
119
120 Return a list of ssldata. A ssldata element is a list of buffers
121
122 The optional *callback* argument can be used to install a callback that
123 will be called when the handshake is complete. The callback will be
124 called with None if successful, else an exception instance.
125 """
126 if self._state != _UNWRAPPED:
127 raise RuntimeError('handshake in progress or completed')
128 self._sslobj = self._context.wrap_bio(
129 self._incoming, self._outgoing,
130 server_side=self._server_side,
131 server_hostname=self._server_hostname)
132 self._state = _DO_HANDSHAKE
133 self._handshake_cb = callback
134 ssldata, appdata = self.feed_ssldata(b'', only_handshake=True)
135 assert len(appdata) == 0
136 return ssldata
137
138 def shutdown(self, callback=None):
139 """Start the SSL shutdown sequence.
140
141 Return a list of ssldata. A ssldata element is a list of buffers
142
143 The optional *callback* argument can be used to install a callback that
144 will be called when the shutdown is complete. The callback will be
145 called without arguments.
146 """
147 if self._state == _UNWRAPPED:
148 raise RuntimeError('no security layer present')
149 if self._state == _SHUTDOWN:
150 raise RuntimeError('shutdown in progress')
151 assert self._state in (_WRAPPED, _DO_HANDSHAKE)
152 self._state = _SHUTDOWN
153 self._shutdown_cb = callback
154 ssldata, appdata = self.feed_ssldata(b'')
155 assert appdata == [] or appdata == [b'']
156 return ssldata
157
158 def feed_eof(self):
159 """Send a potentially "ragged" EOF.
160
161 This method will raise an SSL_ERROR_EOF exception if the EOF is
162 unexpected.
163 """
164 self._incoming.write_eof()
165 ssldata, appdata = self.feed_ssldata(b'')
166 assert appdata == [] or appdata == [b'']
167
168 def feed_ssldata(self, data, only_handshake=False):
169 """Feed SSL record level data into the pipe.
170
171 The data must be a bytes instance. It is OK to send an empty bytes
172 instance. This can be used to get ssldata for a handshake initiated by
173 this endpoint.
174
175 Return a (ssldata, appdata) tuple. The ssldata element is a list of
176 buffers containing SSL data that needs to be sent to the remote SSL.
177
178 The appdata element is a list of buffers containing plaintext data that
179 needs to be forwarded to the application. The appdata list may contain
180 an empty buffer indicating an SSL "close_notify" alert. This alert must
181 be acknowledged by calling shutdown().
182 """
183 if self._state == _UNWRAPPED:
184 # If unwrapped, pass plaintext data straight through.
185 if data:
186 appdata = [data]
187 else:
188 appdata = []
189 return ([], appdata)
190
191 self._need_ssldata = False
192 if data:
193 self._incoming.write(data)
194
195 ssldata = []
196 appdata = []
197 try:
198 if self._state == _DO_HANDSHAKE:
199 # Call do_handshake() until it doesn't raise anymore.
200 self._sslobj.do_handshake()
201 self._state = _WRAPPED
202 if self._handshake_cb:
203 self._handshake_cb(None)
204 if only_handshake:
205 return (ssldata, appdata)
206 # Handshake done: execute the wrapped block
207
208 if self._state == _WRAPPED:
209 # Main state: read data from SSL until close_notify
210 while True:
211 chunk = self._sslobj.read(self.max_size)
212 appdata.append(chunk)
213 if not chunk: # close_notify
214 break
215
216 elif self._state == _SHUTDOWN:
217 # Call shutdown() until it doesn't raise anymore.
218 self._sslobj.unwrap()
219 self._sslobj = None
220 self._state = _UNWRAPPED
221 if self._shutdown_cb:
222 self._shutdown_cb()
223
224 elif self._state == _UNWRAPPED:
225 # Drain possible plaintext data after close_notify.
226 appdata.append(self._incoming.read())
227 except (ssl.SSLError, ssl.CertificateError) as exc:
228 if getattr(exc, 'errno', None) not in (
229 ssl.SSL_ERROR_WANT_READ, ssl.SSL_ERROR_WANT_WRITE,
230 ssl.SSL_ERROR_SYSCALL):
231 if self._state == _DO_HANDSHAKE and self._handshake_cb:
232 self._handshake_cb(exc)
233 raise
234 self._need_ssldata = (exc.errno == ssl.SSL_ERROR_WANT_READ)
235
236 # Check for record level data that needs to be sent back.
237 # Happens for the initial handshake and renegotiations.
238 if self._outgoing.pending:
239 ssldata.append(self._outgoing.read())
240 return (ssldata, appdata)
241
242 def feed_appdata(self, data, offset=0):
243 """Feed plaintext data into the pipe.
244
245 Return an (ssldata, offset) tuple. The ssldata element is a list of
246 buffers containing record level data that needs to be sent to the
247 remote SSL instance. The offset is the number of plaintext bytes that
248 were processed, which may be less than the length of data.
249
250 NOTE: In case of short writes, this call MUST be retried with the SAME
251 buffer passed into the *data* argument (i.e. the id() must be the
252 same). This is an OpenSSL requirement. A further particularity is that
253 a short write will always have offset == 0, because the _ssl module
254 does not enable partial writes. And even though the offset is zero,
255 there will still be encrypted data in ssldata.
256 """
257 assert 0 <= offset <= len(data)
258 if self._state == _UNWRAPPED:
259 # pass through data in unwrapped mode
260 if offset < len(data):
261 ssldata = [data[offset:]]
262 else:
263 ssldata = []
264 return (ssldata, len(data))
265
266 ssldata = []
267 view = memoryview(data)
268 while True:
269 self._need_ssldata = False
270 try:
271 if offset < len(view):
272 offset += self._sslobj.write(view[offset:])
273 except ssl.SSLError as exc:
274 # It is not allowed to call write() after unwrap() until the
275 # close_notify is acknowledged. We return the condition to the
276 # caller as a short write.
277 if exc.reason == 'PROTOCOL_IS_SHUTDOWN':
278 exc.errno = ssl.SSL_ERROR_WANT_READ
279 if exc.errno not in (ssl.SSL_ERROR_WANT_READ,
280 ssl.SSL_ERROR_WANT_WRITE,
281 ssl.SSL_ERROR_SYSCALL):
282 raise
283 self._need_ssldata = (exc.errno == ssl.SSL_ERROR_WANT_READ)
284
285 # See if there's any record level data back for us.
286 if self._outgoing.pending:
287 ssldata.append(self._outgoing.read())
288 if offset == len(view) or self._need_ssldata:
289 break
290 return (ssldata, offset)
291
292
293class _SSLProtocolTransport(transports._FlowControlMixin,
294 transports.Transport):
295
296 def __init__(self, loop, ssl_protocol, app_protocol):
297 self._loop = loop
Victor Stinnerf7dc7fb2015-09-21 18:06:17 +0200298 # SSLProtocol instance
Victor Stinner231b4042015-01-14 00:19:09 +0100299 self._ssl_protocol = ssl_protocol
300 self._app_protocol = app_protocol
Victor Stinner978a9af2015-01-29 17:50:58 +0100301 self._closed = False
Victor Stinner231b4042015-01-14 00:19:09 +0100302
303 def get_extra_info(self, name, default=None):
304 """Get optional transport information."""
305 return self._ssl_protocol._get_extra_info(name, default)
306
Yury Selivanov5bb1afb2015-11-16 12:43:21 -0500307 def is_closing(self):
308 return self._closed
309
Victor Stinner231b4042015-01-14 00:19:09 +0100310 def close(self):
311 """Close the transport.
312
313 Buffered data will be flushed asynchronously. No more data
314 will be received. After all buffered data is flushed, the
315 protocol's connection_lost() method will (eventually) called
316 with None as its argument.
317 """
Victor Stinner978a9af2015-01-29 17:50:58 +0100318 self._closed = True
Victor Stinner231b4042015-01-14 00:19:09 +0100319 self._ssl_protocol._start_shutdown()
320
Victor Stinner978a9af2015-01-29 17:50:58 +0100321 # On Python 3.3 and older, objects with a destructor part of a reference
322 # cycle are never destroyed. It's not more the case on Python 3.4 thanks
323 # to the PEP 442.
Yury Selivanov2a8911c2015-08-04 15:56:33 -0400324 if compat.PY34:
Victor Stinner978a9af2015-01-29 17:50:58 +0100325 def __del__(self):
326 if not self._closed:
Victor Stinnere19558a2016-03-23 00:28:08 +0100327 warnings.warn("unclosed transport %r" % self, ResourceWarning,
328 source=self)
Victor Stinner978a9af2015-01-29 17:50:58 +0100329 self.close()
330
Victor Stinner231b4042015-01-14 00:19:09 +0100331 def pause_reading(self):
332 """Pause the receiving end.
333
334 No data will be passed to the protocol's data_received()
335 method until resume_reading() is called.
336 """
337 self._ssl_protocol._transport.pause_reading()
338
339 def resume_reading(self):
340 """Resume the receiving end.
341
342 Data received will once again be passed to the protocol's
343 data_received() method.
344 """
345 self._ssl_protocol._transport.resume_reading()
346
347 def set_write_buffer_limits(self, high=None, low=None):
348 """Set the high- and low-water limits for write flow control.
349
350 These two values control when to call the protocol's
351 pause_writing() and resume_writing() methods. If specified,
352 the low-water limit must be less than or equal to the
353 high-water limit. Neither value can be negative.
354
355 The defaults are implementation-specific. If only the
Serhiy Storchakad65c9492015-11-02 14:10:23 +0200356 high-water limit is given, the low-water limit defaults to an
Victor Stinner231b4042015-01-14 00:19:09 +0100357 implementation-specific value less than or equal to the
358 high-water limit. Setting high to zero forces low to zero as
359 well, and causes pause_writing() to be called whenever the
360 buffer becomes non-empty. Setting low to zero causes
361 resume_writing() to be called only once the buffer is empty.
362 Use of zero for either limit is generally sub-optimal as it
363 reduces opportunities for doing I/O and computation
364 concurrently.
365 """
366 self._ssl_protocol._transport.set_write_buffer_limits(high, low)
367
368 def get_write_buffer_size(self):
369 """Return the current size of the write buffer."""
370 return self._ssl_protocol._transport.get_write_buffer_size()
371
372 def write(self, data):
373 """Write some data bytes to the transport.
374
375 This does not block; it buffers the data and arranges for it
376 to be sent out asynchronously.
377 """
378 if not isinstance(data, (bytes, bytearray, memoryview)):
379 raise TypeError("data: expecting a bytes-like instance, got {!r}"
380 .format(type(data).__name__))
381 if not data:
382 return
383 self._ssl_protocol._write_appdata(data)
384
385 def can_write_eof(self):
386 """Return True if this transport supports write_eof(), False if not."""
387 return False
388
389 def abort(self):
390 """Close the transport immediately.
391
392 Buffered data will be lost. No more data will be received.
393 The protocol's connection_lost() method will (eventually) be
394 called with None as its argument.
395 """
396 self._ssl_protocol._abort()
397
398
399class SSLProtocol(protocols.Protocol):
400 """SSL protocol.
401
402 Implementation of SSL on top of a socket using incoming and outgoing
403 buffers which are ssl.MemoryBIO objects.
404 """
405
406 def __init__(self, loop, app_protocol, sslcontext, waiter,
407 server_side=False, server_hostname=None):
408 if ssl is None:
409 raise RuntimeError('stdlib ssl module not available')
410
411 if not sslcontext:
412 sslcontext = _create_transport_context(server_side, server_hostname)
413
414 self._server_side = server_side
415 if server_hostname and not server_side:
416 self._server_hostname = server_hostname
417 else:
418 self._server_hostname = None
419 self._sslcontext = sslcontext
420 # SSL-specific extra info. More info are set when the handshake
421 # completes.
422 self._extra = dict(sslcontext=sslcontext)
423
424 # App data write buffering
425 self._write_backlog = collections.deque()
426 self._write_buffer_size = 0
427
428 self._waiter = waiter
Victor Stinner231b4042015-01-14 00:19:09 +0100429 self._loop = loop
430 self._app_protocol = app_protocol
431 self._app_transport = _SSLProtocolTransport(self._loop,
432 self, self._app_protocol)
Victor Stinnerf7dc7fb2015-09-21 18:06:17 +0200433 # _SSLPipe instance (None until the connection is made)
Victor Stinner231b4042015-01-14 00:19:09 +0100434 self._sslpipe = None
435 self._session_established = False
436 self._in_handshake = False
437 self._in_shutdown = False
Victor Stinnerf7dc7fb2015-09-21 18:06:17 +0200438 # transport, ex: SelectorSocketTransport
Victor Stinner7e222f42015-01-15 13:16:27 +0100439 self._transport = None
Victor Stinner231b4042015-01-14 00:19:09 +0100440
Victor Stinnerf07801b2015-01-29 00:36:35 +0100441 def _wakeup_waiter(self, exc=None):
442 if self._waiter is None:
443 return
444 if not self._waiter.cancelled():
445 if exc is not None:
446 self._waiter.set_exception(exc)
447 else:
448 self._waiter.set_result(None)
449 self._waiter = None
450
Victor Stinner231b4042015-01-14 00:19:09 +0100451 def connection_made(self, transport):
452 """Called when the low-level connection is made.
453
454 Start the SSL handshake.
455 """
456 self._transport = transport
457 self._sslpipe = _SSLPipe(self._sslcontext,
458 self._server_side,
459 self._server_hostname)
460 self._start_handshake()
461
462 def connection_lost(self, exc):
463 """Called when the low-level connection is lost or closed.
464
465 The argument is an exception object or None (the latter
466 meaning a regular EOF is received or the connection was
467 aborted or closed).
468 """
469 if self._session_established:
470 self._session_established = False
471 self._loop.call_soon(self._app_protocol.connection_lost, exc)
472 self._transport = None
473 self._app_transport = None
474
475 def pause_writing(self):
476 """Called when the low-level transport's buffer goes over
477 the high-water mark.
478 """
479 self._app_protocol.pause_writing()
480
481 def resume_writing(self):
482 """Called when the low-level transport's buffer drains below
483 the low-water mark.
484 """
485 self._app_protocol.resume_writing()
486
487 def data_received(self, data):
488 """Called when some SSL data is received.
489
490 The argument is a bytes object.
491 """
492 try:
493 ssldata, appdata = self._sslpipe.feed_ssldata(data)
494 except ssl.SSLError as e:
495 if self._loop.get_debug():
496 logger.warning('%r: SSL error %s (reason %s)',
497 self, e.errno, e.reason)
498 self._abort()
499 return
500
501 for chunk in ssldata:
502 self._transport.write(chunk)
503
504 for chunk in appdata:
505 if chunk:
506 self._app_protocol.data_received(chunk)
507 else:
508 self._start_shutdown()
509 break
510
511 def eof_received(self):
512 """Called when the other end of the low-level stream
513 is half-closed.
514
515 If this returns a false value (including None), the transport
516 will close itself. If it returns a true value, closing the
517 transport is up to the protocol.
518 """
519 try:
520 if self._loop.get_debug():
521 logger.debug("%r received EOF", self)
Victor Stinnerb507cba2015-01-29 00:35:56 +0100522
Victor Stinnerf07801b2015-01-29 00:36:35 +0100523 self._wakeup_waiter(ConnectionResetError)
Victor Stinnerb507cba2015-01-29 00:35:56 +0100524
Victor Stinner231b4042015-01-14 00:19:09 +0100525 if not self._in_handshake:
526 keep_open = self._app_protocol.eof_received()
527 if keep_open:
528 logger.warning('returning true from eof_received() '
529 'has no effect when using ssl')
530 finally:
531 self._transport.close()
532
533 def _get_extra_info(self, name, default=None):
534 if name in self._extra:
535 return self._extra[name]
536 else:
537 return self._transport.get_extra_info(name, default)
538
539 def _start_shutdown(self):
540 if self._in_shutdown:
541 return
542 self._in_shutdown = True
543 self._write_appdata(b'')
544
545 def _write_appdata(self, data):
546 self._write_backlog.append((data, 0))
547 self._write_buffer_size += len(data)
548 self._process_write_backlog()
549
550 def _start_handshake(self):
551 if self._loop.get_debug():
552 logger.debug("%r starts SSL handshake", self)
553 self._handshake_start_time = self._loop.time()
554 else:
555 self._handshake_start_time = None
556 self._in_handshake = True
557 # (b'', 1) is a special value in _process_write_backlog() to do
558 # the SSL handshake
559 self._write_backlog.append((b'', 1))
560 self._loop.call_soon(self._process_write_backlog)
561
562 def _on_handshake_complete(self, handshake_exc):
563 self._in_handshake = False
564
565 sslobj = self._sslpipe.ssl_object
Victor Stinner231b4042015-01-14 00:19:09 +0100566 try:
567 if handshake_exc is not None:
568 raise handshake_exc
Victor Stinner177e9f02015-01-14 16:56:20 +0100569
570 peercert = sslobj.getpeercert()
Victor Stinner231b4042015-01-14 00:19:09 +0100571 if not hasattr(self._sslcontext, 'check_hostname'):
572 # Verify hostname if requested, Python 3.4+ uses check_hostname
573 # and checks the hostname in do_handshake()
574 if (self._server_hostname
575 and self._sslcontext.verify_mode != ssl.CERT_NONE):
576 ssl.match_hostname(peercert, self._server_hostname)
577 except BaseException as exc:
578 if self._loop.get_debug():
579 if isinstance(exc, ssl.CertificateError):
580 logger.warning("%r: SSL handshake failed "
581 "on verifying the certificate",
582 self, exc_info=True)
583 else:
584 logger.warning("%r: SSL handshake failed",
585 self, exc_info=True)
586 self._transport.close()
587 if isinstance(exc, Exception):
Victor Stinnerf07801b2015-01-29 00:36:35 +0100588 self._wakeup_waiter(exc)
Victor Stinner231b4042015-01-14 00:19:09 +0100589 return
590 else:
591 raise
592
593 if self._loop.get_debug():
594 dt = self._loop.time() - self._handshake_start_time
595 logger.debug("%r: SSL handshake took %.1f ms", self, dt * 1e3)
596
597 # Add extra info that becomes available after handshake.
598 self._extra.update(peercert=peercert,
599 cipher=sslobj.cipher(),
600 compression=sslobj.compression(),
Victor Stinnerf7dc7fb2015-09-21 18:06:17 +0200601 ssl_object=sslobj,
Victor Stinner231b4042015-01-14 00:19:09 +0100602 )
603 self._app_protocol.connection_made(self._app_transport)
Victor Stinnerf07801b2015-01-29 00:36:35 +0100604 self._wakeup_waiter()
Victor Stinner231b4042015-01-14 00:19:09 +0100605 self._session_established = True
Victor Stinner042dad72015-01-15 09:41:48 +0100606 # In case transport.write() was already called. Don't call
Martin Panter46f50722016-05-26 05:35:26 +0000607 # immediately _process_write_backlog(), but schedule it:
Victor Stinner042dad72015-01-15 09:41:48 +0100608 # _on_handshake_complete() can be called indirectly from
609 # _process_write_backlog(), and _process_write_backlog() is not
610 # reentrant.
Victor Stinner72bdefb2015-01-15 09:44:13 +0100611 self._loop.call_soon(self._process_write_backlog)
Victor Stinner231b4042015-01-14 00:19:09 +0100612
613 def _process_write_backlog(self):
614 # Try to make progress on the write backlog.
615 if self._transport is None:
616 return
617
618 try:
619 for i in range(len(self._write_backlog)):
620 data, offset = self._write_backlog[0]
621 if data:
622 ssldata, offset = self._sslpipe.feed_appdata(data, offset)
623 elif offset:
Yury Selivanov8c125eb2015-08-05 14:06:23 -0400624 ssldata = self._sslpipe.do_handshake(
625 self._on_handshake_complete)
Victor Stinner231b4042015-01-14 00:19:09 +0100626 offset = 1
627 else:
628 ssldata = self._sslpipe.shutdown(self._finalize)
629 offset = 1
630
631 for chunk in ssldata:
632 self._transport.write(chunk)
633
634 if offset < len(data):
635 self._write_backlog[0] = (data, offset)
636 # A short write means that a write is blocked on a read
637 # We need to enable reading if it is paused!
638 assert self._sslpipe.need_ssldata
639 if self._transport._paused:
640 self._transport.resume_reading()
641 break
642
643 # An entire chunk from the backlog was processed. We can
644 # delete it and reduce the outstanding buffer size.
645 del self._write_backlog[0]
646 self._write_buffer_size -= len(data)
647 except BaseException as exc:
648 if self._in_handshake:
Yury Selivanov8c125eb2015-08-05 14:06:23 -0400649 # BaseExceptions will be re-raised in _on_handshake_complete.
Victor Stinner231b4042015-01-14 00:19:09 +0100650 self._on_handshake_complete(exc)
651 else:
652 self._fatal_error(exc, 'Fatal error on SSL transport')
Yury Selivanov8c125eb2015-08-05 14:06:23 -0400653 if not isinstance(exc, Exception):
654 # BaseException
655 raise
Victor Stinner231b4042015-01-14 00:19:09 +0100656
657 def _fatal_error(self, exc, message='Fatal error on transport'):
658 # Should be called from exception handler only.
Victor Stinnerc94a93a2016-04-01 21:43:39 +0200659 if isinstance(exc, base_events._FATAL_ERROR_IGNORE):
Victor Stinner231b4042015-01-14 00:19:09 +0100660 if self._loop.get_debug():
661 logger.debug("%r: %s", self, message, exc_info=True)
662 else:
663 self._loop.call_exception_handler({
664 'message': message,
665 'exception': exc,
666 'transport': self._transport,
667 'protocol': self,
668 })
669 if self._transport:
670 self._transport._force_close(exc)
671
672 def _finalize(self):
673 if self._transport is not None:
674 self._transport.close()
675
676 def _abort(self):
677 if self._transport is not None:
678 try:
679 self._transport.abort()
680 finally:
681 self._finalize()