2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2020-01-31 11:50:13 -05:00
|
|
|
# Copyright 2020 The Matrix.org Foundation C.I.C.
|
2015-02-03 10:00:42 -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.
|
2017-09-19 07:20:11 -04:00
|
|
|
import logging
|
2021-10-22 13:15:41 -04:00
|
|
|
from typing import TYPE_CHECKING
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2021-09-30 11:13:59 -04:00
|
|
|
from synapse.api.constants import MAX_DEPTH, EventContentFields, EventTypes, Membership
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.errors import Codes, SynapseError
|
2020-03-19 08:22:56 -04:00
|
|
|
from synapse.api.room_versions import EventFormatVersions, RoomVersion
|
2017-09-19 07:20:11 -04:00
|
|
|
from synapse.crypto.event_signing import check_event_content_hash
|
2020-02-28 07:31:07 -05:00
|
|
|
from synapse.crypto.keyring import Keyring
|
2020-02-07 10:30:04 -05:00
|
|
|
from synapse.events import EventBase, make_event_from_dict
|
2020-05-14 13:24:01 -04:00
|
|
|
from synapse.events.utils import prune_event, validate_canonicaljson
|
2018-07-13 15:53:01 -04:00
|
|
|
from synapse.http.servlet import assert_params_in_dict
|
2020-01-31 11:50:13 -05:00
|
|
|
from synapse.types import JsonDict, get_domain_from_id
|
2015-02-03 10:00:42 -05:00
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
|
|
|
|
2015-02-03 10:00:42 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class FederationBase:
|
2021-10-22 13:15:41 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2018-03-12 10:07:39 -04:00
|
|
|
self.hs = hs
|
|
|
|
|
|
|
|
self.server_name = hs.hostname
|
|
|
|
self.keyring = hs.get_keyring()
|
2017-09-26 14:20:23 -04:00
|
|
|
self.spam_checker = hs.get_spam_checker()
|
2018-03-12 10:07:39 -04:00
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self._clock = hs.get_clock()
|
2016-06-15 10:12:59 -04:00
|
|
|
|
2021-06-08 06:07:46 -04:00
|
|
|
async def _check_sigs_and_hash(
|
2020-03-19 08:22:56 -04:00
|
|
|
self, room_version: RoomVersion, pdu: EventBase
|
2021-06-08 06:07:46 -04:00
|
|
|
) -> EventBase:
|
|
|
|
"""Checks that event is correctly signed by the sending server.
|
2017-09-19 07:20:11 -04:00
|
|
|
|
|
|
|
Args:
|
2021-06-08 06:07:46 -04:00
|
|
|
room_version: The room version of the PDU
|
|
|
|
pdu: the event to be checked
|
2015-02-03 10:00:42 -05:00
|
|
|
|
|
|
|
Returns:
|
2021-06-08 06:07:46 -04:00
|
|
|
* the original event if the checks pass
|
|
|
|
* a redacted version of the event (if the signature
|
2017-09-19 07:20:11 -04:00
|
|
|
matched but the hash did not)
|
2021-06-08 06:07:46 -04:00
|
|
|
* throws a SynapseError if the signature check failed."""
|
|
|
|
try:
|
|
|
|
await _check_sigs_on_pdu(self.keyring, room_version, pdu)
|
|
|
|
except SynapseError as e:
|
|
|
|
logger.warning(
|
|
|
|
"Signature check failed for %s: %s",
|
|
|
|
pdu.event_id,
|
|
|
|
e,
|
|
|
|
)
|
|
|
|
raise
|
|
|
|
|
|
|
|
if not check_event_content_hash(pdu):
|
|
|
|
# let's try to distinguish between failures because the event was
|
|
|
|
# redacted (which are somewhat expected) vs actual ball-tampering
|
|
|
|
# incidents.
|
|
|
|
#
|
|
|
|
# This is just a heuristic, so we just assume that if the keys are
|
|
|
|
# about the same between the redacted and received events, then the
|
|
|
|
# received event was probably a redacted copy (but we then use our
|
|
|
|
# *actual* redacted copy to be on the safe side.)
|
|
|
|
redacted_event = prune_event(pdu)
|
|
|
|
if set(redacted_event.keys()) == set(pdu.keys()) and set(
|
|
|
|
redacted_event.content.keys()
|
|
|
|
) == set(pdu.content.keys()):
|
|
|
|
logger.info(
|
|
|
|
"Event %s seems to have been redacted; using our redacted copy",
|
|
|
|
pdu.event_id,
|
2020-12-11 14:05:15 -05:00
|
|
|
)
|
2021-06-08 06:07:46 -04:00
|
|
|
else:
|
2019-10-31 06:23:24 -04:00
|
|
|
logger.warning(
|
2021-06-08 06:07:46 -04:00
|
|
|
"Event %s content has been tampered, redacting",
|
2018-09-06 18:56:47 -04:00
|
|
|
pdu.event_id,
|
2017-09-19 20:32:42 -04:00
|
|
|
)
|
2021-06-08 06:07:46 -04:00
|
|
|
return redacted_event
|
2015-02-03 10:00:42 -05:00
|
|
|
|
2021-06-08 06:07:46 -04:00
|
|
|
result = await self.spam_checker.check_event_for_spam(pdu)
|
|
|
|
|
|
|
|
if result:
|
2021-06-29 06:08:06 -04:00
|
|
|
logger.warning("Event contains spam, soft-failing %s", pdu.event_id)
|
|
|
|
# we redact (to save disk space) as well as soft-failing (to stop
|
|
|
|
# using the event in prev_events).
|
|
|
|
redacted_event = prune_event(pdu)
|
|
|
|
redacted_event.internal_metadata.soft_failed = True
|
|
|
|
return redacted_event
|
2015-02-03 10:00:42 -05:00
|
|
|
|
2021-06-08 06:07:46 -04:00
|
|
|
return pdu
|
2017-12-30 13:40:19 -05:00
|
|
|
|
|
|
|
|
2021-06-08 06:07:46 -04:00
|
|
|
async def _check_sigs_on_pdu(
|
|
|
|
keyring: Keyring, room_version: RoomVersion, pdu: EventBase
|
|
|
|
) -> None:
|
2018-09-03 20:09:12 -04:00
|
|
|
"""Check that the given events are correctly signed
|
|
|
|
|
2021-06-08 06:07:46 -04:00
|
|
|
Raise a SynapseError if the event wasn't correctly signed.
|
|
|
|
|
2018-09-03 20:09:12 -04:00
|
|
|
Args:
|
2020-02-28 07:31:07 -05:00
|
|
|
keyring: keyring object to do the checks
|
|
|
|
room_version: the room version of the PDUs
|
|
|
|
pdus: the events to be checked
|
2018-09-03 20:09:12 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
# we want to check that the event is signed by:
|
|
|
|
#
|
2019-01-29 17:35:36 -05:00
|
|
|
# (a) the sender's server
|
2018-09-03 20:09:12 -04:00
|
|
|
#
|
|
|
|
# - except in the case of invites created from a 3pid invite, which are exempt
|
|
|
|
# from this check, because the sender has to match that of the original 3pid
|
|
|
|
# invite, but the event may come from a different HS, for reasons that I don't
|
|
|
|
# entirely grok (why do the senders have to match? and if they do, why doesn't the
|
|
|
|
# joining server ask the inviting server to do the switcheroo with
|
|
|
|
# exchange_third_party_invite?).
|
|
|
|
#
|
|
|
|
# That's pretty awful, since redacting such an invite will render it invalid
|
|
|
|
# (because it will then look like a regular invite without a valid signature),
|
|
|
|
# and signatures are *supposed* to be valid whether or not an event has been
|
|
|
|
# redacted. But this isn't the worst of the ways that 3pid invites are broken.
|
|
|
|
#
|
2019-01-29 17:35:36 -05:00
|
|
|
# (b) for V1 and V2 rooms, the server which created the event_id
|
|
|
|
#
|
2018-09-03 20:09:12 -04:00
|
|
|
# let's start by getting the domain for each pdu, and flattening the event back
|
|
|
|
# to JSON.
|
2019-01-29 12:21:48 -05:00
|
|
|
|
|
|
|
# First we check that the sender event is signed by the sender's domain
|
|
|
|
# (except if its a 3pid invite, in which case it may be sent by any server)
|
2021-06-08 06:07:46 -04:00
|
|
|
if not _is_invite_via_3pid(pdu):
|
|
|
|
try:
|
|
|
|
await keyring.verify_event_for_server(
|
|
|
|
get_domain_from_id(pdu.sender),
|
|
|
|
pdu,
|
|
|
|
pdu.origin_server_ts if room_version.enforce_key_validity else 0,
|
2019-06-05 05:38:25 -04:00
|
|
|
)
|
2021-06-08 06:07:46 -04:00
|
|
|
except Exception as e:
|
|
|
|
errmsg = "event id %s: unable to verify signature for sender %s: %s" % (
|
|
|
|
pdu.event_id,
|
|
|
|
get_domain_from_id(pdu.sender),
|
|
|
|
e,
|
|
|
|
)
|
|
|
|
raise SynapseError(403, errmsg, Codes.FORBIDDEN)
|
2018-09-03 20:09:12 -04:00
|
|
|
|
2019-01-29 12:21:48 -05:00
|
|
|
# now let's look for events where the sender's domain is different to the
|
|
|
|
# event id's domain (normally only the case for joins/leaves), and add additional
|
|
|
|
# checks. Only do this if the room version has a concept of event ID domain
|
2019-04-01 05:24:38 -04:00
|
|
|
# (ie, the room version uses old-style non-hash event IDs).
|
2021-06-08 06:07:46 -04:00
|
|
|
if room_version.event_format == EventFormatVersions.V1 and get_domain_from_id(
|
|
|
|
pdu.event_id
|
|
|
|
) != get_domain_from_id(pdu.sender):
|
|
|
|
try:
|
|
|
|
await keyring.verify_event_for_server(
|
|
|
|
get_domain_from_id(pdu.event_id),
|
|
|
|
pdu,
|
|
|
|
pdu.origin_server_ts if room_version.enforce_key_validity else 0,
|
|
|
|
)
|
|
|
|
except Exception as e:
|
2019-04-25 17:17:59 -04:00
|
|
|
errmsg = (
|
2021-06-08 06:07:46 -04:00
|
|
|
"event id %s: unable to verify signature for event id domain %s: %s"
|
|
|
|
% (
|
|
|
|
pdu.event_id,
|
|
|
|
get_domain_from_id(pdu.event_id),
|
|
|
|
e,
|
|
|
|
)
|
2019-04-25 15:53:10 -04:00
|
|
|
)
|
2019-10-28 08:43:23 -04:00
|
|
|
raise SynapseError(403, errmsg, Codes.FORBIDDEN)
|
2019-04-25 15:53:10 -04:00
|
|
|
|
2021-07-26 12:17:00 -04:00
|
|
|
# If this is a join event for a restricted room it may have been authorised
|
|
|
|
# via a different server from the sending server. Check those signatures.
|
|
|
|
if (
|
|
|
|
room_version.msc3083_join_rules
|
|
|
|
and pdu.type == EventTypes.Member
|
|
|
|
and pdu.membership == Membership.JOIN
|
2021-09-30 11:13:59 -04:00
|
|
|
and EventContentFields.AUTHORISING_USER in pdu.content
|
2021-07-26 12:17:00 -04:00
|
|
|
):
|
|
|
|
authorising_server = get_domain_from_id(
|
2021-09-30 11:13:59 -04:00
|
|
|
pdu.content[EventContentFields.AUTHORISING_USER]
|
2021-07-26 12:17:00 -04:00
|
|
|
)
|
|
|
|
try:
|
|
|
|
await keyring.verify_event_for_server(
|
|
|
|
authorising_server,
|
|
|
|
pdu,
|
|
|
|
pdu.origin_server_ts if room_version.enforce_key_validity else 0,
|
|
|
|
)
|
|
|
|
except Exception as e:
|
|
|
|
errmsg = (
|
|
|
|
"event id %s: unable to verify signature for authorising server %s: %s"
|
|
|
|
% (
|
|
|
|
pdu.event_id,
|
|
|
|
authorising_server,
|
|
|
|
e,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
raise SynapseError(403, errmsg, Codes.FORBIDDEN)
|
|
|
|
|
2018-09-03 20:09:12 -04:00
|
|
|
|
2020-02-28 07:31:07 -05:00
|
|
|
def _is_invite_via_3pid(event: EventBase) -> bool:
|
2018-09-03 20:09:12 -04:00
|
|
|
return (
|
|
|
|
event.type == EventTypes.Member
|
|
|
|
and event.membership == Membership.INVITE
|
|
|
|
and "third_party_invite" in event.content
|
|
|
|
)
|
|
|
|
|
|
|
|
|
Refactor the way we set `outlier` (#11634)
* `_auth_and_persist_outliers`: mark persisted events as outliers
Mark any events that get persisted via `_auth_and_persist_outliers` as, well,
outliers.
Currently this will be a no-op as everything will already be flagged as an
outlier, but I'm going to change that.
* `process_remote_join`: stop flagging as outlier
The events are now flagged as outliers later on, by `_auth_and_persist_outliers`.
* `send_join`: remove `outlier=True`
The events created here are returned in the result of `send_join` to
`FederationHandler.do_invite_join`. From there they are passed into
`FederationEventHandler.process_remote_join`, which passes them to
`_auth_and_persist_outliers`... which sets the `outlier` flag.
* `get_event_auth`: remove `outlier=True`
stop flagging the events returned by `get_event_auth` as outliers. This method
is only called by `_get_remote_auth_chain_for_event`, which passes the results
into `_auth_and_persist_outliers`, which will flag them as outliers.
* `_get_remote_auth_chain_for_event`: remove `outlier=True`
we pass all the events into `_auth_and_persist_outliers`, which will now flag
the events as outliers.
* `_check_sigs_and_hash_and_fetch`: remove unused `outlier` parameter
This param is now never set to True, so we can remove it.
* `_check_sigs_and_hash_and_fetch_one`: remove unused `outlier` param
This is no longer set anywhere, so we can remove it.
* `get_pdu`: remove unused `outlier` parameter
... and chase it down into `get_pdu_from_destination_raw`.
* `event_from_pdu_json`: remove redundant `outlier` param
This is never set to `True`, so can be removed.
* changelog
* update docstring
2022-01-05 07:26:11 -05:00
|
|
|
def event_from_pdu_json(pdu_json: JsonDict, room_version: RoomVersion) -> EventBase:
|
2020-01-31 11:50:13 -05:00
|
|
|
"""Construct an EventBase from an event json received over federation
|
2017-12-30 13:40:19 -05:00
|
|
|
|
|
|
|
Args:
|
2020-01-31 11:50:13 -05:00
|
|
|
pdu_json: pdu as received over federation
|
|
|
|
room_version: The version of the room this event belongs to
|
2017-12-30 13:40:19 -05:00
|
|
|
|
|
|
|
Raises:
|
2018-05-01 11:19:39 -04:00
|
|
|
SynapseError: if the pdu is missing required fields or is otherwise
|
|
|
|
not a valid matrix event
|
2017-12-30 13:40:19 -05:00
|
|
|
"""
|
2017-12-30 13:40:19 -05:00
|
|
|
# we could probably enforce a bunch of other fields here (room_id, sender,
|
|
|
|
# origin, etc etc)
|
2019-01-29 12:21:48 -05:00
|
|
|
assert_params_in_dict(pdu_json, ("type", "depth"))
|
2018-05-01 11:19:39 -04:00
|
|
|
|
2022-01-06 12:09:30 -05:00
|
|
|
# Strip any unauthorized values from "unsigned" if they exist
|
|
|
|
if "unsigned" in pdu_json:
|
|
|
|
_strip_unsigned_values(pdu_json)
|
|
|
|
|
2018-05-01 11:19:39 -04:00
|
|
|
depth = pdu_json["depth"]
|
2020-06-16 08:51:47 -04:00
|
|
|
if not isinstance(depth, int):
|
2018-05-01 11:19:39 -04:00
|
|
|
raise SynapseError(400, "Depth %r not an intger" % (depth,), Codes.BAD_JSON)
|
|
|
|
|
|
|
|
if depth < 0:
|
|
|
|
raise SynapseError(400, "Depth too small", Codes.BAD_JSON)
|
|
|
|
elif depth > MAX_DEPTH:
|
|
|
|
raise SynapseError(400, "Depth too large", Codes.BAD_JSON)
|
|
|
|
|
2020-05-14 13:24:01 -04:00
|
|
|
# Validate that the JSON conforms to the specification.
|
|
|
|
if room_version.strict_canonicaljson:
|
|
|
|
validate_canonicaljson(pdu_json)
|
|
|
|
|
2020-02-07 10:30:04 -05:00
|
|
|
event = make_event_from_dict(pdu_json, room_version)
|
2017-12-30 13:40:19 -05:00
|
|
|
return event
|
2022-01-06 12:09:30 -05:00
|
|
|
|
|
|
|
|
|
|
|
def _strip_unsigned_values(pdu_dict: JsonDict) -> None:
|
|
|
|
"""
|
|
|
|
Strip any unsigned values unless specifically allowed, as defined by the whitelist.
|
|
|
|
|
|
|
|
pdu: the json dict to strip values from. Note that the dict is mutated by this
|
|
|
|
function
|
|
|
|
"""
|
|
|
|
unsigned = pdu_dict["unsigned"]
|
|
|
|
|
|
|
|
if not isinstance(unsigned, dict):
|
|
|
|
pdu_dict["unsigned"] = {}
|
|
|
|
|
|
|
|
if pdu_dict["type"] == "m.room.member":
|
|
|
|
whitelist = ["knock_room_state", "invite_room_state", "age"]
|
|
|
|
else:
|
|
|
|
whitelist = ["age"]
|
|
|
|
|
|
|
|
filtered_unsigned = {k: v for k, v in unsigned.items() if k in whitelist}
|
|
|
|
pdu_dict["unsigned"] = filtered_unsigned
|