1 files changed, 15 insertions, 2 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py
index da129ec16a..4c75433a63 100644
--- a/synapse/handlers/message.py
+++ b/synapse/handlers/message.py
@@ -987,10 +987,11 @@ class EventCreationHandler:
# a situation where event persistence can't keep up, causing
# extremities to pile up, which in turn leads to state resolution
# taking longer.
- async with self.limiter.queue(event_dict["room_id"]):
+ room_id = event_dict["room_id"]
+ async with self.limiter.queue(room_id):
if txn_id:
event = await self.get_event_from_transaction(
- requester, txn_id, event_dict["room_id"]
+ requester, txn_id, room_id
)
if event:
# we know it was persisted, so must have a stream ordering
@@ -1000,6 +1001,18 @@ class EventCreationHandler:
event.internal_metadata.stream_ordering,
)
+ # If we don't have any prev event IDs specified then we need to
+ # check that the host is in the room (as otherwise populating the
+ # prev events will fail), at which point we may as well check the
+ # local user is in the room.
+ if not prev_event_ids:
+ user_id = requester.user.to_string()
+ is_user_in_room = await self.store.check_local_user_in_room(
+ user_id, room_id
+ )
+ if not is_user_in_room:
+ raise AuthError(403, f"User {user_id} not in room {room_id}")
+
# Try several times, it could fail with PartialStateConflictError
# in handle_new_client_event, cf comment in except block.
max_retries = 5
|