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