Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Add a couple more checks to the keyring
Browse files Browse the repository at this point in the history
  • Loading branch information
NegativeMjark committed Jul 26, 2016
1 parent c63b169 commit a4b06b6
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions synapse/crypto/keyring.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def get_server_verify_key_v2_indirect(self, server_names_and_key_ids,
)

processed_response = yield self.process_v2_response(
perspective_name, response
perspective_name, response, only_from_server=False
)

for server_name, response_keys in processed_response.items():
Expand Down Expand Up @@ -527,7 +527,7 @@ def get_server_verify_key_v2_direct(self, server_name, key_ids):

@defer.inlineCallbacks
def process_v2_response(self, from_server, response_json,
requested_ids=[]):
requested_ids=[], only_from_server=True):
time_now_ms = self.clock.time_msec()
response_keys = {}
verify_keys = {}
Expand All @@ -551,6 +551,13 @@ def process_v2_response(self, from_server, response_json,

results = {}
server_name = response_json["server_name"]
if only_from_server:
if server_name != from_server:
raise ValueError(
"Expected a response for server %r not %r" % (
from_server, server_name
)
)
for key_id in response_json["signatures"].get(server_name, {}):
if key_id not in response_json["verify_keys"]:
raise ValueError(
Expand Down

0 comments on commit a4b06b6

Please sign in to comment.