2015-01-26 05:45:24 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2015-01-26 05:45:24 -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-12-30 13:40:19 -05:00
|
|
|
import copy
|
|
|
|
import itertools
|
|
|
|
import logging
|
2020-02-03 15:59:10 -05:00
|
|
|
from typing import (
|
|
|
|
Any,
|
|
|
|
Awaitable,
|
|
|
|
Callable,
|
|
|
|
Dict,
|
|
|
|
Iterable,
|
|
|
|
List,
|
2020-09-29 10:57:36 -04:00
|
|
|
Mapping,
|
2020-02-03 15:59:10 -05:00
|
|
|
Optional,
|
2020-02-03 16:14:30 -05:00
|
|
|
Sequence,
|
2020-02-03 15:59:10 -05:00
|
|
|
Tuple,
|
|
|
|
TypeVar,
|
2020-09-29 10:57:36 -04:00
|
|
|
Union,
|
2020-02-03 15:59:10 -05:00
|
|
|
)
|
2017-12-30 13:40:19 -05:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from prometheus_client import Counter
|
|
|
|
|
2015-01-26 05:45:24 -05:00
|
|
|
from twisted.internet import defer
|
2020-03-17 08:04:49 -04:00
|
|
|
from twisted.internet.defer import Deferred
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2019-04-01 05:24:38 -04:00
|
|
|
from synapse.api.constants import EventTypes, Membership
|
2015-03-05 11:08:02 -05:00
|
|
|
from synapse.api.errors import (
|
2018-07-09 02:09:20 -04:00
|
|
|
CodeMessageException,
|
2019-02-23 09:31:08 -05:00
|
|
|
Codes,
|
2018-07-09 02:09:20 -04:00
|
|
|
FederationDeniedError,
|
|
|
|
HttpResponseException,
|
|
|
|
SynapseError,
|
2020-01-27 09:30:57 -05:00
|
|
|
UnsupportedRoomVersionError,
|
2015-03-05 11:08:02 -05:00
|
|
|
)
|
2019-04-01 05:24:38 -04:00
|
|
|
from synapse.api.room_versions import (
|
|
|
|
KNOWN_ROOM_VERSIONS,
|
|
|
|
EventFormatVersions,
|
2020-02-03 15:51:26 -05:00
|
|
|
RoomVersion,
|
2019-04-01 05:24:38 -04:00
|
|
|
RoomVersions,
|
|
|
|
)
|
2020-01-31 11:50:13 -05:00
|
|
|
from synapse.events import EventBase, builder
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.federation.federation_base import FederationBase, event_from_pdu_json
|
2020-03-17 08:04:49 -04:00
|
|
|
from synapse.logging.context import make_deferred_yieldable, preserve_fn
|
2019-07-03 10:07:04 -04:00
|
|
|
from synapse.logging.utils import log_function
|
2020-09-16 06:56:23 -04:00
|
|
|
from synapse.types import JsonDict, get_domain_from_id
|
2019-12-10 12:42:46 -05:00
|
|
|
from synapse.util import unwrapFirstError
|
2017-12-30 13:40:19 -05:00
|
|
|
from synapse.util.caches.expiringcache import ExpiringCache
|
2017-03-22 20:12:21 -04:00
|
|
|
from synapse.util.retryutils import NotRetryingDestination
|
2015-02-17 12:20:56 -05:00
|
|
|
|
2018-05-21 20:47:37 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
2015-03-10 11:29:22 -04:00
|
|
|
|
2018-05-21 20:47:37 -04:00
|
|
|
sent_queries_counter = Counter("synapse_federation_client_sent_queries", "", ["type"])
|
2015-02-24 13:10:44 -05:00
|
|
|
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2016-08-10 06:31:46 -04:00
|
|
|
PDU_RETRY_TIME_MS = 1 * 60 * 1000
|
|
|
|
|
2020-02-03 15:59:10 -05:00
|
|
|
T = TypeVar("T")
|
|
|
|
|
2016-08-10 06:31:46 -04:00
|
|
|
|
2018-08-01 06:24:19 -04:00
|
|
|
class InvalidResponseError(RuntimeError):
|
|
|
|
"""Helper for _try_destination_list: indicates that the server returned a response
|
|
|
|
we couldn't parse
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2018-08-01 06:24:19 -04:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
2015-02-03 09:58:30 -05:00
|
|
|
class FederationClient(FederationBase):
|
2016-06-15 10:12:59 -04:00
|
|
|
def __init__(self, hs):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(hs)
|
2015-02-16 13:02:39 -05:00
|
|
|
|
2016-08-10 06:31:46 -04:00
|
|
|
self.pdu_destination_tried = {}
|
2019-06-20 05:32:02 -04:00
|
|
|
self._clock.looping_call(self._clear_tried_cache, 60 * 1000)
|
2016-08-26 09:54:30 -04:00
|
|
|
self.state = hs.get_state_handler()
|
2018-03-12 10:07:39 -04:00
|
|
|
self.transport_layer = hs.get_federation_transport_client()
|
2016-08-10 06:31:46 -04:00
|
|
|
|
2019-01-25 12:19:31 -05:00
|
|
|
self.hostname = hs.hostname
|
2020-07-08 12:51:56 -04:00
|
|
|
self.signing_key = hs.signing_key
|
2019-01-16 10:13:07 -05:00
|
|
|
|
2018-09-21 09:19:46 -04:00
|
|
|
self._get_pdu_cache = ExpiringCache(
|
|
|
|
cache_name="get_pdu_cache",
|
|
|
|
clock=self._clock,
|
|
|
|
max_len=1000,
|
|
|
|
expiry_ms=120 * 1000,
|
|
|
|
reset_expiry_on_get=False,
|
|
|
|
)
|
|
|
|
|
2016-08-10 06:31:46 -04:00
|
|
|
def _clear_tried_cache(self):
|
|
|
|
"""Clear pdu_destination_tried cache"""
|
|
|
|
now = self._clock.time_msec()
|
|
|
|
|
|
|
|
old_dict = self.pdu_destination_tried
|
|
|
|
self.pdu_destination_tried = {}
|
|
|
|
|
|
|
|
for event_id, destination_dict in old_dict.items():
|
|
|
|
destination_dict = {
|
|
|
|
dest: time
|
|
|
|
for dest, time in destination_dict.items()
|
|
|
|
if time + PDU_RETRY_TIME_MS > now
|
|
|
|
}
|
|
|
|
if destination_dict:
|
|
|
|
self.pdu_destination_tried[event_id] = destination_dict
|
|
|
|
|
2015-01-26 05:45:24 -05:00
|
|
|
@log_function
|
2019-06-20 05:32:02 -04:00
|
|
|
def make_query(
|
|
|
|
self,
|
|
|
|
destination,
|
|
|
|
query_type,
|
|
|
|
args,
|
|
|
|
retry_on_dns_fail=False,
|
|
|
|
ignore_backoff=False,
|
|
|
|
):
|
2015-01-26 05:45:24 -05:00
|
|
|
"""Sends a federation Query to a remote homeserver of the given type
|
|
|
|
and arguments.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
destination (str): Domain name of the remote homeserver
|
|
|
|
query_type (str): Category of the query type; should match the
|
|
|
|
handler name used in register_query_handler().
|
|
|
|
args (dict): Mapping of strings to strings containing the details
|
|
|
|
of the query request.
|
2017-03-23 07:10:36 -04:00
|
|
|
ignore_backoff (bool): true to ignore the historical backoff data
|
|
|
|
and try the request anyway.
|
2015-01-26 05:45:24 -05:00
|
|
|
|
|
|
|
Returns:
|
2020-07-30 08:01:33 -04:00
|
|
|
a Awaitable which will eventually yield a JSON object from the
|
2015-01-26 05:45:24 -05:00
|
|
|
response
|
|
|
|
"""
|
2018-05-21 20:47:37 -04:00
|
|
|
sent_queries_counter.labels(query_type).inc()
|
2015-03-10 11:29:22 -04:00
|
|
|
|
2015-01-26 05:45:24 -05:00
|
|
|
return self.transport_layer.make_query(
|
2019-06-20 05:32:02 -04:00
|
|
|
destination,
|
|
|
|
query_type,
|
|
|
|
args,
|
|
|
|
retry_on_dns_fail=retry_on_dns_fail,
|
2017-03-23 07:10:36 -04:00
|
|
|
ignore_backoff=ignore_backoff,
|
2015-01-26 05:45:24 -05:00
|
|
|
)
|
|
|
|
|
2015-07-23 11:03:38 -04:00
|
|
|
@log_function
|
2016-09-12 13:17:09 -04:00
|
|
|
def query_client_keys(self, destination, content, timeout):
|
2015-07-23 11:03:38 -04:00
|
|
|
"""Query device keys for a device hosted on a remote server.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
destination (str): Domain name of the remote homeserver
|
|
|
|
content (dict): The query content.
|
|
|
|
|
|
|
|
Returns:
|
2020-07-30 08:01:33 -04:00
|
|
|
an Awaitable which will eventually yield a JSON object from the
|
2015-07-23 11:03:38 -04:00
|
|
|
response
|
|
|
|
"""
|
2018-05-21 20:47:37 -04:00
|
|
|
sent_queries_counter.labels("client_device_keys").inc()
|
2019-06-20 05:32:02 -04:00
|
|
|
return self.transport_layer.query_client_keys(destination, content, timeout)
|
2015-07-23 11:03:38 -04:00
|
|
|
|
2017-01-26 11:06:54 -05:00
|
|
|
@log_function
|
|
|
|
def query_user_devices(self, destination, user_id, timeout=30000):
|
|
|
|
"""Query the device keys for a list of user ids hosted on a remote
|
|
|
|
server.
|
|
|
|
"""
|
2018-05-21 20:47:37 -04:00
|
|
|
sent_queries_counter.labels("user_devices").inc()
|
2019-06-20 05:32:02 -04:00
|
|
|
return self.transport_layer.query_user_devices(destination, user_id, timeout)
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2015-07-23 11:03:38 -04:00
|
|
|
@log_function
|
2016-09-12 13:17:09 -04:00
|
|
|
def claim_client_keys(self, destination, content, timeout):
|
2015-07-23 11:03:38 -04:00
|
|
|
"""Claims one-time keys for a device hosted on a remote server.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
destination (str): Domain name of the remote homeserver
|
|
|
|
content (dict): The query content.
|
|
|
|
|
|
|
|
Returns:
|
2020-07-30 08:01:33 -04:00
|
|
|
an Awaitable which will eventually yield a JSON object from the
|
2015-07-23 11:03:38 -04:00
|
|
|
response
|
|
|
|
"""
|
2018-05-21 20:47:37 -04:00
|
|
|
sent_queries_counter.labels("client_one_time_keys").inc()
|
2019-06-20 05:32:02 -04:00
|
|
|
return self.transport_layer.claim_client_keys(destination, content, timeout)
|
2015-07-23 11:03:38 -04:00
|
|
|
|
2020-02-03 15:35:40 -05:00
|
|
|
async def backfill(
|
|
|
|
self, dest: str, room_id: str, limit: int, extremities: Iterable[str]
|
2020-02-28 07:31:07 -05:00
|
|
|
) -> Optional[List[EventBase]]:
|
2020-02-03 15:35:40 -05:00
|
|
|
"""Requests some more historic PDUs for the given room from the
|
2015-01-26 05:45:24 -05:00
|
|
|
given destination server.
|
|
|
|
|
|
|
|
Args:
|
2019-11-12 08:08:12 -05:00
|
|
|
dest (str): The remote homeserver to ask.
|
2019-01-23 15:21:33 -05:00
|
|
|
room_id (str): The room_id to backfill.
|
2020-02-03 15:35:40 -05:00
|
|
|
limit (int): The maximum number of events to return.
|
|
|
|
extremities (list): our current backwards extremities, to backfill from
|
2015-01-26 05:45:24 -05:00
|
|
|
"""
|
|
|
|
logger.debug("backfill extrem=%s", extremities)
|
|
|
|
|
2020-02-28 07:31:07 -05:00
|
|
|
# If there are no extremities then we've (probably) reached the start.
|
2015-01-26 05:45:24 -05:00
|
|
|
if not extremities:
|
2020-02-28 07:31:07 -05:00
|
|
|
return None
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2020-02-03 15:35:40 -05:00
|
|
|
transaction_data = await self.transport_layer.backfill(
|
2019-06-20 05:32:02 -04:00
|
|
|
dest, room_id, extremities, limit
|
|
|
|
)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2019-10-24 13:17:33 -04:00
|
|
|
logger.debug("backfill transaction_data=%r", transaction_data)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2020-01-31 11:50:13 -05:00
|
|
|
room_version = await self.store.get_room_version(room_id)
|
2019-01-23 15:21:33 -05:00
|
|
|
|
2015-01-26 05:45:24 -05:00
|
|
|
pdus = [
|
2020-01-31 11:50:13 -05:00
|
|
|
event_from_pdu_json(p, room_version, outlier=False)
|
2015-01-26 05:45:24 -05:00
|
|
|
for p in transaction_data["pdus"]
|
|
|
|
]
|
|
|
|
|
2020-09-18 09:51:11 -04:00
|
|
|
# Check signatures and hash of pdus, removing any from the list that fail checks
|
|
|
|
pdus[:] = await self._check_sigs_and_hash_and_fetch(
|
|
|
|
dest, pdus, outlier=True, room_version=room_version
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2015-01-26 09:33:11 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return pdus
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2020-02-03 15:41:54 -05:00
|
|
|
async def get_pdu(
|
|
|
|
self,
|
|
|
|
destinations: Iterable[str],
|
|
|
|
event_id: str,
|
2020-01-31 09:07:31 -05:00
|
|
|
room_version: RoomVersion,
|
2020-02-03 15:41:54 -05:00
|
|
|
outlier: bool = False,
|
|
|
|
timeout: Optional[int] = None,
|
|
|
|
) -> Optional[EventBase]:
|
2015-01-26 05:45:24 -05:00
|
|
|
"""Requests the PDU with given origin and ID from the remote home
|
|
|
|
servers.
|
|
|
|
|
|
|
|
Will attempt to get the PDU from each destination in the list until
|
|
|
|
one succeeds.
|
|
|
|
|
|
|
|
Args:
|
2020-02-03 15:41:54 -05:00
|
|
|
destinations: Which homeservers to query
|
|
|
|
event_id: event to fetch
|
|
|
|
room_version: version of the room
|
|
|
|
outlier: Indicates whether the PDU is an `outlier`, i.e. if
|
2020-07-09 09:52:58 -04:00
|
|
|
it's from an arbitrary point in the context as opposed to part
|
2015-01-26 05:45:24 -05:00
|
|
|
of the current block of PDUs. Defaults to `False`
|
2020-02-03 15:41:54 -05:00
|
|
|
timeout: How long to try (in ms) each destination for before
|
2015-05-22 10:18:04 -04:00
|
|
|
moving to the next destination. None indicates no timeout.
|
2015-01-26 05:45:24 -05:00
|
|
|
|
|
|
|
Returns:
|
2020-02-03 15:41:54 -05:00
|
|
|
The requested PDU, or None if we were unable to find it.
|
2015-01-26 05:45:24 -05:00
|
|
|
"""
|
|
|
|
|
|
|
|
# TODO: Rate limit the number of times we try and get the same event.
|
|
|
|
|
2018-09-21 09:19:46 -04:00
|
|
|
ev = self._get_pdu_cache.get(event_id)
|
|
|
|
if ev:
|
2019-07-23 09:00:55 -04:00
|
|
|
return ev
|
2015-02-16 13:02:39 -05:00
|
|
|
|
2016-08-10 06:31:46 -04:00
|
|
|
pdu_attempts = self.pdu_destination_tried.setdefault(event_id, {})
|
|
|
|
|
2016-09-01 05:55:02 -04:00
|
|
|
signed_pdu = None
|
2015-01-26 05:45:24 -05:00
|
|
|
for destination in destinations:
|
2016-08-10 06:31:46 -04:00
|
|
|
now = self._clock.time_msec()
|
|
|
|
last_attempt = pdu_attempts.get(destination, 0)
|
|
|
|
if last_attempt + PDU_RETRY_TIME_MS > now:
|
|
|
|
continue
|
|
|
|
|
2015-01-26 05:45:24 -05:00
|
|
|
try:
|
2020-02-03 15:41:54 -05:00
|
|
|
transaction_data = await self.transport_layer.get_event(
|
2019-06-20 05:32:02 -04:00
|
|
|
destination, event_id, timeout=timeout
|
2015-01-26 05:45:24 -05:00
|
|
|
)
|
2015-01-26 09:33:11 -05:00
|
|
|
|
2019-06-05 05:35:40 -04:00
|
|
|
logger.debug(
|
|
|
|
"retrieved event id %s from %s: %r",
|
|
|
|
event_id,
|
|
|
|
destination,
|
|
|
|
transaction_data,
|
|
|
|
)
|
2015-02-17 12:20:56 -05:00
|
|
|
|
2017-03-22 20:12:21 -04:00
|
|
|
pdu_list = [
|
2020-01-31 11:50:13 -05:00
|
|
|
event_from_pdu_json(p, room_version, outlier=outlier)
|
2017-03-22 20:12:21 -04:00
|
|
|
for p in transaction_data["pdus"]
|
2020-02-28 07:31:07 -05:00
|
|
|
] # type: List[EventBase]
|
2015-01-26 09:33:11 -05:00
|
|
|
|
2017-03-22 20:12:21 -04:00
|
|
|
if pdu_list and pdu_list[0]:
|
|
|
|
pdu = pdu_list[0]
|
2015-01-26 09:33:11 -05:00
|
|
|
|
2017-03-22 20:12:21 -04:00
|
|
|
# Check signatures are correct.
|
2020-03-19 08:22:56 -04:00
|
|
|
signed_pdu = await self._check_sigs_and_hash(room_version, pdu)
|
2015-01-26 09:33:11 -05:00
|
|
|
|
2017-03-22 20:12:21 -04:00
|
|
|
break
|
2015-01-26 09:33:11 -05:00
|
|
|
|
2016-08-10 06:31:46 -04:00
|
|
|
pdu_attempts[destination] = now
|
|
|
|
|
2016-08-10 08:39:12 -04:00
|
|
|
except SynapseError as e:
|
2015-02-16 13:02:39 -05:00
|
|
|
logger.info(
|
2019-06-20 05:32:02 -04:00
|
|
|
"Failed to get PDU %s from %s because %s", event_id, destination, e
|
2015-02-16 13:02:39 -05:00
|
|
|
)
|
2019-06-04 13:05:06 -04:00
|
|
|
continue
|
2015-02-17 12:20:56 -05:00
|
|
|
except NotRetryingDestination as e:
|
2018-09-12 09:23:32 -04:00
|
|
|
logger.info(str(e))
|
2015-02-17 12:20:56 -05:00
|
|
|
continue
|
2018-01-22 13:11:18 -05:00
|
|
|
except FederationDeniedError as e:
|
2018-09-12 09:23:32 -04:00
|
|
|
logger.info(str(e))
|
2018-01-22 13:11:18 -05:00
|
|
|
continue
|
2015-01-26 05:45:24 -05:00
|
|
|
except Exception as e:
|
2016-08-10 06:31:46 -04:00
|
|
|
pdu_attempts[destination] = now
|
|
|
|
|
2015-01-26 05:45:24 -05:00
|
|
|
logger.info(
|
2019-06-20 05:32:02 -04:00
|
|
|
"Failed to get PDU %s from %s because %s", event_id, destination, e
|
2015-01-26 05:45:24 -05:00
|
|
|
)
|
|
|
|
continue
|
|
|
|
|
2018-09-21 09:19:46 -04:00
|
|
|
if signed_pdu:
|
2016-09-01 05:55:02 -04:00
|
|
|
self._get_pdu_cache[event_id] = signed_pdu
|
2015-02-16 13:02:39 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return signed_pdu
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2020-02-03 15:42:52 -05:00
|
|
|
async def get_room_state_ids(
|
|
|
|
self, destination: str, room_id: str, event_id: str
|
|
|
|
) -> Tuple[List[str], List[str]]:
|
2019-12-10 12:42:46 -05:00
|
|
|
"""Calls the /state_ids endpoint to fetch the state at a particular point
|
|
|
|
in the room, and the auth events for the given event
|
2015-01-26 05:45:24 -05:00
|
|
|
|
|
|
|
Returns:
|
2020-02-03 15:42:52 -05:00
|
|
|
a tuple of (state event_ids, auth event_ids)
|
2015-01-26 05:45:24 -05:00
|
|
|
"""
|
2020-02-03 15:42:52 -05:00
|
|
|
result = await self.transport_layer.get_room_state_ids(
|
2019-06-20 05:32:02 -04:00
|
|
|
destination, room_id, event_id=event_id
|
2016-08-03 10:04:29 -04:00
|
|
|
)
|
|
|
|
|
2019-12-09 06:37:26 -05:00
|
|
|
state_event_ids = result["pdu_ids"]
|
|
|
|
auth_event_ids = result.get("auth_chain_ids", [])
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2019-12-10 12:42:46 -05:00
|
|
|
if not isinstance(state_event_ids, list) or not isinstance(
|
|
|
|
auth_event_ids, list
|
|
|
|
):
|
|
|
|
raise Exception("invalid response from /state_ids")
|
2016-08-03 09:47:37 -04:00
|
|
|
|
2019-12-10 12:42:46 -05:00
|
|
|
return state_event_ids, auth_event_ids
|
2016-08-03 09:47:37 -04:00
|
|
|
|
2020-03-17 08:04:49 -04:00
|
|
|
async def _check_sigs_and_hash_and_fetch(
|
|
|
|
self,
|
|
|
|
origin: str,
|
|
|
|
pdus: List[EventBase],
|
2020-03-19 08:22:56 -04:00
|
|
|
room_version: RoomVersion,
|
2020-03-17 08:04:49 -04:00
|
|
|
outlier: bool = False,
|
|
|
|
include_none: bool = False,
|
|
|
|
) -> List[EventBase]:
|
2020-07-09 09:52:58 -04:00
|
|
|
"""Takes a list of PDUs and checks the signatures and hashes of each
|
2020-03-17 08:04:49 -04:00
|
|
|
one. If a PDU fails its signature check then we check if we have it in
|
|
|
|
the database and if not then request if from the originating server of
|
|
|
|
that PDU.
|
|
|
|
|
|
|
|
If a PDU fails its content hash check then it is redacted.
|
|
|
|
|
|
|
|
The given list of PDUs are not modified, instead the function returns
|
|
|
|
a new list.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
origin
|
|
|
|
pdu
|
|
|
|
room_version
|
|
|
|
outlier: Whether the events are outliers or not
|
|
|
|
include_none: Whether to include None in the returned list
|
|
|
|
for events that have failed their checks
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred : A list of PDUs that have valid signatures and hashes.
|
|
|
|
"""
|
|
|
|
deferreds = self._check_sigs_and_hashes(room_version, pdus)
|
|
|
|
|
2020-07-17 07:08:56 -04:00
|
|
|
async def handle_check_result(pdu: EventBase, deferred: Deferred):
|
2020-03-17 08:04:49 -04:00
|
|
|
try:
|
2020-07-17 07:08:56 -04:00
|
|
|
res = await make_deferred_yieldable(deferred)
|
2020-03-17 08:04:49 -04:00
|
|
|
except SynapseError:
|
|
|
|
res = None
|
|
|
|
|
|
|
|
if not res:
|
|
|
|
# Check local db.
|
2020-07-17 07:08:56 -04:00
|
|
|
res = await self.store.get_event(
|
2020-03-17 08:04:49 -04:00
|
|
|
pdu.event_id, allow_rejected=True, allow_none=True
|
|
|
|
)
|
|
|
|
|
2020-09-16 06:56:23 -04:00
|
|
|
pdu_origin = get_domain_from_id(pdu.sender)
|
|
|
|
if not res and pdu_origin != origin:
|
2020-03-17 08:04:49 -04:00
|
|
|
try:
|
2020-07-17 07:08:56 -04:00
|
|
|
res = await self.get_pdu(
|
2020-09-16 06:56:23 -04:00
|
|
|
destinations=[pdu_origin],
|
2020-07-17 07:08:56 -04:00
|
|
|
event_id=pdu.event_id,
|
|
|
|
room_version=room_version,
|
|
|
|
outlier=outlier,
|
|
|
|
timeout=10000,
|
2020-03-17 08:04:49 -04:00
|
|
|
)
|
|
|
|
except SynapseError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
if not res:
|
|
|
|
logger.warning(
|
|
|
|
"Failed to find copy of %s with valid signature", pdu.event_id
|
|
|
|
)
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
|
|
|
handle = preserve_fn(handle_check_result)
|
|
|
|
deferreds2 = [handle(pdu, deferred) for pdu, deferred in zip(pdus, deferreds)]
|
|
|
|
|
|
|
|
valid_pdus = await make_deferred_yieldable(
|
|
|
|
defer.gatherResults(deferreds2, consumeErrors=True)
|
|
|
|
).addErrback(unwrapFirstError)
|
|
|
|
|
|
|
|
if include_none:
|
|
|
|
return valid_pdus
|
|
|
|
else:
|
|
|
|
return [p for p in valid_pdus if p]
|
|
|
|
|
2020-02-03 15:43:40 -05:00
|
|
|
async def get_event_auth(self, destination, room_id, event_id):
|
|
|
|
res = await self.transport_layer.get_event_auth(destination, room_id, event_id)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2020-01-31 11:50:13 -05:00
|
|
|
room_version = await self.store.get_room_version(room_id)
|
2019-01-23 15:21:33 -05:00
|
|
|
|
2015-01-26 05:45:24 -05:00
|
|
|
auth_chain = [
|
2020-01-31 11:50:13 -05:00
|
|
|
event_from_pdu_json(p, room_version, outlier=True)
|
|
|
|
for p in res["auth_chain"]
|
2015-01-26 05:45:24 -05:00
|
|
|
]
|
|
|
|
|
2020-02-03 15:43:40 -05:00
|
|
|
signed_auth = await self._check_sigs_and_hash_and_fetch(
|
2020-03-19 08:22:56 -04:00
|
|
|
destination, auth_chain, outlier=True, room_version=room_version
|
2015-02-02 11:56:01 -05:00
|
|
|
)
|
2015-01-26 09:33:11 -05:00
|
|
|
|
2015-02-02 11:56:01 -05:00
|
|
|
signed_auth.sort(key=lambda e: e.depth)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return signed_auth
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2020-02-03 15:59:10 -05:00
|
|
|
async def _try_destination_list(
|
|
|
|
self,
|
|
|
|
description: str,
|
|
|
|
destinations: Iterable[str],
|
|
|
|
callback: Callable[[str], Awaitable[T]],
|
|
|
|
) -> T:
|
2018-08-01 06:24:19 -04:00
|
|
|
"""Try an operation on a series of servers, until it succeeds
|
|
|
|
|
|
|
|
Args:
|
2020-02-03 15:59:10 -05:00
|
|
|
description: description of the operation we're doing, for logging
|
2018-08-01 06:24:19 -04:00
|
|
|
|
2020-02-03 15:59:10 -05:00
|
|
|
destinations: list of server_names to try
|
2018-08-01 06:24:19 -04:00
|
|
|
|
2020-02-03 15:59:10 -05:00
|
|
|
callback: Function to run for each server. Passed a single
|
|
|
|
argument: the server_name to try.
|
2018-08-01 06:24:19 -04:00
|
|
|
|
|
|
|
If the callback raises a CodeMessageException with a 300/400 code,
|
|
|
|
attempts to perform the operation stop immediately and the exception is
|
|
|
|
reraised.
|
|
|
|
|
|
|
|
Otherwise, if the callback raises an Exception the error is logged and the
|
|
|
|
next server tried. Normally the stacktrace is logged but this is
|
|
|
|
suppressed if the exception is an InvalidResponseError.
|
|
|
|
|
|
|
|
Returns:
|
2020-02-03 15:59:10 -05:00
|
|
|
The result of callback, if it succeeds
|
2018-08-01 06:24:19 -04:00
|
|
|
|
|
|
|
Raises:
|
2019-08-01 08:47:31 -04:00
|
|
|
SynapseError if the chosen remote server returns a 300/400 code, or
|
|
|
|
no servers were reachable.
|
2018-08-01 06:24:19 -04:00
|
|
|
"""
|
|
|
|
for destination in destinations:
|
|
|
|
if destination == self.server_name:
|
|
|
|
continue
|
|
|
|
|
|
|
|
try:
|
2020-02-03 15:59:10 -05:00
|
|
|
res = await callback(destination)
|
2019-07-23 09:00:55 -04:00
|
|
|
return res
|
2018-08-01 06:24:19 -04:00
|
|
|
except InvalidResponseError as e:
|
2019-10-31 06:23:24 -04:00
|
|
|
logger.warning("Failed to %s via %s: %s", description, destination, e)
|
2020-01-27 09:30:57 -05:00
|
|
|
except UnsupportedRoomVersionError:
|
|
|
|
raise
|
2018-08-01 08:47:07 -04:00
|
|
|
except HttpResponseException as e:
|
2018-08-01 06:24:19 -04:00
|
|
|
if not 500 <= e.code < 600:
|
2018-08-01 09:58:16 -04:00
|
|
|
raise e.to_synapse_error()
|
2018-08-01 06:24:19 -04:00
|
|
|
else:
|
2019-10-31 06:23:24 -04:00
|
|
|
logger.warning(
|
2018-08-01 06:24:19 -04:00
|
|
|
"Failed to %s via %s: %i %s",
|
2019-06-20 05:32:02 -04:00
|
|
|
description,
|
|
|
|
destination,
|
|
|
|
e.code,
|
|
|
|
e.args[0],
|
2018-08-01 06:24:19 -04:00
|
|
|
)
|
|
|
|
except Exception:
|
2019-10-31 06:23:24 -04:00
|
|
|
logger.warning(
|
2020-02-03 15:59:10 -05:00
|
|
|
"Failed to %s via %s", description, destination, exc_info=True
|
2019-10-31 06:23:24 -04:00
|
|
|
)
|
2018-08-01 06:24:19 -04:00
|
|
|
|
2019-08-01 08:47:31 -04:00
|
|
|
raise SynapseError(502, "Failed to %s via any server" % (description,))
|
2018-08-01 06:24:19 -04:00
|
|
|
|
2020-02-03 15:51:26 -05:00
|
|
|
async def make_membership_event(
|
2020-01-27 09:30:57 -05:00
|
|
|
self,
|
|
|
|
destinations: Iterable[str],
|
|
|
|
room_id: str,
|
|
|
|
user_id: str,
|
|
|
|
membership: str,
|
|
|
|
content: dict,
|
2020-09-29 10:57:36 -04:00
|
|
|
params: Optional[Mapping[str, Union[str, Iterable[str]]]],
|
2020-02-03 15:51:26 -05:00
|
|
|
) -> Tuple[str, EventBase, RoomVersion]:
|
2015-10-20 06:58:58 -04:00
|
|
|
"""
|
|
|
|
Creates an m.room.member event, with context, without participating in the room.
|
|
|
|
|
|
|
|
Does so by asking one of the already participating servers to create an
|
|
|
|
event with proper context.
|
|
|
|
|
2019-01-24 13:08:08 -05:00
|
|
|
Returns a fully signed and hashed event.
|
|
|
|
|
2015-10-20 06:58:58 -04:00
|
|
|
Note that this does not append any events to any graphs.
|
|
|
|
|
|
|
|
Args:
|
2020-01-27 09:30:57 -05:00
|
|
|
destinations: Candidate homeservers which are probably
|
2015-10-20 06:58:58 -04:00
|
|
|
participating in the room.
|
2020-01-27 09:30:57 -05:00
|
|
|
room_id: The room in which the event will happen.
|
|
|
|
user_id: The user whose membership is being evented.
|
|
|
|
membership: The "membership" property of the event. Must be one of
|
|
|
|
"join" or "leave".
|
|
|
|
content: Any additional data to put into the content field of the
|
|
|
|
event.
|
|
|
|
params: Query parameters to include in the request.
|
2020-02-03 15:51:26 -05:00
|
|
|
|
|
|
|
Returns:
|
2020-01-27 09:30:57 -05:00
|
|
|
`(origin, event, room_version)` where origin is the remote
|
|
|
|
homeserver which generated the event, and room_version is the
|
|
|
|
version of the room.
|
|
|
|
|
2020-02-03 15:51:26 -05:00
|
|
|
Raises:
|
|
|
|
UnsupportedRoomVersionError: if remote responds with
|
|
|
|
a room version we don't understand.
|
2017-04-20 19:46:54 -04:00
|
|
|
|
2020-02-03 15:51:26 -05:00
|
|
|
SynapseError: if the chosen remote server returns a 300/400 code.
|
2017-04-20 19:46:54 -04:00
|
|
|
|
2020-02-03 15:51:26 -05:00
|
|
|
RuntimeError: if no servers were reachable.
|
2015-10-20 06:58:58 -04:00
|
|
|
"""
|
|
|
|
valid_memberships = {Membership.JOIN, Membership.LEAVE}
|
|
|
|
if membership not in valid_memberships:
|
|
|
|
raise RuntimeError(
|
2019-06-20 05:32:02 -04:00
|
|
|
"make_membership_event called with membership='%s', must be one of %s"
|
|
|
|
% (membership, ",".join(valid_memberships))
|
2015-10-20 06:58:58 -04:00
|
|
|
)
|
2015-06-26 04:52:24 -04:00
|
|
|
|
2020-02-03 16:07:13 -05:00
|
|
|
async def send_request(destination: str) -> Tuple[str, EventBase, RoomVersion]:
|
|
|
|
ret = await self.transport_layer.make_membership_event(
|
2019-06-20 05:32:02 -04:00
|
|
|
destination, room_id, user_id, membership, params
|
2018-08-01 06:24:19 -04:00
|
|
|
)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2019-01-23 11:50:06 -05:00
|
|
|
# Note: If not supplied, the room version may be either v1 or v2,
|
|
|
|
# however either way the event format version will be v1.
|
2020-01-27 09:30:57 -05:00
|
|
|
room_version_id = ret.get("room_version", RoomVersions.V1.identifier)
|
|
|
|
room_version = KNOWN_ROOM_VERSIONS.get(room_version_id)
|
|
|
|
if not room_version:
|
|
|
|
raise UnsupportedRoomVersionError()
|
|
|
|
|
2018-08-01 10:35:29 -04:00
|
|
|
pdu_dict = ret.get("event", None)
|
|
|
|
if not isinstance(pdu_dict, dict):
|
|
|
|
raise InvalidResponseError("Bad 'event' field in response")
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2018-08-01 06:24:19 -04:00
|
|
|
logger.debug("Got response to make_%s: %s", membership, pdu_dict)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2018-08-01 06:24:19 -04:00
|
|
|
pdu_dict["content"].update(content)
|
2015-11-12 11:19:55 -05:00
|
|
|
|
2018-08-01 06:24:19 -04:00
|
|
|
# The protoevent received over the JSON wire may not have all
|
|
|
|
# the required fields. Lets just gloss over that because
|
|
|
|
# there's some we never care about
|
|
|
|
if "prev_state" not in pdu_dict:
|
|
|
|
pdu_dict["prev_state"] = []
|
2015-11-13 12:27:25 -05:00
|
|
|
|
2019-01-25 12:19:31 -05:00
|
|
|
ev = builder.create_local_event_from_event_dict(
|
2019-06-20 05:32:02 -04:00
|
|
|
self._clock,
|
|
|
|
self.hostname,
|
|
|
|
self.signing_key,
|
2020-01-29 12:58:01 -05:00
|
|
|
room_version=room_version,
|
2019-06-20 05:32:02 -04:00
|
|
|
event_dict=pdu_dict,
|
2019-01-23 14:44:37 -05:00
|
|
|
)
|
2017-01-13 08:21:04 -05:00
|
|
|
|
2020-02-03 16:07:13 -05:00
|
|
|
return destination, ev, room_version
|
2015-02-04 11:28:12 -05:00
|
|
|
|
2020-02-03 15:51:26 -05:00
|
|
|
return await self._try_destination_list(
|
2019-06-20 05:32:02 -04:00
|
|
|
"make_" + membership, destinations, send_request
|
2018-08-01 06:24:19 -04:00
|
|
|
)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2020-02-03 15:55:00 -05:00
|
|
|
async def send_join(
|
2020-02-06 10:50:39 -05:00
|
|
|
self, destinations: Iterable[str], pdu: EventBase, room_version: RoomVersion
|
2020-02-03 15:55:00 -05:00
|
|
|
) -> Dict[str, Any]:
|
2017-04-20 19:46:54 -04:00
|
|
|
"""Sends a join event to one of a list of homeservers.
|
|
|
|
|
|
|
|
Doing so will cause the remote server to add the event to the graph,
|
|
|
|
and send the event out to the rest of the federation.
|
|
|
|
|
|
|
|
Args:
|
2020-02-03 15:55:00 -05:00
|
|
|
destinations: Candidate homeservers which are probably
|
2017-04-20 19:46:54 -04:00
|
|
|
participating in the room.
|
2020-02-03 15:55:00 -05:00
|
|
|
pdu: event to be sent
|
2020-02-06 10:50:39 -05:00
|
|
|
room_version: the version of the room (according to the server that
|
|
|
|
did the make_join)
|
2017-04-20 19:46:54 -04:00
|
|
|
|
2020-02-03 15:55:00 -05:00
|
|
|
Returns:
|
|
|
|
a dict with members ``origin`` (a string
|
2020-02-05 10:47:00 -05:00
|
|
|
giving the server the event was sent to, ``state`` (?) and
|
2017-04-20 19:46:54 -04:00
|
|
|
``auth_chain``.
|
|
|
|
|
2020-02-03 15:55:00 -05:00
|
|
|
Raises:
|
|
|
|
SynapseError: if the chosen remote server returns a 300/400 code.
|
2017-04-20 19:46:54 -04:00
|
|
|
|
2020-02-03 15:55:00 -05:00
|
|
|
RuntimeError: if no servers were reachable.
|
2017-04-20 19:46:54 -04:00
|
|
|
"""
|
|
|
|
|
2020-02-03 16:07:38 -05:00
|
|
|
async def send_request(destination) -> Dict[str, Any]:
|
|
|
|
content = await self._do_send_join(destination, pdu)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2018-08-01 06:24:19 -04:00
|
|
|
logger.debug("Got content: %s", content)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2018-08-01 06:24:19 -04:00
|
|
|
state = [
|
2020-01-31 11:50:13 -05:00
|
|
|
event_from_pdu_json(p, room_version, outlier=True)
|
2018-08-01 06:24:19 -04:00
|
|
|
for p in content.get("state", [])
|
|
|
|
]
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2018-08-01 06:24:19 -04:00
|
|
|
auth_chain = [
|
2020-01-31 11:50:13 -05:00
|
|
|
event_from_pdu_json(p, room_version, outlier=True)
|
2018-08-01 06:24:19 -04:00
|
|
|
for p in content.get("auth_chain", [])
|
|
|
|
]
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
pdus = {p.event_id: p for p in itertools.chain(state, auth_chain)}
|
2015-06-26 04:52:24 -04:00
|
|
|
|
2020-02-06 10:50:39 -05:00
|
|
|
create_event = None
|
2019-01-23 12:19:58 -05:00
|
|
|
for e in state:
|
|
|
|
if (e.type, e.state_key) == (EventTypes.Create, ""):
|
2020-02-06 10:50:39 -05:00
|
|
|
create_event = e
|
2019-01-23 12:19:58 -05:00
|
|
|
break
|
|
|
|
|
2020-02-06 10:50:39 -05:00
|
|
|
if create_event is None:
|
2019-01-24 13:31:23 -05:00
|
|
|
# If the state doesn't have a create event then the room is
|
|
|
|
# invalid, and it would fail auth checks anyway.
|
2019-01-23 12:19:58 -05:00
|
|
|
raise SynapseError(400, "No create event in state")
|
|
|
|
|
2020-02-06 10:50:39 -05:00
|
|
|
# the room version should be sane.
|
|
|
|
create_room_version = create_event.content.get(
|
|
|
|
"room_version", RoomVersions.V1.identifier
|
|
|
|
)
|
|
|
|
if create_room_version != room_version.identifier:
|
|
|
|
# either the server that fulfilled the make_join, or the server that is
|
|
|
|
# handling the send_join, is lying.
|
|
|
|
raise InvalidResponseError(
|
|
|
|
"Unexpected room version %s in create event"
|
|
|
|
% (create_room_version,)
|
|
|
|
)
|
|
|
|
|
2020-02-03 16:07:38 -05:00
|
|
|
valid_pdus = await self._check_sigs_and_hash_and_fetch(
|
2019-06-20 05:32:02 -04:00
|
|
|
destination,
|
|
|
|
list(pdus.values()),
|
2018-08-01 06:24:19 -04:00
|
|
|
outlier=True,
|
2020-03-19 08:22:56 -04:00
|
|
|
room_version=room_version,
|
2018-08-01 06:24:19 -04:00
|
|
|
)
|
2015-06-26 04:52:24 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
valid_pdus_map = {p.event_id: p for p in valid_pdus}
|
2015-06-26 04:52:24 -04:00
|
|
|
|
2018-08-01 06:24:19 -04:00
|
|
|
# NB: We *need* to copy to ensure that we don't have multiple
|
|
|
|
# references being passed on, as that causes... issues.
|
|
|
|
signed_state = [
|
|
|
|
copy.copy(valid_pdus_map[p.event_id])
|
|
|
|
for p in state
|
|
|
|
if p.event_id in valid_pdus_map
|
|
|
|
]
|
2015-06-26 04:52:24 -04:00
|
|
|
|
2018-08-01 06:24:19 -04:00
|
|
|
signed_auth = [
|
|
|
|
valid_pdus_map[p.event_id]
|
|
|
|
for p in auth_chain
|
|
|
|
if p.event_id in valid_pdus_map
|
|
|
|
]
|
2015-01-26 09:33:11 -05:00
|
|
|
|
2018-08-01 06:24:19 -04:00
|
|
|
# NB: We *need* to copy to ensure that we don't have multiple
|
|
|
|
# references being passed on, as that causes... issues.
|
|
|
|
for s in signed_state:
|
|
|
|
s.internal_metadata = copy.deepcopy(s.internal_metadata)
|
2015-02-04 11:28:12 -05:00
|
|
|
|
2020-02-06 10:50:39 -05:00
|
|
|
# double-check that the same create event has ended up in the auth chain
|
|
|
|
auth_chain_create_events = [
|
|
|
|
e.event_id
|
|
|
|
for e in signed_auth
|
|
|
|
if (e.type, e.state_key) == (EventTypes.Create, "")
|
|
|
|
]
|
|
|
|
if auth_chain_create_events != [create_event.event_id]:
|
|
|
|
raise InvalidResponseError(
|
2020-02-28 07:31:07 -05:00
|
|
|
"Unexpected create event(s) in auth chain: %s"
|
2020-02-06 10:50:39 -05:00
|
|
|
% (auth_chain_create_events,)
|
|
|
|
)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {
|
|
|
|
"state": signed_state,
|
|
|
|
"auth_chain": signed_auth,
|
|
|
|
"origin": destination,
|
|
|
|
}
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2020-02-03 15:55:00 -05:00
|
|
|
return await self._try_destination_list("send_join", destinations, send_request)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2020-02-03 16:08:24 -05:00
|
|
|
async def _do_send_join(self, destination: str, pdu: EventBase):
|
2019-11-11 10:47:47 -05:00
|
|
|
time_now = self._clock.time_msec()
|
|
|
|
|
|
|
|
try:
|
2020-02-03 16:08:24 -05:00
|
|
|
content = await self.transport_layer.send_join_v2(
|
2019-11-11 10:47:47 -05:00
|
|
|
destination=destination,
|
|
|
|
room_id=pdu.room_id,
|
|
|
|
event_id=pdu.event_id,
|
|
|
|
content=pdu.get_pdu_json(time_now),
|
|
|
|
)
|
|
|
|
|
|
|
|
return content
|
|
|
|
except HttpResponseException as e:
|
|
|
|
if e.code in [400, 404]:
|
|
|
|
err = e.to_synapse_error()
|
|
|
|
|
|
|
|
# If we receive an error response that isn't a generic error, or an
|
|
|
|
# unrecognised endpoint error, we assume that the remote understands
|
|
|
|
# the v2 invite API and this is a legitimate error.
|
2019-11-11 11:56:55 -05:00
|
|
|
if err.errcode not in [Codes.UNKNOWN, Codes.UNRECOGNIZED]:
|
2019-11-11 10:47:47 -05:00
|
|
|
raise err
|
|
|
|
else:
|
|
|
|
raise e.to_synapse_error()
|
|
|
|
|
|
|
|
logger.debug("Couldn't send_join with the v2 API, falling back to the v1 API")
|
|
|
|
|
2020-02-03 16:08:24 -05:00
|
|
|
resp = await self.transport_layer.send_join_v1(
|
2019-11-11 10:47:47 -05:00
|
|
|
destination=destination,
|
|
|
|
room_id=pdu.room_id,
|
|
|
|
event_id=pdu.event_id,
|
|
|
|
content=pdu.get_pdu_json(time_now),
|
|
|
|
)
|
|
|
|
|
|
|
|
# We expect the v1 API to respond with [200, content], so we only return the
|
|
|
|
# content.
|
|
|
|
return resp[1]
|
|
|
|
|
2020-02-05 10:47:00 -05:00
|
|
|
async def send_invite(
|
|
|
|
self, destination: str, room_id: str, event_id: str, pdu: EventBase,
|
|
|
|
) -> EventBase:
|
2020-02-05 12:35:09 -05:00
|
|
|
room_version = await self.store.get_room_version(room_id)
|
2019-01-28 09:55:53 -05:00
|
|
|
|
2020-02-03 17:29:49 -05:00
|
|
|
content = await self._do_send_invite(destination, pdu, room_version)
|
2015-01-26 05:45:24 -05:00
|
|
|
|
|
|
|
pdu_dict = content["event"]
|
|
|
|
|
|
|
|
logger.debug("Got response to send_invite: %s", pdu_dict)
|
|
|
|
|
2020-01-31 11:50:13 -05:00
|
|
|
pdu = event_from_pdu_json(pdu_dict, room_version)
|
2015-01-26 09:33:11 -05:00
|
|
|
|
|
|
|
# Check signatures are correct.
|
2020-03-19 08:22:56 -04:00
|
|
|
pdu = await self._check_sigs_and_hash(room_version, pdu)
|
2015-01-26 09:33:11 -05:00
|
|
|
|
|
|
|
# FIXME: We should handle signature failures more gracefully.
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return pdu
|
2015-01-26 05:45:24 -05:00
|
|
|
|
2020-02-05 10:49:42 -05:00
|
|
|
async def _do_send_invite(
|
2020-02-05 12:35:09 -05:00
|
|
|
self, destination: str, pdu: EventBase, room_version: RoomVersion
|
2020-02-05 10:49:42 -05:00
|
|
|
) -> JsonDict:
|
2019-01-28 09:55:53 -05:00
|
|
|
"""Actually sends the invite, first trying v2 API and falling back to
|
|
|
|
v1 API if necessary.
|
|
|
|
|
|
|
|
Returns:
|
2020-02-05 10:49:42 -05:00
|
|
|
The event as a dict as returned by the remote server
|
2019-01-28 09:55:53 -05:00
|
|
|
"""
|
|
|
|
time_now = self._clock.time_msec()
|
|
|
|
|
|
|
|
try:
|
2020-02-05 10:49:42 -05:00
|
|
|
content = await self.transport_layer.send_invite_v2(
|
2019-01-28 09:55:53 -05:00
|
|
|
destination=destination,
|
|
|
|
room_id=pdu.room_id,
|
|
|
|
event_id=pdu.event_id,
|
|
|
|
content={
|
|
|
|
"event": pdu.get_pdu_json(time_now),
|
2020-02-05 12:35:09 -05:00
|
|
|
"room_version": room_version.identifier,
|
2019-01-28 09:55:53 -05:00
|
|
|
"invite_room_state": pdu.unsigned.get("invite_room_state", []),
|
|
|
|
},
|
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return content
|
2019-01-28 09:55:53 -05:00
|
|
|
except HttpResponseException as e:
|
|
|
|
if e.code in [400, 404]:
|
2019-02-23 09:31:08 -05:00
|
|
|
err = e.to_synapse_error()
|
|
|
|
|
|
|
|
# If we receive an error response that isn't a generic error, we
|
|
|
|
# assume that the remote understands the v2 invite API and this
|
|
|
|
# is a legitimate error.
|
|
|
|
if err.errcode != Codes.UNKNOWN:
|
|
|
|
raise err
|
|
|
|
|
|
|
|
# Otherwise, we assume that the remote server doesn't understand
|
2019-04-01 05:24:38 -04:00
|
|
|
# the v2 invite API. That's ok provided the room uses old-style event
|
|
|
|
# IDs.
|
2020-02-05 12:35:09 -05:00
|
|
|
if room_version.event_format != EventFormatVersions.V1:
|
2019-02-23 09:31:08 -05:00
|
|
|
raise SynapseError(
|
|
|
|
400,
|
|
|
|
"User's homeserver does not support this room version",
|
|
|
|
Codes.UNSUPPORTED_ROOM_VERSION,
|
|
|
|
)
|
2019-01-28 09:55:53 -05:00
|
|
|
elif e.code == 403:
|
|
|
|
raise e.to_synapse_error()
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
|
|
|
|
# Didn't work, try v1 API.
|
|
|
|
# Note the v1 API returns a tuple of `(200, content)`
|
|
|
|
|
2020-02-05 10:49:42 -05:00
|
|
|
_, content = await self.transport_layer.send_invite_v1(
|
2019-01-28 09:55:53 -05:00
|
|
|
destination=destination,
|
|
|
|
room_id=pdu.room_id,
|
|
|
|
event_id=pdu.event_id,
|
|
|
|
content=pdu.get_pdu_json(time_now),
|
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return content
|
2019-01-28 09:55:53 -05:00
|
|
|
|
2020-02-03 15:55:11 -05:00
|
|
|
async def send_leave(self, destinations: Iterable[str], pdu: EventBase) -> None:
|
2017-04-20 19:46:54 -04:00
|
|
|
"""Sends a leave event to one of a list of homeservers.
|
|
|
|
|
|
|
|
Doing so will cause the remote server to add the event to the graph,
|
|
|
|
and send the event out to the rest of the federation.
|
|
|
|
|
|
|
|
This is mostly useful to reject received invites.
|
|
|
|
|
|
|
|
Args:
|
2020-02-03 15:55:11 -05:00
|
|
|
destinations: Candidate homeservers which are probably
|
2017-04-20 19:46:54 -04:00
|
|
|
participating in the room.
|
2020-02-03 15:55:11 -05:00
|
|
|
pdu: event to be sent
|
2017-04-20 19:46:54 -04:00
|
|
|
|
2020-02-03 15:55:11 -05:00
|
|
|
Raises:
|
|
|
|
SynapseError if the chosen remote server returns a 300/400 code.
|
2017-04-20 19:46:54 -04:00
|
|
|
|
2020-02-03 15:55:11 -05:00
|
|
|
RuntimeError if no servers were reachable.
|
2017-04-20 19:46:54 -04:00
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2020-02-03 16:08:51 -05:00
|
|
|
async def send_request(destination: str) -> None:
|
|
|
|
content = await self._do_send_leave(destination, pdu)
|
2019-11-11 11:26:53 -05:00
|
|
|
logger.debug("Got content: %s", content)
|
|
|
|
|
2020-02-03 15:55:11 -05:00
|
|
|
return await self._try_destination_list(
|
|
|
|
"send_leave", destinations, send_request
|
|
|
|
)
|
2019-11-11 11:26:53 -05:00
|
|
|
|
2020-02-03 16:09:07 -05:00
|
|
|
async def _do_send_leave(self, destination, pdu):
|
2019-11-11 11:26:53 -05:00
|
|
|
time_now = self._clock.time_msec()
|
|
|
|
|
|
|
|
try:
|
2020-02-03 16:09:07 -05:00
|
|
|
content = await self.transport_layer.send_leave_v2(
|
2018-08-01 06:24:19 -04:00
|
|
|
destination=destination,
|
|
|
|
room_id=pdu.room_id,
|
|
|
|
event_id=pdu.event_id,
|
|
|
|
content=pdu.get_pdu_json(time_now),
|
|
|
|
)
|
2015-10-20 06:58:58 -04:00
|
|
|
|
2019-11-11 11:26:53 -05:00
|
|
|
return content
|
|
|
|
except HttpResponseException as e:
|
|
|
|
if e.code in [400, 404]:
|
|
|
|
err = e.to_synapse_error()
|
2015-10-20 06:58:58 -04:00
|
|
|
|
2019-11-11 11:26:53 -05:00
|
|
|
# If we receive an error response that isn't a generic error, or an
|
|
|
|
# unrecognised endpoint error, we assume that the remote understands
|
|
|
|
# the v2 invite API and this is a legitimate error.
|
2019-11-11 11:56:55 -05:00
|
|
|
if err.errcode not in [Codes.UNKNOWN, Codes.UNRECOGNIZED]:
|
2019-11-11 11:26:53 -05:00
|
|
|
raise err
|
|
|
|
else:
|
|
|
|
raise e.to_synapse_error()
|
|
|
|
|
|
|
|
logger.debug("Couldn't send_leave with the v2 API, falling back to the v1 API")
|
|
|
|
|
2020-02-03 16:09:07 -05:00
|
|
|
resp = await self.transport_layer.send_leave_v1(
|
2019-11-11 11:26:53 -05:00
|
|
|
destination=destination,
|
|
|
|
room_id=pdu.room_id,
|
|
|
|
event_id=pdu.event_id,
|
|
|
|
content=pdu.get_pdu_json(time_now),
|
|
|
|
)
|
|
|
|
|
|
|
|
# We expect the v1 API to respond with [200, content], so we only return the
|
|
|
|
# content.
|
|
|
|
return resp[1]
|
2015-10-20 06:58:58 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
def get_public_rooms(
|
|
|
|
self,
|
2020-05-01 10:15:08 -04:00
|
|
|
remote_server: str,
|
|
|
|
limit: Optional[int] = None,
|
|
|
|
since_token: Optional[str] = None,
|
|
|
|
search_filter: Optional[Dict] = None,
|
|
|
|
include_all_networks: bool = False,
|
|
|
|
third_party_instance_id: Optional[str] = None,
|
2019-06-20 05:32:02 -04:00
|
|
|
):
|
2020-05-01 10:15:08 -04:00
|
|
|
"""Get the list of public rooms from a remote homeserver
|
|
|
|
|
|
|
|
Args:
|
|
|
|
remote_server: The name of the remote server
|
|
|
|
limit: Maximum amount of rooms to return
|
|
|
|
since_token: Used for result pagination
|
|
|
|
search_filter: A filter dictionary to send the remote homeserver
|
|
|
|
and filter the result set
|
|
|
|
include_all_networks: Whether to include results from all third party instances
|
|
|
|
third_party_instance_id: Whether to only include results from a specific third
|
|
|
|
party instance
|
|
|
|
|
|
|
|
Returns:
|
2020-07-30 08:01:33 -04:00
|
|
|
Awaitable[Dict[str, Any]]: The response from the remote server, or None if
|
2020-05-01 10:15:08 -04:00
|
|
|
`remote_server` is the same as the local server_name
|
2016-05-31 12:20:07 -04:00
|
|
|
|
2020-05-01 10:15:08 -04:00
|
|
|
Raises:
|
|
|
|
HttpResponseException: There was an exception returned from the remote server
|
|
|
|
SynapseException: M_FORBIDDEN when the remote server has disallowed publicRoom
|
|
|
|
requests over federation
|
|
|
|
|
|
|
|
"""
|
2016-09-16 05:24:15 -04:00
|
|
|
return self.transport_layer.get_public_rooms(
|
2020-05-01 10:15:08 -04:00
|
|
|
remote_server,
|
2019-06-20 05:32:02 -04:00
|
|
|
limit,
|
|
|
|
since_token,
|
|
|
|
search_filter,
|
2016-12-06 05:43:48 -05:00
|
|
|
include_all_networks=include_all_networks,
|
|
|
|
third_party_instance_id=third_party_instance_id,
|
2016-09-16 05:24:15 -04:00
|
|
|
)
|
2016-05-31 12:20:07 -04:00
|
|
|
|
2020-02-03 16:14:30 -05:00
|
|
|
async def get_missing_events(
|
2019-06-20 05:32:02 -04:00
|
|
|
self,
|
2020-02-03 16:14:30 -05:00
|
|
|
destination: str,
|
|
|
|
room_id: str,
|
|
|
|
earliest_events_ids: Sequence[str],
|
|
|
|
latest_events: Iterable[EventBase],
|
|
|
|
limit: int,
|
|
|
|
min_depth: int,
|
|
|
|
timeout: int,
|
|
|
|
) -> List[EventBase]:
|
2015-03-05 11:31:13 -05:00
|
|
|
"""Tries to fetch events we are missing. This is called when we receive
|
|
|
|
an event without having received all of its ancestors.
|
|
|
|
|
|
|
|
Args:
|
2020-02-03 16:14:30 -05:00
|
|
|
destination
|
|
|
|
room_id
|
|
|
|
earliest_events_ids: List of event ids. Effectively the
|
2015-03-05 11:31:13 -05:00
|
|
|
events we expected to receive, but haven't. `get_missing_events`
|
|
|
|
should only return events that didn't happen before these.
|
2020-02-03 16:14:30 -05:00
|
|
|
latest_events: List of events we have received that we don't
|
2015-03-05 11:31:13 -05:00
|
|
|
have all previous events for.
|
2020-02-03 16:14:30 -05:00
|
|
|
limit: Maximum number of events to return.
|
|
|
|
min_depth: Minimum depth of events to return.
|
|
|
|
timeout: Max time to wait in ms
|
2015-03-05 11:31:13 -05:00
|
|
|
"""
|
2015-03-05 11:08:02 -05:00
|
|
|
try:
|
2020-02-03 16:14:30 -05:00
|
|
|
content = await self.transport_layer.get_missing_events(
|
2015-03-05 11:08:02 -05:00
|
|
|
destination=destination,
|
|
|
|
room_id=room_id,
|
|
|
|
earliest_events=earliest_events_ids,
|
|
|
|
latest_events=[e.event_id for e in latest_events],
|
|
|
|
limit=limit,
|
|
|
|
min_depth=min_depth,
|
2016-12-31 10:21:37 -05:00
|
|
|
timeout=timeout,
|
2015-03-05 11:08:02 -05:00
|
|
|
)
|
|
|
|
|
2020-01-31 11:50:13 -05:00
|
|
|
room_version = await self.store.get_room_version(room_id)
|
2019-01-23 15:21:33 -05:00
|
|
|
|
2015-03-05 11:08:02 -05:00
|
|
|
events = [
|
2020-01-31 11:50:13 -05:00
|
|
|
event_from_pdu_json(e, room_version) for e in content.get("events", [])
|
2015-03-05 11:08:02 -05:00
|
|
|
]
|
|
|
|
|
2020-02-03 16:14:30 -05:00
|
|
|
signed_events = await self._check_sigs_and_hash_and_fetch(
|
2020-03-19 08:22:56 -04:00
|
|
|
destination, events, outlier=False, room_version=room_version
|
2015-03-05 11:08:02 -05:00
|
|
|
)
|
|
|
|
except HttpResponseException as e:
|
|
|
|
if not e.code == 400:
|
|
|
|
raise
|
2015-02-23 08:58:02 -05:00
|
|
|
|
2015-03-05 11:31:13 -05:00
|
|
|
# We are probably hitting an old server that doesn't support
|
|
|
|
# get_missing_events
|
2015-03-05 11:08:02 -05:00
|
|
|
signed_events = []
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return signed_events
|
2015-02-23 08:58:02 -05:00
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
async def forward_third_party_invite(self, destinations, room_id, event_dict):
|
2015-11-05 11:43:19 -05:00
|
|
|
for destination in destinations:
|
|
|
|
if destination == self.server_name:
|
|
|
|
continue
|
|
|
|
|
|
|
|
try:
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.transport_layer.exchange_third_party_invite(
|
2019-06-20 05:32:02 -04:00
|
|
|
destination=destination, room_id=room_id, event_dict=event_dict
|
2015-11-05 11:43:19 -05:00
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return None
|
2015-11-05 11:43:19 -05:00
|
|
|
except CodeMessageException:
|
|
|
|
raise
|
|
|
|
except Exception as e:
|
|
|
|
logger.exception(
|
2019-06-20 05:32:02 -04:00
|
|
|
"Failed to send_third_party_invite via %s: %s", destination, str(e)
|
2015-11-05 11:43:19 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
raise RuntimeError("Failed to send to any server.")
|
2019-07-29 12:47:27 -04:00
|
|
|
|
2020-07-17 07:08:56 -04:00
|
|
|
async def get_room_complexity(
|
|
|
|
self, destination: str, room_id: str
|
|
|
|
) -> Optional[dict]:
|
2019-07-29 12:47:27 -04:00
|
|
|
"""
|
|
|
|
Fetch the complexity of a remote room from another server.
|
|
|
|
|
|
|
|
Args:
|
2020-07-17 07:08:56 -04:00
|
|
|
destination: The remote server
|
|
|
|
room_id: The room ID to ask about.
|
2019-07-29 12:47:27 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-07-17 07:08:56 -04:00
|
|
|
Dict contains the complexity metric versions, while None means we
|
|
|
|
could not fetch the complexity.
|
2019-07-29 12:47:27 -04:00
|
|
|
"""
|
|
|
|
try:
|
2020-07-17 07:08:56 -04:00
|
|
|
complexity = await self.transport_layer.get_room_complexity(
|
2019-07-29 12:47:27 -04:00
|
|
|
destination=destination, room_id=room_id
|
|
|
|
)
|
2020-07-17 07:08:56 -04:00
|
|
|
return complexity
|
2019-07-29 12:47:27 -04:00
|
|
|
except CodeMessageException as e:
|
|
|
|
# We didn't manage to get it -- probably a 404. We are okay if other
|
|
|
|
# servers don't give it to us.
|
|
|
|
logger.debug(
|
|
|
|
"Failed to fetch room complexity via %s for %s, got a %d",
|
|
|
|
destination,
|
|
|
|
room_id,
|
|
|
|
e.code,
|
|
|
|
)
|
|
|
|
except Exception:
|
|
|
|
logger.exception(
|
|
|
|
"Failed to fetch room complexity via %s for %s", destination, room_id
|
|
|
|
)
|
|
|
|
|
|
|
|
# If we don't manage to find it, return None. It's not an error if a
|
|
|
|
# server doesn't give it to us.
|
2020-07-17 07:08:56 -04:00
|
|
|
return None
|