2017-01-13 10:07:32 -05:00
|
|
|
|
# Copyright 2014 - 2016 OpenMarket Ltd
|
2020-01-28 09:18:29 -05:00
|
|
|
|
# Copyright 2020 The Matrix.org Foundation C.I.C.
|
2017-01-13 10:07:32 -05:00
|
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
|
import logging
|
2022-02-11 08:07:55 -05:00
|
|
|
|
import typing
|
2022-06-15 14:48:22 -04:00
|
|
|
|
from typing import Any, Collection, Dict, Iterable, List, Optional, Set, Tuple, Union
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
from canonicaljson import encode_canonical_json
|
|
|
|
|
from signedjson.key import decode_verify_key_bytes
|
2018-07-09 02:09:20 -04:00
|
|
|
|
from signedjson.sign import SignatureVerifyException, verify_signed_json
|
2022-06-15 14:48:22 -04:00
|
|
|
|
from typing_extensions import Protocol
|
2017-01-13 10:07:32 -05:00
|
|
|
|
from unpaddedbase64 import decode_base64
|
|
|
|
|
|
2021-09-08 10:00:43 -04:00
|
|
|
|
from synapse.api.constants import (
|
|
|
|
|
MAX_PDU_SIZE,
|
|
|
|
|
EventContentFields,
|
|
|
|
|
EventTypes,
|
|
|
|
|
JoinRules,
|
|
|
|
|
Membership,
|
|
|
|
|
)
|
2022-07-27 08:44:40 -04:00
|
|
|
|
from synapse.api.errors import (
|
|
|
|
|
AuthError,
|
|
|
|
|
Codes,
|
|
|
|
|
EventSizeError,
|
|
|
|
|
SynapseError,
|
|
|
|
|
UnstableSpecAuthError,
|
|
|
|
|
)
|
2020-01-28 09:18:29 -05:00
|
|
|
|
from synapse.api.room_versions import (
|
|
|
|
|
KNOWN_ROOM_VERSIONS,
|
|
|
|
|
EventFormatVersions,
|
|
|
|
|
RoomVersion,
|
|
|
|
|
)
|
2022-06-15 14:48:22 -04:00
|
|
|
|
from synapse.storage.databases.main.events_worker import EventRedactBehaviour
|
|
|
|
|
from synapse.types import MutableStateMap, StateMap, UserID, get_domain_from_id
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2022-02-11 08:07:55 -05:00
|
|
|
|
if typing.TYPE_CHECKING:
|
|
|
|
|
# conditional imports to avoid import cycle
|
|
|
|
|
from synapse.events import EventBase
|
|
|
|
|
from synapse.events.builder import EventBuilder
|
|
|
|
|
|
2017-01-13 10:07:32 -05:00
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
2022-06-15 14:48:22 -04:00
|
|
|
|
class _EventSourceStore(Protocol):
|
|
|
|
|
async def get_events(
|
|
|
|
|
self,
|
|
|
|
|
event_ids: Collection[str],
|
|
|
|
|
redact_behaviour: EventRedactBehaviour,
|
|
|
|
|
get_prev_content: bool = False,
|
|
|
|
|
allow_rejected: bool = False,
|
|
|
|
|
) -> Dict[str, "EventBase"]:
|
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
|
2022-06-09 10:51:34 -04:00
|
|
|
|
def validate_event_for_room_version(event: "EventBase") -> None:
|
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
|
|
|
|
"""Ensure that the event complies with the limits, and has the right signatures
|
|
|
|
|
|
|
|
|
|
NB: does not *validate* the signatures - it assumes that any signatures present
|
|
|
|
|
have already been checked.
|
|
|
|
|
|
|
|
|
|
NB: it does not check that the event satisfies the auth rules (that is done in
|
|
|
|
|
check_auth_rules_for_event) - these tests are independent of the rest of the state
|
|
|
|
|
in the room.
|
|
|
|
|
|
|
|
|
|
NB: This is used to check events that have been received over federation. As such,
|
|
|
|
|
it can only enforce the checks specified in the relevant room version, to avoid
|
|
|
|
|
a split-brain situation where some servers accept such events, and others reject
|
2022-06-09 10:51:34 -04:00
|
|
|
|
them. See also EventValidator, which contains extra checks which are applied only to
|
|
|
|
|
locally-generated events.
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
Args:
|
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: the event to be checked
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2018-06-14 07:26:17 -04:00
|
|
|
|
Raises:
|
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
|
|
|
|
SynapseError if there is a problem with the event
|
2017-01-13 10:07:32 -05: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
|
|
|
|
_check_size_limits(event)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
if not hasattr(event, "room_id"):
|
|
|
|
|
raise AuthError(500, "Event has no room_id: %s" % event)
|
|
|
|
|
|
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
|
|
|
|
# check that the event has the correct signatures
|
|
|
|
|
sender_domain = get_domain_from_id(event.sender)
|
|
|
|
|
|
|
|
|
|
is_invite_via_3pid = (
|
|
|
|
|
event.type == EventTypes.Member
|
|
|
|
|
and event.membership == Membership.INVITE
|
|
|
|
|
and "third_party_invite" in event.content
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Check the sender's domain has signed the event
|
|
|
|
|
if not event.signatures.get(sender_domain):
|
|
|
|
|
# We allow invites via 3pid to have a sender from a different
|
|
|
|
|
# HS, as the sender must match the sender of the original
|
|
|
|
|
# 3pid invite. This is checked further down with the
|
|
|
|
|
# other dedicated membership checks.
|
|
|
|
|
if not is_invite_via_3pid:
|
|
|
|
|
raise AuthError(403, "Event not signed by sender's server")
|
|
|
|
|
|
2022-09-07 06:08:20 -04:00
|
|
|
|
if event.format_version in (EventFormatVersions.ROOM_V1_V2,):
|
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
|
|
|
|
# Only older room versions have event IDs to check.
|
|
|
|
|
event_id_domain = get_domain_from_id(event.event_id)
|
|
|
|
|
|
|
|
|
|
# Check the origin domain has signed the event
|
|
|
|
|
if not event.signatures.get(event_id_domain):
|
|
|
|
|
raise AuthError(403, "Event not signed by sending server")
|
|
|
|
|
|
|
|
|
|
is_invite_via_allow_rule = (
|
2022-06-09 10:51:34 -04:00
|
|
|
|
event.room_version.msc3083_join_rules
|
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
|
|
|
|
and event.type == EventTypes.Member
|
|
|
|
|
and event.membership == Membership.JOIN
|
2021-09-30 11:13:59 -04:00
|
|
|
|
and EventContentFields.AUTHORISING_USER in event.content
|
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
|
|
|
|
)
|
|
|
|
|
if is_invite_via_allow_rule:
|
|
|
|
|
authoriser_domain = get_domain_from_id(
|
2021-09-30 11:13:59 -04:00
|
|
|
|
event.content[EventContentFields.AUTHORISING_USER]
|
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
|
|
|
|
)
|
|
|
|
|
if not event.signatures.get(authoriser_domain):
|
|
|
|
|
raise AuthError(403, "Event not signed by authorising server")
|
|
|
|
|
|
|
|
|
|
|
2022-06-15 14:48:22 -04:00
|
|
|
|
async def check_state_independent_auth_rules(
|
|
|
|
|
store: _EventSourceStore,
|
2022-02-11 08:07:55 -05:00
|
|
|
|
event: "EventBase",
|
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
|
|
|
|
) -> None:
|
2022-06-15 14:48:22 -04:00
|
|
|
|
"""Check that an event complies with auth rules that are independent of room 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
|
|
|
|
|
2022-06-15 14:48:22 -04:00
|
|
|
|
Runs through the first few auth rules, which are independent of room state. (Which
|
|
|
|
|
means that we only need to them once for each received event)
|
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
|
|
|
|
|
|
|
|
|
Args:
|
2022-06-15 14:48:22 -04:00
|
|
|
|
store: the datastore; used to fetch the auth events for validation
|
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: the event being checked.
|
|
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
|
AuthError if the checks fail
|
|
|
|
|
"""
|
2022-06-17 09:56:46 -04:00
|
|
|
|
# Implementation of https://spec.matrix.org/v1.2/rooms/v9/#authorization-rules
|
|
|
|
|
|
|
|
|
|
# 1. If type is m.room.create:
|
|
|
|
|
if event.type == EventTypes.Create:
|
|
|
|
|
_check_create(event)
|
|
|
|
|
|
|
|
|
|
# 1.5 Otherwise, allow
|
|
|
|
|
return
|
|
|
|
|
|
2022-06-17 11:30:59 -04:00
|
|
|
|
# 2. Reject if event has auth_events that: ...
|
2022-06-15 14:48:22 -04:00
|
|
|
|
auth_events = await store.get_events(
|
|
|
|
|
event.auth_event_ids(),
|
|
|
|
|
redact_behaviour=EventRedactBehaviour.as_is,
|
|
|
|
|
allow_rejected=True,
|
|
|
|
|
)
|
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
|
|
|
|
room_id = event.room_id
|
2022-06-15 14:48:22 -04:00
|
|
|
|
auth_dict: MutableStateMap[str] = {}
|
2022-06-17 11:30:59 -04:00
|
|
|
|
expected_auth_types = auth_types_for_event(event.room_version, event)
|
2022-06-15 14:48:22 -04:00
|
|
|
|
for auth_event_id in event.auth_event_ids():
|
|
|
|
|
auth_event = auth_events.get(auth_event_id)
|
|
|
|
|
|
|
|
|
|
# we should have all the auth events by now, so if we do not, that suggests
|
|
|
|
|
# a synapse programming error
|
|
|
|
|
if auth_event is None:
|
|
|
|
|
raise RuntimeError(
|
|
|
|
|
f"Event {event.event_id} has unknown auth event {auth_event_id}"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# We need to ensure that the auth events are actually for the same room, to
|
|
|
|
|
# stop people from using powers they've been granted in other rooms for
|
|
|
|
|
# example.
|
2019-12-13 06:44:41 -05:00
|
|
|
|
if auth_event.room_id != room_id:
|
2020-07-10 13:15:35 -04:00
|
|
|
|
raise AuthError(
|
|
|
|
|
403,
|
2019-12-13 06:44:41 -05:00
|
|
|
|
"During auth for event %s in room %s, found event %s in the state "
|
|
|
|
|
"which is in room %s"
|
2022-06-15 14:48:22 -04:00
|
|
|
|
% (event.event_id, room_id, auth_event_id, auth_event.room_id),
|
2019-12-13 06:44:41 -05:00
|
|
|
|
)
|
2022-06-15 14:48:22 -04:00
|
|
|
|
|
2022-06-17 11:30:59 -04:00
|
|
|
|
k = (auth_event.type, auth_event.state_key)
|
|
|
|
|
|
|
|
|
|
# 2.1 ... have duplicate entries for a given type and state_key pair
|
|
|
|
|
if k in auth_dict:
|
|
|
|
|
raise AuthError(
|
|
|
|
|
403,
|
|
|
|
|
f"Event {event.event_id} has duplicate auth_events for {k}: {auth_dict[k]} and {auth_event_id}",
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# 2.2 ... have entries whose type and state_key don’t match those specified by
|
|
|
|
|
# the auth events selection algorithm described in the server
|
|
|
|
|
# specification.
|
|
|
|
|
if k not in expected_auth_types:
|
|
|
|
|
raise AuthError(
|
|
|
|
|
403,
|
|
|
|
|
f"Event {event.event_id} has unexpected auth_event for {k}: {auth_event_id}",
|
|
|
|
|
)
|
|
|
|
|
|
2022-06-15 14:48:22 -04:00
|
|
|
|
# We also need to check that the auth event itself is not rejected.
|
2021-10-05 08:23:29 -04:00
|
|
|
|
if auth_event.rejected_reason:
|
|
|
|
|
raise AuthError(
|
|
|
|
|
403,
|
|
|
|
|
"During auth for event %s: found rejected event %s in the state"
|
|
|
|
|
% (event.event_id, auth_event.event_id),
|
|
|
|
|
)
|
2019-12-13 06:44:41 -05:00
|
|
|
|
|
2022-06-17 11:30:59 -04:00
|
|
|
|
auth_dict[k] = auth_event_id
|
2022-06-15 14:48:22 -04:00
|
|
|
|
|
2020-01-27 11:14:54 -05:00
|
|
|
|
# 3. If event does not have a m.room.create in its auth_events, reject.
|
2021-10-18 13:28:30 -04:00
|
|
|
|
creation_event = auth_dict.get((EventTypes.Create, ""), None)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if not creation_event:
|
2019-06-20 05:32:02 -04:00
|
|
|
|
raise AuthError(403, "No create event in auth events")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2022-06-15 14:48:22 -04:00
|
|
|
|
|
|
|
|
|
def check_state_dependent_auth_rules(
|
|
|
|
|
event: "EventBase",
|
|
|
|
|
auth_events: Iterable["EventBase"],
|
|
|
|
|
) -> None:
|
|
|
|
|
"""Check that an event complies with auth rules that depend on room state
|
|
|
|
|
|
|
|
|
|
Runs through the parts of the auth rules that check an event against bits of room
|
|
|
|
|
state.
|
|
|
|
|
|
|
|
|
|
Note:
|
|
|
|
|
|
|
|
|
|
- it's fine for use in state resolution, when we have already decided whether to
|
|
|
|
|
accept the event or not, and are now trying to decide whether it should make it
|
|
|
|
|
into the room state
|
|
|
|
|
|
|
|
|
|
- when we're doing the initial event auth, it is only suitable in combination with
|
|
|
|
|
a bunch of other tests (including, but not limited to, check_state_independent_auth_rules).
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
event: the event being checked.
|
|
|
|
|
auth_events: the room state to check the events against.
|
|
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
|
AuthError if the checks fail
|
|
|
|
|
"""
|
|
|
|
|
# there are no state-dependent auth rules for create events.
|
|
|
|
|
if event.type == EventTypes.Create:
|
|
|
|
|
logger.debug("Allowing! %s", event)
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
auth_dict = {(e.type, e.state_key): e for e in auth_events}
|
|
|
|
|
|
2020-01-27 11:14:54 -05:00
|
|
|
|
# additional check for m.federate
|
2017-01-13 10:07:32 -05:00
|
|
|
|
creating_domain = get_domain_from_id(event.room_id)
|
|
|
|
|
originating_domain = get_domain_from_id(event.sender)
|
|
|
|
|
if creating_domain != originating_domain:
|
2021-10-18 13:28:30 -04:00
|
|
|
|
if not _can_federate(event, auth_dict):
|
2019-06-20 05:32:02 -04:00
|
|
|
|
raise AuthError(403, "This room has been marked as unfederatable.")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2020-01-27 11:14:54 -05:00
|
|
|
|
# 4. If type is m.room.aliases
|
2022-06-10 05:48:25 -04:00
|
|
|
|
if (
|
|
|
|
|
event.type == EventTypes.Aliases
|
|
|
|
|
and event.room_version.special_case_aliases_auth
|
|
|
|
|
):
|
2020-01-27 11:14:54 -05:00
|
|
|
|
# 4a. If event has no state_key, reject
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if not event.is_state():
|
2019-06-20 05:32:02 -04:00
|
|
|
|
raise AuthError(403, "Alias event must be a state event")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if not event.state_key:
|
2019-06-20 05:32:02 -04:00
|
|
|
|
raise AuthError(403, "Alias event must have non-empty state_key")
|
2020-01-27 11:14:54 -05:00
|
|
|
|
|
|
|
|
|
# 4b. If sender's domain doesn't matches [sic] state_key, reject
|
2017-01-13 10:07:32 -05:00
|
|
|
|
sender_domain = get_domain_from_id(event.sender)
|
|
|
|
|
if event.state_key != sender_domain:
|
|
|
|
|
raise AuthError(
|
2019-06-20 05:32:02 -04:00
|
|
|
|
403, "Alias event's state_key does not match sender's domain"
|
2017-01-13 10:07:32 -05:00
|
|
|
|
)
|
2020-01-27 11:14:54 -05:00
|
|
|
|
|
|
|
|
|
# 4c. Otherwise, allow.
|
2020-03-09 08:58:25 -04:00
|
|
|
|
logger.debug("Allowing! %s", event)
|
|
|
|
|
return
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2021-06-09 14:39:51 -04:00
|
|
|
|
# 5. If type is m.room.membership
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if event.type == EventTypes.Member:
|
2022-06-10 05:48:25 -04:00
|
|
|
|
_is_membership_change_allowed(event.room_version, event, auth_dict)
|
2018-06-14 07:26:17 -04:00
|
|
|
|
logger.debug("Allowing! %s", event)
|
|
|
|
|
return
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2021-10-18 13:28:30 -04:00
|
|
|
|
_check_event_sender_in_room(event, auth_dict)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
# Special case to allow m.room.third_party_invite events wherever
|
|
|
|
|
# a user is allowed to issue invites. Fixes
|
|
|
|
|
# https://github.com/vector-im/vector-web/issues/1208 hopefully
|
|
|
|
|
if event.type == EventTypes.ThirdPartyInvite:
|
2021-10-18 13:28:30 -04:00
|
|
|
|
user_level = get_user_power_level(event.user_id, auth_dict)
|
|
|
|
|
invite_level = get_named_level(auth_dict, "invite", 0)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
if user_level < invite_level:
|
2022-07-27 08:44:40 -04:00
|
|
|
|
raise UnstableSpecAuthError(
|
|
|
|
|
403,
|
|
|
|
|
"You don't have permission to invite users",
|
|
|
|
|
errcode=Codes.INSUFFICIENT_POWER,
|
|
|
|
|
)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
else:
|
2018-06-14 07:26:17 -04:00
|
|
|
|
logger.debug("Allowing! %s", event)
|
|
|
|
|
return
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2021-10-18 13:28:30 -04:00
|
|
|
|
_can_send_event(event, auth_dict)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
if event.type == EventTypes.PowerLevels:
|
2022-06-10 05:48:25 -04:00
|
|
|
|
_check_power_levels(event.room_version, event, auth_dict)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
if event.type == EventTypes.Redaction:
|
2022-06-10 05:48:25 -04:00
|
|
|
|
check_redaction(event.room_version, event, auth_dict)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2021-07-28 11:46:37 -04:00
|
|
|
|
if (
|
|
|
|
|
event.type == EventTypes.MSC2716_INSERTION
|
2021-09-21 16:06:28 -04:00
|
|
|
|
or event.type == EventTypes.MSC2716_BATCH
|
2021-07-28 11:46:37 -04:00
|
|
|
|
or event.type == EventTypes.MSC2716_MARKER
|
|
|
|
|
):
|
2022-06-10 05:48:25 -04:00
|
|
|
|
check_historical(event.room_version, event, auth_dict)
|
2021-07-28 11:46:37 -04:00
|
|
|
|
|
2017-01-13 10:07:32 -05:00
|
|
|
|
logger.debug("Allowing! %s", event)
|
|
|
|
|
|
|
|
|
|
|
2022-02-11 08:07:55 -05:00
|
|
|
|
def _check_size_limits(event: "EventBase") -> None:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if len(event.user_id) > 255:
|
2021-09-06 09:35:56 -04:00
|
|
|
|
raise EventSizeError("'user_id' too large")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if len(event.room_id) > 255:
|
2021-09-06 09:35:56 -04:00
|
|
|
|
raise EventSizeError("'room_id' too large")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if event.is_state() and len(event.state_key) > 255:
|
2021-09-06 09:35:56 -04:00
|
|
|
|
raise EventSizeError("'state_key' too large")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if len(event.type) > 255:
|
2021-09-06 09:35:56 -04:00
|
|
|
|
raise EventSizeError("'type' too large")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if len(event.event_id) > 255:
|
2021-09-06 09:35:56 -04:00
|
|
|
|
raise EventSizeError("'event_id' too large")
|
2021-04-23 14:20:44 -04:00
|
|
|
|
if len(encode_canonical_json(event.get_pdu_json())) > MAX_PDU_SIZE:
|
2021-09-06 09:35:56 -04:00
|
|
|
|
raise EventSizeError("event too large")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
|
2022-06-17 09:56:46 -04:00
|
|
|
|
def _check_create(event: "EventBase") -> None:
|
|
|
|
|
"""Implementation of the auth rules for m.room.create events
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
event: The `m.room.create` event to be checked
|
|
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
|
AuthError if the event does not pass the auth rules
|
|
|
|
|
"""
|
|
|
|
|
assert event.type == EventTypes.Create
|
|
|
|
|
|
|
|
|
|
# 1.1 If it has any previous events, reject.
|
|
|
|
|
if event.prev_event_ids():
|
|
|
|
|
raise AuthError(403, "Create event has prev events")
|
|
|
|
|
|
|
|
|
|
# 1.2 If the domain of the room_id does not match the domain of the sender,
|
|
|
|
|
# reject.
|
|
|
|
|
sender_domain = get_domain_from_id(event.sender)
|
|
|
|
|
room_id_domain = get_domain_from_id(event.room_id)
|
|
|
|
|
if room_id_domain != sender_domain:
|
|
|
|
|
raise AuthError(403, "Creation event's room_id domain does not match sender's")
|
|
|
|
|
|
|
|
|
|
# 1.3 If content.room_version is present and is not a recognised version, reject
|
|
|
|
|
room_version_prop = event.content.get("room_version", "1")
|
|
|
|
|
if room_version_prop not in KNOWN_ROOM_VERSIONS:
|
|
|
|
|
raise AuthError(
|
|
|
|
|
403,
|
|
|
|
|
"room appears to have unsupported version %s" % (room_version_prop,),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# 1.4 If content has no creator field, reject.
|
|
|
|
|
if EventContentFields.ROOM_CREATOR not in event.content:
|
|
|
|
|
raise AuthError(403, "Create event lacks a 'creator' property")
|
|
|
|
|
|
|
|
|
|
|
2022-02-11 08:07:55 -05:00
|
|
|
|
def _can_federate(event: "EventBase", auth_events: StateMap["EventBase"]) -> bool:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
creation_event = auth_events.get((EventTypes.Create, ""))
|
2020-05-15 11:19:43 -04:00
|
|
|
|
# There should always be a creation event, but if not don't federate.
|
|
|
|
|
if not creation_event:
|
|
|
|
|
return False
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2021-09-08 10:00:43 -04:00
|
|
|
|
return creation_event.content.get(EventContentFields.FEDERATE, True) is True
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
|
2020-05-15 11:19:43 -04:00
|
|
|
|
def _is_membership_change_allowed(
|
2022-02-11 08:07:55 -05:00
|
|
|
|
room_version: RoomVersion, event: "EventBase", auth_events: StateMap["EventBase"]
|
2020-05-15 11:19:43 -04:00
|
|
|
|
) -> None:
|
2021-03-31 16:39:08 -04:00
|
|
|
|
"""
|
|
|
|
|
Confirms that the event which changes membership is an allowed change.
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
room_version: The version of the room.
|
|
|
|
|
event: The event to check.
|
|
|
|
|
auth_events: The current auth events of the room.
|
|
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
|
AuthError if the event is not allowed.
|
|
|
|
|
"""
|
2017-01-13 10:07:32 -05:00
|
|
|
|
membership = event.content["membership"]
|
|
|
|
|
|
|
|
|
|
# Check if this is the room creator joining:
|
2018-11-05 08:35:15 -05:00
|
|
|
|
if len(event.prev_event_ids()) == 1 and Membership.JOIN == membership:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
# Get room creation event:
|
2019-06-20 05:32:02 -04:00
|
|
|
|
key = (EventTypes.Create, "")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
create = auth_events.get(key)
|
2018-11-05 08:35:15 -05:00
|
|
|
|
if create and event.prev_event_ids()[0] == create.event_id:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if create.content["creator"] == event.state_key:
|
2018-06-14 07:26:17 -04:00
|
|
|
|
return
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
target_user_id = event.state_key
|
|
|
|
|
|
|
|
|
|
creating_domain = get_domain_from_id(event.room_id)
|
|
|
|
|
target_domain = get_domain_from_id(target_user_id)
|
|
|
|
|
if creating_domain != target_domain:
|
|
|
|
|
if not _can_federate(event, auth_events):
|
2019-06-20 05:32:02 -04:00
|
|
|
|
raise AuthError(403, "This room has been marked as unfederatable.")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
# get info about the caller
|
2019-06-20 05:32:02 -04:00
|
|
|
|
key = (EventTypes.Member, event.user_id)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
caller = auth_events.get(key)
|
|
|
|
|
|
|
|
|
|
caller_in_room = caller and caller.membership == Membership.JOIN
|
|
|
|
|
caller_invited = caller and caller.membership == Membership.INVITE
|
2021-06-09 14:39:51 -04:00
|
|
|
|
caller_knocked = (
|
|
|
|
|
caller
|
|
|
|
|
and room_version.msc2403_knocking
|
|
|
|
|
and caller.membership == Membership.KNOCK
|
|
|
|
|
)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
# get info about the target
|
2019-06-20 05:32:02 -04:00
|
|
|
|
key = (EventTypes.Member, target_user_id)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
target = auth_events.get(key)
|
|
|
|
|
|
|
|
|
|
target_in_room = target and target.membership == Membership.JOIN
|
|
|
|
|
target_banned = target and target.membership == Membership.BAN
|
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
|
key = (EventTypes.JoinRules, "")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
join_rule_event = auth_events.get(key)
|
|
|
|
|
if join_rule_event:
|
2019-06-20 05:32:02 -04:00
|
|
|
|
join_rule = join_rule_event.content.get("join_rule", JoinRules.INVITE)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
else:
|
|
|
|
|
join_rule = JoinRules.INVITE
|
|
|
|
|
|
|
|
|
|
user_level = get_user_power_level(event.user_id, auth_events)
|
2019-06-20 05:32:02 -04:00
|
|
|
|
target_level = get_user_power_level(target_user_id, auth_events)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2021-07-26 12:17:00 -04:00
|
|
|
|
invite_level = get_named_level(auth_events, "invite", 0)
|
|
|
|
|
ban_level = get_named_level(auth_events, "ban", 50)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
logger.debug(
|
|
|
|
|
"_is_membership_change_allowed: %s",
|
|
|
|
|
{
|
|
|
|
|
"caller_in_room": caller_in_room,
|
|
|
|
|
"caller_invited": caller_invited,
|
2021-06-09 14:39:51 -04:00
|
|
|
|
"caller_knocked": caller_knocked,
|
2017-01-13 10:07:32 -05:00
|
|
|
|
"target_banned": target_banned,
|
|
|
|
|
"target_in_room": target_in_room,
|
|
|
|
|
"membership": membership,
|
|
|
|
|
"join_rule": join_rule,
|
|
|
|
|
"target_user_id": target_user_id,
|
|
|
|
|
"event.user_id": event.user_id,
|
2019-06-20 05:32:02 -04:00
|
|
|
|
},
|
2017-01-13 10:07:32 -05:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if Membership.INVITE == membership and "third_party_invite" in event.content:
|
|
|
|
|
if not _verify_third_party_invite(event, auth_events):
|
|
|
|
|
raise AuthError(403, "You are not invited to this room.")
|
|
|
|
|
if target_banned:
|
2019-06-20 05:32:02 -04:00
|
|
|
|
raise AuthError(403, "%s is banned from the room" % (target_user_id,))
|
2018-06-14 07:26:17 -04:00
|
|
|
|
return
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2021-06-09 14:39:51 -04:00
|
|
|
|
# Require the user to be in the room for membership changes other than join/knock.
|
2022-02-22 13:35:01 -05:00
|
|
|
|
# Note that the room version check for knocking is done implicitly by `caller_knocked`
|
|
|
|
|
# and the ability to set a membership of `knock` in the first place.
|
|
|
|
|
if Membership.JOIN != membership and Membership.KNOCK != membership:
|
2021-06-09 14:39:51 -04:00
|
|
|
|
# If the user has been invited or has knocked, they are allowed to change their
|
|
|
|
|
# membership event to leave
|
2019-06-20 05:32:02 -04:00
|
|
|
|
if (
|
2021-06-09 14:39:51 -04:00
|
|
|
|
(caller_invited or caller_knocked)
|
2019-06-20 05:32:02 -04:00
|
|
|
|
and Membership.LEAVE == membership
|
|
|
|
|
and target_user_id == event.user_id
|
|
|
|
|
):
|
2018-06-14 07:26:17 -04:00
|
|
|
|
return
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
if not caller_in_room: # caller isn't joined
|
2022-07-27 08:44:40 -04:00
|
|
|
|
raise UnstableSpecAuthError(
|
|
|
|
|
403,
|
|
|
|
|
"%s not in room %s." % (event.user_id, event.room_id),
|
|
|
|
|
errcode=Codes.NOT_JOINED,
|
|
|
|
|
)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
if Membership.INVITE == membership:
|
|
|
|
|
# TODO (erikj): We should probably handle this more intelligently
|
|
|
|
|
# PRIVATE join rules.
|
|
|
|
|
|
|
|
|
|
# Invites are valid iff caller is in the room and target isn't.
|
|
|
|
|
if target_banned:
|
2019-06-20 05:32:02 -04:00
|
|
|
|
raise AuthError(403, "%s is banned from the room" % (target_user_id,))
|
2017-01-13 10:07:32 -05:00
|
|
|
|
elif target_in_room: # the target is already in the room.
|
2022-07-27 08:44:40 -04:00
|
|
|
|
raise UnstableSpecAuthError(
|
|
|
|
|
403,
|
|
|
|
|
"%s is already in the room." % target_user_id,
|
|
|
|
|
errcode=Codes.ALREADY_JOINED,
|
|
|
|
|
)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
else:
|
|
|
|
|
if user_level < invite_level:
|
2022-07-27 08:44:40 -04:00
|
|
|
|
raise UnstableSpecAuthError(
|
|
|
|
|
403,
|
|
|
|
|
"You don't have permission to invite users",
|
|
|
|
|
errcode=Codes.INSUFFICIENT_POWER,
|
|
|
|
|
)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
elif Membership.JOIN == membership:
|
2021-03-31 16:39:08 -04:00
|
|
|
|
# Joins are valid iff caller == target and:
|
|
|
|
|
# * They are not banned.
|
|
|
|
|
# * They are accepting a previously sent invitation.
|
|
|
|
|
# * They are already joined (it's a NOOP).
|
2021-07-26 12:17:00 -04:00
|
|
|
|
# * The room is public.
|
|
|
|
|
# * The room is restricted and the user meets the allows rules.
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if event.user_id != target_user_id:
|
|
|
|
|
raise AuthError(403, "Cannot force another user to join.")
|
|
|
|
|
elif target_banned:
|
|
|
|
|
raise AuthError(403, "You are banned from this room")
|
2021-07-26 12:17:00 -04:00
|
|
|
|
elif join_rule == JoinRules.PUBLIC:
|
|
|
|
|
pass
|
2022-05-17 06:41:39 -04:00
|
|
|
|
elif (
|
|
|
|
|
room_version.msc3083_join_rules and join_rule == JoinRules.RESTRICTED
|
|
|
|
|
) or (
|
|
|
|
|
room_version.msc3787_knock_restricted_join_rule
|
|
|
|
|
and join_rule == JoinRules.KNOCK_RESTRICTED
|
|
|
|
|
):
|
2021-07-26 12:17:00 -04:00
|
|
|
|
# This is the same as public, but the event must contain a reference
|
|
|
|
|
# to the server who authorised the join. If the event does not contain
|
|
|
|
|
# the proper content it is rejected.
|
|
|
|
|
#
|
|
|
|
|
# Note that if the caller is in the room or invited, then they do
|
|
|
|
|
# not need to meet the allow rules.
|
|
|
|
|
if not caller_in_room and not caller_invited:
|
2021-09-30 11:13:59 -04:00
|
|
|
|
authorising_user = event.content.get(
|
|
|
|
|
EventContentFields.AUTHORISING_USER
|
|
|
|
|
)
|
2021-07-26 12:17:00 -04:00
|
|
|
|
|
|
|
|
|
if authorising_user is None:
|
|
|
|
|
raise AuthError(403, "Join event is missing authorising user.")
|
|
|
|
|
|
|
|
|
|
# The authorising user must be in the room.
|
|
|
|
|
key = (EventTypes.Member, authorising_user)
|
|
|
|
|
member_event = auth_events.get(key)
|
|
|
|
|
_check_joined_room(member_event, authorising_user, event.room_id)
|
|
|
|
|
|
|
|
|
|
authorising_user_level = get_user_power_level(
|
|
|
|
|
authorising_user, auth_events
|
|
|
|
|
)
|
|
|
|
|
if authorising_user_level < invite_level:
|
|
|
|
|
raise AuthError(403, "Join event authorised by invalid server.")
|
|
|
|
|
|
2022-05-17 06:41:39 -04:00
|
|
|
|
elif (
|
|
|
|
|
join_rule == JoinRules.INVITE
|
|
|
|
|
or (room_version.msc2403_knocking and join_rule == JoinRules.KNOCK)
|
|
|
|
|
or (
|
|
|
|
|
room_version.msc3787_knock_restricted_join_rule
|
|
|
|
|
and join_rule == JoinRules.KNOCK_RESTRICTED
|
|
|
|
|
)
|
2021-06-09 14:39:51 -04:00
|
|
|
|
):
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if not caller_in_room and not caller_invited:
|
|
|
|
|
raise AuthError(403, "You are not invited to this room.")
|
|
|
|
|
else:
|
|
|
|
|
# TODO (erikj): may_join list
|
|
|
|
|
# TODO (erikj): private rooms
|
|
|
|
|
raise AuthError(403, "You are not allowed to join this room")
|
|
|
|
|
elif Membership.LEAVE == membership:
|
|
|
|
|
# TODO (erikj): Implement kicks.
|
|
|
|
|
if target_banned and user_level < ban_level:
|
2022-07-27 08:44:40 -04:00
|
|
|
|
raise UnstableSpecAuthError(
|
|
|
|
|
403,
|
|
|
|
|
"You cannot unban user %s." % (target_user_id,),
|
|
|
|
|
errcode=Codes.INSUFFICIENT_POWER,
|
|
|
|
|
)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
elif target_user_id != event.user_id:
|
2021-07-26 12:17:00 -04:00
|
|
|
|
kick_level = get_named_level(auth_events, "kick", 50)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
if user_level < kick_level or user_level <= target_level:
|
2022-07-27 08:44:40 -04:00
|
|
|
|
raise UnstableSpecAuthError(
|
|
|
|
|
403,
|
|
|
|
|
"You cannot kick user %s." % target_user_id,
|
|
|
|
|
errcode=Codes.INSUFFICIENT_POWER,
|
|
|
|
|
)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
elif Membership.BAN == membership:
|
|
|
|
|
if user_level < ban_level or user_level <= target_level:
|
2022-07-27 08:44:40 -04:00
|
|
|
|
raise UnstableSpecAuthError(
|
|
|
|
|
403,
|
|
|
|
|
"You don't have permission to ban",
|
|
|
|
|
errcode=Codes.INSUFFICIENT_POWER,
|
|
|
|
|
)
|
2021-06-09 14:39:51 -04:00
|
|
|
|
elif room_version.msc2403_knocking and Membership.KNOCK == membership:
|
2022-05-17 06:41:39 -04:00
|
|
|
|
if join_rule != JoinRules.KNOCK and (
|
|
|
|
|
not room_version.msc3787_knock_restricted_join_rule
|
|
|
|
|
or join_rule != JoinRules.KNOCK_RESTRICTED
|
|
|
|
|
):
|
2021-06-09 14:39:51 -04:00
|
|
|
|
raise AuthError(403, "You don't have permission to knock")
|
|
|
|
|
elif target_user_id != event.user_id:
|
|
|
|
|
raise AuthError(403, "You cannot knock for other users")
|
|
|
|
|
elif target_in_room:
|
2022-07-27 08:44:40 -04:00
|
|
|
|
raise UnstableSpecAuthError(
|
|
|
|
|
403,
|
|
|
|
|
"You cannot knock on a room you are already in",
|
|
|
|
|
errcode=Codes.ALREADY_JOINED,
|
|
|
|
|
)
|
2021-06-09 14:39:51 -04:00
|
|
|
|
elif caller_invited:
|
|
|
|
|
raise AuthError(403, "You are already invited to this room")
|
|
|
|
|
elif target_banned:
|
|
|
|
|
raise AuthError(403, "You are banned from this room")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
else:
|
|
|
|
|
raise AuthError(500, "Unknown membership %s" % membership)
|
|
|
|
|
|
|
|
|
|
|
2020-05-15 11:19:43 -04:00
|
|
|
|
def _check_event_sender_in_room(
|
2022-02-11 08:07:55 -05:00
|
|
|
|
event: "EventBase", auth_events: StateMap["EventBase"]
|
2020-05-15 11:19:43 -04:00
|
|
|
|
) -> None:
|
2019-06-20 05:32:02 -04:00
|
|
|
|
key = (EventTypes.Member, event.user_id)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
member_event = auth_events.get(key)
|
|
|
|
|
|
2020-05-15 11:19:43 -04:00
|
|
|
|
_check_joined_room(member_event, event.user_id, event.room_id)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
|
2022-02-11 08:07:55 -05:00
|
|
|
|
def _check_joined_room(
|
|
|
|
|
member: Optional["EventBase"], user_id: str, room_id: str
|
|
|
|
|
) -> None:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if not member or member.membership != Membership.JOIN:
|
2019-06-20 05:32:02 -04:00
|
|
|
|
raise AuthError(
|
|
|
|
|
403, "User %s not in room %s (%s)" % (user_id, room_id, repr(member))
|
|
|
|
|
)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
|
2020-05-15 11:19:43 -04:00
|
|
|
|
def get_send_level(
|
2022-02-11 08:07:55 -05:00
|
|
|
|
etype: str, state_key: Optional[str], power_levels_event: Optional["EventBase"]
|
2020-05-15 11:19:43 -04:00
|
|
|
|
) -> int:
|
2018-06-14 06:26:27 -04:00
|
|
|
|
"""Get the power level required to send an event of a given type
|
|
|
|
|
|
|
|
|
|
The federation spec [1] refers to this as "Required Power Level".
|
|
|
|
|
|
|
|
|
|
https://matrix.org/docs/spec/server_server/unstable.html#definitions
|
|
|
|
|
|
|
|
|
|
Args:
|
2020-05-15 11:19:43 -04:00
|
|
|
|
etype: type of event
|
|
|
|
|
state_key: state_key of state event, or None if it is not
|
2018-06-14 06:26:27 -04:00
|
|
|
|
a state event.
|
2020-05-15 11:19:43 -04:00
|
|
|
|
power_levels_event: power levels event
|
2018-06-14 06:26:27 -04:00
|
|
|
|
in force at this point in the room
|
|
|
|
|
Returns:
|
2020-05-15 11:19:43 -04:00
|
|
|
|
power level required to send this event.
|
2018-06-14 06:26:27 -04:00
|
|
|
|
"""
|
|
|
|
|
|
2018-06-14 07:28:36 -04:00
|
|
|
|
if power_levels_event:
|
|
|
|
|
power_levels_content = power_levels_event.content
|
2017-01-13 10:07:32 -05:00
|
|
|
|
else:
|
2018-06-14 07:28:36 -04:00
|
|
|
|
power_levels_content = {}
|
|
|
|
|
|
|
|
|
|
# see if we have a custom level for this event type
|
|
|
|
|
send_level = power_levels_content.get("events", {}).get(etype)
|
|
|
|
|
|
|
|
|
|
# otherwise, fall back to the state_default/events_default.
|
|
|
|
|
if send_level is None:
|
|
|
|
|
if state_key is not None:
|
|
|
|
|
send_level = power_levels_content.get("state_default", 50)
|
|
|
|
|
else:
|
|
|
|
|
send_level = power_levels_content.get("events_default", 0)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2018-06-14 07:28:36 -04:00
|
|
|
|
return int(send_level)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
|
2022-02-11 08:07:55 -05:00
|
|
|
|
def _can_send_event(event: "EventBase", auth_events: StateMap["EventBase"]) -> bool:
|
2021-07-26 12:17:00 -04:00
|
|
|
|
power_levels_event = get_power_level_event(auth_events)
|
2018-06-14 06:26:27 -04:00
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
|
send_level = get_send_level(event.type, event.get("state_key"), power_levels_event)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
user_level = get_user_power_level(event.user_id, auth_events)
|
|
|
|
|
|
|
|
|
|
if user_level < send_level:
|
2022-07-27 08:44:40 -04:00
|
|
|
|
raise UnstableSpecAuthError(
|
2017-01-13 10:07:32 -05:00
|
|
|
|
403,
|
2019-06-20 05:32:02 -04:00
|
|
|
|
"You don't have permission to post that to the room. "
|
|
|
|
|
+ "user_level (%d) < send_level (%d)" % (user_level, send_level),
|
2022-07-27 08:44:40 -04:00
|
|
|
|
errcode=Codes.INSUFFICIENT_POWER,
|
2017-01-13 10:07:32 -05:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Check state_key
|
|
|
|
|
if hasattr(event, "state_key"):
|
|
|
|
|
if event.state_key.startswith("@"):
|
|
|
|
|
if event.state_key != event.user_id:
|
2019-06-20 05:32:02 -04:00
|
|
|
|
raise AuthError(403, "You are not allowed to set others state")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
2020-05-15 11:19:43 -04:00
|
|
|
|
def check_redaction(
|
2021-02-16 17:32:34 -05:00
|
|
|
|
room_version_obj: RoomVersion,
|
2022-02-11 08:07:55 -05:00
|
|
|
|
event: "EventBase",
|
|
|
|
|
auth_events: StateMap["EventBase"],
|
2020-05-15 11:19:43 -04:00
|
|
|
|
) -> bool:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
"""Check whether the event sender is allowed to redact the target event.
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
True if the the sender is allowed to redact the target event if the
|
|
|
|
|
target event was created by them.
|
|
|
|
|
False if the sender is allowed to redact the target event with no
|
|
|
|
|
further checks.
|
|
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
|
AuthError if the event sender is definitely not allowed to redact
|
|
|
|
|
the target event.
|
|
|
|
|
"""
|
|
|
|
|
user_level = get_user_power_level(event.user_id, auth_events)
|
|
|
|
|
|
2021-07-26 12:17:00 -04:00
|
|
|
|
redact_level = get_named_level(auth_events, "redact", 50)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
if user_level >= redact_level:
|
|
|
|
|
return False
|
|
|
|
|
|
2022-09-07 06:08:20 -04:00
|
|
|
|
if room_version_obj.event_format == EventFormatVersions.ROOM_V1_V2:
|
2019-01-28 16:09:45 -05:00
|
|
|
|
redacter_domain = get_domain_from_id(event.event_id)
|
2020-10-05 10:24:17 -04:00
|
|
|
|
if not isinstance(event.redacts, str):
|
|
|
|
|
return False
|
2019-01-28 16:09:45 -05:00
|
|
|
|
redactee_domain = get_domain_from_id(event.redacts)
|
|
|
|
|
if redacter_domain == redactee_domain:
|
|
|
|
|
return True
|
2019-04-01 05:24:38 -04:00
|
|
|
|
else:
|
2019-01-28 16:09:45 -05:00
|
|
|
|
event.internal_metadata.recheck_redaction = True
|
2017-01-13 10:07:32 -05:00
|
|
|
|
return True
|
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
|
raise AuthError(403, "You don't have permission to redact events")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
|
2021-07-28 11:46:37 -04:00
|
|
|
|
def check_historical(
|
|
|
|
|
room_version_obj: RoomVersion,
|
2022-02-11 08:07:55 -05:00
|
|
|
|
event: "EventBase",
|
|
|
|
|
auth_events: StateMap["EventBase"],
|
2021-07-28 11:46:37 -04:00
|
|
|
|
) -> None:
|
|
|
|
|
"""Check whether the event sender is allowed to send historical related
|
2021-09-21 16:06:28 -04:00
|
|
|
|
events like "insertion", "batch", and "marker".
|
2021-07-28 11:46:37 -04:00
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
None
|
|
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
|
AuthError if the event sender is not allowed to send historical related events
|
2021-09-21 16:06:28 -04:00
|
|
|
|
("insertion", "batch", and "marker").
|
2021-07-28 11:46:37 -04:00
|
|
|
|
"""
|
|
|
|
|
# Ignore the auth checks in room versions that do not support historical
|
|
|
|
|
# events
|
|
|
|
|
if not room_version_obj.msc2716_historical:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
user_level = get_user_power_level(event.user_id, auth_events)
|
|
|
|
|
|
|
|
|
|
historical_level = get_named_level(auth_events, "historical", 100)
|
|
|
|
|
|
|
|
|
|
if user_level < historical_level:
|
2022-07-27 08:44:40 -04:00
|
|
|
|
raise UnstableSpecAuthError(
|
2021-07-28 11:46:37 -04:00
|
|
|
|
403,
|
2021-09-21 16:06:28 -04:00
|
|
|
|
'You don\'t have permission to send send historical related events ("insertion", "batch", and "marker")',
|
2022-07-27 08:44:40 -04:00
|
|
|
|
errcode=Codes.INSUFFICIENT_POWER,
|
2021-07-28 11:46:37 -04:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2020-05-15 11:19:43 -04:00
|
|
|
|
def _check_power_levels(
|
2021-02-16 17:32:34 -05:00
|
|
|
|
room_version_obj: RoomVersion,
|
2022-02-11 08:07:55 -05:00
|
|
|
|
event: "EventBase",
|
|
|
|
|
auth_events: StateMap["EventBase"],
|
2020-05-15 11:19:43 -04:00
|
|
|
|
) -> None:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
user_list = event.content.get("users", {})
|
|
|
|
|
# Validate users
|
|
|
|
|
for k, v in user_list.items():
|
|
|
|
|
try:
|
|
|
|
|
UserID.from_string(k)
|
2017-10-23 10:52:32 -04:00
|
|
|
|
except Exception:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
raise SynapseError(400, "Not a valid user_id: %s" % (k,))
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
int(v)
|
2017-10-23 10:52:32 -04:00
|
|
|
|
except Exception:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
raise SynapseError(400, "Not a valid power level: %s" % (v,))
|
|
|
|
|
|
2022-07-13 14:36:02 -04:00
|
|
|
|
# Reject events with stringy power levels if required by room version
|
|
|
|
|
if (
|
|
|
|
|
event.type == EventTypes.PowerLevels
|
|
|
|
|
and room_version_obj.msc3667_int_only_power_levels
|
|
|
|
|
):
|
|
|
|
|
for k, v in event.content.items():
|
|
|
|
|
if k in {
|
|
|
|
|
"users_default",
|
|
|
|
|
"events_default",
|
|
|
|
|
"state_default",
|
|
|
|
|
"ban",
|
|
|
|
|
"redact",
|
|
|
|
|
"kick",
|
|
|
|
|
"invite",
|
|
|
|
|
}:
|
|
|
|
|
if not isinstance(v, int):
|
|
|
|
|
raise SynapseError(400, f"{v!r} must be an integer.")
|
|
|
|
|
if k in {"events", "notifications", "users"}:
|
|
|
|
|
if not isinstance(v, dict) or not all(
|
|
|
|
|
isinstance(v, int) for v in v.values()
|
|
|
|
|
):
|
|
|
|
|
raise SynapseError(
|
|
|
|
|
400,
|
|
|
|
|
f"{v!r} must be a dict wherein all the values are integers.",
|
|
|
|
|
)
|
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
|
key = (event.type, event.state_key)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
current_state = auth_events.get(key)
|
|
|
|
|
|
|
|
|
|
if not current_state:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
user_level = get_user_power_level(event.user_id, auth_events)
|
|
|
|
|
|
|
|
|
|
# Check other levels:
|
2021-07-15 06:02:43 -04:00
|
|
|
|
levels_to_check: List[Tuple[str, Optional[str]]] = [
|
2017-01-13 10:07:32 -05:00
|
|
|
|
("users_default", None),
|
|
|
|
|
("events_default", None),
|
|
|
|
|
("state_default", None),
|
|
|
|
|
("ban", None),
|
|
|
|
|
("redact", None),
|
|
|
|
|
("kick", None),
|
|
|
|
|
("invite", None),
|
2021-07-15 06:02:43 -04:00
|
|
|
|
]
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2017-10-17 12:05:42 -04:00
|
|
|
|
old_list = current_state.content.get("users", {})
|
2018-05-31 05:03:47 -04:00
|
|
|
|
for user in set(list(old_list) + list(user_list)):
|
2019-06-20 05:32:02 -04:00
|
|
|
|
levels_to_check.append((user, "users"))
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2017-10-17 12:05:42 -04:00
|
|
|
|
old_list = current_state.content.get("events", {})
|
|
|
|
|
new_list = event.content.get("events", {})
|
2018-05-31 05:03:47 -04:00
|
|
|
|
for ev_id in set(list(old_list) + list(new_list)):
|
2019-06-20 05:32:02 -04:00
|
|
|
|
levels_to_check.append((ev_id, "events"))
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2020-05-14 12:38:17 -04:00
|
|
|
|
# MSC2209 specifies these checks should also be done for the "notifications"
|
|
|
|
|
# key.
|
|
|
|
|
if room_version_obj.limit_notifications_power_levels:
|
|
|
|
|
old_list = current_state.content.get("notifications", {})
|
|
|
|
|
new_list = event.content.get("notifications", {})
|
|
|
|
|
for ev_id in set(list(old_list) + list(new_list)):
|
|
|
|
|
levels_to_check.append((ev_id, "notifications"))
|
|
|
|
|
|
2017-01-13 10:07:32 -05:00
|
|
|
|
old_state = current_state.content
|
|
|
|
|
new_state = event.content
|
|
|
|
|
|
|
|
|
|
for level_to_check, dir in levels_to_check:
|
|
|
|
|
old_loc = old_state
|
|
|
|
|
new_loc = new_state
|
|
|
|
|
if dir:
|
|
|
|
|
old_loc = old_loc.get(dir, {})
|
|
|
|
|
new_loc = new_loc.get(dir, {})
|
|
|
|
|
|
|
|
|
|
if level_to_check in old_loc:
|
2021-07-15 06:02:43 -04:00
|
|
|
|
old_level: Optional[int] = int(old_loc[level_to_check])
|
2017-01-13 10:07:32 -05:00
|
|
|
|
else:
|
|
|
|
|
old_level = None
|
|
|
|
|
|
|
|
|
|
if level_to_check in new_loc:
|
2021-07-15 06:02:43 -04:00
|
|
|
|
new_level: Optional[int] = int(new_loc[level_to_check])
|
2017-01-13 10:07:32 -05:00
|
|
|
|
else:
|
|
|
|
|
new_level = None
|
|
|
|
|
|
|
|
|
|
if new_level is not None and old_level is not None:
|
|
|
|
|
if new_level == old_level:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if dir == "users" and level_to_check != event.user_id:
|
|
|
|
|
if old_level == user_level:
|
|
|
|
|
raise AuthError(
|
|
|
|
|
403,
|
|
|
|
|
"You don't have permission to remove ops level equal "
|
2019-06-20 05:32:02 -04:00
|
|
|
|
"to your own",
|
2017-01-13 10:07:32 -05:00
|
|
|
|
)
|
|
|
|
|
|
2018-07-02 06:39:28 -04:00
|
|
|
|
# Check if the old and new levels are greater than the user level
|
|
|
|
|
# (if defined)
|
|
|
|
|
old_level_too_big = old_level is not None and old_level > user_level
|
|
|
|
|
new_level_too_big = new_level is not None and new_level > user_level
|
|
|
|
|
if old_level_too_big or new_level_too_big:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
raise AuthError(
|
2019-10-23 11:49:05 -04:00
|
|
|
|
403, "You don't have permission to add ops level greater than your own"
|
2017-01-13 10:07:32 -05:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2022-02-11 08:07:55 -05:00
|
|
|
|
def get_power_level_event(auth_events: StateMap["EventBase"]) -> Optional["EventBase"]:
|
2018-06-14 06:26:27 -04:00
|
|
|
|
return auth_events.get((EventTypes.PowerLevels, ""))
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
|
2022-02-11 08:07:55 -05:00
|
|
|
|
def get_user_power_level(user_id: str, auth_events: StateMap["EventBase"]) -> int:
|
2018-06-14 06:26:27 -04:00
|
|
|
|
"""Get a user's power level
|
|
|
|
|
|
|
|
|
|
Args:
|
2020-05-15 11:19:43 -04:00
|
|
|
|
user_id: user's id to look up in power_levels
|
|
|
|
|
auth_events:
|
2018-06-14 06:26:27 -04:00
|
|
|
|
state in force at this point in the room (or rather, a subset of
|
|
|
|
|
it including at least the create event and power levels event.
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
2018-06-14 06:26:27 -04:00
|
|
|
|
Returns:
|
2020-05-15 11:19:43 -04:00
|
|
|
|
the user's power level in this room.
|
2018-06-14 06:26:27 -04:00
|
|
|
|
"""
|
2021-07-26 12:17:00 -04:00
|
|
|
|
power_level_event = get_power_level_event(auth_events)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if power_level_event:
|
|
|
|
|
level = power_level_event.content.get("users", {}).get(user_id)
|
2021-07-30 07:34:21 -04:00
|
|
|
|
if level is None:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
level = power_level_event.content.get("users_default", 0)
|
|
|
|
|
|
|
|
|
|
if level is None:
|
|
|
|
|
return 0
|
|
|
|
|
else:
|
|
|
|
|
return int(level)
|
|
|
|
|
else:
|
2018-06-14 06:26:27 -04:00
|
|
|
|
# if there is no power levels event, the creator gets 100 and everyone
|
|
|
|
|
# else gets 0.
|
|
|
|
|
|
|
|
|
|
# some things which call this don't pass the create event: hack around
|
|
|
|
|
# that.
|
2019-06-20 05:32:02 -04:00
|
|
|
|
key = (EventTypes.Create, "")
|
2017-01-13 10:07:32 -05:00
|
|
|
|
create_event = auth_events.get(key)
|
2019-06-20 05:32:02 -04:00
|
|
|
|
if create_event is not None and create_event.content["creator"] == user_id:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
return 100
|
|
|
|
|
else:
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
2022-02-11 08:07:55 -05:00
|
|
|
|
def get_named_level(auth_events: StateMap["EventBase"], name: str, default: int) -> int:
|
2021-07-26 12:17:00 -04:00
|
|
|
|
power_level_event = get_power_level_event(auth_events)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
|
|
|
|
|
if not power_level_event:
|
|
|
|
|
return default
|
|
|
|
|
|
|
|
|
|
level = power_level_event.content.get(name, None)
|
|
|
|
|
if level is not None:
|
|
|
|
|
return int(level)
|
|
|
|
|
else:
|
|
|
|
|
return default
|
|
|
|
|
|
|
|
|
|
|
2022-02-11 07:20:16 -05:00
|
|
|
|
def _verify_third_party_invite(
|
2022-02-11 08:07:55 -05:00
|
|
|
|
event: "EventBase", auth_events: StateMap["EventBase"]
|
2022-02-11 07:20:16 -05:00
|
|
|
|
) -> bool:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
"""
|
|
|
|
|
Validates that the invite event is authorized by a previous third-party invite.
|
|
|
|
|
|
|
|
|
|
Checks that the public key, and keyserver, match those in the third party invite,
|
|
|
|
|
and that the invite event has a signature issued using that public key.
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
event: The m.room.member join event being validated.
|
|
|
|
|
auth_events: All relevant previous context events which may be used
|
|
|
|
|
for authorization decisions.
|
|
|
|
|
|
|
|
|
|
Return:
|
|
|
|
|
True if the event fulfills the expectations of a previous third party
|
|
|
|
|
invite event.
|
|
|
|
|
"""
|
|
|
|
|
if "third_party_invite" not in event.content:
|
|
|
|
|
return False
|
|
|
|
|
if "signed" not in event.content["third_party_invite"]:
|
|
|
|
|
return False
|
|
|
|
|
signed = event.content["third_party_invite"]["signed"]
|
|
|
|
|
for key in {"mxid", "token"}:
|
|
|
|
|
if key not in signed:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
token = signed["token"]
|
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
|
invite_event = auth_events.get((EventTypes.ThirdPartyInvite, token))
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if not invite_event:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
if invite_event.sender != event.sender:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
if event.user_id != invite_event.user_id:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
if signed["mxid"] != event.state_key:
|
|
|
|
|
return False
|
|
|
|
|
if signed["token"] != token:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
for public_key_object in get_public_keys(invite_event):
|
|
|
|
|
public_key = public_key_object["public_key"]
|
|
|
|
|
try:
|
|
|
|
|
for server, signature_block in signed["signatures"].items():
|
2021-04-20 06:50:49 -04:00
|
|
|
|
for key_name in signature_block.keys():
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if not key_name.startswith("ed25519:"):
|
|
|
|
|
continue
|
|
|
|
|
verify_key = decode_verify_key_bytes(
|
2019-06-20 05:32:02 -04:00
|
|
|
|
key_name, decode_base64(public_key)
|
2017-01-13 10:07:32 -05:00
|
|
|
|
)
|
|
|
|
|
verify_signed_json(signed, server, verify_key)
|
|
|
|
|
|
|
|
|
|
# We got the public key from the invite, so we know that the
|
|
|
|
|
# correct server signed the signed bundle.
|
|
|
|
|
# The caller is responsible for checking that the signing
|
|
|
|
|
# server has not revoked that public key.
|
|
|
|
|
return True
|
2019-06-20 05:32:02 -04:00
|
|
|
|
except (KeyError, SignatureVerifyException):
|
2017-01-13 10:07:32 -05:00
|
|
|
|
continue
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
2022-02-11 08:07:55 -05:00
|
|
|
|
def get_public_keys(invite_event: "EventBase") -> List[Dict[str, Any]]:
|
2017-01-13 10:07:32 -05:00
|
|
|
|
public_keys = []
|
|
|
|
|
if "public_key" in invite_event.content:
|
2019-06-20 05:32:02 -04:00
|
|
|
|
o = {"public_key": invite_event.content["public_key"]}
|
2017-01-13 10:07:32 -05:00
|
|
|
|
if "key_validity_url" in invite_event.content:
|
|
|
|
|
o["key_validity_url"] = invite_event.content["key_validity_url"]
|
|
|
|
|
public_keys.append(o)
|
|
|
|
|
public_keys.extend(invite_event.content.get("public_keys", []))
|
|
|
|
|
return public_keys
|
2017-01-13 08:16:54 -05:00
|
|
|
|
|
|
|
|
|
|
2021-07-26 12:17:00 -04:00
|
|
|
|
def auth_types_for_event(
|
2022-02-11 08:07:55 -05:00
|
|
|
|
room_version: RoomVersion, event: Union["EventBase", "EventBuilder"]
|
2021-07-26 12:17:00 -04:00
|
|
|
|
) -> Set[Tuple[str, str]]:
|
2017-01-13 08:16:54 -05:00
|
|
|
|
"""Given an event, return a list of (EventType, StateKey) that may be
|
|
|
|
|
needed to auth the event. The returned list may be a superset of what
|
|
|
|
|
would actually be required depending on the full state of the room.
|
|
|
|
|
|
|
|
|
|
Used to limit the number of events to fetch from the database to
|
|
|
|
|
actually auth the event.
|
|
|
|
|
"""
|
|
|
|
|
if event.type == EventTypes.Create:
|
2019-12-17 10:06:08 -05:00
|
|
|
|
return set()
|
2017-01-13 08:16:54 -05:00
|
|
|
|
|
2019-12-17 10:06:08 -05:00
|
|
|
|
auth_types = {
|
2019-09-04 11:16:56 -04:00
|
|
|
|
(EventTypes.PowerLevels, ""),
|
|
|
|
|
(EventTypes.Member, event.sender),
|
|
|
|
|
(EventTypes.Create, ""),
|
2019-12-17 10:06:08 -05:00
|
|
|
|
}
|
2017-01-13 08:16:54 -05:00
|
|
|
|
|
|
|
|
|
if event.type == EventTypes.Member:
|
2017-01-17 09:32:53 -05:00
|
|
|
|
membership = event.content["membership"]
|
2021-06-09 14:39:51 -04:00
|
|
|
|
if membership in [Membership.JOIN, Membership.INVITE, Membership.KNOCK]:
|
2019-12-17 10:06:08 -05:00
|
|
|
|
auth_types.add((EventTypes.JoinRules, ""))
|
2017-01-13 08:16:54 -05:00
|
|
|
|
|
2019-12-17 10:06:08 -05:00
|
|
|
|
auth_types.add((EventTypes.Member, event.state_key))
|
2017-01-13 08:16:54 -05:00
|
|
|
|
|
2017-01-17 09:32:53 -05:00
|
|
|
|
if membership == Membership.INVITE:
|
2017-01-13 08:16:54 -05:00
|
|
|
|
if "third_party_invite" in event.content:
|
|
|
|
|
key = (
|
|
|
|
|
EventTypes.ThirdPartyInvite,
|
2019-06-20 05:32:02 -04:00
|
|
|
|
event.content["third_party_invite"]["signed"]["token"],
|
2017-01-13 08:16:54 -05:00
|
|
|
|
)
|
2019-12-17 10:06:08 -05:00
|
|
|
|
auth_types.add(key)
|
2017-01-13 08:16:54 -05:00
|
|
|
|
|
2021-07-26 12:17:00 -04:00
|
|
|
|
if room_version.msc3083_join_rules and membership == Membership.JOIN:
|
2021-09-30 11:13:59 -04:00
|
|
|
|
if EventContentFields.AUTHORISING_USER in event.content:
|
2021-07-26 12:17:00 -04:00
|
|
|
|
key = (
|
|
|
|
|
EventTypes.Member,
|
2021-09-30 11:13:59 -04:00
|
|
|
|
event.content[EventContentFields.AUTHORISING_USER],
|
2021-07-26 12:17:00 -04:00
|
|
|
|
)
|
|
|
|
|
auth_types.add(key)
|
|
|
|
|
|
2017-01-13 08:16:54 -05:00
|
|
|
|
return auth_types
|