2016-12-01 16:48:04 +01:00
|
|
|
"""
|
|
|
|
SSL/TLS negotiation.
|
|
|
|
"""
|
|
|
|
|
2019-08-06 13:04:33 +02:00
|
|
|
import logging
|
2017-04-16 18:27:15 +02:00
|
|
|
import os
|
2016-12-01 16:48:04 +01:00
|
|
|
import socket
|
|
|
|
import ssl
|
2017-01-12 07:26:04 +01:00
|
|
|
import sys
|
2016-12-01 16:48:04 +01:00
|
|
|
|
2017-04-16 18:27:15 +02:00
|
|
|
from network.advanceddispatcher import AdvancedDispatcher
|
|
|
|
import network.asyncore_pollchoose as asyncore
|
2017-07-06 19:45:36 +02:00
|
|
|
from queues import receiveDataQueue
|
2017-04-16 18:27:15 +02:00
|
|
|
import paths
|
2019-02-04 11:28:42 +01:00
|
|
|
|
2019-08-06 13:04:33 +02:00
|
|
|
logger = logging.getLogger('default')
|
2016-12-01 16:48:04 +01:00
|
|
|
|
2017-06-21 12:16:33 +02:00
|
|
|
_DISCONNECTED_SSL = frozenset((ssl.SSL_ERROR_EOF,))
|
|
|
|
|
2019-02-04 11:28:42 +01:00
|
|
|
# sslProtocolVersion
|
|
|
|
if sys.version_info >= (2, 7, 13):
|
|
|
|
# this means TLSv1 or higher
|
|
|
|
# in the future change to
|
|
|
|
# ssl.PROTOCOL_TLS1.2
|
|
|
|
sslProtocolVersion = ssl.PROTOCOL_TLS # pylint: disable=no-member
|
|
|
|
elif sys.version_info >= (2, 7, 9):
|
|
|
|
# this means any SSL/TLS. SSLv2 and 3 are excluded with an option after context is created
|
|
|
|
sslProtocolVersion = ssl.PROTOCOL_SSLv23
|
|
|
|
else:
|
|
|
|
# this means TLSv1, there is no way to set "TLSv1 or higher" or
|
|
|
|
# "TLSv1.2" in < 2.7.9
|
|
|
|
sslProtocolVersion = ssl.PROTOCOL_TLSv1
|
|
|
|
|
|
|
|
|
|
|
|
# ciphers
|
|
|
|
if ssl.OPENSSL_VERSION_NUMBER >= 0x10100000 and not ssl.OPENSSL_VERSION.startswith("LibreSSL"):
|
|
|
|
sslProtocolCiphers = "AECDH-AES256-SHA@SECLEVEL=0"
|
|
|
|
else:
|
|
|
|
sslProtocolCiphers = "AECDH-AES256-SHA"
|
|
|
|
|
|
|
|
|
2019-09-11 12:10:42 +02:00
|
|
|
class TLSDispatcher(AdvancedDispatcher): # pylint: disable=too-many-instance-attributes
|
|
|
|
"""TLS functionality for classes derived from AdvancedDispatcher"""
|
|
|
|
# pylint: disable=too-many-arguments, super-init-not-called, unused-argument
|
2019-02-04 11:28:42 +01:00
|
|
|
def __init__(
|
2019-09-11 12:10:42 +02:00
|
|
|
self, address=None, sock=None, certfile=None, keyfile=None,
|
|
|
|
server_side=False, ciphers=sslProtocolCiphers
|
2019-02-04 11:28:42 +01:00
|
|
|
):
|
2016-12-01 16:48:04 +01:00
|
|
|
self.want_read = self.want_write = True
|
2017-04-04 10:46:01 +02:00
|
|
|
if certfile is None:
|
|
|
|
self.certfile = os.path.join(paths.codePath(), 'sslkeys', 'cert.pem')
|
|
|
|
else:
|
|
|
|
self.certfile = certfile
|
|
|
|
if keyfile is None:
|
|
|
|
self.keyfile = os.path.join(paths.codePath(), 'sslkeys', 'key.pem')
|
|
|
|
else:
|
|
|
|
self.keyfile = keyfile
|
2016-12-01 16:48:04 +01:00
|
|
|
self.server_side = server_side
|
|
|
|
self.ciphers = ciphers
|
2017-04-04 10:46:01 +02:00
|
|
|
self.tlsStarted = False
|
2016-12-01 16:48:04 +01:00
|
|
|
self.tlsDone = False
|
2017-06-24 12:18:15 +02:00
|
|
|
self.tlsVersion = "N/A"
|
2017-04-04 10:46:01 +02:00
|
|
|
self.isSSL = False
|
2016-12-01 16:48:04 +01:00
|
|
|
|
2017-04-04 10:46:01 +02:00
|
|
|
def state_tls_init(self):
|
2019-09-11 12:10:42 +02:00
|
|
|
"""Prepare sockets for TLS handshake"""
|
|
|
|
# pylint: disable=attribute-defined-outside-init
|
2017-04-04 10:46:01 +02:00
|
|
|
self.isSSL = True
|
2017-04-16 18:27:15 +02:00
|
|
|
self.tlsStarted = True
|
2016-12-01 16:48:04 +01:00
|
|
|
# Once the connection has been established, it's safe to wrap the
|
|
|
|
# socket.
|
2019-09-11 11:01:17 +02:00
|
|
|
if sys.version_info >= (2, 7, 9):
|
|
|
|
context = ssl.create_default_context(
|
|
|
|
purpose=ssl.Purpose.SERVER_AUTH if self.server_side else ssl.Purpose.CLIENT_AUTH)
|
2017-01-12 07:26:04 +01:00
|
|
|
context.set_ciphers(self.ciphers)
|
2017-04-04 10:46:01 +02:00
|
|
|
context.set_ecdh_curve("secp256k1")
|
2017-01-11 20:47:27 +01:00
|
|
|
context.check_hostname = False
|
|
|
|
context.verify_mode = ssl.CERT_NONE
|
|
|
|
# also exclude TLSv1 and TLSv1.1 in the future
|
2019-09-11 11:01:17 +02:00
|
|
|
context.options = ssl.OP_ALL | ssl.OP_NO_SSLv2 |\
|
|
|
|
ssl.OP_NO_SSLv3 | ssl.OP_SINGLE_ECDH_USE | ssl.OP_CIPHER_SERVER_PREFERENCE
|
|
|
|
self.sslSocket = context.wrap_socket(
|
|
|
|
self.socket, server_side=self.server_side, do_handshake_on_connect=False)
|
2017-01-11 20:47:27 +01:00
|
|
|
else:
|
2019-02-04 11:28:42 +01:00
|
|
|
self.sslSocket = ssl.wrap_socket(
|
|
|
|
self.socket, server_side=self.server_side,
|
|
|
|
ssl_version=sslProtocolVersion,
|
|
|
|
certfile=self.certfile, keyfile=self.keyfile,
|
|
|
|
ciphers=self.ciphers, do_handshake_on_connect=False)
|
2016-12-01 16:48:04 +01:00
|
|
|
self.sslSocket.setblocking(0)
|
|
|
|
self.want_read = self.want_write = True
|
2017-07-06 19:45:36 +02:00
|
|
|
self.set_state("tls_handshake")
|
|
|
|
return False
|
2016-12-01 16:48:04 +01:00
|
|
|
# if hasattr(self.socket, "context"):
|
|
|
|
# self.socket.context.set_ecdh_curve("secp256k1")
|
|
|
|
|
2019-09-11 12:10:42 +02:00
|
|
|
@staticmethod
|
|
|
|
def state_tls_handshake():
|
|
|
|
"""Do nothing while TLS handshake is pending, as during this phase we need to react to callbacks instead"""
|
2017-07-06 19:45:36 +02:00
|
|
|
return False
|
|
|
|
|
2016-12-01 16:48:04 +01:00
|
|
|
def writable(self):
|
2019-09-11 12:10:42 +02:00
|
|
|
"""Handle writable checks for TLS-enabled sockets"""
|
2017-05-25 14:59:18 +02:00
|
|
|
try:
|
2017-07-06 19:45:36 +02:00
|
|
|
if self.tlsStarted and not self.tlsDone and not self.write_buf:
|
2017-05-25 14:59:18 +02:00
|
|
|
return self.want_write
|
2017-06-24 12:13:35 +02:00
|
|
|
return AdvancedDispatcher.writable(self)
|
2017-05-25 14:59:18 +02:00
|
|
|
except AttributeError:
|
2017-04-16 18:27:15 +02:00
|
|
|
return AdvancedDispatcher.writable(self)
|
2016-12-01 16:48:04 +01:00
|
|
|
|
|
|
|
def readable(self):
|
2019-09-11 12:10:42 +02:00
|
|
|
"""Handle readable check for TLS-enabled sockets"""
|
2017-05-25 14:59:18 +02:00
|
|
|
try:
|
2017-07-06 19:45:36 +02:00
|
|
|
# during TLS handshake, and after flushing write buffer, return status of last handshake attempt
|
|
|
|
if self.tlsStarted and not self.tlsDone and not self.write_buf:
|
2019-09-11 11:01:17 +02:00
|
|
|
# print "tls readable, %r" % (self.want_read)
|
2017-05-25 14:59:18 +02:00
|
|
|
return self.want_read
|
2017-07-06 19:45:36 +02:00
|
|
|
# prior to TLS handshake, receiveDataThread should emulate synchronous behaviour
|
|
|
|
elif not self.fullyEstablished and (self.expectBytes == 0 or not self.write_buf_empty()):
|
|
|
|
return False
|
2017-06-24 12:13:35 +02:00
|
|
|
return AdvancedDispatcher.readable(self)
|
2017-05-25 14:59:18 +02:00
|
|
|
except AttributeError:
|
2017-04-16 18:27:15 +02:00
|
|
|
return AdvancedDispatcher.readable(self)
|
2016-12-01 16:48:04 +01:00
|
|
|
|
2019-09-11 12:10:42 +02:00
|
|
|
def handle_read(self): # pylint: disable=inconsistent-return-statements
|
|
|
|
"""
|
|
|
|
Handle reads for sockets during TLS handshake. Requires special treatment as during the handshake, buffers must
|
|
|
|
remain empty and normal reads must be ignored
|
|
|
|
"""
|
2017-05-25 14:59:18 +02:00
|
|
|
try:
|
|
|
|
# wait for write buffer flush
|
2017-07-06 19:45:36 +02:00
|
|
|
if self.tlsStarted and not self.tlsDone and not self.write_buf:
|
2019-09-11 11:01:17 +02:00
|
|
|
# logger.debug("%s:%i TLS handshaking (read)", self.destination.host, self.destination.port)
|
2017-05-27 22:30:30 +02:00
|
|
|
self.tls_handshake()
|
2017-05-25 14:59:18 +02:00
|
|
|
else:
|
2019-09-11 11:01:17 +02:00
|
|
|
# logger.debug("%s:%i Not TLS handshaking (read)", self.destination.host, self.destination.port)
|
2017-05-25 14:59:18 +02:00
|
|
|
return AdvancedDispatcher.handle_read(self)
|
|
|
|
except AttributeError:
|
2017-04-16 18:27:15 +02:00
|
|
|
return AdvancedDispatcher.handle_read(self)
|
2017-06-21 12:16:33 +02:00
|
|
|
except ssl.SSLError as err:
|
|
|
|
if err.errno == ssl.SSL_ERROR_WANT_READ:
|
|
|
|
return
|
|
|
|
elif err.errno in _DISCONNECTED_SSL:
|
|
|
|
self.handle_close()
|
|
|
|
return
|
2017-06-24 12:18:15 +02:00
|
|
|
logger.info("SSL Error: %s", str(err))
|
|
|
|
self.handle_close()
|
|
|
|
return
|
2016-12-01 16:48:04 +01:00
|
|
|
|
2019-09-11 12:10:42 +02:00
|
|
|
def handle_write(self): # pylint: disable=inconsistent-return-statements
|
|
|
|
"""
|
|
|
|
Handle writes for sockets during TLS handshake. Requires special treatment as during the handshake, buffers
|
|
|
|
must remain empty and normal writes must be ignored
|
|
|
|
"""
|
2017-05-25 14:59:18 +02:00
|
|
|
try:
|
|
|
|
# wait for write buffer flush
|
2017-07-06 19:45:36 +02:00
|
|
|
if self.tlsStarted and not self.tlsDone and not self.write_buf:
|
2019-09-11 11:01:17 +02:00
|
|
|
# logger.debug("%s:%i TLS handshaking (write)", self.destination.host, self.destination.port)
|
2017-05-27 22:30:30 +02:00
|
|
|
self.tls_handshake()
|
2017-05-25 14:59:18 +02:00
|
|
|
else:
|
2019-09-11 11:01:17 +02:00
|
|
|
# logger.debug("%s:%i Not TLS handshaking (write)", self.destination.host, self.destination.port)
|
2017-05-25 14:59:18 +02:00
|
|
|
return AdvancedDispatcher.handle_write(self)
|
|
|
|
except AttributeError:
|
2017-07-06 19:45:36 +02:00
|
|
|
return AdvancedDispatcher.handle_write(self)
|
2017-06-21 12:16:33 +02:00
|
|
|
except ssl.SSLError as err:
|
|
|
|
if err.errno == ssl.SSL_ERROR_WANT_WRITE:
|
|
|
|
return 0
|
|
|
|
elif err.errno in _DISCONNECTED_SSL:
|
|
|
|
self.handle_close()
|
|
|
|
return 0
|
2017-06-24 12:18:15 +02:00
|
|
|
logger.info("SSL Error: %s", str(err))
|
|
|
|
self.handle_close()
|
|
|
|
return
|
2016-12-01 16:48:04 +01:00
|
|
|
|
2017-05-27 22:30:30 +02:00
|
|
|
def tls_handshake(self):
|
2019-09-11 12:10:42 +02:00
|
|
|
"""Perform TLS handshake and handle its stages"""
|
2017-04-16 18:27:15 +02:00
|
|
|
# wait for flush
|
2017-06-24 12:13:35 +02:00
|
|
|
if self.write_buf:
|
2017-04-16 18:27:15 +02:00
|
|
|
return False
|
|
|
|
# Perform the handshake.
|
2016-12-01 16:48:04 +01:00
|
|
|
try:
|
2019-09-11 11:01:17 +02:00
|
|
|
# print "handshaking (internal)"
|
2016-12-01 16:48:04 +01:00
|
|
|
self.sslSocket.do_handshake()
|
2017-06-24 12:13:35 +02:00
|
|
|
except ssl.SSLError as err:
|
2019-09-11 11:01:17 +02:00
|
|
|
# print "%s:%i: handshake fail" % (self.destination.host, self.destination.port)
|
2016-12-01 16:48:04 +01:00
|
|
|
self.want_read = self.want_write = False
|
|
|
|
if err.args[0] == ssl.SSL_ERROR_WANT_READ:
|
2019-09-11 11:01:17 +02:00
|
|
|
# print "want read"
|
2016-12-01 16:48:04 +01:00
|
|
|
self.want_read = True
|
2017-05-24 16:51:49 +02:00
|
|
|
if err.args[0] == ssl.SSL_ERROR_WANT_WRITE:
|
2019-09-11 11:01:17 +02:00
|
|
|
# print "want write"
|
2016-12-01 16:48:04 +01:00
|
|
|
self.want_write = True
|
2017-05-24 16:51:49 +02:00
|
|
|
if not (self.want_write or self.want_read):
|
2016-12-01 16:48:04 +01:00
|
|
|
raise
|
2017-06-24 12:18:15 +02:00
|
|
|
except socket.error as err:
|
2019-09-11 12:10:42 +02:00
|
|
|
if err.errno in asyncore._DISCONNECTED: # pylint: disable=protected-access
|
2017-06-24 12:18:15 +02:00
|
|
|
self.handle_close()
|
|
|
|
else:
|
|
|
|
raise
|
2016-12-01 16:48:04 +01:00
|
|
|
else:
|
2017-06-24 12:18:15 +02:00
|
|
|
if sys.version_info >= (2, 7, 9):
|
|
|
|
self.tlsVersion = self.sslSocket.version()
|
|
|
|
logger.debug("%s:%i: TLS handshake success, TLS protocol version: %s",
|
2019-09-11 11:01:17 +02:00
|
|
|
self.destination.host, self.destination.port, self.sslSocket.version())
|
2017-06-24 12:18:15 +02:00
|
|
|
else:
|
|
|
|
self.tlsVersion = "TLSv1"
|
|
|
|
logger.debug("%s:%i: TLS handshake success", self.destination.host, self.destination.port)
|
2016-12-01 16:48:04 +01:00
|
|
|
# The handshake has completed, so remove this channel and...
|
|
|
|
self.del_channel()
|
|
|
|
self.set_socket(self.sslSocket)
|
|
|
|
self.tlsDone = True
|
2017-07-06 19:45:36 +02:00
|
|
|
|
|
|
|
self.bm_proto_reset()
|
|
|
|
self.set_state("connection_fully_established")
|
2017-07-08 06:54:25 +02:00
|
|
|
receiveDataQueue.put(self.destination)
|
2017-04-16 18:27:15 +02:00
|
|
|
return False
|