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