2018-06-14 07:28:36 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import unittest
|
2021-07-14 09:13:40 -04:00
|
|
|
from typing import Optional
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2018-06-14 07:28:36 -04:00
|
|
|
from synapse import event_auth
|
2021-09-30 11:13:59 -04:00
|
|
|
from synapse.api.constants import EventContentFields
|
2018-06-14 07:28:36 -04:00
|
|
|
from synapse.api.errors import AuthError
|
2019-04-01 05:24:38 -04:00
|
|
|
from synapse.api.room_versions import RoomVersions
|
2021-07-14 09:13:40 -04:00
|
|
|
from synapse.events import EventBase, make_event_from_dict
|
|
|
|
from synapse.types import JsonDict, get_domain_from_id
|
2018-06-14 07:28:36 -04:00
|
|
|
|
|
|
|
|
|
|
|
class EventAuthTestCase(unittest.TestCase):
|
2021-10-18 13:28:30 -04:00
|
|
|
def test_rejected_auth_events(self):
|
|
|
|
"""
|
|
|
|
Events that refer to rejected events in their auth events are rejected
|
|
|
|
"""
|
|
|
|
creator = "@creator:example.com"
|
|
|
|
auth_events = [
|
|
|
|
_create_event(creator),
|
|
|
|
_join_event(creator),
|
|
|
|
]
|
|
|
|
|
|
|
|
# creator should be able to send state
|
|
|
|
event_auth.check_auth_rules_for_event(
|
|
|
|
RoomVersions.V9,
|
|
|
|
_random_state_event(creator),
|
|
|
|
auth_events,
|
|
|
|
)
|
|
|
|
|
|
|
|
# ... but a rejected join_rules event should cause it to be rejected
|
|
|
|
rejected_join_rules = _join_rules_event(creator, "public")
|
|
|
|
rejected_join_rules.rejected_reason = "stinky"
|
|
|
|
auth_events.append(rejected_join_rules)
|
|
|
|
|
|
|
|
self.assertRaises(
|
|
|
|
AuthError,
|
|
|
|
event_auth.check_auth_rules_for_event,
|
|
|
|
RoomVersions.V9,
|
|
|
|
_random_state_event(creator),
|
|
|
|
auth_events,
|
|
|
|
)
|
|
|
|
|
|
|
|
# ... even if there is *also* a good join rules
|
|
|
|
auth_events.append(_join_rules_event(creator, "public"))
|
|
|
|
|
|
|
|
self.assertRaises(
|
|
|
|
AuthError,
|
|
|
|
event_auth.check_auth_rules_for_event,
|
|
|
|
RoomVersions.V9,
|
|
|
|
_random_state_event(creator),
|
|
|
|
auth_events,
|
|
|
|
)
|
|
|
|
|
2018-06-14 07:28:36 -04:00
|
|
|
def test_random_users_cannot_send_state_before_first_pl(self):
|
|
|
|
"""
|
|
|
|
Check that, before the first PL lands, the creator is the only user
|
|
|
|
that can send a state event.
|
|
|
|
"""
|
|
|
|
creator = "@creator:example.com"
|
|
|
|
joiner = "@joiner:example.com"
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events = [
|
|
|
|
_create_event(creator),
|
|
|
|
_join_event(creator),
|
|
|
|
_join_event(joiner),
|
|
|
|
]
|
2018-06-14 07:28:36 -04:00
|
|
|
|
|
|
|
# creator should be able to send state
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2020-01-28 09:18:29 -05:00
|
|
|
RoomVersions.V1,
|
2019-05-10 01:12:11 -04:00
|
|
|
_random_state_event(creator),
|
|
|
|
auth_events,
|
2019-01-25 13:31:41 -05:00
|
|
|
)
|
2018-06-14 07:28:36 -04:00
|
|
|
|
|
|
|
# joiner should not be able to send state
|
|
|
|
self.assertRaises(
|
|
|
|
AuthError,
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event,
|
2020-01-28 09:18:29 -05:00
|
|
|
RoomVersions.V1,
|
2018-06-14 07:28:36 -04:00
|
|
|
_random_state_event(joiner),
|
|
|
|
auth_events,
|
2020-03-09 08:58:25 -04:00
|
|
|
)
|
2018-06-14 07:28:36 -04:00
|
|
|
|
|
|
|
def test_state_default_level(self):
|
|
|
|
"""
|
|
|
|
Check that users above the state_default level can send state and
|
|
|
|
those below cannot
|
|
|
|
"""
|
|
|
|
creator = "@creator:example.com"
|
|
|
|
pleb = "@joiner:example.com"
|
|
|
|
king = "@joiner2:example.com"
|
|
|
|
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events = [
|
|
|
|
_create_event(creator),
|
|
|
|
_join_event(creator),
|
|
|
|
_power_levels_event(
|
2018-08-10 09:54:09 -04:00
|
|
|
creator, {"state_default": "30", "users": {pleb: "29", king: "30"}}
|
|
|
|
),
|
2021-10-18 13:28:30 -04:00
|
|
|
_join_event(pleb),
|
|
|
|
_join_event(king),
|
|
|
|
]
|
2018-06-14 07:28:36 -04:00
|
|
|
|
|
|
|
# pleb should not be able to send state
|
|
|
|
self.assertRaises(
|
|
|
|
AuthError,
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event,
|
2020-01-28 09:18:29 -05:00
|
|
|
RoomVersions.V1,
|
2018-06-14 07:28:36 -04:00
|
|
|
_random_state_event(pleb),
|
|
|
|
auth_events,
|
|
|
|
),
|
|
|
|
|
|
|
|
# king should be able to send state
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-02-16 17:32:34 -05:00
|
|
|
RoomVersions.V1,
|
|
|
|
_random_state_event(king),
|
|
|
|
auth_events,
|
2019-01-25 13:31:41 -05:00
|
|
|
)
|
2018-06-14 07:28:36 -04:00
|
|
|
|
2020-03-09 08:58:25 -04:00
|
|
|
def test_alias_event(self):
|
|
|
|
"""Alias events have special behavior up through room version 6."""
|
|
|
|
creator = "@creator:example.com"
|
|
|
|
other = "@other:example.com"
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events = [
|
|
|
|
_create_event(creator),
|
|
|
|
_join_event(creator),
|
|
|
|
]
|
2020-03-09 08:58:25 -04:00
|
|
|
|
|
|
|
# creator should be able to send aliases
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-02-16 17:32:34 -05:00
|
|
|
RoomVersions.V1,
|
|
|
|
_alias_event(creator),
|
|
|
|
auth_events,
|
2020-03-09 08:58:25 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Reject an event with no state key.
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2020-03-09 08:58:25 -04:00
|
|
|
RoomVersions.V1,
|
|
|
|
_alias_event(creator, state_key=""),
|
|
|
|
auth_events,
|
|
|
|
)
|
|
|
|
|
|
|
|
# If the domain of the sender does not match the state key, reject.
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2020-03-09 08:58:25 -04:00
|
|
|
RoomVersions.V1,
|
|
|
|
_alias_event(creator, state_key="test.com"),
|
|
|
|
auth_events,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Note that the member does *not* need to be in the room.
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-02-16 17:32:34 -05:00
|
|
|
RoomVersions.V1,
|
|
|
|
_alias_event(other),
|
|
|
|
auth_events,
|
2020-03-09 08:58:25 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
def test_msc2432_alias_event(self):
|
|
|
|
"""After MSC2432, alias events have no special behavior."""
|
|
|
|
creator = "@creator:example.com"
|
|
|
|
other = "@other:example.com"
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events = [
|
|
|
|
_create_event(creator),
|
|
|
|
_join_event(creator),
|
|
|
|
]
|
2020-03-09 08:58:25 -04:00
|
|
|
|
|
|
|
# creator should be able to send aliases
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-02-16 17:32:34 -05:00
|
|
|
RoomVersions.V6,
|
|
|
|
_alias_event(creator),
|
|
|
|
auth_events,
|
2020-03-09 08:58:25 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# No particular checks are done on the state key.
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2020-05-15 09:30:10 -04:00
|
|
|
RoomVersions.V6,
|
2020-03-09 08:58:25 -04:00
|
|
|
_alias_event(creator, state_key=""),
|
|
|
|
auth_events,
|
|
|
|
)
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2020-05-15 09:30:10 -04:00
|
|
|
RoomVersions.V6,
|
2020-03-09 08:58:25 -04:00
|
|
|
_alias_event(creator, state_key="test.com"),
|
|
|
|
auth_events,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Per standard auth rules, the member must be in the room.
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-02-16 17:32:34 -05:00
|
|
|
RoomVersions.V6,
|
|
|
|
_alias_event(other),
|
|
|
|
auth_events,
|
2020-03-09 08:58:25 -04:00
|
|
|
)
|
|
|
|
|
2020-05-14 12:38:17 -04:00
|
|
|
def test_msc2209(self):
|
|
|
|
"""
|
|
|
|
Notifications power levels get checked due to MSC2209.
|
|
|
|
"""
|
|
|
|
creator = "@creator:example.com"
|
|
|
|
pleb = "@joiner:example.com"
|
|
|
|
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events = [
|
|
|
|
_create_event(creator),
|
|
|
|
_join_event(creator),
|
|
|
|
_power_levels_event(
|
2020-05-14 12:38:17 -04:00
|
|
|
creator, {"state_default": "30", "users": {pleb: "30"}}
|
|
|
|
),
|
2021-10-18 13:28:30 -04:00
|
|
|
_join_event(pleb),
|
|
|
|
]
|
2020-05-14 12:38:17 -04:00
|
|
|
|
|
|
|
# pleb should be able to modify the notifications power level.
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2020-05-14 12:38:17 -04:00
|
|
|
RoomVersions.V1,
|
|
|
|
_power_levels_event(pleb, {"notifications": {"room": 100}}),
|
|
|
|
auth_events,
|
|
|
|
)
|
|
|
|
|
|
|
|
# But an MSC2209 room rejects this change.
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2020-05-15 09:30:10 -04:00
|
|
|
RoomVersions.V6,
|
2020-05-14 12:38:17 -04:00
|
|
|
_power_levels_event(pleb, {"notifications": {"room": 100}}),
|
|
|
|
auth_events,
|
|
|
|
)
|
|
|
|
|
2021-03-31 16:39:08 -04:00
|
|
|
def test_join_rules_public(self):
|
|
|
|
"""
|
|
|
|
Test joining a public room.
|
|
|
|
"""
|
|
|
|
creator = "@creator:example.com"
|
|
|
|
pleb = "@joiner:example.com"
|
|
|
|
|
|
|
|
auth_events = {
|
|
|
|
("m.room.create", ""): _create_event(creator),
|
|
|
|
("m.room.member", creator): _join_event(creator),
|
|
|
|
("m.room.join_rules", ""): _join_rules_event(creator, "public"),
|
|
|
|
}
|
|
|
|
|
|
|
|
# Check join.
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# A user cannot be force-joined to a room.
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_member_event(pleb, "join", sender=creator),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Banned should be rejected.
|
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "ban")
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# A user who left can re-join.
|
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "leave")
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# A user can send a join if they're in the room.
|
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "join")
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# A user can accept an invite.
|
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(
|
|
|
|
pleb, "invite", sender=creator
|
|
|
|
)
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
def test_join_rules_invite(self):
|
|
|
|
"""
|
|
|
|
Test joining an invite only room.
|
|
|
|
"""
|
|
|
|
creator = "@creator:example.com"
|
|
|
|
pleb = "@joiner:example.com"
|
|
|
|
|
|
|
|
auth_events = {
|
|
|
|
("m.room.create", ""): _create_event(creator),
|
|
|
|
("m.room.member", creator): _join_event(creator),
|
|
|
|
("m.room.join_rules", ""): _join_rules_event(creator, "invite"),
|
|
|
|
}
|
|
|
|
|
|
|
|
# A join without an invite is rejected.
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# A user cannot be force-joined to a room.
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_member_event(pleb, "join", sender=creator),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Banned should be rejected.
|
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "ban")
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# A user who left cannot re-join.
|
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "leave")
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# A user can send a join if they're in the room.
|
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "join")
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# A user can accept an invite.
|
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(
|
|
|
|
pleb, "invite", sender=creator
|
|
|
|
)
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
def test_join_rules_msc3083_restricted(self):
|
|
|
|
"""
|
|
|
|
Test joining a restricted room from MSC3083.
|
|
|
|
|
2021-07-26 12:17:00 -04:00
|
|
|
This is similar to the public test, but has some additional checks on
|
|
|
|
signatures.
|
|
|
|
|
|
|
|
The checks which care about signatures fake them by simply adding an
|
|
|
|
object of the proper form, not generating valid signatures.
|
2021-03-31 16:39:08 -04:00
|
|
|
"""
|
|
|
|
creator = "@creator:example.com"
|
|
|
|
pleb = "@joiner:example.com"
|
|
|
|
|
|
|
|
auth_events = {
|
|
|
|
("m.room.create", ""): _create_event(creator),
|
|
|
|
("m.room.member", creator): _join_event(creator),
|
2021-07-26 12:17:00 -04:00
|
|
|
("m.room.power_levels", ""): _power_levels_event(creator, {"invite": 0}),
|
2021-03-31 16:39:08 -04:00
|
|
|
("m.room.join_rules", ""): _join_rules_event(creator, "restricted"),
|
|
|
|
}
|
|
|
|
|
|
|
|
# Older room versions don't understand this join rule
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-03-31 16:39:08 -04:00
|
|
|
RoomVersions.V6,
|
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
2021-07-26 12:17:00 -04:00
|
|
|
# A properly formatted join event should work.
|
|
|
|
authorised_join_event = _join_event(
|
|
|
|
pleb,
|
|
|
|
additional_content={
|
2021-09-30 11:13:59 -04:00
|
|
|
EventContentFields.AUTHORISING_USER: "@creator:example.com"
|
2021-07-26 12:17:00 -04:00
|
|
|
},
|
|
|
|
)
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-08-09 04:46:39 -04:00
|
|
|
RoomVersions.V8,
|
2021-07-26 12:17:00 -04:00
|
|
|
authorised_join_event,
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
2021-07-26 12:17:00 -04:00
|
|
|
# A join issued by a specific user works (i.e. the power level checks
|
|
|
|
# are done properly).
|
|
|
|
pl_auth_events = auth_events.copy()
|
|
|
|
pl_auth_events[("m.room.power_levels", "")] = _power_levels_event(
|
|
|
|
creator, {"invite": 100, "users": {"@inviter:foo.test": 150}}
|
|
|
|
)
|
|
|
|
pl_auth_events[("m.room.member", "@inviter:foo.test")] = _join_event(
|
|
|
|
"@inviter:foo.test"
|
|
|
|
)
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-08-09 04:46:39 -04:00
|
|
|
RoomVersions.V8,
|
2021-07-26 12:17:00 -04:00
|
|
|
_join_event(
|
|
|
|
pleb,
|
|
|
|
additional_content={
|
2021-09-30 11:13:59 -04:00
|
|
|
EventContentFields.AUTHORISING_USER: "@inviter:foo.test"
|
2021-07-26 12:17:00 -04:00
|
|
|
},
|
|
|
|
),
|
2021-10-18 13:28:30 -04:00
|
|
|
pl_auth_events.values(),
|
2021-07-26 12:17:00 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# A join which is missing an authorised server is rejected.
|
2021-03-31 16:39:08 -04:00
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-08-09 04:46:39 -04:00
|
|
|
RoomVersions.V8,
|
2021-07-26 12:17:00 -04:00
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-07-26 12:17:00 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# An join authorised by a user who is not in the room is rejected.
|
|
|
|
pl_auth_events = auth_events.copy()
|
|
|
|
pl_auth_events[("m.room.power_levels", "")] = _power_levels_event(
|
|
|
|
creator, {"invite": 100, "users": {"@other:example.com": 150}}
|
|
|
|
)
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-08-09 04:46:39 -04:00
|
|
|
RoomVersions.V8,
|
2021-07-26 12:17:00 -04:00
|
|
|
_join_event(
|
|
|
|
pleb,
|
|
|
|
additional_content={
|
2021-09-30 11:13:59 -04:00
|
|
|
EventContentFields.AUTHORISING_USER: "@other:example.com"
|
2021-07-26 12:17:00 -04:00
|
|
|
},
|
|
|
|
),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-07-26 12:17:00 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# A user cannot be force-joined to a room. (This uses an event which
|
|
|
|
# *would* be valid, but is sent be a different user.)
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-08-09 04:46:39 -04:00
|
|
|
RoomVersions.V8,
|
2021-07-26 12:17:00 -04:00
|
|
|
_member_event(
|
|
|
|
pleb,
|
|
|
|
"join",
|
|
|
|
sender=creator,
|
|
|
|
additional_content={
|
2021-09-30 11:13:59 -04:00
|
|
|
EventContentFields.AUTHORISING_USER: "@inviter:foo.test"
|
2021-07-26 12:17:00 -04:00
|
|
|
},
|
|
|
|
),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Banned should be rejected.
|
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "ban")
|
|
|
|
with self.assertRaises(AuthError):
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-08-09 04:46:39 -04:00
|
|
|
RoomVersions.V8,
|
2021-07-26 12:17:00 -04:00
|
|
|
authorised_join_event,
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# A user who left can re-join.
|
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "leave")
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-08-09 04:46:39 -04:00
|
|
|
RoomVersions.V8,
|
2021-07-26 12:17:00 -04:00
|
|
|
authorised_join_event,
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
2021-07-26 12:17:00 -04:00
|
|
|
# A user can send a join if they're in the room. (This doesn't need to
|
|
|
|
# be authorised since the user is already joined.)
|
2021-03-31 16:39:08 -04:00
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(pleb, "join")
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-08-09 04:46:39 -04:00
|
|
|
RoomVersions.V8,
|
2021-03-31 16:39:08 -04:00
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
2021-07-26 12:17:00 -04:00
|
|
|
# A user can accept an invite. (This doesn't need to be authorised since
|
|
|
|
# the user was invited.)
|
2021-03-31 16:39:08 -04:00
|
|
|
auth_events[("m.room.member", pleb)] = _member_event(
|
|
|
|
pleb, "invite", sender=creator
|
|
|
|
)
|
Split `event_auth.check` into two parts (#10940)
Broadly, the existing `event_auth.check` function has two parts:
* a validation section: checks that the event isn't too big, that it has the rught signatures, etc.
This bit is independent of the rest of the state in the room, and so need only be done once
for each event.
* an auth section: ensures that the event is allowed, given the rest of the state in the room.
This gets done multiple times, against various sets of room state, because it forms part of
the state res algorithm.
Currently, this is implemented with `do_sig_check` and `do_size_check` parameters, but I think
that makes everything hard to follow. Instead, we split the function in two and call each part
separately where it is needed.
2021-09-29 13:59:15 -04:00
|
|
|
event_auth.check_auth_rules_for_event(
|
2021-08-09 04:46:39 -04:00
|
|
|
RoomVersions.V8,
|
2021-03-31 16:39:08 -04:00
|
|
|
_join_event(pleb),
|
2021-10-18 13:28:30 -04:00
|
|
|
auth_events.values(),
|
2021-03-31 16:39:08 -04:00
|
|
|
)
|
|
|
|
|
2018-06-14 07:28:36 -04:00
|
|
|
|
|
|
|
# helpers for making events
|
|
|
|
|
|
|
|
TEST_ROOM_ID = "!test:room"
|
|
|
|
|
|
|
|
|
2021-07-14 09:13:40 -04:00
|
|
|
def _create_event(user_id: str) -> EventBase:
|
2020-02-07 10:30:04 -05:00
|
|
|
return make_event_from_dict(
|
2018-08-10 09:54:09 -04:00
|
|
|
{
|
|
|
|
"room_id": TEST_ROOM_ID,
|
|
|
|
"event_id": _get_event_id(),
|
|
|
|
"type": "m.room.create",
|
2021-10-18 13:28:30 -04:00
|
|
|
"state_key": "",
|
2018-08-10 09:54:09 -04:00
|
|
|
"sender": user_id,
|
|
|
|
"content": {"creator": user_id},
|
|
|
|
}
|
|
|
|
)
|
2018-06-14 07:28:36 -04:00
|
|
|
|
|
|
|
|
2021-07-14 09:13:40 -04:00
|
|
|
def _member_event(
|
2021-07-26 12:17:00 -04:00
|
|
|
user_id: str,
|
|
|
|
membership: str,
|
|
|
|
sender: Optional[str] = None,
|
|
|
|
additional_content: Optional[dict] = None,
|
2021-07-14 09:13:40 -04:00
|
|
|
) -> EventBase:
|
2020-02-07 10:30:04 -05:00
|
|
|
return make_event_from_dict(
|
2018-08-10 09:54:09 -04:00
|
|
|
{
|
|
|
|
"room_id": TEST_ROOM_ID,
|
|
|
|
"event_id": _get_event_id(),
|
|
|
|
"type": "m.room.member",
|
2021-03-31 16:39:08 -04:00
|
|
|
"sender": sender or user_id,
|
2018-08-10 09:54:09 -04:00
|
|
|
"state_key": user_id,
|
2021-07-26 12:17:00 -04:00
|
|
|
"content": {"membership": membership, **(additional_content or {})},
|
2021-03-31 16:39:08 -04:00
|
|
|
"prev_events": [],
|
2018-08-10 09:54:09 -04:00
|
|
|
}
|
|
|
|
)
|
2018-06-14 07:28:36 -04:00
|
|
|
|
|
|
|
|
2021-07-26 12:17:00 -04:00
|
|
|
def _join_event(user_id: str, additional_content: Optional[dict] = None) -> EventBase:
|
|
|
|
return _member_event(user_id, "join", additional_content=additional_content)
|
2021-03-31 16:39:08 -04:00
|
|
|
|
|
|
|
|
2021-07-14 09:13:40 -04:00
|
|
|
def _power_levels_event(sender: str, content: JsonDict) -> EventBase:
|
2020-02-07 10:30:04 -05:00
|
|
|
return make_event_from_dict(
|
2018-08-10 09:54:09 -04:00
|
|
|
{
|
|
|
|
"room_id": TEST_ROOM_ID,
|
|
|
|
"event_id": _get_event_id(),
|
|
|
|
"type": "m.room.power_levels",
|
|
|
|
"sender": sender,
|
|
|
|
"state_key": "",
|
|
|
|
"content": content,
|
|
|
|
}
|
|
|
|
)
|
2018-06-14 07:28:36 -04:00
|
|
|
|
|
|
|
|
2021-07-14 09:13:40 -04:00
|
|
|
def _alias_event(sender: str, **kwargs) -> EventBase:
|
2020-03-09 08:58:25 -04:00
|
|
|
data = {
|
|
|
|
"room_id": TEST_ROOM_ID,
|
|
|
|
"event_id": _get_event_id(),
|
|
|
|
"type": "m.room.aliases",
|
|
|
|
"sender": sender,
|
|
|
|
"state_key": get_domain_from_id(sender),
|
|
|
|
"content": {"aliases": []},
|
|
|
|
}
|
|
|
|
data.update(**kwargs)
|
|
|
|
return make_event_from_dict(data)
|
|
|
|
|
|
|
|
|
2021-07-14 09:13:40 -04:00
|
|
|
def _random_state_event(sender: str) -> EventBase:
|
2020-02-07 10:30:04 -05:00
|
|
|
return make_event_from_dict(
|
2018-08-10 09:54:09 -04:00
|
|
|
{
|
|
|
|
"room_id": TEST_ROOM_ID,
|
|
|
|
"event_id": _get_event_id(),
|
|
|
|
"type": "test.state",
|
|
|
|
"sender": sender,
|
|
|
|
"state_key": "",
|
|
|
|
"content": {"membership": "join"},
|
|
|
|
}
|
|
|
|
)
|
2018-06-14 07:28:36 -04:00
|
|
|
|
|
|
|
|
2021-07-14 09:13:40 -04:00
|
|
|
def _join_rules_event(sender: str, join_rule: str) -> EventBase:
|
2021-03-31 16:39:08 -04:00
|
|
|
return make_event_from_dict(
|
|
|
|
{
|
|
|
|
"room_id": TEST_ROOM_ID,
|
|
|
|
"event_id": _get_event_id(),
|
|
|
|
"type": "m.room.join_rules",
|
|
|
|
"sender": sender,
|
|
|
|
"state_key": "",
|
|
|
|
"content": {
|
|
|
|
"join_rule": join_rule,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-06-14 07:28:36 -04:00
|
|
|
event_count = 0
|
|
|
|
|
|
|
|
|
2021-07-14 09:13:40 -04:00
|
|
|
def _get_event_id() -> str:
|
2018-06-14 07:28:36 -04:00
|
|
|
global event_count
|
|
|
|
c = event_count
|
|
|
|
event_count += 1
|
2018-08-10 09:54:09 -04:00
|
|
|
return "!%i:example.com" % (c,)
|