forked from MirrorHub/synapse
Exclude rejected state events when calculating state at backwards extrems (#6527)
This fixes a weird bug where, if you were determined enough, you could end up with a rejected event forming part of the state at a backwards-extremity. Authing that backwards extrem would then lead to us trying to pull the rejected event from the db (with allow_rejected=False), which would fail with a 404.
This commit is contained in:
parent
bc7de87650
commit
6920d88892
2 changed files with 2 additions and 1 deletions
1
changelog.d/6527.bugfix
Normal file
1
changelog.d/6527.bugfix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Fix a bug which could cause the federation server to incorrectly return errors when handling certain obscure event graphs.
|
|
@ -605,7 +605,7 @@ class FederationHandler(BaseHandler):
|
||||||
remote_event = event_map.get(event_id)
|
remote_event = event_map.get(event_id)
|
||||||
if not remote_event:
|
if not remote_event:
|
||||||
raise Exception("Unable to get missing prev_event %s" % (event_id,))
|
raise Exception("Unable to get missing prev_event %s" % (event_id,))
|
||||||
if remote_event.is_state():
|
if remote_event.is_state() and remote_event.rejected_reason is None:
|
||||||
remote_state.append(remote_event)
|
remote_state.append(remote_event)
|
||||||
|
|
||||||
auth_chain = [event_map[e_id] for e_id in auth_event_ids if e_id in event_map]
|
auth_chain = [event_map[e_id] for e_id in auth_event_ids if e_id in event_map]
|
||||||
|
|
Loading…
Reference in a new issue