如何检查TLS握手是否已在Twisted中完成

时间:2011-02-10 06:57:19

标签: openssl twisted ssl pyopenssl

这是对此问题的跟进:SSL handshake failures when no data was sent over Twisted TLSConnection

我已经实现了一个简单的SSL服务器,可以在客户端连接后立即关闭连接。

我正在使用openssl进行测试,但握手失败了:

$ openssl s_client -connect localhost:12345                             
CONNECTED(00000003) 2329:error:140790E5:SSL routines:SSL23_WRITE
:ssl handshake failure:s23_lib.c:188: 

问题是TLS.Connection.loseConnection不等待正在进行的握手,只是断开客户端。

附加到OpenSSL.SSL.Connection.do_handshake的回调本来很棒......但遗憾的是我不知道是否可以这样做......或者如何做到这一点。

我非常感谢任何有关如何测试TLS握手的提示。非常感谢!

这是代码

class ApplicationProtocol(Protocol):
        '''Protocol that closes the connection when connection is made.'''
        def connectionMade(self):
            self.transport.loseConnection()

# Here is a barebone TLS Server
serverFactory = ServerFactory()
serverFactory.protocol = ApplicationProtocol
server_cert_path = 'server.pem'
serverContextFactory = DefaultOpenSSLContextFactory(
            privateKeyFileName = server_cert_path,
            certificateFileName = server_cert_path,
            sslmethod=SSL.SSLv23_METHOD)

tlsFactory = TLSMemoryBIOFactory(serverContextFactory, False, serverFactory)
reactor.listenTCP(12345, tlsFactory)
#reactor.listenSSL(12345, serverFactory, serverContextFactory)

现在我解决这个非常脏并且不是100%有效。

def tls_lose_connection(self):
    """
    Monkey patching for TLSMemoryBIOProtocol to wait for handshake to end,
    before closing the connection.

    Send a TLS close alert and close the underlying connection.
    """

    def close_connection():
        self.disconnecting = True
        if not self._writeBlockedOnRead:
            self._tlsConnection.shutdown()
            self._flushSendBIO()
            self.transport.loseConnection()

    # If we don't know if the handshake was done, we wait for a bit
    # and the close the connection.
    # This is done to avoid closing the connection in the middle of a
    # handshake.
    if not self._handshakeDone:
        reactor.callLater(0.5, close_connection)
    else:
        close_connection()


TLSMemoryBIOProtocol.loseConnection = tls_lose_connection

3 个答案:

答案 0 :(得分:5)

我正在提供实现Jean-Paul答案的代码。

class ProxyClientTLSContextFactory(ssl.ClientContextFactory):
    isClient = 1

def getContext(self):
    ctx = SSL.Context(SSL.TLSv1_METHOD)
    logger = logging.GetLogger()
    def infoCallback(conn, where, ret):
        # conn is a OpenSSL.SSL.Connection
        # where is a set of flags telling where in the handshake we are
        # See http://www.openssl.org/docs/ssl/SSL_CTX_set_info_callback.html
        logger.debug("infoCallback %s %d %d" % (conn, where, ret))
        if where & SSL.SSL_CB_HANDSHAKE_START:
            logger.debug("Handshake started")
        if where & SSL.SSL_CB_HANDSHAKE_DONE:
            logger.debug("Handshake done")
    ctx.set_info_callback(infoCallback)
    return ctx

我在infoCallback()中遇到的问题是我不知道如何从SSL.Connection返回到相关的Twisted Protocol实例。

我想做的是在建立连接并完成TLS握手后在我的协议实例上调用回调,这样我就可以确保证书验证是我喜欢的,然后再继续。

答案 1 :(得分:4)

SSL上下文对象可以配置“info callback” - Context.set_info_callback。这是SSL_CTX_set_info_callback的包装器。遗憾的是,pyOpenSSL没有公开用于指定单个连接的回调的更方便(在本例中)SSL_set_info_callback。

除此之外,握手完成时会调用info回调。通过一些杂技,您应该能够将此通知转换为延迟或其他一些回调协议。

有关详细信息,请参阅pyOpenSSL set_info_callback documentationOpenSSL SSL_CTX_set_info_callback documentation

答案 2 :(得分:0)

由于握手问题,我发现使用loseConnection()不可靠。可以调用它,连接永远不会完全断开。因此,对于TLS,我总是使用abortConnection()。无论握手状态如何,它都将确保连接关闭。