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

Commit

Permalink
Reject attempts to join empty rooms over federation
Browse files Browse the repository at this point in the history
We shouldn't allow others to make_join through us if we've left the room;
reject such attempts with a 404.

Fixes #7835. Fixes #6958.
  • Loading branch information
richvdh committed Jul 15, 2020
1 parent 8c7d0f1 commit df04bff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/7859.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix a bug which allowed empty rooms to be rejoined over federation.
15 changes: 13 additions & 2 deletions synapse/handlers/federation.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
FederationDeniedError,
FederationError,
HttpResponseException,
NotFoundError,
RequestSendFailed,
SynapseError,
)
Expand Down Expand Up @@ -1439,10 +1440,20 @@ async def on_make_join_request(
)
raise SynapseError(403, "User not from origin", Codes.FORBIDDEN)

event_content = {"membership": Membership.JOIN}

# checking the room version will check that we've actually heard of the room
# (and return a 404 otherwise)
room_version = await self.store.get_room_version_id(room_id)

# now check that we are *still* in the room
is_in_room = await self.auth.check_host_in_room(room_id, self.server_name)
if not is_in_room:
logger.info(
"Got /make_join request for room %s we are no longer in", room_id,
)
raise NotFoundError("Not an active room on this server")

event_content = {"membership": Membership.JOIN}

builder = self.event_builder_factory.new(
room_version,
{
Expand Down

0 comments on commit df04bff

Please sign in to comment.