Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
e707e7b3
Unverified
Commit
e707e7b3
authored
6 years ago
by
Richard van der Hoff
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix infinite loop when an event is redacted in a v3 room (#4535)
parent
35f54441
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changelog.d/4535.bugfix
+1
-0
1 addition, 0 deletions
changelog.d/4535.bugfix
synapse/storage/events_worker.py
+32
-5
32 additions, 5 deletions
synapse/storage/events_worker.py
with
33 additions
and
5 deletions
changelog.d/4535.bugfix
0 → 100644
+
1
−
0
View file @
e707e7b3
Fix infinite loop when an event is redacted in a v3 room
This diff is collapsed.
Click to expand it.
synapse/storage/events_worker.py
+
32
−
5
View file @
e707e7b3
...
...
@@ -161,6 +161,12 @@ class EventsWorkerStore(SQLBaseStore):
log_ctx
=
LoggingContext
.
current_context
()
log_ctx
.
record_event_fetch
(
len
(
missing_events_ids
))
# Note that _enqueue_events is also responsible for turning db rows
# into FrozenEvents (via _get_event_from_row), which involves seeing if
# the events have been redacted, and if so pulling the redaction event out
# of the database to check it.
#
# _enqueue_events is a bit of a rubbish name but naming is hard.
missing_events
=
yield
self
.
_enqueue_events
(
missing_events_ids
,
allow_rejected
=
allow_rejected
,
...
...
@@ -179,14 +185,35 @@ class EventsWorkerStore(SQLBaseStore):
# instead.
if
not
allow_rejected
and
entry
.
event
.
type
==
EventTypes
.
Redaction
:
if
entry
.
event
.
internal_metadata
.
need_to_check_redaction
():
orig
=
yield
self
.
get_event
(
entry
.
event
.
redacts
,
# XXX: we need to avoid calling get_event here.
#
# The problem is that we end up at this point when an event
# which has been redacted is pulled out of the database by
# _enqueue_events, because _enqueue_events needs to check the
# redaction before it can cache the redacted event. So obviously,
# calling get_event to get the redacted event out of the database
# gives us an infinite loop.
#
# For now (quick hack to fix during 0.99 release cycle), we just
# go and fetch the relevant row from the db, but it would be nice
# to think about how we can cache this rather than hit the db
# every time we access a redaction event.
#
# One thought on how to do this:
# 1. split _get_events up so that it is divided into (a) get the
# rawish event from the db/cache, (b) do the redaction/rejection
# filtering
# 2. have _get_event_from_row just call the first half of that
orig_sender
=
yield
self
.
_simple_select_one_onecol
(
table
=
"
events
"
,
keyvalues
=
{
"
event_id
"
:
entry
.
event
.
redacts
},
retcol
=
"
sender
"
,
allow_none
=
True
,
allow_rejected
=
True
,
get_prev_content
=
False
,
)
expected_domain
=
get_domain_from_id
(
entry
.
event
.
sender
)
if
orig
and
get_domain_from_id
(
orig
.
sender
)
==
expected_domain
:
if
orig
_sender
and
get_domain_from_id
(
orig
_
sender
)
==
expected_domain
:
# This redaction event is allowed. Mark as not needing a
# recheck.
entry
.
event
.
internal_metadata
.
recheck_redaction
=
False
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment