blob: 0a8c0900f81f59705d2702856fa2c9a23bfa512c [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
307 def close(self):
308 """Close the transport.
309
310 Buffered data will be flushed asynchronously. No more data
311 will be received. After all buffered data is flushed, the
312 protocol's connection_lost() method will (eventually) called
313 with None as its argument.
314 """
Victor Stinner978a9af2015-01-29 17:50:58 +0100315 self._closed = True
Victor Stinner231b4042015-01-14 00:19:09 +0100316 self._ssl_protocol._start_shutdown()
317
Victor Stinner978a9af2015-01-29 17:50:58 +0100318 # On Python 3.3 and older, objects with a destructor part of a reference
319 # cycle are never destroyed. It's not more the case on Python 3.4 thanks
320 # to the PEP 442.
Yury Selivanov2a8911c2015-08-04 15:56:33 -0400321 if compat.PY34:
Victor Stinner978a9af2015-01-29 17:50:58 +0100322 def __del__(self):
323 if not self._closed:
324 warnings.warn("unclosed transport %r" % self, ResourceWarning)
325 self.close()
326
Victor Stinner231b4042015-01-14 00:19:09 +0100327 def pause_reading(self):
328 """Pause the receiving end.
329
330 No data will be passed to the protocol's data_received()
331 method until resume_reading() is called.
332 """
333 self._ssl_protocol._transport.pause_reading()
334
335 def resume_reading(self):
336 """Resume the receiving end.
337
338 Data received will once again be passed to the protocol's
339 data_received() method.
340 """
341 self._ssl_protocol._transport.resume_reading()
342
343 def set_write_buffer_limits(self, high=None, low=None):
344 """Set the high- and low-water limits for write flow control.
345
346 These two values control when to call the protocol's
347 pause_writing() and resume_writing() methods. If specified,
348 the low-water limit must be less than or equal to the
349 high-water limit. Neither value can be negative.
350
351 The defaults are implementation-specific. If only the
352 high-water limit is given, the low-water limit defaults to a
353 implementation-specific value less than or equal to the
354 high-water limit. Setting high to zero forces low to zero as
355 well, and causes pause_writing() to be called whenever the
356 buffer becomes non-empty. Setting low to zero causes
357 resume_writing() to be called only once the buffer is empty.
358 Use of zero for either limit is generally sub-optimal as it
359 reduces opportunities for doing I/O and computation
360 concurrently.
361 """
362 self._ssl_protocol._transport.set_write_buffer_limits(high, low)
363
364 def get_write_buffer_size(self):
365 """Return the current size of the write buffer."""
366 return self._ssl_protocol._transport.get_write_buffer_size()
367
368 def write(self, data):
369 """Write some data bytes to the transport.
370
371 This does not block; it buffers the data and arranges for it
372 to be sent out asynchronously.
373 """
374 if not isinstance(data, (bytes, bytearray, memoryview)):
375 raise TypeError("data: expecting a bytes-like instance, got {!r}"
376 .format(type(data).__name__))
377 if not data:
378 return
379 self._ssl_protocol._write_appdata(data)
380
381 def can_write_eof(self):
382 """Return True if this transport supports write_eof(), False if not."""
383 return False
384
385 def abort(self):
386 """Close the transport immediately.
387
388 Buffered data will be lost. No more data will be received.
389 The protocol's connection_lost() method will (eventually) be
390 called with None as its argument.
391 """
392 self._ssl_protocol._abort()
393
394
395class SSLProtocol(protocols.Protocol):
396 """SSL protocol.
397
398 Implementation of SSL on top of a socket using incoming and outgoing
399 buffers which are ssl.MemoryBIO objects.
400 """
401
402 def __init__(self, loop, app_protocol, sslcontext, waiter,
403 server_side=False, server_hostname=None):
404 if ssl is None:
405 raise RuntimeError('stdlib ssl module not available')
406
407 if not sslcontext:
408 sslcontext = _create_transport_context(server_side, server_hostname)
409
410 self._server_side = server_side
411 if server_hostname and not server_side:
412 self._server_hostname = server_hostname
413 else:
414 self._server_hostname = None
415 self._sslcontext = sslcontext
416 # SSL-specific extra info. More info are set when the handshake
417 # completes.
418 self._extra = dict(sslcontext=sslcontext)
419
420 # App data write buffering
421 self._write_backlog = collections.deque()
422 self._write_buffer_size = 0
423
424 self._waiter = waiter
Victor Stinner231b4042015-01-14 00:19:09 +0100425 self._loop = loop
426 self._app_protocol = app_protocol
427 self._app_transport = _SSLProtocolTransport(self._loop,
428 self, self._app_protocol)
Victor Stinnerf7dc7fb2015-09-21 18:06:17 +0200429 # _SSLPipe instance (None until the connection is made)
Victor Stinner231b4042015-01-14 00:19:09 +0100430 self._sslpipe = None
431 self._session_established = False
432 self._in_handshake = False
433 self._in_shutdown = False
Victor Stinnerf7dc7fb2015-09-21 18:06:17 +0200434 # transport, ex: SelectorSocketTransport
Victor Stinner7e222f42015-01-15 13:16:27 +0100435 self._transport = None
Victor Stinner231b4042015-01-14 00:19:09 +0100436
Victor Stinnerf07801b2015-01-29 00:36:35 +0100437 def _wakeup_waiter(self, exc=None):
438 if self._waiter is None:
439 return
440 if not self._waiter.cancelled():
441 if exc is not None:
442 self._waiter.set_exception(exc)
443 else:
444 self._waiter.set_result(None)
445 self._waiter = None
446
Victor Stinner231b4042015-01-14 00:19:09 +0100447 def connection_made(self, transport):
448 """Called when the low-level connection is made.
449
450 Start the SSL handshake.
451 """
452 self._transport = transport
453 self._sslpipe = _SSLPipe(self._sslcontext,
454 self._server_side,
455 self._server_hostname)
456 self._start_handshake()
457
458 def connection_lost(self, exc):
459 """Called when the low-level connection is lost or closed.
460
461 The argument is an exception object or None (the latter
462 meaning a regular EOF is received or the connection was
463 aborted or closed).
464 """
465 if self._session_established:
466 self._session_established = False
467 self._loop.call_soon(self._app_protocol.connection_lost, exc)
468 self._transport = None
469 self._app_transport = None
470
471 def pause_writing(self):
472 """Called when the low-level transport's buffer goes over
473 the high-water mark.
474 """
475 self._app_protocol.pause_writing()
476
477 def resume_writing(self):
478 """Called when the low-level transport's buffer drains below
479 the low-water mark.
480 """
481 self._app_protocol.resume_writing()
482
483 def data_received(self, data):
484 """Called when some SSL data is received.
485
486 The argument is a bytes object.
487 """
488 try:
489 ssldata, appdata = self._sslpipe.feed_ssldata(data)
490 except ssl.SSLError as e:
491 if self._loop.get_debug():
492 logger.warning('%r: SSL error %s (reason %s)',
493 self, e.errno, e.reason)
494 self._abort()
495 return
496
497 for chunk in ssldata:
498 self._transport.write(chunk)
499
500 for chunk in appdata:
501 if chunk:
502 self._app_protocol.data_received(chunk)
503 else:
504 self._start_shutdown()
505 break
506
507 def eof_received(self):
508 """Called when the other end of the low-level stream
509 is half-closed.
510
511 If this returns a false value (including None), the transport
512 will close itself. If it returns a true value, closing the
513 transport is up to the protocol.
514 """
515 try:
516 if self._loop.get_debug():
517 logger.debug("%r received EOF", self)
Victor Stinnerb507cba2015-01-29 00:35:56 +0100518
Victor Stinnerf07801b2015-01-29 00:36:35 +0100519 self._wakeup_waiter(ConnectionResetError)
Victor Stinnerb507cba2015-01-29 00:35:56 +0100520
Victor Stinner231b4042015-01-14 00:19:09 +0100521 if not self._in_handshake:
522 keep_open = self._app_protocol.eof_received()
523 if keep_open:
524 logger.warning('returning true from eof_received() '
525 'has no effect when using ssl')
526 finally:
527 self._transport.close()
528
529 def _get_extra_info(self, name, default=None):
530 if name in self._extra:
531 return self._extra[name]
532 else:
533 return self._transport.get_extra_info(name, default)
534
535 def _start_shutdown(self):
536 if self._in_shutdown:
537 return
538 self._in_shutdown = True
539 self._write_appdata(b'')
540
541 def _write_appdata(self, data):
542 self._write_backlog.append((data, 0))
543 self._write_buffer_size += len(data)
544 self._process_write_backlog()
545
546 def _start_handshake(self):
547 if self._loop.get_debug():
548 logger.debug("%r starts SSL handshake", self)
549 self._handshake_start_time = self._loop.time()
550 else:
551 self._handshake_start_time = None
552 self._in_handshake = True
553 # (b'', 1) is a special value in _process_write_backlog() to do
554 # the SSL handshake
555 self._write_backlog.append((b'', 1))
556 self._loop.call_soon(self._process_write_backlog)
557
558 def _on_handshake_complete(self, handshake_exc):
559 self._in_handshake = False
560
561 sslobj = self._sslpipe.ssl_object
Victor Stinner231b4042015-01-14 00:19:09 +0100562 try:
563 if handshake_exc is not None:
564 raise handshake_exc
Victor Stinner177e9f02015-01-14 16:56:20 +0100565
566 peercert = sslobj.getpeercert()
Victor Stinner231b4042015-01-14 00:19:09 +0100567 if not hasattr(self._sslcontext, 'check_hostname'):
568 # Verify hostname if requested, Python 3.4+ uses check_hostname
569 # and checks the hostname in do_handshake()
570 if (self._server_hostname
571 and self._sslcontext.verify_mode != ssl.CERT_NONE):
572 ssl.match_hostname(peercert, self._server_hostname)
573 except BaseException as exc:
574 if self._loop.get_debug():
575 if isinstance(exc, ssl.CertificateError):
576 logger.warning("%r: SSL handshake failed "
577 "on verifying the certificate",
578 self, exc_info=True)
579 else:
580 logger.warning("%r: SSL handshake failed",
581 self, exc_info=True)
582 self._transport.close()
583 if isinstance(exc, Exception):
Victor Stinnerf07801b2015-01-29 00:36:35 +0100584 self._wakeup_waiter(exc)
Victor Stinner231b4042015-01-14 00:19:09 +0100585 return
586 else:
587 raise
588
589 if self._loop.get_debug():
590 dt = self._loop.time() - self._handshake_start_time
591 logger.debug("%r: SSL handshake took %.1f ms", self, dt * 1e3)
592
593 # Add extra info that becomes available after handshake.
594 self._extra.update(peercert=peercert,
595 cipher=sslobj.cipher(),
596 compression=sslobj.compression(),
Victor Stinnerf7dc7fb2015-09-21 18:06:17 +0200597 ssl_object=sslobj,
Victor Stinner231b4042015-01-14 00:19:09 +0100598 )
599 self._app_protocol.connection_made(self._app_transport)
Victor Stinnerf07801b2015-01-29 00:36:35 +0100600 self._wakeup_waiter()
Victor Stinner231b4042015-01-14 00:19:09 +0100601 self._session_established = True
Victor Stinner042dad72015-01-15 09:41:48 +0100602 # In case transport.write() was already called. Don't call
603 # immediatly _process_write_backlog(), but schedule it:
604 # _on_handshake_complete() can be called indirectly from
605 # _process_write_backlog(), and _process_write_backlog() is not
606 # reentrant.
Victor Stinner72bdefb2015-01-15 09:44:13 +0100607 self._loop.call_soon(self._process_write_backlog)
Victor Stinner231b4042015-01-14 00:19:09 +0100608
609 def _process_write_backlog(self):
610 # Try to make progress on the write backlog.
611 if self._transport is None:
612 return
613
614 try:
615 for i in range(len(self._write_backlog)):
616 data, offset = self._write_backlog[0]
617 if data:
618 ssldata, offset = self._sslpipe.feed_appdata(data, offset)
619 elif offset:
Yury Selivanov8c125eb2015-08-05 14:06:23 -0400620 ssldata = self._sslpipe.do_handshake(
621 self._on_handshake_complete)
Victor Stinner231b4042015-01-14 00:19:09 +0100622 offset = 1
623 else:
624 ssldata = self._sslpipe.shutdown(self._finalize)
625 offset = 1
626
627 for chunk in ssldata:
628 self._transport.write(chunk)
629
630 if offset < len(data):
631 self._write_backlog[0] = (data, offset)
632 # A short write means that a write is blocked on a read
633 # We need to enable reading if it is paused!
634 assert self._sslpipe.need_ssldata
635 if self._transport._paused:
636 self._transport.resume_reading()
637 break
638
639 # An entire chunk from the backlog was processed. We can
640 # delete it and reduce the outstanding buffer size.
641 del self._write_backlog[0]
642 self._write_buffer_size -= len(data)
643 except BaseException as exc:
644 if self._in_handshake:
Yury Selivanov8c125eb2015-08-05 14:06:23 -0400645 # BaseExceptions will be re-raised in _on_handshake_complete.
Victor Stinner231b4042015-01-14 00:19:09 +0100646 self._on_handshake_complete(exc)
647 else:
648 self._fatal_error(exc, 'Fatal error on SSL transport')
Yury Selivanov8c125eb2015-08-05 14:06:23 -0400649 if not isinstance(exc, Exception):
650 # BaseException
651 raise
Victor Stinner231b4042015-01-14 00:19:09 +0100652
653 def _fatal_error(self, exc, message='Fatal error on transport'):
654 # Should be called from exception handler only.
655 if isinstance(exc, (BrokenPipeError, ConnectionResetError)):
656 if self._loop.get_debug():
657 logger.debug("%r: %s", self, message, exc_info=True)
658 else:
659 self._loop.call_exception_handler({
660 'message': message,
661 'exception': exc,
662 'transport': self._transport,
663 'protocol': self,
664 })
665 if self._transport:
666 self._transport._force_close(exc)
667
668 def _finalize(self):
669 if self._transport is not None:
670 self._transport.close()
671
672 def _abort(self):
673 if self._transport is not None:
674 try:
675 self._transport.abort()
676 finally:
677 self._finalize()