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

Stop overwriting server keys with other keys #5307

Merged
merged 1 commit into from
Jun 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/5307.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix bug where a notary server would sometimes forget old keys.
14 changes: 2 additions & 12 deletions synapse/crypto/keyring.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def __init__(self, hs):

@defer.inlineCallbacks
def process_v2_response(
self, from_server, response_json, time_added_ms, requested_ids=[]
self, from_server, response_json, time_added_ms
):
"""Parse a 'Server Keys' structure from the result of a /key request

Expand All @@ -417,10 +417,6 @@ def process_v2_response(

time_added_ms (int): the timestamp to record in server_keys_json

requested_ids (iterable[str]): a list of the key IDs that were requested.
We will store the json for these key ids as well as any that are
actually in the response

Returns:
Deferred[dict[str, FetchKeyResult]]: map from key_id to result object
"""
Expand Down Expand Up @@ -476,11 +472,6 @@ def process_v2_response(

signed_key_json_bytes = encode_canonical_json(signed_key_json)

# for reasons I don't quite understand, we store this json for the key ids we
# requested, as well as those we got.
updated_key_ids = set(requested_ids)
updated_key_ids.update(verify_keys)

yield logcontext.make_deferred_yieldable(
defer.gatherResults(
[
Expand All @@ -493,7 +484,7 @@ def process_v2_response(
ts_expires_ms=ts_valid_until_ms,
key_json_bytes=signed_key_json_bytes,
)
for key_id in updated_key_ids
for key_id in verify_keys
],
consumeErrors=True,
).addErrback(unwrapFirstError)
Expand Down Expand Up @@ -749,7 +740,6 @@ def get_server_verify_key_v2_direct(self, server_name, key_ids):

response_keys = yield self.process_v2_response(
from_server=server_name,
requested_ids=[requested_key_id],
response_json=response,
time_added_ms=time_now_ms,
)
Expand Down