我开始考虑通过扩展当前的Twisted FTP实现显式FTP。
大部分代码都是直截了当的,实现AUTH,PBSZ,PROT很简单,我有一个有效的安全控制通道。
我的问题在于数据通道。
客户端错误是:SSL routines', 'SSL3_READ_BYTES', 'ssl handshake failure'
只有在通过数据通道发送某些数据时才会调用SSL握手和关闭。 这会影响发送空文件或列出空文件夹的情况,因为在关闭连接之前,客户端将调用SSL关闭。
我正在寻找一些关于在没有数据发送时我应该如何以及在何处搜索从Twisted TLS修复TLS握手的建议。
此代码在列出非空文件夹时有效...但如果文件夹中不包含任何文件或文件夹,则会失败。
非常感谢!
def getDTPPort(self, factory):
"""
Return a port for passive access, using C{self.passivePortRange}
attribute.
"""
for portn in self.passivePortRange:
try:
if self.protected_data:
dtpPort = reactor.listenSSL(
port=portn, factory=factory,
contextFactory=self.ssl_context)
else:
dtpPort = self.listenFactory(portn, factory)
except error.CannotListenError:
continue
else:
return dtpPort
raise error.CannotListenError('', portn,
"No port available in range %s" %
(self.passivePortRange,))
我会更新此文本,因为评论格式不正确:
所以我最终得到了:
def getDTPPort(self, factory):
"""
Return a port for passive access, using C{self.passivePortRange}
attribute.
"""
for portn in self.passivePortRange:
try:
if self.protected_data:
tls_factory = TLSMemoryBIOFactory(
contextFactory=self.ssl_context,
isClient=False,
wrappedFactory=factory)
dtpPort = reactor.listenTCP(
port=portn, factory=tls_factory)
else:
dtpPort = self.listenFactory(portn, factory)
except error.CannotListenError:
continue
else:
return dtpPort
raise error.CannotListenError('', portn,
"No port available in range %s" %
(self.passivePortRange,))
问题是由握手仍在运行时关闭连接引起的。 我不知道如何检查空连接是否已完成SSL握手。
所以我最终得到了这个愚蠢的代码
def loseConnection(self):
"""
Send a TLS close alert and close the underlying connection.
"""
self.disconnecting = True
def close_connection():
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.1, close_connection)
else:
close_connection()
答案 0 :(得分:2)
SSL握手由pyOpenSSL Connection
对象的do_handshake
方法启动。它也可以通过send
或recv
调用隐式启动。由reactor.connectSSL
和reactor.listenSSL
设置的传输依赖于后者。所以你的结论是正确的 - 如果没有通过连接发送数据,就不会执行握手。
但是,twisted.protocols.tls
会在建立连接后立即调用do_handshake
。如果您使用该API设置SSL服务器,我认为您将看到问题得到解决。
还有一个reimplement the former using the latter的计划,因为后者似乎总的来说效果更好。