Browse Source

reworked secure channel request handling

* will now try reconnect on error
pull/34/head
Rossen Georgiev 9 years ago
parent
commit
f5b04d66b4
  1. 20
      steam/core/cm.py

20
steam/core/cm.py

@ -251,13 +251,13 @@ class CMClient(EventEmitter):
self.emit(emsg, msg) self.emit(emsg, msg)
def __handle_encrypt_request(self, msg): def __handle_encrypt_request(self, req):
self._LOG.debug("Securing channel") self._LOG.debug("Securing channel")
try: try:
if msg.body.protocolVersion != 1: if req.body.protocolVersion != 1:
raise RuntimeError("Unsupported protocol version") raise RuntimeError("Unsupported protocol version")
if msg.body.universe != EUniverse.Public: if req.body.universe != EUniverse.Public:
raise RuntimeError("Unsupported universe") raise RuntimeError("Unsupported universe")
except RuntimeError as e: except RuntimeError as e:
self._LOG.exception(e) self._LOG.exception(e)
@ -266,24 +266,24 @@ class CMClient(EventEmitter):
resp = Msg(EMsg.ChannelEncryptResponse) resp = Msg(EMsg.ChannelEncryptResponse)
challenge = msg.body.challenge challenge = req.body.challenge
key, resp.body.key = crypto.generate_session_key(challenge) key, resp.body.key = crypto.generate_session_key(challenge)
resp.body.crc = binascii.crc32(resp.body.key) & 0xffffffff resp.body.crc = binascii.crc32(resp.body.key) & 0xffffffff
self.send(resp) self.send(resp)
resp = self.wait_event(EMsg.ChannelEncryptResult, timeout=5) result = self.wait_event(EMsg.ChannelEncryptResult, timeout=5)
if resp is None: if result is None:
self.servers.mark_bad(self.current_server_addr) self.servers.mark_bad(self.current_server_addr)
gevent.spawn(self.disconnect, True) gevent.spawn(self.disconnect, True)
return return
msg, = resp eresult = result[0].body.eresult
if msg.body.eresult != EResult.OK: if eresult != EResult.OK:
self._LOG.debug("Failed to secure channel: %s" % msg.body.eresult) self._LOG.error("Failed to secure channel: %s" % eresult)
gevent.spawn(self.disconnect) gevent.spawn(self.disconnect, True)
return return
self.channel_key = key self.channel_key = key

Loading…
Cancel
Save