2016-07-15 08:19:07 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2016-07-15 08:19:07 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
import logging
|
2021-10-22 13:15:41 -04:00
|
|
|
from typing import (
|
|
|
|
TYPE_CHECKING,
|
|
|
|
Any,
|
|
|
|
Collection,
|
|
|
|
Dict,
|
|
|
|
Iterable,
|
|
|
|
List,
|
2023-02-10 18:29:00 -05:00
|
|
|
Mapping,
|
2021-10-22 13:15:41 -04:00
|
|
|
Optional,
|
|
|
|
Set,
|
|
|
|
Tuple,
|
2022-04-27 08:05:00 -04:00
|
|
|
cast,
|
2021-10-22 13:15:41 -04:00
|
|
|
)
|
2016-07-15 08:19:07 -04:00
|
|
|
|
2023-08-08 15:04:46 -04:00
|
|
|
from canonicaljson import encode_canonical_json
|
2022-06-15 11:20:04 -04:00
|
|
|
from typing_extensions import Literal
|
|
|
|
|
2022-05-27 07:14:36 -04:00
|
|
|
from synapse.api.constants import EduTypes
|
2019-07-24 23:21:52 -04:00
|
|
|
from synapse.api.errors import Codes, StoreError
|
2019-08-22 13:21:10 -04:00
|
|
|
from synapse.logging.opentracing import (
|
|
|
|
get_active_span_text_map,
|
2019-09-03 05:21:30 -04:00
|
|
|
set_tag,
|
2019-08-22 13:21:10 -04:00
|
|
|
trace,
|
|
|
|
whitelisted_homeserver,
|
|
|
|
)
|
2020-10-09 07:37:51 -04:00
|
|
|
from synapse.metrics.background_process_metrics import wrap_as_background_process
|
2023-01-17 04:29:58 -05:00
|
|
|
from synapse.replication.tcp.streams._base import DeviceListsStream
|
2019-12-03 09:28:46 -05:00
|
|
|
from synapse.storage._base import SQLBaseStore, db_to_json, make_in_list_sql_clause
|
2020-04-07 18:06:39 -04:00
|
|
|
from synapse.storage.database import (
|
2020-08-05 16:38:57 -04:00
|
|
|
DatabasePool,
|
2021-12-13 12:05:00 -05:00
|
|
|
LoggingDatabaseConnection,
|
2020-04-07 18:06:39 -04:00
|
|
|
LoggingTransaction,
|
|
|
|
make_tuple_comparison_clause,
|
|
|
|
)
|
2022-06-15 11:20:04 -04:00
|
|
|
from synapse.storage.databases.main.end_to_end_keys import EndToEndKeyWorkerStore
|
2022-09-27 08:01:08 -04:00
|
|
|
from synapse.storage.databases.main.roommember import RoomMemberWorkerStore
|
2022-06-15 11:20:04 -04:00
|
|
|
from synapse.storage.types import Cursor
|
2022-11-11 05:51:49 -05:00
|
|
|
from synapse.storage.util.id_generators import (
|
|
|
|
AbstractStreamIdGenerator,
|
|
|
|
StreamIdGenerator,
|
|
|
|
)
|
2023-09-19 15:26:44 -04:00
|
|
|
from synapse.types import (
|
|
|
|
JsonDict,
|
|
|
|
JsonMapping,
|
|
|
|
StrCollection,
|
|
|
|
get_verify_key_from_cross_signing_key,
|
|
|
|
)
|
2020-10-07 08:00:17 -04:00
|
|
|
from synapse.util import json_decoder, json_encoder
|
2020-10-14 18:25:23 -04:00
|
|
|
from synapse.util.caches.descriptors import cached, cachedList
|
2020-10-19 07:20:29 -04:00
|
|
|
from synapse.util.caches.lrucache import LruCache
|
2022-12-05 15:19:14 -05:00
|
|
|
from synapse.util.caches.stream_change_cache import (
|
|
|
|
AllEntitiesChangedResult,
|
|
|
|
StreamChangeCache,
|
|
|
|
)
|
2022-09-07 07:03:32 -04:00
|
|
|
from synapse.util.cancellation import cancellable
|
2020-01-14 06:58:02 -05:00
|
|
|
from synapse.util.iterutils import batch_iter
|
2020-03-30 14:06:52 -04:00
|
|
|
from synapse.util.stringutils import shortstr
|
2018-06-28 09:49:57 -04:00
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2016-07-15 08:19:07 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
2022-01-20 08:38:44 -05:00
|
|
|
issue_8631_logger = logging.getLogger("synapse.8631_debug")
|
2016-07-15 08:19:07 -04:00
|
|
|
|
2018-11-01 15:10:33 -04:00
|
|
|
DROP_DEVICE_LIST_STREAMS_NON_UNIQUE_INDEXES = (
|
|
|
|
"drop_device_list_streams_non_unique_indexes"
|
|
|
|
)
|
2016-07-15 08:19:07 -04:00
|
|
|
|
2020-04-07 18:06:39 -04:00
|
|
|
BG_UPDATE_REMOVE_DUP_OUTBOUND_POKES = "remove_dup_outbound_pokes"
|
|
|
|
|
2018-11-01 15:10:33 -04:00
|
|
|
|
2022-09-27 08:01:08 -04:00
|
|
|
class DeviceWorkerStore(RoomMemberWorkerStore, EndToEndKeyWorkerStore):
|
2021-12-13 12:05:00 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
database: DatabasePool,
|
|
|
|
db_conn: LoggingDatabaseConnection,
|
|
|
|
hs: "HomeServer",
|
|
|
|
):
|
2020-10-09 07:37:51 -04:00
|
|
|
super().__init__(database, db_conn, hs)
|
|
|
|
|
2022-11-16 17:16:46 -05:00
|
|
|
# In the worker store this is an ID tracker which we overwrite in the non-worker
|
|
|
|
# class below that is used on the main process.
|
2023-03-03 08:13:37 -05:00
|
|
|
self._device_list_id_gen = StreamIdGenerator(
|
2022-11-16 17:16:46 -05:00
|
|
|
db_conn,
|
2023-01-20 13:02:18 -05:00
|
|
|
hs.get_replication_notifier(),
|
2022-11-16 17:16:46 -05:00
|
|
|
"device_lists_stream",
|
|
|
|
"stream_id",
|
|
|
|
extra_tables=[
|
|
|
|
("user_signature_stream", "stream_id"),
|
|
|
|
("device_lists_outbound_pokes", "stream_id"),
|
|
|
|
("device_lists_changes_in_room", "stream_id"),
|
2023-01-26 05:38:49 -05:00
|
|
|
("device_lists_remote_pending", "stream_id"),
|
2023-02-10 04:52:35 -05:00
|
|
|
("device_lists_changes_converted_stream_position", "stream_id"),
|
2022-11-16 17:16:46 -05:00
|
|
|
],
|
|
|
|
is_writer=hs.config.worker.worker_app is None,
|
|
|
|
)
|
2022-11-11 05:51:49 -05:00
|
|
|
|
|
|
|
device_list_max = self._device_list_id_gen.get_current_token()
|
2022-04-05 09:26:41 -04:00
|
|
|
device_list_prefill, min_device_list_id = self.db_pool.get_cache_dict(
|
|
|
|
db_conn,
|
|
|
|
"device_lists_stream",
|
|
|
|
entity_column="user_id",
|
|
|
|
stream_column="stream_id",
|
|
|
|
max_value=device_list_max,
|
|
|
|
limit=10000,
|
|
|
|
)
|
|
|
|
self._device_list_stream_cache = StreamChangeCache(
|
|
|
|
"DeviceListStreamChangeCache",
|
|
|
|
min_device_list_id,
|
|
|
|
prefilled_cache=device_list_prefill,
|
|
|
|
)
|
|
|
|
|
|
|
|
(
|
|
|
|
user_signature_stream_prefill,
|
|
|
|
user_signature_stream_list_id,
|
|
|
|
) = self.db_pool.get_cache_dict(
|
|
|
|
db_conn,
|
|
|
|
"user_signature_stream",
|
|
|
|
entity_column="from_user_id",
|
|
|
|
stream_column="stream_id",
|
|
|
|
max_value=device_list_max,
|
|
|
|
limit=1000,
|
|
|
|
)
|
|
|
|
self._user_signature_stream_cache = StreamChangeCache(
|
|
|
|
"UserSignatureStreamChangeCache",
|
|
|
|
user_signature_stream_list_id,
|
|
|
|
prefilled_cache=user_signature_stream_prefill,
|
|
|
|
)
|
|
|
|
|
|
|
|
(
|
|
|
|
device_list_federation_prefill,
|
|
|
|
device_list_federation_list_id,
|
|
|
|
) = self.db_pool.get_cache_dict(
|
|
|
|
db_conn,
|
|
|
|
"device_lists_outbound_pokes",
|
|
|
|
entity_column="destination",
|
|
|
|
stream_column="stream_id",
|
|
|
|
max_value=device_list_max,
|
|
|
|
limit=10000,
|
|
|
|
)
|
|
|
|
self._device_list_federation_stream_cache = StreamChangeCache(
|
|
|
|
"DeviceListFederationStreamChangeCache",
|
|
|
|
device_list_federation_list_id,
|
|
|
|
prefilled_cache=device_list_federation_prefill,
|
|
|
|
)
|
|
|
|
|
2021-09-13 13:07:12 -04:00
|
|
|
if hs.config.worker.run_background_tasks:
|
2020-10-09 07:37:51 -04:00
|
|
|
self._clock.looping_call(
|
|
|
|
self._prune_old_outbound_device_pokes, 60 * 60 * 1000
|
|
|
|
)
|
|
|
|
|
2022-11-11 05:51:49 -05:00
|
|
|
def process_replication_rows(
|
|
|
|
self, stream_name: str, instance_name: str, token: int, rows: Iterable[Any]
|
|
|
|
) -> None:
|
|
|
|
if stream_name == DeviceListsStream.NAME:
|
|
|
|
self._invalidate_caches_for_devices(token, rows)
|
2023-01-17 04:29:58 -05:00
|
|
|
|
2022-11-11 05:51:49 -05:00
|
|
|
return super().process_replication_rows(stream_name, instance_name, token, rows)
|
|
|
|
|
2023-01-04 06:49:26 -05:00
|
|
|
def process_replication_position(
|
|
|
|
self, stream_name: str, instance_name: str, token: int
|
|
|
|
) -> None:
|
|
|
|
if stream_name == DeviceListsStream.NAME:
|
|
|
|
self._device_list_id_gen.advance(instance_name, token)
|
2023-01-17 04:29:58 -05:00
|
|
|
|
2023-01-04 06:49:26 -05:00
|
|
|
super().process_replication_position(stream_name, instance_name, token)
|
|
|
|
|
2022-11-11 05:51:49 -05:00
|
|
|
def _invalidate_caches_for_devices(
|
|
|
|
self, token: int, rows: Iterable[DeviceListsStream.DeviceListsStreamRow]
|
|
|
|
) -> None:
|
|
|
|
for row in rows:
|
2023-01-17 04:29:58 -05:00
|
|
|
if row.is_signature:
|
|
|
|
self._user_signature_stream_cache.entity_has_changed(row.entity, token)
|
|
|
|
continue
|
|
|
|
|
2022-11-11 05:51:49 -05:00
|
|
|
# The entities are either user IDs (starting with '@') whose devices
|
|
|
|
# have changed, or remote servers that we need to tell about
|
|
|
|
# changes.
|
|
|
|
if row.entity.startswith("@"):
|
|
|
|
self._device_list_stream_cache.entity_has_changed(row.entity, token)
|
|
|
|
self.get_cached_devices_for_user.invalidate((row.entity,))
|
|
|
|
self._get_cached_user_device.invalidate((row.entity,))
|
|
|
|
self.get_device_list_last_stream_id_for_remote.invalidate((row.entity,))
|
|
|
|
|
|
|
|
else:
|
|
|
|
self._device_list_federation_stream_cache.entity_has_changed(
|
|
|
|
row.entity, token
|
|
|
|
)
|
|
|
|
|
|
|
|
def get_device_stream_token(self) -> int:
|
|
|
|
return self._device_list_id_gen.get_current_token()
|
|
|
|
|
2023-02-10 18:29:00 -05:00
|
|
|
async def count_devices_by_users(
|
|
|
|
self, user_ids: Optional[Collection[str]] = None
|
|
|
|
) -> int:
|
2020-12-11 05:42:47 -05:00
|
|
|
"""Retrieve number of all devices of given users.
|
|
|
|
Only returns number of devices that are not marked as hidden.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_ids: The IDs of the users which owns devices
|
|
|
|
Returns:
|
|
|
|
Number of devices of this users.
|
|
|
|
"""
|
|
|
|
|
2022-04-27 08:05:00 -04:00
|
|
|
def count_devices_by_users_txn(
|
2023-02-10 18:29:00 -05:00
|
|
|
txn: LoggingTransaction, user_ids: Collection[str]
|
2022-04-27 08:05:00 -04:00
|
|
|
) -> int:
|
2020-12-11 05:42:47 -05:00
|
|
|
sql = """
|
|
|
|
SELECT count(*)
|
|
|
|
FROM devices
|
|
|
|
WHERE
|
|
|
|
hidden = '0' AND
|
|
|
|
"""
|
|
|
|
|
|
|
|
clause, args = make_in_list_sql_clause(
|
|
|
|
txn.database_engine, "user_id", user_ids
|
|
|
|
)
|
|
|
|
|
|
|
|
txn.execute(sql + clause, args)
|
2022-04-27 08:05:00 -04:00
|
|
|
return cast(Tuple[int], txn.fetchone())[0]
|
2020-12-11 05:42:47 -05:00
|
|
|
|
|
|
|
if not user_ids:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"count_devices_by_users", count_devices_by_users_txn, user_ids
|
|
|
|
)
|
|
|
|
|
2021-12-13 10:39:43 -05:00
|
|
|
async def get_device(
|
|
|
|
self, user_id: str, device_id: str
|
|
|
|
) -> Optional[Dict[str, Any]]:
|
2019-07-30 23:09:50 -04:00
|
|
|
"""Retrieve a device. Only returns devices that are not marked as
|
|
|
|
hidden.
|
2016-07-15 08:19:07 -04:00
|
|
|
|
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
user_id: The ID of the user which owns the device
|
|
|
|
device_id: The ID of the device to retrieve
|
2016-07-15 08:19:07 -04:00
|
|
|
Returns:
|
2021-12-13 10:39:43 -05:00
|
|
|
A dict containing the device information, or `None` if the device does not
|
|
|
|
exist.
|
2016-07-15 08:19:07 -04:00
|
|
|
"""
|
2023-11-09 11:13:31 -05:00
|
|
|
row = await self.db_pool.simple_select_one(
|
2021-12-15 05:40:52 -05:00
|
|
|
table="devices",
|
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id, "hidden": False},
|
2019-08-01 02:16:09 -04:00
|
|
|
retcols=("user_id", "device_id", "display_name"),
|
2016-07-15 08:19:07 -04:00
|
|
|
desc="get_device",
|
2021-12-13 10:39:43 -05:00
|
|
|
allow_none=True,
|
2016-07-15 08:19:07 -04:00
|
|
|
)
|
2023-11-09 11:13:31 -05:00
|
|
|
if row is None:
|
|
|
|
return None
|
|
|
|
return {"user_id": row[0], "device_id": row[1], "display_name": row[2]}
|
2016-07-20 11:34:00 -04:00
|
|
|
|
2023-10-26 13:01:36 -04:00
|
|
|
async def get_devices_by_user(
|
|
|
|
self, user_id: str
|
|
|
|
) -> Dict[str, Dict[str, Optional[str]]]:
|
2019-07-30 23:09:50 -04:00
|
|
|
"""Retrieve all of a user's registered devices. Only returns devices
|
|
|
|
that are not marked as hidden.
|
2016-07-20 11:34:00 -04:00
|
|
|
|
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
user_id:
|
2016-07-20 11:34:00 -04:00
|
|
|
Returns:
|
2020-08-12 10:51:42 -04:00
|
|
|
A mapping from device_id to a dict containing "device_id", "user_id"
|
2023-10-26 13:01:36 -04:00
|
|
|
and "display_name" for each device. Display name may be null.
|
2016-07-20 11:34:00 -04:00
|
|
|
"""
|
2023-10-26 13:01:36 -04:00
|
|
|
devices = cast(
|
|
|
|
List[Tuple[str, str, Optional[str]]],
|
|
|
|
await self.db_pool.simple_select_list(
|
|
|
|
table="devices",
|
|
|
|
keyvalues={"user_id": user_id, "hidden": False},
|
|
|
|
retcols=("user_id", "device_id", "display_name"),
|
|
|
|
desc="get_devices_by_user",
|
|
|
|
),
|
2016-07-20 11:34:00 -04:00
|
|
|
)
|
|
|
|
|
2023-10-26 13:01:36 -04:00
|
|
|
return {
|
|
|
|
d[1]: {"user_id": d[0], "device_id": d[1], "display_name": d[2]}
|
|
|
|
for d in devices
|
|
|
|
}
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2021-12-06 12:43:06 -05:00
|
|
|
async def get_devices_by_auth_provider_session_id(
|
|
|
|
self, auth_provider_id: str, auth_provider_session_id: str
|
2023-10-26 13:01:36 -04:00
|
|
|
) -> List[Tuple[str, str]]:
|
2021-12-06 12:43:06 -05:00
|
|
|
"""Retrieve the list of devices associated with a SSO IdP session ID.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
auth_provider_id: The SSO IdP ID as defined in the server config
|
|
|
|
auth_provider_session_id: The session ID within the IdP
|
|
|
|
Returns:
|
|
|
|
A list of dicts containing the device_id and the user_id of each device
|
|
|
|
"""
|
2023-10-26 13:01:36 -04:00
|
|
|
return cast(
|
|
|
|
List[Tuple[str, str]],
|
|
|
|
await self.db_pool.simple_select_list(
|
|
|
|
table="device_auth_providers",
|
|
|
|
keyvalues={
|
|
|
|
"auth_provider_id": auth_provider_id,
|
|
|
|
"auth_provider_session_id": auth_provider_session_id,
|
|
|
|
},
|
|
|
|
retcols=("user_id", "device_id"),
|
|
|
|
desc="get_devices_by_auth_provider_session_id",
|
|
|
|
),
|
2021-12-06 12:43:06 -05:00
|
|
|
)
|
|
|
|
|
2019-08-22 13:21:10 -04:00
|
|
|
@trace
|
2020-08-12 10:51:42 -04:00
|
|
|
async def get_device_updates_by_remote(
|
|
|
|
self, destination: str, from_stream_id: int, limit: int
|
2022-01-13 13:12:18 -05:00
|
|
|
) -> Tuple[int, List[Tuple[str, JsonDict]]]:
|
2019-10-30 10:01:53 -04:00
|
|
|
"""Get a stream of device updates to send to the given remote server.
|
2019-03-04 13:03:29 -05:00
|
|
|
|
2019-10-30 10:01:53 -04:00
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
destination: The host the device updates are intended for
|
|
|
|
from_stream_id: The minimum stream_id to filter updates by, exclusive
|
|
|
|
limit: Maximum number of device updates to return
|
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
Returns:
|
2022-01-13 13:12:18 -05:00
|
|
|
- The current stream id (i.e. the stream id of the last update included
|
|
|
|
in the response); and
|
|
|
|
- The list of updates, where each update is a pair of EDU type and
|
|
|
|
EDU contents.
|
2017-01-26 11:30:37 -05:00
|
|
|
"""
|
2020-09-01 07:41:21 -04:00
|
|
|
now_stream_id = self.get_device_stream_token()
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
has_changed = self._device_list_federation_stream_cache.has_entity_changed(
|
|
|
|
destination, int(from_stream_id)
|
2017-02-27 11:22:12 -05:00
|
|
|
)
|
2019-03-04 13:03:29 -05:00
|
|
|
if not has_changed:
|
2022-10-24 05:45:10 -04:00
|
|
|
# debugging for https://github.com/matrix-org/synapse/issues/14251
|
|
|
|
issue_8631_logger.debug(
|
|
|
|
"%s: no change between %i and %i",
|
|
|
|
destination,
|
|
|
|
from_stream_id,
|
|
|
|
now_stream_id,
|
|
|
|
)
|
2019-08-30 11:28:26 -04:00
|
|
|
return now_stream_id, []
|
2017-02-27 11:22:12 -05:00
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
updates = await self.db_pool.runInteraction(
|
2019-10-30 14:57:34 -04:00
|
|
|
"get_device_updates_by_remote",
|
|
|
|
self._get_device_updates_by_remote_txn,
|
2019-04-03 05:07:29 -04:00
|
|
|
destination,
|
|
|
|
from_stream_id,
|
|
|
|
now_stream_id,
|
2020-02-28 06:45:35 -05:00
|
|
|
limit,
|
2019-03-04 13:03:29 -05:00
|
|
|
)
|
2017-02-27 11:22:12 -05:00
|
|
|
|
2022-01-13 13:12:18 -05:00
|
|
|
# We need to ensure `updates` doesn't grow too big.
|
|
|
|
# Currently: `len(updates) <= limit`.
|
|
|
|
|
2019-06-06 18:54:00 -04:00
|
|
|
# Return an empty list if there are no updates
|
|
|
|
if not updates:
|
2019-08-30 11:28:26 -04:00
|
|
|
return now_stream_id, []
|
2019-06-06 18:54:00 -04:00
|
|
|
|
2022-01-20 08:38:44 -05:00
|
|
|
if issue_8631_logger.isEnabledFor(logging.DEBUG):
|
|
|
|
data = {(user, device): stream_id for user, device, stream_id, _ in updates}
|
|
|
|
issue_8631_logger.debug(
|
|
|
|
"device updates need to be sent to %s: %s", destination, data
|
|
|
|
)
|
|
|
|
|
2019-10-30 10:01:53 -04:00
|
|
|
# get the cross-signing keys of the users in the list, so that we can
|
|
|
|
# determine which of the device changes were cross-signing keys
|
2020-02-21 07:15:07 -05:00
|
|
|
users = {r[0] for r in updates}
|
2019-05-22 16:42:00 -04:00
|
|
|
master_key_by_user = {}
|
|
|
|
self_signing_key_by_user = {}
|
|
|
|
for user in users:
|
2020-08-12 10:51:42 -04:00
|
|
|
cross_signing_key = await self.get_e2e_cross_signing_key(user, "master")
|
2019-05-22 21:24:21 -04:00
|
|
|
if cross_signing_key:
|
|
|
|
key_id, verify_key = get_verify_key_from_cross_signing_key(
|
|
|
|
cross_signing_key
|
|
|
|
)
|
2019-10-30 10:01:53 -04:00
|
|
|
# verify_key is a VerifyKey from signedjson, which uses
|
|
|
|
# .version to denote the portion of the key ID after the
|
|
|
|
# algorithm and colon, which is the device ID
|
2019-05-22 21:24:21 -04:00
|
|
|
master_key_by_user[user] = {
|
|
|
|
"key_info": cross_signing_key,
|
2019-10-30 10:01:53 -04:00
|
|
|
"device_id": verify_key.version,
|
2019-05-22 21:24:21 -04:00
|
|
|
}
|
2019-05-22 16:42:00 -04:00
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
cross_signing_key = await self.get_e2e_cross_signing_key(
|
|
|
|
user, "self_signing"
|
2019-07-22 13:04:55 -04:00
|
|
|
)
|
2019-05-22 21:24:21 -04:00
|
|
|
if cross_signing_key:
|
|
|
|
key_id, verify_key = get_verify_key_from_cross_signing_key(
|
|
|
|
cross_signing_key
|
|
|
|
)
|
|
|
|
self_signing_key_by_user[user] = {
|
|
|
|
"key_info": cross_signing_key,
|
2019-10-30 10:01:53 -04:00
|
|
|
"device_id": verify_key.version,
|
2019-05-22 21:24:21 -04:00
|
|
|
}
|
2019-05-22 16:42:00 -04:00
|
|
|
|
2019-06-06 18:54:00 -04:00
|
|
|
# Perform the equivalent of a GROUP BY
|
|
|
|
#
|
|
|
|
# Iterate through the updates list and copy non-duplicate
|
|
|
|
# (user_id, device_id) entries into a map, with the value being
|
|
|
|
# the max stream_id across each set of duplicate entries
|
|
|
|
#
|
2019-08-22 13:21:10 -04:00
|
|
|
# maps (user_id, device_id) -> (stream_id, opentracing_context)
|
|
|
|
#
|
|
|
|
# opentracing_context contains the opentracing metadata for the request
|
|
|
|
# that created the poke
|
|
|
|
#
|
|
|
|
# The most recent request's opentracing_context is used as the
|
|
|
|
# context which created the Edu.
|
|
|
|
|
2022-01-12 10:21:13 -05:00
|
|
|
# This is the stream ID that we will return for the consumer to resume
|
|
|
|
# following this stream later.
|
|
|
|
last_processed_stream_id = from_stream_id
|
|
|
|
|
2022-06-15 11:20:04 -04:00
|
|
|
# A map of (user ID, device ID) to (stream ID, context).
|
|
|
|
query_map: Dict[Tuple[str, str], Tuple[int, Optional[str]]] = {}
|
|
|
|
cross_signing_keys_by_user: Dict[str, Dict[str, object]] = {}
|
2019-10-30 10:01:53 -04:00
|
|
|
for user_id, device_id, update_stream_id, update_context in updates:
|
2022-01-13 13:12:18 -05:00
|
|
|
# Calculate the remaining length budget.
|
|
|
|
# Note that, for now, each entry in `cross_signing_keys_by_user`
|
|
|
|
# gives rise to two device updates in the result, so those cost twice
|
|
|
|
# as much (and are the whole reason we need to separately calculate
|
|
|
|
# the budget; we know len(updates) <= limit otherwise!)
|
|
|
|
# N.B. len() on dicts is cheap since they store their size.
|
|
|
|
remaining_length_budget = limit - (
|
|
|
|
len(query_map) + 2 * len(cross_signing_keys_by_user)
|
|
|
|
)
|
|
|
|
assert remaining_length_budget >= 0
|
|
|
|
|
|
|
|
is_master_key_update = (
|
2019-10-30 10:01:53 -04:00
|
|
|
user_id in master_key_by_user
|
|
|
|
and device_id == master_key_by_user[user_id]["device_id"]
|
2022-01-13 13:12:18 -05:00
|
|
|
)
|
|
|
|
is_self_signing_key_update = (
|
2019-10-31 22:49:48 -04:00
|
|
|
user_id in self_signing_key_by_user
|
2019-10-30 10:01:53 -04:00
|
|
|
and device_id == self_signing_key_by_user[user_id]["device_id"]
|
2022-01-13 13:12:18 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
is_cross_signing_key_update = (
|
|
|
|
is_master_key_update or is_self_signing_key_update
|
|
|
|
)
|
|
|
|
|
|
|
|
if (
|
|
|
|
is_cross_signing_key_update
|
|
|
|
and user_id not in cross_signing_keys_by_user
|
2019-07-22 13:04:55 -04:00
|
|
|
):
|
2022-01-13 13:12:18 -05:00
|
|
|
# This will give rise to 2 device updates.
|
|
|
|
# If we don't have the budget, stop here!
|
|
|
|
if remaining_length_budget < 2:
|
|
|
|
break
|
|
|
|
|
|
|
|
if is_master_key_update:
|
|
|
|
result = cross_signing_keys_by_user.setdefault(user_id, {})
|
|
|
|
result["master_key"] = master_key_by_user[user_id]["key_info"]
|
|
|
|
elif is_self_signing_key_update:
|
2019-05-22 16:42:00 -04:00
|
|
|
result = cross_signing_keys_by_user.setdefault(user_id, {})
|
2019-07-22 13:04:55 -04:00
|
|
|
result["self_signing_key"] = self_signing_key_by_user[user_id][
|
|
|
|
"key_info"
|
|
|
|
]
|
2019-10-30 10:01:53 -04:00
|
|
|
else:
|
|
|
|
key = (user_id, device_id)
|
2019-05-22 16:42:00 -04:00
|
|
|
|
2022-01-13 13:12:18 -05:00
|
|
|
if key not in query_map and remaining_length_budget < 1:
|
|
|
|
# We don't have space for a new entry
|
|
|
|
break
|
|
|
|
|
2019-10-30 10:01:53 -04:00
|
|
|
previous_update_stream_id, _ = query_map.get(key, (0, None))
|
2019-05-22 16:42:00 -04:00
|
|
|
|
2019-10-30 10:01:53 -04:00
|
|
|
if update_stream_id > previous_update_stream_id:
|
2022-01-13 13:12:18 -05:00
|
|
|
# FIXME If this overwrites an older update, this discards the
|
|
|
|
# previous OpenTracing context.
|
|
|
|
# It might make it harder to track down issues using OpenTracing.
|
|
|
|
# If there's a good reason why it doesn't matter, a comment here
|
|
|
|
# about that would not hurt.
|
2019-10-30 10:01:53 -04:00
|
|
|
query_map[key] = (update_stream_id, update_context)
|
|
|
|
|
2022-01-13 13:12:18 -05:00
|
|
|
# As this update has been added to the response, advance the stream
|
|
|
|
# position.
|
2022-01-12 10:21:13 -05:00
|
|
|
last_processed_stream_id = update_stream_id
|
|
|
|
|
2022-01-13 13:12:18 -05:00
|
|
|
# In the worst case scenario, each update is for a distinct user and is
|
|
|
|
# added either to the query_map or to cross_signing_keys_by_user,
|
|
|
|
# but not both:
|
|
|
|
# len(query_map) + len(cross_signing_keys_by_user) <= len(updates) here,
|
|
|
|
# so len(query_map) + len(cross_signing_keys_by_user) <= limit.
|
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
results = await self._get_device_update_edus_by_remote(
|
2019-06-06 18:54:00 -04:00
|
|
|
destination, from_stream_id, query_map
|
|
|
|
)
|
2019-10-30 10:01:53 -04:00
|
|
|
|
2022-01-13 13:12:18 -05:00
|
|
|
# len(results) <= len(query_map) here,
|
|
|
|
# so len(results) + len(cross_signing_keys_by_user) <= limit.
|
|
|
|
|
|
|
|
# Add the updated cross-signing keys to the results list
|
2020-06-15 07:03:36 -04:00
|
|
|
for user_id, result in cross_signing_keys_by_user.items():
|
2019-10-30 10:01:53 -04:00
|
|
|
result["user_id"] = user_id
|
2022-05-27 07:14:36 -04:00
|
|
|
results.append((EduTypes.SIGNING_KEY_UPDATE, result))
|
2021-12-08 05:01:38 -05:00
|
|
|
# also send the unstable version
|
|
|
|
# FIXME: remove this when enough servers have upgraded
|
2022-01-13 13:12:18 -05:00
|
|
|
# and remove the length budgeting above.
|
2019-10-30 10:01:53 -04:00
|
|
|
results.append(("org.matrix.signing_key_update", result))
|
2019-06-06 18:54:00 -04:00
|
|
|
|
2022-01-20 08:38:44 -05:00
|
|
|
if issue_8631_logger.isEnabledFor(logging.DEBUG):
|
|
|
|
for user_id, edu in results:
|
|
|
|
issue_8631_logger.debug(
|
|
|
|
"device update to %s for %s from %s to %s: %s",
|
|
|
|
destination,
|
|
|
|
user_id,
|
|
|
|
from_stream_id,
|
|
|
|
last_processed_stream_id,
|
|
|
|
edu,
|
|
|
|
)
|
|
|
|
|
2022-01-12 10:21:13 -05:00
|
|
|
return last_processed_stream_id, results
|
2019-06-06 18:54:00 -04:00
|
|
|
|
2019-10-30 14:57:34 -04:00
|
|
|
def _get_device_updates_by_remote_txn(
|
2020-08-12 10:51:42 -04:00
|
|
|
self,
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
destination: str,
|
|
|
|
from_stream_id: int,
|
|
|
|
now_stream_id: int,
|
|
|
|
limit: int,
|
2022-01-13 13:12:18 -05:00
|
|
|
) -> List[Tuple[str, str, int, Optional[str]]]:
|
2019-06-06 18:54:00 -04:00
|
|
|
"""Return device update information for a given remote destination
|
|
|
|
|
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
txn: The transaction to execute
|
|
|
|
destination: The host the device updates are intended for
|
|
|
|
from_stream_id: The minimum stream_id to filter updates by, exclusive
|
|
|
|
now_stream_id: The maximum stream_id to filter updates by, inclusive
|
|
|
|
limit: Maximum number of device updates to return
|
2019-06-06 18:54:00 -04:00
|
|
|
|
|
|
|
Returns:
|
2022-11-16 10:25:24 -05:00
|
|
|
List of device update tuples:
|
2022-01-13 13:12:18 -05:00
|
|
|
- user_id
|
|
|
|
- device_id
|
|
|
|
- stream_id
|
|
|
|
- opentracing_context
|
2019-06-06 18:54:00 -04:00
|
|
|
"""
|
2019-05-22 16:42:00 -04:00
|
|
|
# get the list of device updates that need to be sent
|
2019-03-04 13:03:29 -05:00
|
|
|
sql = """
|
2019-08-22 13:21:10 -04:00
|
|
|
SELECT user_id, device_id, stream_id, opentracing_context FROM device_lists_outbound_pokes
|
2020-04-07 10:19:19 -04:00
|
|
|
WHERE destination = ? AND ? < stream_id AND stream_id <= ?
|
2019-06-06 18:54:00 -04:00
|
|
|
ORDER BY stream_id
|
|
|
|
LIMIT ?
|
2017-01-27 05:31:06 -05:00
|
|
|
"""
|
2020-04-07 10:19:19 -04:00
|
|
|
txn.execute(sql, (destination, from_stream_id, now_stream_id, limit))
|
2017-01-26 11:39:33 -05:00
|
|
|
|
2022-04-27 08:05:00 -04:00
|
|
|
return cast(List[Tuple[str, str, int, Optional[str]]], txn.fetchall())
|
2019-06-06 18:54:00 -04:00
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
async def _get_device_update_edus_by_remote(
|
|
|
|
self,
|
|
|
|
destination: str,
|
|
|
|
from_stream_id: int,
|
|
|
|
query_map: Dict[Tuple[str, str], Tuple[int, Optional[str]]],
|
|
|
|
) -> List[Tuple[str, dict]]:
|
2019-06-06 18:54:00 -04:00
|
|
|
"""Returns a list of device update EDUs as well as E2EE keys
|
2018-11-01 15:01:29 -04:00
|
|
|
|
2019-06-06 18:54:00 -04:00
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
destination: The host the device updates are intended for
|
|
|
|
from_stream_id: The minimum stream_id to filter updates by, exclusive
|
2022-01-13 13:12:18 -05:00
|
|
|
query_map: Dictionary mapping (user_id, device_id) to
|
|
|
|
(update stream_id, the relevant json-encoded opentracing context)
|
2018-11-01 15:01:29 -04:00
|
|
|
|
2019-06-06 18:54:00 -04:00
|
|
|
Returns:
|
2022-01-13 13:12:18 -05:00
|
|
|
List of objects representing a device update EDU.
|
|
|
|
|
|
|
|
Postconditions:
|
|
|
|
The returned list has a length not exceeding that of the query_map:
|
|
|
|
len(result) <= len(query_map)
|
2019-06-06 18:54:00 -04:00
|
|
|
"""
|
2019-07-22 13:04:55 -04:00
|
|
|
devices = (
|
2020-09-03 06:50:49 -04:00
|
|
|
await self.get_e2e_device_keys_and_signatures(
|
2022-01-13 13:12:18 -05:00
|
|
|
# Because these are (user_id, device_id) tuples with all
|
|
|
|
# device_ids not being None, the returned list's length will not
|
|
|
|
# exceed that of query_map.
|
2019-07-22 13:04:55 -04:00
|
|
|
query_map.keys(),
|
|
|
|
include_all_devices=True,
|
|
|
|
include_deleted_devices=True,
|
|
|
|
)
|
|
|
|
if query_map
|
|
|
|
else {}
|
|
|
|
)
|
2018-11-01 15:01:29 -04:00
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
results = []
|
2020-06-15 07:03:36 -04:00
|
|
|
for user_id, user_devices in devices.items():
|
2019-03-04 13:03:29 -05:00
|
|
|
# The prev_id for the first row is always the last row before
|
|
|
|
# `from_stream_id`
|
2020-08-12 10:51:42 -04:00
|
|
|
prev_id = await self._get_last_device_update_for_remote_user(
|
2019-06-06 18:54:00 -04:00
|
|
|
destination, user_id, from_stream_id
|
|
|
|
)
|
Fix device list update stream ids going backward (#7158)
Occasionally we could get a federation device list update transaction which
looked like:
```
[
{'edu_type': 'm.device_list_update', 'content': {'user_id': '@user:test', 'device_id': 'D2', 'prev_id': [], 'stream_id': 12, 'deleted': True}},
{'edu_type': 'm.device_list_update', 'content': {'user_id': '@user:test', 'device_id': 'D1', 'prev_id': [12], 'stream_id': 11, 'deleted': True}},
{'edu_type': 'm.device_list_update', 'content': {'user_id': '@user:test', 'device_id': 'D3', 'prev_id': [11], 'stream_id': 13, 'deleted': True}}
]
```
Having `stream_ids` which are lower than `prev_ids` looks odd. It might work
(I'm not actually sure), but in any case it doesn't seem like a reasonable
thing to expect other implementations to support.
2020-04-03 05:40:22 -04:00
|
|
|
|
|
|
|
# make sure we go through the devices in stream order
|
|
|
|
device_ids = sorted(
|
|
|
|
user_devices.keys(),
|
|
|
|
key=lambda i: query_map[(user_id, i)][0],
|
|
|
|
)
|
|
|
|
|
|
|
|
for device_id in device_ids:
|
|
|
|
device = user_devices[device_id]
|
2019-08-22 13:21:10 -04:00
|
|
|
stream_id, opentracing_context = query_map[(user_id, device_id)]
|
2019-03-04 13:03:29 -05:00
|
|
|
result = {
|
2018-07-11 20:32:39 -04:00
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
2019-03-04 13:03:29 -05:00
|
|
|
"prev_id": [prev_id] if prev_id else [],
|
|
|
|
"stream_id": stream_id,
|
|
|
|
}
|
2018-07-11 20:32:39 -04:00
|
|
|
|
2022-10-18 16:54:27 -04:00
|
|
|
if opentracing_context != "{}":
|
|
|
|
result["org.matrix.opentracing_context"] = opentracing_context
|
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
prev_id = stream_id
|
2018-11-01 15:01:29 -04:00
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
if device is not None:
|
2020-09-04 10:06:05 -04:00
|
|
|
keys = device.keys
|
|
|
|
if keys:
|
|
|
|
result["keys"] = keys
|
2020-03-31 09:51:22 -04:00
|
|
|
|
2022-10-18 16:54:27 -04:00
|
|
|
device_display_name = None
|
|
|
|
if (
|
|
|
|
self.hs.config.federation.allow_device_name_lookup_over_federation
|
|
|
|
):
|
|
|
|
device_display_name = device.display_name
|
2019-03-04 13:03:29 -05:00
|
|
|
if device_display_name:
|
|
|
|
result["device_display_name"] = device_display_name
|
|
|
|
else:
|
|
|
|
result["deleted"] = True
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2022-05-27 07:14:36 -04:00
|
|
|
results.append((EduTypes.DEVICE_LIST_UPDATE, result))
|
2019-03-04 13:03:29 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return results
|
2019-06-06 18:54:00 -04:00
|
|
|
|
2020-09-01 09:21:48 -04:00
|
|
|
async def _get_last_device_update_for_remote_user(
|
2020-08-12 10:51:42 -04:00
|
|
|
self, destination: str, user_id: str, from_stream_id: int
|
2020-09-01 09:21:48 -04:00
|
|
|
) -> int:
|
2022-04-27 08:05:00 -04:00
|
|
|
def f(txn: LoggingTransaction) -> int:
|
2019-06-06 18:54:00 -04:00
|
|
|
prev_sent_id_sql = """
|
|
|
|
SELECT coalesce(max(stream_id), 0) as stream_id
|
|
|
|
FROM device_lists_outbound_last_success
|
|
|
|
WHERE destination = ? AND user_id = ? AND stream_id <= ?
|
|
|
|
"""
|
|
|
|
txn.execute(prev_sent_id_sql, (destination, user_id, from_stream_id))
|
|
|
|
rows = txn.fetchall()
|
|
|
|
return rows[0][0]
|
|
|
|
|
2020-09-01 09:21:48 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_last_device_update_for_remote_user", f
|
|
|
|
)
|
2019-03-04 13:03:29 -05:00
|
|
|
|
2020-09-01 09:21:48 -04:00
|
|
|
async def mark_as_sent_devices_by_remote(
|
|
|
|
self, destination: str, stream_id: int
|
|
|
|
) -> None:
|
2019-03-04 13:03:29 -05:00
|
|
|
"""Mark that updates have successfully been sent to the destination."""
|
2020-09-01 09:21:48 -04:00
|
|
|
await self.db_pool.runInteraction(
|
2019-04-03 05:07:29 -04:00
|
|
|
"mark_as_sent_devices_by_remote",
|
|
|
|
self._mark_as_sent_devices_by_remote_txn,
|
|
|
|
destination,
|
|
|
|
stream_id,
|
2017-02-27 11:22:12 -05:00
|
|
|
)
|
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
def _mark_as_sent_devices_by_remote_txn(
|
|
|
|
self, txn: LoggingTransaction, destination: str, stream_id: int
|
|
|
|
) -> None:
|
2019-03-04 13:03:29 -05:00
|
|
|
# We update the device_lists_outbound_last_success with the successfully
|
2020-05-05 20:16:53 -04:00
|
|
|
# poked users.
|
2019-03-04 13:03:29 -05:00
|
|
|
sql = """
|
2020-05-05 20:16:53 -04:00
|
|
|
SELECT user_id, coalesce(max(o.stream_id), 0)
|
2019-03-04 13:03:29 -05:00
|
|
|
FROM device_lists_outbound_pokes as o
|
|
|
|
WHERE destination = ? AND o.stream_id <= ?
|
|
|
|
GROUP BY user_id
|
|
|
|
"""
|
2019-04-03 05:07:29 -04:00
|
|
|
txn.execute(sql, (destination, stream_id))
|
2019-03-04 13:03:29 -05:00
|
|
|
rows = txn.fetchall()
|
2018-11-01 15:01:29 -04:00
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_upsert_many_txn(
|
2020-05-05 20:16:53 -04:00
|
|
|
txn=txn,
|
|
|
|
table="device_lists_outbound_last_success",
|
|
|
|
key_names=("destination", "user_id"),
|
2022-06-15 11:20:04 -04:00
|
|
|
key_values=[(destination, user_id) for user_id, _ in rows],
|
2020-05-05 20:16:53 -04:00
|
|
|
value_names=("stream_id",),
|
2023-11-07 14:00:25 -05:00
|
|
|
value_values=[(stream_id,) for _, stream_id in rows],
|
2019-03-04 13:03:29 -05:00
|
|
|
)
|
2018-11-01 15:01:29 -04:00
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
# Delete all sent outbound pokes
|
|
|
|
sql = """
|
|
|
|
DELETE FROM device_lists_outbound_pokes
|
|
|
|
WHERE destination = ? AND stream_id <= ?
|
|
|
|
"""
|
2019-04-03 05:07:29 -04:00
|
|
|
txn.execute(sql, (destination, stream_id))
|
2019-03-04 13:03:29 -05:00
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
async def add_user_signature_change_to_streams(
|
|
|
|
self, from_user_id: str, user_ids: List[str]
|
|
|
|
) -> int:
|
2019-07-25 11:08:24 -04:00
|
|
|
"""Persist that a user has made new signatures
|
|
|
|
|
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
from_user_id: the user who made the signatures
|
|
|
|
user_ids: the users who were signed
|
|
|
|
|
|
|
|
Returns:
|
2021-11-02 06:39:02 -04:00
|
|
|
The new stream ID.
|
2019-07-25 11:08:24 -04:00
|
|
|
"""
|
|
|
|
|
2023-03-03 08:13:37 -05:00
|
|
|
async with self._device_list_id_gen.get_next() as stream_id:
|
2020-08-12 10:51:42 -04:00
|
|
|
await self.db_pool.runInteraction(
|
2019-07-25 11:08:24 -04:00
|
|
|
"add_user_sig_change_to_streams",
|
|
|
|
self._add_user_signature_change_txn,
|
|
|
|
from_user_id,
|
|
|
|
user_ids,
|
|
|
|
stream_id,
|
|
|
|
)
|
2019-08-21 16:19:35 -04:00
|
|
|
return stream_id
|
2019-07-25 11:08:24 -04:00
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
def _add_user_signature_change_txn(
|
|
|
|
self,
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
from_user_id: str,
|
|
|
|
user_ids: List[str],
|
|
|
|
stream_id: int,
|
|
|
|
) -> None:
|
2019-07-25 11:08:24 -04:00
|
|
|
txn.call_after(
|
|
|
|
self._user_signature_stream_cache.entity_has_changed,
|
|
|
|
from_user_id,
|
|
|
|
stream_id,
|
|
|
|
)
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_insert_txn(
|
2019-07-25 11:08:24 -04:00
|
|
|
txn,
|
|
|
|
"user_signature_stream",
|
|
|
|
values={
|
|
|
|
"stream_id": stream_id,
|
|
|
|
"from_user_id": from_user_id,
|
2020-08-07 08:02:55 -04:00
|
|
|
"user_ids": json_encoder.encode(user_ids),
|
2019-07-25 11:08:24 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2019-09-03 05:21:30 -04:00
|
|
|
@trace
|
2022-09-07 07:03:32 -04:00
|
|
|
@cancellable
|
2020-08-12 10:51:42 -04:00
|
|
|
async def get_user_devices_from_cache(
|
2023-02-10 08:09:47 -05:00
|
|
|
self, user_ids: Set[str], user_and_device_ids: List[Tuple[str, str]]
|
2023-09-19 15:26:44 -04:00
|
|
|
) -> Tuple[Set[str], Dict[str, Mapping[str, JsonMapping]]]:
|
2019-03-04 13:03:29 -05:00
|
|
|
"""Get the devices (and keys if any) for remote users from the cache.
|
2018-11-01 15:01:29 -04:00
|
|
|
|
|
|
|
Args:
|
2023-02-10 08:09:47 -05:00
|
|
|
user_ids: users which should have all device IDs returned
|
|
|
|
user_and_device_ids: List of (user_id, device_ids)
|
2018-11-01 15:01:29 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-08-12 10:51:42 -04:00
|
|
|
A tuple of (user_ids_not_in_cache, results_map), where
|
|
|
|
user_ids_not_in_cache is a set of user_ids and results_map is a
|
|
|
|
mapping of user_id -> device_id -> device_info.
|
2017-01-26 11:30:37 -05:00
|
|
|
"""
|
2023-02-10 08:09:47 -05:00
|
|
|
unique_user_ids = user_ids | {user_id for user_id, _ in user_and_device_ids}
|
2020-01-30 10:06:58 -05:00
|
|
|
|
2023-09-07 08:45:43 -04:00
|
|
|
user_ids_in_cache = await self.get_users_whose_devices_are_cached(
|
2023-02-10 08:09:47 -05:00
|
|
|
unique_user_ids
|
2020-01-30 10:06:58 -05:00
|
|
|
)
|
2023-02-10 08:09:47 -05:00
|
|
|
user_ids_not_in_cache = unique_user_ids - user_ids_in_cache
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2023-02-10 08:09:47 -05:00
|
|
|
# First fetch all the users which all devices are to be returned.
|
2023-09-19 15:26:44 -04:00
|
|
|
results: Dict[str, Mapping[str, JsonMapping]] = {}
|
2023-02-10 08:09:47 -05:00
|
|
|
for user_id in user_ids:
|
|
|
|
if user_id in user_ids_in_cache:
|
|
|
|
results[user_id] = await self.get_cached_devices_for_user(user_id)
|
|
|
|
# Then fetch all device-specific requests, but skip users we've already
|
|
|
|
# fetched all devices for.
|
2023-09-19 15:26:44 -04:00
|
|
|
device_specific_results: Dict[str, Dict[str, JsonMapping]] = {}
|
2023-02-10 08:09:47 -05:00
|
|
|
for user_id, device_id in user_and_device_ids:
|
|
|
|
if user_id in user_ids_in_cache and user_id not in user_ids:
|
2020-08-12 10:51:42 -04:00
|
|
|
device = await self._get_cached_user_device(user_id, device_id)
|
2023-02-10 18:29:00 -05:00
|
|
|
device_specific_results.setdefault(user_id, {})[device_id] = device
|
|
|
|
results.update(device_specific_results)
|
2019-03-04 13:03:29 -05:00
|
|
|
|
2022-07-21 08:01:52 -04:00
|
|
|
set_tag("in_cache", str(results))
|
|
|
|
set_tag("not_in_cache", str(user_ids_not_in_cache))
|
2019-09-03 05:21:30 -04:00
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return user_ids_not_in_cache, results
|
2019-03-04 13:03:29 -05:00
|
|
|
|
2023-09-07 08:45:43 -04:00
|
|
|
async def get_users_whose_devices_are_cached(
|
|
|
|
self, user_ids: StrCollection
|
|
|
|
) -> Set[str]:
|
|
|
|
"""Checks which of the given users we have cached the devices for."""
|
|
|
|
user_map = await self.get_device_list_last_stream_id_for_remotes(user_ids)
|
|
|
|
|
|
|
|
# We go and check if any of the users need to have their device lists
|
|
|
|
# resynced. If they do then we remove them from the cached list.
|
|
|
|
users_needing_resync = await self.get_user_ids_requiring_device_list_resync(
|
|
|
|
user_ids
|
|
|
|
)
|
|
|
|
user_ids_in_cache = {
|
|
|
|
user_id for user_id, stream_id in user_map.items() if stream_id
|
|
|
|
} - users_needing_resync
|
|
|
|
return user_ids_in_cache
|
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
@cached(num_args=2, tree=True)
|
2023-09-19 15:26:44 -04:00
|
|
|
async def _get_cached_user_device(
|
|
|
|
self, user_id: str, device_id: str
|
|
|
|
) -> JsonMapping:
|
2020-08-12 10:51:42 -04:00
|
|
|
content = await self.db_pool.simple_select_one_onecol(
|
2017-01-26 11:06:54 -05:00
|
|
|
table="device_lists_remote_cache",
|
2019-04-03 05:07:29 -04:00
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id},
|
2019-03-04 13:03:29 -05:00
|
|
|
retcol="content",
|
|
|
|
desc="_get_cached_user_device",
|
2017-01-26 11:06:54 -05:00
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return db_to_json(content)
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
@cached()
|
2023-09-19 15:26:44 -04:00
|
|
|
async def get_cached_devices_for_user(
|
|
|
|
self, user_id: str
|
|
|
|
) -> Mapping[str, JsonMapping]:
|
2023-10-26 13:01:36 -04:00
|
|
|
devices = cast(
|
|
|
|
List[Tuple[str, str]],
|
|
|
|
await self.db_pool.simple_select_list(
|
|
|
|
table="device_lists_remote_cache",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
retcols=("device_id", "content"),
|
|
|
|
desc="get_cached_devices_for_user",
|
|
|
|
),
|
2017-01-26 11:06:54 -05:00
|
|
|
)
|
2023-10-26 13:01:36 -04:00
|
|
|
return {device[0]: db_to_json(device[1]) for device in devices}
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2022-02-15 10:01:00 -05:00
|
|
|
def get_cached_device_list_changes(
|
|
|
|
self,
|
|
|
|
from_key: int,
|
2022-12-05 15:19:14 -05:00
|
|
|
) -> AllEntitiesChangedResult:
|
2022-02-15 10:01:00 -05:00
|
|
|
"""Get set of users whose devices have changed since `from_key`, or None
|
|
|
|
if that information is not in our cache.
|
|
|
|
"""
|
|
|
|
|
|
|
|
return self._device_list_stream_cache.get_all_entities_changed(from_key)
|
|
|
|
|
2022-12-05 15:19:14 -05:00
|
|
|
@cancellable
|
|
|
|
async def get_all_devices_changed(
|
|
|
|
self,
|
|
|
|
from_key: int,
|
|
|
|
to_key: int,
|
|
|
|
) -> Set[str]:
|
|
|
|
"""Get all users whose devices have changed in the given range.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
from_key: The minimum device lists stream token to query device list
|
|
|
|
changes for, exclusive.
|
|
|
|
to_key: The maximum device lists stream token to query device list
|
|
|
|
changes for, inclusive.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The set of user_ids whose devices have changed since `from_key`
|
|
|
|
(exclusive) until `to_key` (inclusive).
|
|
|
|
"""
|
|
|
|
|
|
|
|
result = self._device_list_stream_cache.get_all_entities_changed(from_key)
|
|
|
|
|
|
|
|
if result.hit:
|
|
|
|
# We know which users might have changed devices.
|
|
|
|
if not result.entities:
|
|
|
|
# If no users then we can return early.
|
|
|
|
return set()
|
|
|
|
|
|
|
|
# Otherwise we need to filter down the list
|
|
|
|
return await self.get_users_whose_devices_changed(
|
|
|
|
from_key, result.entities, to_key
|
|
|
|
)
|
|
|
|
|
|
|
|
# If the cache didn't tell us anything, we just need to query the full
|
|
|
|
# range.
|
|
|
|
sql = """
|
|
|
|
SELECT DISTINCT user_id FROM device_lists_stream
|
|
|
|
WHERE ? < stream_id AND stream_id <= ?
|
|
|
|
"""
|
|
|
|
|
|
|
|
rows = await self.db_pool.execute(
|
|
|
|
"get_all_devices_changed",
|
|
|
|
sql,
|
|
|
|
from_key,
|
|
|
|
to_key,
|
|
|
|
)
|
|
|
|
return {u for u, in rows}
|
|
|
|
|
2022-09-07 07:03:32 -04:00
|
|
|
@cancellable
|
2020-08-12 10:51:42 -04:00
|
|
|
async def get_users_whose_devices_changed(
|
2022-03-30 09:39:27 -04:00
|
|
|
self,
|
|
|
|
from_key: int,
|
2022-12-05 15:19:14 -05:00
|
|
|
user_ids: Collection[str],
|
2022-03-30 09:39:27 -04:00
|
|
|
to_key: Optional[int] = None,
|
2020-08-12 10:51:42 -04:00
|
|
|
) -> Set[str]:
|
2019-06-26 06:56:52 -04:00
|
|
|
"""Get set of users whose devices have changed since `from_key` that
|
|
|
|
are in the given list of user_ids.
|
|
|
|
|
|
|
|
Args:
|
2022-03-30 09:39:27 -04:00
|
|
|
from_key: The minimum device lists stream token to query device list changes for,
|
|
|
|
exclusive.
|
|
|
|
user_ids: If provided, only check if these users have changed their device lists.
|
|
|
|
Otherwise changes from all users are returned.
|
|
|
|
to_key: The maximum device lists stream token to query device list changes for,
|
|
|
|
inclusive.
|
2019-06-26 06:56:52 -04:00
|
|
|
|
|
|
|
Returns:
|
2022-03-30 09:39:27 -04:00
|
|
|
The set of user_ids whose devices have changed since `from_key` (exclusive)
|
|
|
|
until `to_key` (inclusive).
|
2019-03-04 13:03:29 -05:00
|
|
|
"""
|
2019-06-26 06:56:52 -04:00
|
|
|
# Get set of users who *may* have changed. Users not in the returned
|
|
|
|
# list have definitely not changed.
|
2022-12-05 15:19:14 -05:00
|
|
|
user_ids_to_check = self._device_list_stream_cache.get_entities_changed(
|
|
|
|
user_ids, from_key
|
|
|
|
)
|
2019-06-26 06:56:52 -04:00
|
|
|
|
2022-12-02 10:28:41 -05:00
|
|
|
# If an empty set was returned, there's nothing to do.
|
2022-12-05 15:19:14 -05:00
|
|
|
if not user_ids_to_check:
|
2020-08-12 10:51:42 -04:00
|
|
|
return set()
|
2019-06-26 06:56:52 -04:00
|
|
|
|
2022-12-05 15:19:14 -05:00
|
|
|
if to_key is None:
|
|
|
|
to_key = self._device_list_id_gen.get_current_token()
|
2022-03-30 09:39:27 -04:00
|
|
|
|
2022-12-05 15:19:14 -05:00
|
|
|
def _get_users_whose_devices_changed_txn(txn: LoggingTransaction) -> Set[str]:
|
|
|
|
sql = """
|
2019-06-26 14:10:38 -04:00
|
|
|
SELECT DISTINCT user_id FROM device_lists_stream
|
2022-12-05 15:19:14 -05:00
|
|
|
WHERE ? < stream_id AND stream_id <= ? AND %s
|
2019-06-26 14:10:38 -04:00
|
|
|
"""
|
|
|
|
|
2022-12-05 15:19:14 -05:00
|
|
|
changes: Set[str] = set()
|
2022-12-02 10:28:41 -05:00
|
|
|
|
2022-12-05 15:19:14 -05:00
|
|
|
# Query device changes with a batch of users at a time
|
|
|
|
for chunk in batch_iter(user_ids_to_check, 100):
|
|
|
|
clause, args = make_in_list_sql_clause(
|
|
|
|
txn.database_engine, "user_id", chunk
|
|
|
|
)
|
|
|
|
txn.execute(sql % (clause,), [from_key, to_key] + args)
|
|
|
|
changes.update(user_id for user_id, in txn)
|
2019-06-26 06:56:52 -04:00
|
|
|
|
|
|
|
return changes
|
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
2019-06-26 14:09:10 -04:00
|
|
|
"get_users_whose_devices_changed", _get_users_whose_devices_changed_txn
|
2019-04-03 05:07:29 -04:00
|
|
|
)
|
2019-03-04 13:03:29 -05:00
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
async def get_users_whose_signatures_changed(
|
2020-09-08 11:48:15 -04:00
|
|
|
self, user_id: str, from_key: int
|
2020-08-12 10:51:42 -04:00
|
|
|
) -> Set[str]:
|
2019-07-25 11:08:24 -04:00
|
|
|
"""Get the users who have new cross-signing signatures made by `user_id` since
|
|
|
|
`from_key`.
|
|
|
|
|
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
user_id: the user who made the signatures
|
|
|
|
from_key: The device lists stream token
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A set of user IDs with updated signatures.
|
2019-07-25 11:08:24 -04:00
|
|
|
"""
|
2020-09-08 11:48:15 -04:00
|
|
|
|
2019-07-25 11:08:24 -04:00
|
|
|
if self._user_signature_stream_cache.has_entity_changed(user_id, from_key):
|
|
|
|
sql = """
|
|
|
|
SELECT DISTINCT user_ids FROM user_signature_stream
|
|
|
|
WHERE from_user_id = ? AND stream_id > ?
|
|
|
|
"""
|
2020-08-12 10:51:42 -04:00
|
|
|
rows = await self.db_pool.execute(
|
2023-10-26 15:12:28 -04:00
|
|
|
"get_users_whose_signatures_changed", sql, user_id, from_key
|
2019-07-25 11:08:24 -04:00
|
|
|
)
|
2020-07-16 11:32:19 -04:00
|
|
|
return {user for row in rows for user in db_to_json(row[0])}
|
2019-07-25 11:08:24 -04:00
|
|
|
else:
|
2019-08-21 16:19:35 -04:00
|
|
|
return set()
|
2019-07-25 11:08:24 -04:00
|
|
|
|
2020-03-18 06:13:55 -04:00
|
|
|
async def get_all_device_list_changes_for_remotes(
|
2020-07-07 07:11:35 -04:00
|
|
|
self, instance_name: str, last_id: int, current_id: int, limit: int
|
|
|
|
) -> Tuple[List[Tuple[int, tuple]], int, bool]:
|
|
|
|
"""Get updates for device lists replication stream.
|
2020-02-28 06:24:05 -05:00
|
|
|
|
2020-07-07 07:11:35 -04:00
|
|
|
Args:
|
|
|
|
instance_name: The writer we want to fetch updates from. Unused
|
|
|
|
here since there is only ever one writer.
|
|
|
|
last_id: The token to fetch updates from. Exclusive.
|
|
|
|
current_id: The token to fetch updates up to. Inclusive.
|
|
|
|
limit: The requested limit for the number of rows to return. The
|
|
|
|
function may return more or fewer rows.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A tuple consisting of: the updates, a token to use to fetch
|
|
|
|
subsequent updates, and whether we returned fewer rows than exists
|
|
|
|
between the requested tokens due to the limit.
|
|
|
|
|
|
|
|
The token returned can be used in a subsequent call to this
|
2020-08-07 13:36:29 -04:00
|
|
|
function to get further updates.
|
2020-07-07 07:11:35 -04:00
|
|
|
|
|
|
|
The updates are a list of 2-tuples of stream ID and the row data
|
2019-03-04 13:03:29 -05:00
|
|
|
"""
|
2020-02-28 06:24:05 -05:00
|
|
|
|
2020-07-07 07:11:35 -04:00
|
|
|
if last_id == current_id:
|
|
|
|
return [], current_id, False
|
|
|
|
|
2022-06-15 11:20:04 -04:00
|
|
|
def _get_all_device_list_changes_for_remotes(
|
|
|
|
txn: Cursor,
|
|
|
|
) -> Tuple[List[Tuple[int, tuple]], int, bool]:
|
2020-07-07 07:11:35 -04:00
|
|
|
# This query Does The Right Thing where it'll correctly apply the
|
|
|
|
# bounds to the inner queries.
|
|
|
|
sql = """
|
|
|
|
SELECT stream_id, entity FROM (
|
|
|
|
SELECT stream_id, user_id AS entity FROM device_lists_stream
|
|
|
|
UNION ALL
|
|
|
|
SELECT stream_id, destination AS entity FROM device_lists_outbound_pokes
|
|
|
|
) AS e
|
|
|
|
WHERE ? < stream_id AND stream_id <= ?
|
2022-04-04 10:25:20 -04:00
|
|
|
ORDER BY stream_id ASC
|
2020-07-07 07:11:35 -04:00
|
|
|
LIMIT ?
|
|
|
|
"""
|
|
|
|
|
|
|
|
txn.execute(sql, (last_id, current_id, limit))
|
|
|
|
updates = [(row[0], row[1:]) for row in txn]
|
|
|
|
limited = False
|
|
|
|
upto_token = current_id
|
|
|
|
if len(updates) >= limit:
|
|
|
|
upto_token = updates[-1][0]
|
|
|
|
limited = True
|
|
|
|
|
|
|
|
return updates, upto_token, limited
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
2020-03-20 10:40:47 -04:00
|
|
|
"get_all_device_list_changes_for_remotes",
|
2020-07-07 07:11:35 -04:00
|
|
|
_get_all_device_list_changes_for_remotes,
|
2017-01-25 09:27:27 -05:00
|
|
|
)
|
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
@cached(max_entries=10000)
|
2020-08-26 07:19:32 -04:00
|
|
|
async def get_device_list_last_stream_id_for_remote(
|
|
|
|
self, user_id: str
|
2022-01-05 08:33:28 -05:00
|
|
|
) -> Optional[str]:
|
2019-03-04 13:03:29 -05:00
|
|
|
"""Get the last stream_id we got for a user. May be None if we haven't
|
|
|
|
got any information for them.
|
|
|
|
"""
|
2020-08-26 07:19:32 -04:00
|
|
|
return await self.db_pool.simple_select_one_onecol(
|
2019-03-04 13:03:29 -05:00
|
|
|
table="device_lists_remote_extremeties",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
retcol="stream_id",
|
|
|
|
desc="get_device_list_last_stream_id_for_remote",
|
|
|
|
allow_none=True,
|
|
|
|
)
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2019-04-03 05:07:29 -04:00
|
|
|
@cachedList(
|
|
|
|
cached_method_name="get_device_list_last_stream_id_for_remote",
|
|
|
|
list_name="user_ids",
|
|
|
|
)
|
2022-01-05 08:33:28 -05:00
|
|
|
async def get_device_list_last_stream_id_for_remotes(
|
|
|
|
self, user_ids: Iterable[str]
|
2023-09-19 15:26:44 -04:00
|
|
|
) -> Mapping[str, Optional[str]]:
|
2023-10-11 13:24:56 -04:00
|
|
|
rows = cast(
|
|
|
|
List[Tuple[str, str]],
|
|
|
|
await self.db_pool.simple_select_many_batch(
|
|
|
|
table="device_lists_remote_extremeties",
|
|
|
|
column="user_id",
|
|
|
|
iterable=user_ids,
|
|
|
|
retcols=("user_id", "stream_id"),
|
|
|
|
desc="get_device_list_last_stream_id_for_remotes",
|
|
|
|
),
|
2019-03-04 13:03:29 -05:00
|
|
|
)
|
2017-03-24 10:44:49 -04:00
|
|
|
|
2022-06-15 11:20:04 -04:00
|
|
|
results: Dict[str, Optional[str]] = {user_id: None for user_id in user_ids}
|
2023-10-11 13:24:56 -04:00
|
|
|
results.update(rows)
|
2019-03-04 13:03:29 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return results
|
2019-03-04 13:03:29 -05:00
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
async def get_user_ids_requiring_device_list_resync(
|
2020-05-21 11:41:12 -04:00
|
|
|
self,
|
|
|
|
user_ids: Optional[Collection[str]] = None,
|
|
|
|
) -> Set[str]:
|
2020-01-30 10:06:58 -05:00
|
|
|
"""Given a list of remote users return the list of users that we
|
2020-05-21 11:41:12 -04:00
|
|
|
should resync the device lists for. If None is given instead of a list,
|
|
|
|
return every user that we should resync the device lists for.
|
2020-01-30 10:06:58 -05:00
|
|
|
|
|
|
|
Returns:
|
2020-05-21 11:41:12 -04:00
|
|
|
The IDs of users whose device lists need resync.
|
2020-01-30 10:06:58 -05:00
|
|
|
"""
|
2020-05-21 11:41:12 -04:00
|
|
|
if user_ids:
|
2023-10-26 13:01:36 -04:00
|
|
|
rows = cast(
|
2023-10-11 13:24:56 -04:00
|
|
|
List[Tuple[str]],
|
|
|
|
await self.db_pool.simple_select_many_batch(
|
|
|
|
table="device_lists_remote_resync",
|
|
|
|
column="user_id",
|
|
|
|
iterable=user_ids,
|
|
|
|
retcols=("user_id",),
|
|
|
|
desc="get_user_ids_requiring_device_list_resync_with_iterable",
|
|
|
|
),
|
2020-05-21 11:41:12 -04:00
|
|
|
)
|
|
|
|
else:
|
2023-10-11 13:24:56 -04:00
|
|
|
rows = cast(
|
2023-10-26 13:01:36 -04:00
|
|
|
List[Tuple[str]],
|
2023-10-11 13:24:56 -04:00
|
|
|
await self.db_pool.simple_select_list(
|
|
|
|
table="device_lists_remote_resync",
|
|
|
|
keyvalues=None,
|
|
|
|
retcols=("user_id",),
|
|
|
|
desc="get_user_ids_requiring_device_list_resync",
|
|
|
|
),
|
2020-05-21 11:41:12 -04:00
|
|
|
)
|
2020-01-30 10:06:58 -05:00
|
|
|
|
2023-10-26 13:01:36 -04:00
|
|
|
return {row[0] for row in rows}
|
2020-01-30 10:06:58 -05:00
|
|
|
|
2023-01-10 06:17:59 -05:00
|
|
|
async def mark_remote_users_device_caches_as_stale(
|
|
|
|
self, user_ids: StrCollection
|
|
|
|
) -> None:
|
2020-01-28 09:43:21 -05:00
|
|
|
"""Records that the server has reason to believe the cache of the devices
|
|
|
|
for the remote users is out of date.
|
|
|
|
"""
|
2023-01-10 06:17:59 -05:00
|
|
|
|
|
|
|
def _mark_remote_users_device_caches_as_stale_txn(
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
) -> None:
|
|
|
|
# TODO add insertion_values support to simple_upsert_many and use
|
|
|
|
# that!
|
|
|
|
for user_id in user_ids:
|
|
|
|
self.db_pool.simple_upsert_txn(
|
|
|
|
txn,
|
|
|
|
table="device_lists_remote_resync",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
values={},
|
|
|
|
insertion_values={"added_ts": self._clock.time_msec()},
|
|
|
|
)
|
|
|
|
|
|
|
|
await self.db_pool.runInteraction(
|
|
|
|
"mark_remote_users_device_caches_as_stale",
|
|
|
|
_mark_remote_users_device_caches_as_stale_txn,
|
2021-04-22 11:53:24 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
async def mark_remote_user_device_cache_as_valid(self, user_id: str) -> None:
|
|
|
|
# Remove the database entry that says we need to resync devices, after a resync
|
|
|
|
await self.db_pool.simple_delete(
|
|
|
|
table="device_lists_remote_resync",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
desc="mark_remote_user_device_cache_as_valid",
|
2020-01-28 09:43:21 -05:00
|
|
|
)
|
|
|
|
|
2022-09-27 08:01:08 -04:00
|
|
|
async def handle_potentially_left_users(self, user_ids: Set[str]) -> None:
|
|
|
|
"""Given a set of remote users check if the server still shares a room with
|
|
|
|
them. If not then mark those users' device cache as stale.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if not user_ids:
|
|
|
|
return
|
|
|
|
|
|
|
|
await self.db_pool.runInteraction(
|
|
|
|
"_handle_potentially_left_users",
|
|
|
|
self.handle_potentially_left_users_txn,
|
|
|
|
user_ids,
|
|
|
|
)
|
|
|
|
|
|
|
|
def handle_potentially_left_users_txn(
|
|
|
|
self,
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
user_ids: Set[str],
|
|
|
|
) -> None:
|
|
|
|
"""Given a set of remote users check if the server still shares a room with
|
|
|
|
them. If not then mark those users' device cache as stale.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if not user_ids:
|
|
|
|
return
|
|
|
|
|
|
|
|
joined_users = self.get_users_server_still_shares_room_with_txn(txn, user_ids)
|
|
|
|
left_users = user_ids - joined_users
|
|
|
|
|
|
|
|
for user_id in left_users:
|
|
|
|
self.mark_remote_user_device_list_as_unsubscribed_txn(txn, user_id)
|
|
|
|
|
2020-09-01 09:21:48 -04:00
|
|
|
async def mark_remote_user_device_list_as_unsubscribed(self, user_id: str) -> None:
|
2020-05-22 11:11:35 -04:00
|
|
|
"""Mark that we no longer track device lists for remote user."""
|
|
|
|
|
2020-09-01 09:21:48 -04:00
|
|
|
await self.db_pool.runInteraction(
|
2020-05-22 11:11:35 -04:00
|
|
|
"mark_remote_user_device_list_as_unsubscribed",
|
2022-09-27 08:01:08 -04:00
|
|
|
self.mark_remote_user_device_list_as_unsubscribed_txn,
|
|
|
|
user_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
def mark_remote_user_device_list_as_unsubscribed_txn(
|
|
|
|
self,
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
user_id: str,
|
|
|
|
) -> None:
|
|
|
|
self.db_pool.simple_delete_txn(
|
|
|
|
txn,
|
|
|
|
table="device_lists_remote_extremeties",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
)
|
|
|
|
self._invalidate_cache_and_stream(
|
|
|
|
txn, self.get_device_list_last_stream_id_for_remote, (user_id,)
|
2020-05-22 11:11:35 -04:00
|
|
|
)
|
|
|
|
|
2020-10-07 08:00:17 -04:00
|
|
|
async def get_dehydrated_device(
|
|
|
|
self, user_id: str
|
|
|
|
) -> Optional[Tuple[str, JsonDict]]:
|
|
|
|
"""Retrieve the information for a dehydrated device.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id: the user whose dehydrated device we are looking for
|
|
|
|
Returns:
|
|
|
|
a tuple whose first item is the device ID, and the second item is
|
|
|
|
the dehydrated device information
|
|
|
|
"""
|
|
|
|
# FIXME: make sure device ID still exists in devices table
|
|
|
|
row = await self.db_pool.simple_select_one(
|
|
|
|
table="dehydrated_devices",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
retcols=["device_id", "device_data"],
|
|
|
|
allow_none=True,
|
|
|
|
)
|
2023-11-09 11:13:31 -05:00
|
|
|
return (row[0], json_decoder.decode(row[1])) if row else None
|
2020-10-07 08:00:17 -04:00
|
|
|
|
|
|
|
def _store_dehydrated_device_txn(
|
2023-08-08 15:04:46 -04:00
|
|
|
self,
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
user_id: str,
|
|
|
|
device_id: str,
|
|
|
|
device_data: str,
|
|
|
|
time: int,
|
|
|
|
keys: Optional[JsonDict] = None,
|
2020-10-07 08:00:17 -04:00
|
|
|
) -> Optional[str]:
|
2023-08-08 15:04:46 -04:00
|
|
|
# TODO: make keys non-optional once support for msc2697 is dropped
|
|
|
|
if keys:
|
|
|
|
device_keys = keys.get("device_keys", None)
|
|
|
|
if device_keys:
|
|
|
|
# Type ignore - this function is defined on EndToEndKeyStore which we do
|
|
|
|
# have access to due to hs.get_datastore() "magic"
|
|
|
|
self._set_e2e_device_keys_txn( # type: ignore[attr-defined]
|
|
|
|
txn, user_id, device_id, time, device_keys
|
|
|
|
)
|
|
|
|
|
|
|
|
one_time_keys = keys.get("one_time_keys", None)
|
|
|
|
if one_time_keys:
|
|
|
|
key_list = []
|
|
|
|
for key_id, key_obj in one_time_keys.items():
|
|
|
|
algorithm, key_id = key_id.split(":")
|
|
|
|
key_list.append(
|
|
|
|
(
|
|
|
|
algorithm,
|
|
|
|
key_id,
|
|
|
|
encode_canonical_json(key_obj).decode("ascii"),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self._add_e2e_one_time_keys_txn(txn, user_id, device_id, time, key_list)
|
|
|
|
|
|
|
|
fallback_keys = keys.get("fallback_keys", None)
|
|
|
|
if fallback_keys:
|
|
|
|
self._set_e2e_fallback_keys_txn(txn, user_id, device_id, fallback_keys)
|
|
|
|
|
2020-10-07 08:00:17 -04:00
|
|
|
old_device_id = self.db_pool.simple_select_one_onecol_txn(
|
|
|
|
txn,
|
|
|
|
table="dehydrated_devices",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
retcol="device_id",
|
|
|
|
allow_none=True,
|
|
|
|
)
|
|
|
|
self.db_pool.simple_upsert_txn(
|
|
|
|
txn,
|
|
|
|
table="dehydrated_devices",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
values={"device_id": device_id, "device_data": device_data},
|
|
|
|
)
|
2023-08-08 15:04:46 -04:00
|
|
|
|
2020-10-07 08:00:17 -04:00
|
|
|
return old_device_id
|
|
|
|
|
|
|
|
async def store_dehydrated_device(
|
2023-08-08 15:04:46 -04:00
|
|
|
self,
|
|
|
|
user_id: str,
|
|
|
|
device_id: str,
|
|
|
|
device_data: JsonDict,
|
|
|
|
time_now: int,
|
|
|
|
keys: Optional[dict] = None,
|
2020-10-07 08:00:17 -04:00
|
|
|
) -> Optional[str]:
|
|
|
|
"""Store a dehydrated device for a user.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id: the user that we are storing the device for
|
|
|
|
device_id: the ID of the dehydrated device
|
|
|
|
device_data: the dehydrated device information
|
2023-08-08 15:04:46 -04:00
|
|
|
time_now: current time at the request in milliseconds
|
|
|
|
keys: keys for the dehydrated device
|
|
|
|
|
2020-10-07 08:00:17 -04:00
|
|
|
Returns:
|
|
|
|
device id of the user's previous dehydrated device, if any
|
|
|
|
"""
|
2023-08-08 15:04:46 -04:00
|
|
|
|
2020-10-07 08:00:17 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"store_dehydrated_device_txn",
|
|
|
|
self._store_dehydrated_device_txn,
|
|
|
|
user_id,
|
|
|
|
device_id,
|
|
|
|
json_encoder.encode(device_data),
|
2023-08-08 15:04:46 -04:00
|
|
|
time_now,
|
|
|
|
keys,
|
2020-10-07 08:00:17 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
async def remove_dehydrated_device(self, user_id: str, device_id: str) -> bool:
|
|
|
|
"""Remove a dehydrated device.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id: the user that the dehydrated device belongs to
|
|
|
|
device_id: the ID of the dehydrated device
|
|
|
|
"""
|
|
|
|
count = await self.db_pool.simple_delete(
|
|
|
|
"dehydrated_devices",
|
|
|
|
{"user_id": user_id, "device_id": device_id},
|
|
|
|
desc="remove_dehydrated_device",
|
|
|
|
)
|
|
|
|
return count >= 1
|
|
|
|
|
2020-10-09 07:37:51 -04:00
|
|
|
@wrap_as_background_process("prune_old_outbound_device_pokes")
|
|
|
|
async def _prune_old_outbound_device_pokes(
|
|
|
|
self, prune_age: int = 24 * 60 * 60 * 1000
|
|
|
|
) -> None:
|
|
|
|
"""Delete old entries out of the device_lists_outbound_pokes to ensure
|
|
|
|
that we don't fill up due to dead servers.
|
|
|
|
|
|
|
|
Normally, we try to send device updates as a delta since a previous known point:
|
|
|
|
this is done by setting the prev_id in the m.device_list_update EDU. However,
|
|
|
|
for that to work, we have to have a complete record of each change to
|
|
|
|
each device, which can add up to quite a lot of data.
|
|
|
|
|
|
|
|
An alternative mechanism is that, if the remote server sees that it has missed
|
|
|
|
an entry in the stream_id sequence for a given user, it will request a full
|
|
|
|
list of that user's devices. Hence, we can reduce the amount of data we have to
|
|
|
|
store (and transmit in some future transaction), by clearing almost everything
|
|
|
|
for a given destination out of the database, and having the remote server
|
|
|
|
resync.
|
|
|
|
|
|
|
|
All we need to do is make sure we keep at least one row for each
|
|
|
|
(user, destination) pair, to remind us to send a m.device_list_update EDU for
|
|
|
|
that user when the destination comes back. It doesn't matter which device
|
|
|
|
we keep.
|
|
|
|
"""
|
|
|
|
yesterday = self._clock.time_msec() - prune_age
|
|
|
|
|
2022-04-27 08:05:00 -04:00
|
|
|
def _prune_txn(txn: LoggingTransaction) -> None:
|
2020-10-09 07:37:51 -04:00
|
|
|
# look for (user, destination) pairs which have an update older than
|
|
|
|
# the cutoff.
|
|
|
|
#
|
|
|
|
# For each pair, we also need to know the most recent stream_id, and
|
|
|
|
# an arbitrary device_id at that stream_id.
|
|
|
|
select_sql = """
|
|
|
|
SELECT
|
|
|
|
dlop1.destination,
|
|
|
|
dlop1.user_id,
|
|
|
|
MAX(dlop1.stream_id) AS stream_id,
|
|
|
|
(SELECT MIN(dlop2.device_id) AS device_id FROM
|
|
|
|
device_lists_outbound_pokes dlop2
|
|
|
|
WHERE dlop2.destination = dlop1.destination AND
|
|
|
|
dlop2.user_id=dlop1.user_id AND
|
|
|
|
dlop2.stream_id=MAX(dlop1.stream_id)
|
|
|
|
)
|
|
|
|
FROM device_lists_outbound_pokes dlop1
|
|
|
|
GROUP BY destination, user_id
|
|
|
|
HAVING min(ts) < ? AND count(*) > 1
|
|
|
|
"""
|
|
|
|
|
|
|
|
txn.execute(select_sql, (yesterday,))
|
|
|
|
rows = txn.fetchall()
|
|
|
|
|
|
|
|
if not rows:
|
|
|
|
return
|
|
|
|
|
|
|
|
logger.info(
|
|
|
|
"Pruning old outbound device list updates for %i users/destinations: %s",
|
|
|
|
len(rows),
|
|
|
|
shortstr((row[0], row[1]) for row in rows),
|
|
|
|
)
|
|
|
|
|
|
|
|
# we want to keep the update with the highest stream_id for each user.
|
|
|
|
#
|
|
|
|
# there might be more than one update (with different device_ids) with the
|
|
|
|
# same stream_id, so we also delete all but one rows with the max stream id.
|
|
|
|
delete_sql = """
|
|
|
|
DELETE FROM device_lists_outbound_pokes
|
|
|
|
WHERE destination = ? AND user_id = ? AND (
|
|
|
|
stream_id < ? OR
|
|
|
|
(stream_id = ? AND device_id != ?)
|
|
|
|
)
|
|
|
|
"""
|
|
|
|
count = 0
|
|
|
|
for destination, user_id, stream_id, device_id in rows:
|
|
|
|
txn.execute(
|
|
|
|
delete_sql, (destination, user_id, stream_id, stream_id, device_id)
|
|
|
|
)
|
|
|
|
count += txn.rowcount
|
|
|
|
|
|
|
|
# Since we've deleted unsent deltas, we need to remove the entry
|
|
|
|
# of last successful sent so that the prev_ids are correctly set.
|
|
|
|
sql = """
|
|
|
|
DELETE FROM device_lists_outbound_last_success
|
|
|
|
WHERE destination = ? AND user_id = ?
|
|
|
|
"""
|
2021-01-21 09:44:12 -05:00
|
|
|
txn.execute_batch(sql, ((row[0], row[1]) for row in rows))
|
2020-10-09 07:37:51 -04:00
|
|
|
|
|
|
|
logger.info("Pruned %d device list outbound pokes", count)
|
|
|
|
|
|
|
|
await self.db_pool.runInteraction(
|
|
|
|
"_prune_old_outbound_device_pokes",
|
|
|
|
_prune_txn,
|
|
|
|
)
|
|
|
|
|
2022-05-27 11:47:32 -04:00
|
|
|
async def get_local_devices_not_accessed_since(
|
|
|
|
self, since_ms: int
|
|
|
|
) -> Dict[str, List[str]]:
|
|
|
|
"""Retrieves local devices that haven't been accessed since a given date.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
since_ms: the timestamp to select on, every device with a last access date
|
|
|
|
from before that time is returned.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A dictionary with an entry for each user with at least one device matching
|
|
|
|
the request, which value is a list of the device ID(s) for the corresponding
|
|
|
|
device(s).
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_devices_not_accessed_since_txn(
|
|
|
|
txn: LoggingTransaction,
|
2023-10-05 11:07:38 -04:00
|
|
|
) -> List[Tuple[str, str]]:
|
2022-05-27 11:47:32 -04:00
|
|
|
sql = """
|
|
|
|
SELECT user_id, device_id
|
|
|
|
FROM devices WHERE last_seen < ? AND hidden = FALSE
|
|
|
|
"""
|
|
|
|
txn.execute(sql, (since_ms,))
|
2023-10-05 11:07:38 -04:00
|
|
|
return cast(List[Tuple[str, str]], txn.fetchall())
|
2022-05-27 11:47:32 -04:00
|
|
|
|
|
|
|
rows = await self.db_pool.runInteraction(
|
|
|
|
"get_devices_not_accessed_since",
|
|
|
|
get_devices_not_accessed_since_txn,
|
|
|
|
)
|
|
|
|
|
|
|
|
devices: Dict[str, List[str]] = {}
|
2023-10-05 11:07:38 -04:00
|
|
|
for user_id, device_id in rows:
|
2022-05-27 11:47:32 -04:00
|
|
|
# Remote devices are never stale from our point of view.
|
2023-10-05 11:07:38 -04:00
|
|
|
if self.hs.is_mine_id(user_id):
|
|
|
|
user_devices = devices.setdefault(user_id, [])
|
|
|
|
user_devices.append(device_id)
|
2022-05-27 11:47:32 -04:00
|
|
|
|
|
|
|
return devices
|
|
|
|
|
2022-06-17 06:42:03 -04:00
|
|
|
@cached()
|
|
|
|
async def _get_min_device_lists_changes_in_room(self) -> int:
|
|
|
|
"""Returns the minimum stream ID that we have entries for
|
|
|
|
`device_lists_changes_in_room`
|
|
|
|
"""
|
|
|
|
|
|
|
|
return await self.db_pool.simple_select_one_onecol(
|
|
|
|
table="device_lists_changes_in_room",
|
|
|
|
keyvalues={},
|
|
|
|
retcol="COALESCE(MIN(stream_id), 0)",
|
|
|
|
desc="get_min_device_lists_changes_in_room",
|
|
|
|
)
|
|
|
|
|
2022-09-07 07:03:32 -04:00
|
|
|
@cancellable
|
2022-06-17 06:42:03 -04:00
|
|
|
async def get_device_list_changes_in_rooms(
|
|
|
|
self, room_ids: Collection[str], from_id: int
|
|
|
|
) -> Optional[Set[str]]:
|
|
|
|
"""Return the set of users whose devices have changed in the given rooms
|
|
|
|
since the given stream ID.
|
|
|
|
|
|
|
|
Returns None if the given stream ID is too old.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if not room_ids:
|
|
|
|
return set()
|
|
|
|
|
|
|
|
min_stream_id = await self._get_min_device_lists_changes_in_room()
|
|
|
|
|
|
|
|
if min_stream_id > from_id:
|
|
|
|
return None
|
|
|
|
|
|
|
|
sql = """
|
|
|
|
SELECT DISTINCT user_id FROM device_lists_changes_in_room
|
|
|
|
WHERE {clause} AND stream_id >= ?
|
|
|
|
"""
|
|
|
|
|
|
|
|
def _get_device_list_changes_in_rooms_txn(
|
|
|
|
txn: LoggingTransaction,
|
2022-06-17 08:05:27 -04:00
|
|
|
clause: str,
|
|
|
|
args: List[Any],
|
2022-06-17 06:42:03 -04:00
|
|
|
) -> Set[str]:
|
|
|
|
txn.execute(sql.format(clause=clause), args)
|
|
|
|
return {user_id for user_id, in txn}
|
|
|
|
|
|
|
|
changes = set()
|
|
|
|
for chunk in batch_iter(room_ids, 1000):
|
|
|
|
clause, args = make_in_list_sql_clause(
|
|
|
|
self.database_engine, "room_id", chunk
|
|
|
|
)
|
|
|
|
args.append(from_id)
|
|
|
|
|
|
|
|
changes |= await self.db_pool.runInteraction(
|
|
|
|
"get_device_list_changes_in_rooms",
|
|
|
|
_get_device_list_changes_in_rooms_txn,
|
|
|
|
clause,
|
|
|
|
args,
|
|
|
|
)
|
|
|
|
|
|
|
|
return changes
|
|
|
|
|
2022-09-28 18:22:35 -04:00
|
|
|
async def get_device_list_changes_in_room(
|
|
|
|
self, room_id: str, min_stream_id: int
|
|
|
|
) -> Collection[Tuple[str, str]]:
|
|
|
|
"""Get all device list changes that happened in the room since the given
|
|
|
|
stream ID.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Collection of user ID/device ID tuples of all devices that have
|
|
|
|
changed
|
|
|
|
"""
|
|
|
|
|
|
|
|
sql = """
|
|
|
|
SELECT DISTINCT user_id, device_id FROM device_lists_changes_in_room
|
|
|
|
WHERE room_id = ? AND stream_id > ?
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_device_list_changes_in_room_txn(
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
) -> Collection[Tuple[str, str]]:
|
|
|
|
txn.execute(sql, (room_id, min_stream_id))
|
|
|
|
return cast(Collection[Tuple[str, str]], txn.fetchall())
|
|
|
|
|
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_device_list_changes_in_room",
|
|
|
|
get_device_list_changes_in_room_txn,
|
|
|
|
)
|
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
|
2019-12-04 10:09:36 -05:00
|
|
|
class DeviceBackgroundUpdateStore(SQLBaseStore):
|
2021-12-13 12:05:00 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
database: DatabasePool,
|
|
|
|
db_conn: LoggingDatabaseConnection,
|
|
|
|
hs: "HomeServer",
|
|
|
|
):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(database, db_conn, hs)
|
2019-03-04 13:03:29 -05:00
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates.register_background_index_update(
|
2019-03-04 13:03:29 -05:00
|
|
|
"device_lists_stream_idx",
|
|
|
|
index_name="device_lists_stream_user_id",
|
|
|
|
table="device_lists_stream",
|
|
|
|
columns=["user_id", "device_id"],
|
|
|
|
)
|
|
|
|
|
|
|
|
# create a unique index on device_lists_remote_cache
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates.register_background_index_update(
|
2019-03-04 13:03:29 -05:00
|
|
|
"device_lists_remote_cache_unique_idx",
|
|
|
|
index_name="device_lists_remote_cache_unique_id",
|
|
|
|
table="device_lists_remote_cache",
|
|
|
|
columns=["user_id", "device_id"],
|
|
|
|
unique=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
# And one on device_lists_remote_extremeties
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates.register_background_index_update(
|
2019-03-04 13:03:29 -05:00
|
|
|
"device_lists_remote_extremeties_unique_idx",
|
|
|
|
index_name="device_lists_remote_extremeties_unique_idx",
|
|
|
|
table="device_lists_remote_extremeties",
|
|
|
|
columns=["user_id"],
|
|
|
|
unique=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
# once they complete, we can remove the old non-unique indexes.
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates.register_background_update_handler(
|
2019-03-04 13:03:29 -05:00
|
|
|
DROP_DEVICE_LIST_STREAMS_NON_UNIQUE_INDEXES,
|
|
|
|
self._drop_device_list_streams_non_unique_indexes,
|
|
|
|
)
|
|
|
|
|
2020-04-07 18:06:39 -04:00
|
|
|
# clear out duplicate device list outbound pokes
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates.register_background_update_handler(
|
2020-04-07 18:06:39 -04:00
|
|
|
BG_UPDATE_REMOVE_DUP_OUTBOUND_POKES,
|
|
|
|
self._remove_duplicate_outbound_pokes,
|
|
|
|
)
|
|
|
|
|
2022-11-23 09:09:00 -05:00
|
|
|
self.db_pool.updates.register_background_index_update(
|
|
|
|
"device_lists_changes_in_room_by_room_index",
|
|
|
|
index_name="device_lists_changes_in_room_by_room_idx",
|
|
|
|
table="device_lists_changes_in_room",
|
|
|
|
columns=["room_id", "stream_id"],
|
|
|
|
)
|
|
|
|
|
2022-04-27 08:05:00 -04:00
|
|
|
async def _drop_device_list_streams_non_unique_indexes(
|
|
|
|
self, progress: JsonDict, batch_size: int
|
|
|
|
) -> int:
|
|
|
|
def f(conn: LoggingDatabaseConnection) -> None:
|
2019-10-03 12:24:03 -04:00
|
|
|
txn = conn.cursor()
|
|
|
|
txn.execute("DROP INDEX IF EXISTS device_lists_remote_cache_id")
|
|
|
|
txn.execute("DROP INDEX IF EXISTS device_lists_remote_extremeties_id")
|
|
|
|
txn.close()
|
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
await self.db_pool.runWithConnection(f)
|
|
|
|
await self.db_pool.updates._end_background_update(
|
2019-12-04 10:09:36 -05:00
|
|
|
DROP_DEVICE_LIST_STREAMS_NON_UNIQUE_INDEXES
|
|
|
|
)
|
2019-10-03 12:24:03 -04:00
|
|
|
return 1
|
|
|
|
|
2022-04-27 08:05:00 -04:00
|
|
|
async def _remove_duplicate_outbound_pokes(
|
|
|
|
self, progress: JsonDict, batch_size: int
|
|
|
|
) -> int:
|
2020-04-07 18:06:39 -04:00
|
|
|
# for some reason, we have accumulated duplicate entries in
|
|
|
|
# device_lists_outbound_pokes, which makes prune_outbound_device_list_pokes less
|
|
|
|
# efficient.
|
|
|
|
#
|
|
|
|
# For each duplicate, we delete all the existing rows and put one back.
|
|
|
|
|
|
|
|
last_row = progress.get(
|
|
|
|
"last_row",
|
|
|
|
{"stream_id": 0, "destination": "", "user_id": "", "device_id": ""},
|
|
|
|
)
|
|
|
|
|
2022-04-27 08:05:00 -04:00
|
|
|
def _txn(txn: LoggingTransaction) -> int:
|
2020-04-07 18:06:39 -04:00
|
|
|
clause, args = make_tuple_comparison_clause(
|
2023-10-31 13:13:28 -04:00
|
|
|
[
|
|
|
|
("stream_id", last_row["stream_id"]),
|
|
|
|
("destination", last_row["destination"]),
|
|
|
|
("user_id", last_row["user_id"]),
|
|
|
|
("device_id", last_row["device_id"]),
|
|
|
|
]
|
2020-04-07 18:06:39 -04:00
|
|
|
)
|
2023-10-31 13:13:28 -04:00
|
|
|
sql = f"""
|
2020-04-07 18:06:39 -04:00
|
|
|
SELECT stream_id, destination, user_id, device_id, MAX(ts) AS ts
|
|
|
|
FROM device_lists_outbound_pokes
|
2023-10-31 13:13:28 -04:00
|
|
|
WHERE {clause}
|
|
|
|
GROUP BY stream_id, destination, user_id, device_id
|
2020-04-07 18:06:39 -04:00
|
|
|
HAVING count(*) > 1
|
2023-10-31 13:13:28 -04:00
|
|
|
ORDER BY stream_id, destination, user_id, device_id
|
2020-04-07 18:06:39 -04:00
|
|
|
LIMIT ?
|
2023-10-31 13:13:28 -04:00
|
|
|
"""
|
2020-04-07 18:06:39 -04:00
|
|
|
txn.execute(sql, args + [batch_size])
|
2023-10-31 13:13:28 -04:00
|
|
|
rows = txn.fetchall()
|
2020-04-07 18:06:39 -04:00
|
|
|
|
2023-10-31 13:13:28 -04:00
|
|
|
stream_id, destination, user_id, device_id = None, None, None, None
|
|
|
|
for stream_id, destination, user_id, device_id, _ in rows:
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_delete_txn(
|
2020-04-07 18:06:39 -04:00
|
|
|
txn,
|
|
|
|
"device_lists_outbound_pokes",
|
2023-10-31 13:13:28 -04:00
|
|
|
{
|
|
|
|
"stream_id": stream_id,
|
|
|
|
"destination": destination,
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
},
|
2020-04-07 18:06:39 -04:00
|
|
|
)
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_insert_txn(
|
2020-04-07 18:06:39 -04:00
|
|
|
txn,
|
|
|
|
"device_lists_outbound_pokes",
|
2023-10-31 13:13:28 -04:00
|
|
|
{
|
|
|
|
"stream_id": stream_id,
|
|
|
|
"destination": destination,
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
"sent": False,
|
|
|
|
},
|
2020-04-07 18:06:39 -04:00
|
|
|
)
|
|
|
|
|
2023-10-31 13:13:28 -04:00
|
|
|
if rows:
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates._background_update_progress_txn(
|
2020-04-07 18:06:39 -04:00
|
|
|
txn,
|
|
|
|
BG_UPDATE_REMOVE_DUP_OUTBOUND_POKES,
|
2023-10-31 13:13:28 -04:00
|
|
|
{
|
|
|
|
"last_row": {
|
|
|
|
"stream_id": stream_id,
|
|
|
|
"destination": destination,
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
}
|
|
|
|
},
|
2020-04-07 18:06:39 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
return len(rows)
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
rows = await self.db_pool.runInteraction(
|
|
|
|
BG_UPDATE_REMOVE_DUP_OUTBOUND_POKES, _txn
|
|
|
|
)
|
2020-04-07 18:06:39 -04:00
|
|
|
|
|
|
|
if not rows:
|
2020-08-05 16:38:57 -04:00
|
|
|
await self.db_pool.updates._end_background_update(
|
2020-04-07 18:06:39 -04:00
|
|
|
BG_UPDATE_REMOVE_DUP_OUTBOUND_POKES
|
|
|
|
)
|
|
|
|
|
|
|
|
return rows
|
|
|
|
|
2019-10-03 12:24:03 -04:00
|
|
|
|
|
|
|
class DeviceStore(DeviceWorkerStore, DeviceBackgroundUpdateStore):
|
2022-11-11 05:51:49 -05:00
|
|
|
# Because we have write access, this will be a StreamIdGenerator
|
|
|
|
# (see DeviceWorkerStore.__init__)
|
|
|
|
_device_list_id_gen: AbstractStreamIdGenerator
|
|
|
|
|
2021-12-13 12:05:00 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
database: DatabasePool,
|
|
|
|
db_conn: LoggingDatabaseConnection,
|
|
|
|
hs: "HomeServer",
|
|
|
|
):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(database, db_conn, hs)
|
2019-10-03 12:24:03 -04:00
|
|
|
|
|
|
|
# Map of (user_id, device_id) -> bool. If there is an entry that implies
|
|
|
|
# the device exists.
|
2022-06-15 11:20:04 -04:00
|
|
|
self.device_id_exists_cache: LruCache[
|
|
|
|
Tuple[str, str], Literal[True]
|
|
|
|
] = LruCache(cache_name="device_id_exists", max_size=10000)
|
2019-10-03 12:24:03 -04:00
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
async def store_device(
|
2021-12-06 12:43:06 -05:00
|
|
|
self,
|
|
|
|
user_id: str,
|
|
|
|
device_id: str,
|
|
|
|
initial_device_display_name: Optional[str],
|
|
|
|
auth_provider_id: Optional[str] = None,
|
|
|
|
auth_provider_session_id: Optional[str] = None,
|
2020-08-12 10:51:42 -04:00
|
|
|
) -> bool:
|
2019-03-04 13:03:29 -05:00
|
|
|
"""Ensure the given device is known; add it to the store if not
|
|
|
|
|
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
user_id: id of user associated with the device
|
|
|
|
device_id: id of device
|
|
|
|
initial_device_display_name: initial displayname of the device.
|
|
|
|
Ignored if device exists.
|
2021-12-06 12:43:06 -05:00
|
|
|
auth_provider_id: The SSO IdP the user used, if any.
|
|
|
|
auth_provider_session_id: The session ID (sid) got from a OIDC login.
|
2020-08-12 10:51:42 -04:00
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
Returns:
|
2020-08-12 10:51:42 -04:00
|
|
|
Whether the device was inserted or an existing device existed with that ID.
|
|
|
|
|
2019-07-24 23:21:52 -04:00
|
|
|
Raises:
|
|
|
|
StoreError: if the device is already in use
|
2017-01-25 09:27:27 -05:00
|
|
|
"""
|
2019-03-04 13:03:29 -05:00
|
|
|
key = (user_id, device_id)
|
|
|
|
if self.device_id_exists_cache.get(key, None):
|
2019-07-23 09:00:55 -04:00
|
|
|
return False
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
try:
|
2021-07-22 07:39:50 -04:00
|
|
|
inserted = await self.db_pool.simple_upsert(
|
2019-03-04 13:03:29 -05:00
|
|
|
"devices",
|
2021-07-22 07:39:50 -04:00
|
|
|
keyvalues={
|
2017-01-25 09:27:27 -05:00
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
2021-07-22 07:39:50 -04:00
|
|
|
},
|
|
|
|
values={},
|
|
|
|
insertion_values={
|
2019-04-03 05:07:29 -04:00
|
|
|
"display_name": initial_device_display_name,
|
2019-07-24 23:21:52 -04:00
|
|
|
"hidden": False,
|
2019-03-04 13:03:29 -05:00
|
|
|
},
|
|
|
|
desc="store_device",
|
|
|
|
)
|
2019-07-24 23:21:52 -04:00
|
|
|
if not inserted:
|
|
|
|
# if the device already exists, check if it's a real device, or
|
|
|
|
# if the device ID is reserved by something else
|
2020-08-12 10:51:42 -04:00
|
|
|
hidden = await self.db_pool.simple_select_one_onecol(
|
2019-07-24 23:21:52 -04:00
|
|
|
"devices",
|
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id},
|
|
|
|
retcol="hidden",
|
|
|
|
)
|
|
|
|
if hidden:
|
|
|
|
raise StoreError(400, "The device ID is in use", Codes.FORBIDDEN)
|
2021-07-22 07:39:50 -04:00
|
|
|
|
2021-12-06 12:43:06 -05:00
|
|
|
if auth_provider_id and auth_provider_session_id:
|
|
|
|
await self.db_pool.simple_insert(
|
|
|
|
"device_auth_providers",
|
|
|
|
values={
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
"auth_provider_id": auth_provider_id,
|
|
|
|
"auth_provider_session_id": auth_provider_session_id,
|
|
|
|
},
|
|
|
|
desc="store_device_auth_provider",
|
|
|
|
)
|
|
|
|
|
2020-10-19 07:20:29 -04:00
|
|
|
self.device_id_exists_cache.set(key, True)
|
2019-07-23 09:00:55 -04:00
|
|
|
return inserted
|
2019-07-24 23:21:52 -04:00
|
|
|
except StoreError:
|
|
|
|
raise
|
2019-03-04 13:03:29 -05:00
|
|
|
except Exception as e:
|
2019-04-03 05:07:29 -04:00
|
|
|
logger.error(
|
|
|
|
"store_device with device_id=%s(%r) user_id=%s(%r)"
|
|
|
|
" display_name=%s(%r) failed: %s",
|
|
|
|
type(device_id).__name__,
|
|
|
|
device_id,
|
|
|
|
type(user_id).__name__,
|
|
|
|
user_id,
|
|
|
|
type(initial_device_display_name).__name__,
|
|
|
|
initial_device_display_name,
|
|
|
|
e,
|
|
|
|
)
|
2019-03-04 13:03:29 -05:00
|
|
|
raise StoreError(500, "Problem storing device.")
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2023-03-31 08:51:51 -04:00
|
|
|
async def delete_devices(self, user_id: str, device_ids: List[str]) -> None:
|
2019-03-04 13:03:29 -05:00
|
|
|
"""Deletes several devices.
|
2017-01-26 11:30:37 -05:00
|
|
|
|
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
user_id: The ID of the user which owns the devices
|
|
|
|
device_ids: The IDs of the devices to delete
|
2019-03-04 13:03:29 -05:00
|
|
|
"""
|
2021-10-27 11:01:18 -04:00
|
|
|
|
2024-01-10 08:55:16 -05:00
|
|
|
def _delete_devices_txn(txn: LoggingTransaction, device_ids: List[str]) -> None:
|
2021-10-27 11:01:18 -04:00
|
|
|
self.db_pool.simple_delete_many_txn(
|
|
|
|
txn,
|
|
|
|
table="devices",
|
|
|
|
column="device_id",
|
|
|
|
values=device_ids,
|
|
|
|
keyvalues={"user_id": user_id, "hidden": False},
|
|
|
|
)
|
|
|
|
|
2021-12-06 12:43:06 -05:00
|
|
|
self.db_pool.simple_delete_many_txn(
|
|
|
|
txn,
|
|
|
|
table="device_auth_providers",
|
|
|
|
column="device_id",
|
|
|
|
values=device_ids,
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
)
|
|
|
|
|
2024-01-10 08:55:16 -05:00
|
|
|
for batch in batch_iter(device_ids, 100):
|
|
|
|
await self.db_pool.runInteraction(
|
|
|
|
"delete_devices", _delete_devices_txn, batch
|
|
|
|
)
|
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
for device_id in device_ids:
|
|
|
|
self.device_id_exists_cache.invalidate((user_id, device_id))
|
2017-01-26 11:30:37 -05:00
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
async def update_device(
|
|
|
|
self, user_id: str, device_id: str, new_display_name: Optional[str] = None
|
|
|
|
) -> None:
|
2019-07-30 23:09:50 -04:00
|
|
|
"""Update a device. Only updates the device if it is not marked as
|
|
|
|
hidden.
|
2019-03-04 13:03:29 -05:00
|
|
|
|
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
user_id: The ID of the user which owns the device
|
|
|
|
device_id: The ID of the device to update
|
|
|
|
new_display_name: new displayname for device; None to leave unchanged
|
2019-03-04 13:03:29 -05:00
|
|
|
Raises:
|
|
|
|
StoreError: if the device is not found
|
2017-01-26 11:30:37 -05:00
|
|
|
"""
|
2019-03-04 13:03:29 -05:00
|
|
|
updates = {}
|
|
|
|
if new_display_name is not None:
|
|
|
|
updates["display_name"] = new_display_name
|
|
|
|
if not updates:
|
2020-08-12 10:51:42 -04:00
|
|
|
return None
|
|
|
|
await self.db_pool.simple_update_one(
|
2019-03-04 13:03:29 -05:00
|
|
|
table="devices",
|
2019-07-30 23:09:50 -04:00
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id, "hidden": False},
|
2019-03-04 13:03:29 -05:00
|
|
|
updatevalues=updates,
|
|
|
|
desc="update_device",
|
2017-01-26 11:06:54 -05:00
|
|
|
)
|
2017-02-27 11:22:12 -05:00
|
|
|
|
2020-09-01 09:21:48 -04:00
|
|
|
async def update_remote_device_list_cache_entry(
|
2020-10-07 08:58:21 -04:00
|
|
|
self, user_id: str, device_id: str, content: JsonDict, stream_id: str
|
2020-09-01 09:21:48 -04:00
|
|
|
) -> None:
|
2019-03-04 13:03:29 -05:00
|
|
|
"""Updates a single device in the cache of a remote user's devicelist.
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
Note: assumes that we are the only thread that can be updating this user's
|
|
|
|
device list.
|
|
|
|
|
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
user_id: User to update device list for
|
|
|
|
device_id: ID of decivice being updated
|
|
|
|
content: new data on this device
|
|
|
|
stream_id: the version of the device list
|
2017-01-26 11:30:37 -05:00
|
|
|
"""
|
2020-09-01 09:21:48 -04:00
|
|
|
await self.db_pool.runInteraction(
|
2019-03-04 13:03:29 -05:00
|
|
|
"update_remote_device_list_cache_entry",
|
|
|
|
self._update_remote_device_list_cache_entry_txn,
|
2019-04-03 05:07:29 -04:00
|
|
|
user_id,
|
|
|
|
device_id,
|
|
|
|
content,
|
|
|
|
stream_id,
|
2017-01-26 11:06:54 -05:00
|
|
|
)
|
|
|
|
|
2019-04-03 05:07:29 -04:00
|
|
|
def _update_remote_device_list_cache_entry_txn(
|
2020-08-12 10:51:42 -04:00
|
|
|
self,
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
user_id: str,
|
|
|
|
device_id: str,
|
|
|
|
content: JsonDict,
|
2020-10-07 08:58:21 -04:00
|
|
|
stream_id: str,
|
2020-08-12 10:51:42 -04:00
|
|
|
) -> None:
|
2022-01-05 08:33:28 -05:00
|
|
|
"""Delete, update or insert a cache entry for this (user, device) pair."""
|
2019-03-04 13:03:29 -05:00
|
|
|
if content.get("deleted"):
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_delete_txn(
|
2019-03-04 13:03:29 -05:00
|
|
|
txn,
|
|
|
|
table="device_lists_remote_cache",
|
2019-04-03 05:07:29 -04:00
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id},
|
2019-03-04 13:03:29 -05:00
|
|
|
)
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2019-04-03 05:07:29 -04:00
|
|
|
txn.call_after(self.device_id_exists_cache.invalidate, (user_id, device_id))
|
2019-03-04 13:03:29 -05:00
|
|
|
else:
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_upsert_txn(
|
2019-03-04 13:03:29 -05:00
|
|
|
txn,
|
|
|
|
table="device_lists_remote_cache",
|
2019-04-03 05:07:29 -04:00
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id},
|
2020-08-07 08:02:55 -04:00
|
|
|
values={"content": json_encoder.encode(content)},
|
2019-03-04 13:03:29 -05:00
|
|
|
)
|
|
|
|
|
2019-04-03 05:07:29 -04:00
|
|
|
txn.call_after(self._get_cached_user_device.invalidate, (user_id, device_id))
|
2020-01-28 09:43:21 -05:00
|
|
|
txn.call_after(self.get_cached_devices_for_user.invalidate, (user_id,))
|
2019-03-04 13:03:29 -05:00
|
|
|
txn.call_after(
|
|
|
|
self.get_device_list_last_stream_id_for_remote.invalidate, (user_id,)
|
2017-01-26 11:06:54 -05:00
|
|
|
)
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_upsert_txn(
|
2019-03-04 13:03:29 -05:00
|
|
|
txn,
|
|
|
|
table="device_lists_remote_extremeties",
|
2019-04-03 05:07:29 -04:00
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
values={"stream_id": stream_id},
|
2019-03-04 13:03:29 -05:00
|
|
|
)
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2020-09-01 09:21:48 -04:00
|
|
|
async def update_remote_device_list_cache(
|
2020-08-12 10:51:42 -04:00
|
|
|
self, user_id: str, devices: List[dict], stream_id: int
|
2020-09-01 09:21:48 -04:00
|
|
|
) -> None:
|
2019-03-04 13:03:29 -05:00
|
|
|
"""Replace the entire cache of the remote user's devices.
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
Note: assumes that we are the only thread that can be updating this user's
|
|
|
|
device list.
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2019-03-04 13:03:29 -05:00
|
|
|
Args:
|
2020-08-12 10:51:42 -04:00
|
|
|
user_id: User to update device list for
|
|
|
|
devices: list of device objects supplied over federation
|
|
|
|
stream_id: the version of the device list
|
2017-01-26 11:30:37 -05:00
|
|
|
"""
|
2020-09-01 09:21:48 -04:00
|
|
|
await self.db_pool.runInteraction(
|
2019-03-04 13:03:29 -05:00
|
|
|
"update_remote_device_list_cache",
|
|
|
|
self._update_remote_device_list_cache_txn,
|
2019-04-03 05:07:29 -04:00
|
|
|
user_id,
|
|
|
|
devices,
|
|
|
|
stream_id,
|
2017-01-25 09:27:27 -05:00
|
|
|
)
|
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
def _update_remote_device_list_cache_txn(
|
|
|
|
self, txn: LoggingTransaction, user_id: str, devices: List[dict], stream_id: int
|
2020-09-01 09:21:48 -04:00
|
|
|
) -> None:
|
2022-01-05 08:33:28 -05:00
|
|
|
"""Replace the list of cached devices for this user with the given list."""
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_delete_txn(
|
2019-04-03 05:07:29 -04:00
|
|
|
txn, table="device_lists_remote_cache", keyvalues={"user_id": user_id}
|
2017-01-31 08:22:41 -05:00
|
|
|
)
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_insert_many_txn(
|
2019-03-04 13:03:29 -05:00
|
|
|
txn,
|
|
|
|
table="device_lists_remote_cache",
|
2022-01-13 19:44:18 -05:00
|
|
|
keys=("user_id", "device_id", "content"),
|
2019-03-04 13:03:29 -05:00
|
|
|
values=[
|
2022-01-13 19:44:18 -05:00
|
|
|
(user_id, content["device_id"], json_encoder.encode(content))
|
2019-03-04 13:03:29 -05:00
|
|
|
for content in devices
|
2019-04-03 05:07:29 -04:00
|
|
|
],
|
2017-06-07 06:02:38 -04:00
|
|
|
)
|
|
|
|
|
2020-01-28 09:43:21 -05:00
|
|
|
txn.call_after(self.get_cached_devices_for_user.invalidate, (user_id,))
|
2021-05-27 05:33:56 -04:00
|
|
|
txn.call_after(self._get_cached_user_device.invalidate, (user_id,))
|
2019-03-04 13:03:29 -05:00
|
|
|
txn.call_after(
|
|
|
|
self.get_device_list_last_stream_id_for_remote.invalidate, (user_id,)
|
|
|
|
)
|
2017-01-25 11:55:21 -05:00
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_upsert_txn(
|
2019-03-04 13:03:29 -05:00
|
|
|
txn,
|
|
|
|
table="device_lists_remote_extremeties",
|
2019-04-03 05:07:29 -04:00
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
values={"stream_id": stream_id},
|
2017-01-27 08:36:39 -05:00
|
|
|
)
|
|
|
|
|
2020-08-12 10:51:42 -04:00
|
|
|
async def add_device_change_to_streams(
|
2022-04-04 10:25:20 -04:00
|
|
|
self,
|
|
|
|
user_id: str,
|
|
|
|
device_ids: Collection[str],
|
|
|
|
room_ids: Collection[str],
|
2022-02-08 05:52:22 -05:00
|
|
|
) -> Optional[int]:
|
2017-01-26 11:30:37 -05:00
|
|
|
"""Persist that a user's devices have been updated, and which hosts
|
|
|
|
(if any) should be poked.
|
2022-02-08 05:52:22 -05:00
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id: The ID of the user whose device changed.
|
|
|
|
device_ids: The IDs of any changed devices. If empty, this function will
|
|
|
|
return None.
|
2022-04-04 10:25:20 -04:00
|
|
|
room_ids: The rooms that the user is in
|
2022-02-08 05:52:22 -05:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
The maximum stream ID of device list updates that were added to the database, or
|
|
|
|
None if no updates were added.
|
2017-01-26 11:30:37 -05:00
|
|
|
"""
|
2020-02-28 06:21:25 -05:00
|
|
|
if not device_ids:
|
2022-02-08 05:52:22 -05:00
|
|
|
return None
|
2020-02-28 06:21:25 -05:00
|
|
|
|
2022-04-04 10:25:20 -04:00
|
|
|
context = get_active_span_text_map()
|
|
|
|
|
2022-04-27 08:05:00 -04:00
|
|
|
def add_device_changes_txn(
|
|
|
|
txn: LoggingTransaction, stream_ids: List[int]
|
|
|
|
) -> None:
|
2022-04-04 10:25:20 -04:00
|
|
|
self._add_device_change_to_stream_txn(
|
|
|
|
txn,
|
2020-02-28 06:21:25 -05:00
|
|
|
user_id,
|
|
|
|
device_ids,
|
2022-04-12 11:50:40 -04:00
|
|
|
stream_ids,
|
2020-02-28 06:21:25 -05:00
|
|
|
)
|
|
|
|
|
2022-04-04 10:25:20 -04:00
|
|
|
self._add_device_outbound_room_poke_txn(
|
|
|
|
txn,
|
|
|
|
user_id,
|
|
|
|
device_ids,
|
|
|
|
room_ids,
|
2022-04-12 11:50:40 -04:00
|
|
|
stream_ids,
|
2022-04-04 10:25:20 -04:00
|
|
|
context,
|
|
|
|
)
|
2020-02-28 06:21:25 -05:00
|
|
|
|
2022-11-11 05:51:49 -05:00
|
|
|
async with self._device_list_id_gen.get_next_mult(
|
2022-04-12 11:50:40 -04:00
|
|
|
len(device_ids)
|
|
|
|
) as stream_ids:
|
2022-04-04 10:25:20 -04:00
|
|
|
await self.db_pool.runInteraction(
|
|
|
|
"add_device_change_to_stream",
|
|
|
|
add_device_changes_txn,
|
2022-04-12 11:50:40 -04:00
|
|
|
stream_ids,
|
2022-04-04 10:25:20 -04:00
|
|
|
)
|
|
|
|
|
2020-02-28 06:21:25 -05:00
|
|
|
return stream_ids[-1]
|
2017-01-27 10:23:48 -05:00
|
|
|
|
2020-03-18 06:13:55 -04:00
|
|
|
def _add_device_change_to_stream_txn(
|
|
|
|
self,
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
user_id: str,
|
|
|
|
device_ids: Collection[str],
|
2022-04-27 08:05:00 -04:00
|
|
|
stream_ids: List[int],
|
|
|
|
) -> None:
|
2017-01-25 09:27:27 -05:00
|
|
|
txn.call_after(
|
2020-02-28 06:21:25 -05:00
|
|
|
self._device_list_stream_cache.entity_has_changed,
|
|
|
|
user_id,
|
|
|
|
stream_ids[-1],
|
2017-01-25 09:27:27 -05:00
|
|
|
)
|
2023-06-01 09:25:20 -04:00
|
|
|
txn.call_after(
|
|
|
|
self._get_e2e_device_keys_for_federation_query_inner.invalidate,
|
|
|
|
(user_id,),
|
|
|
|
)
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2020-03-18 06:13:55 -04:00
|
|
|
min_stream_id = stream_ids[0]
|
|
|
|
|
2017-03-01 05:21:30 -05:00
|
|
|
# Delete older entries in the table, as we really only care about
|
|
|
|
# when the latest change happened.
|
2023-07-03 10:39:38 -04:00
|
|
|
cleanup_obsolete_stmt = """
|
2017-03-01 05:21:30 -05:00
|
|
|
DELETE FROM device_lists_stream
|
2023-07-03 10:39:38 -04:00
|
|
|
WHERE user_id = ? AND stream_id < ? AND %s
|
|
|
|
"""
|
|
|
|
device_ids_clause, device_ids_args = make_in_list_sql_clause(
|
|
|
|
txn.database_engine, "device_id", device_ids
|
|
|
|
)
|
|
|
|
txn.execute(
|
|
|
|
cleanup_obsolete_stmt % (device_ids_clause,),
|
|
|
|
[user_id, min_stream_id] + device_ids_args,
|
2017-03-01 05:21:30 -05:00
|
|
|
)
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_insert_many_txn(
|
2017-01-25 09:27:27 -05:00
|
|
|
txn,
|
|
|
|
table="device_lists_stream",
|
2022-01-13 19:44:18 -05:00
|
|
|
keys=("stream_id", "user_id", "device_id"),
|
2017-01-26 11:06:54 -05:00
|
|
|
values=[
|
2022-01-13 19:44:18 -05:00
|
|
|
(stream_id, user_id, device_id)
|
2020-02-28 06:21:25 -05:00
|
|
|
for stream_id, device_id in zip(stream_ids, device_ids)
|
2019-04-03 05:07:29 -04:00
|
|
|
],
|
2017-01-25 09:27:27 -05:00
|
|
|
)
|
|
|
|
|
2020-02-28 06:21:25 -05:00
|
|
|
def _add_device_outbound_poke_to_stream_txn(
|
2020-08-12 10:51:42 -04:00
|
|
|
self,
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
user_id: str,
|
2022-10-24 05:45:10 -04:00
|
|
|
device_id: str,
|
2022-02-08 05:52:22 -05:00
|
|
|
hosts: Collection[str],
|
2022-04-04 10:25:20 -04:00
|
|
|
stream_ids: List[int],
|
2022-06-15 11:20:04 -04:00
|
|
|
context: Optional[Dict[str, str]],
|
2022-02-08 05:52:22 -05:00
|
|
|
) -> None:
|
2020-02-28 06:21:25 -05:00
|
|
|
for host in hosts:
|
|
|
|
txn.call_after(
|
|
|
|
self._device_list_federation_stream_cache.entity_has_changed,
|
|
|
|
host,
|
|
|
|
stream_ids[-1],
|
|
|
|
)
|
|
|
|
|
|
|
|
now = self._clock.time_msec()
|
2022-04-04 10:25:20 -04:00
|
|
|
stream_id_iterator = iter(stream_ids)
|
2019-08-22 13:21:10 -04:00
|
|
|
|
2022-04-04 10:25:20 -04:00
|
|
|
encoded_context = json_encoder.encode(context)
|
2022-10-24 05:45:10 -04:00
|
|
|
mark_sent = not self.hs.is_mine_id(user_id)
|
|
|
|
|
|
|
|
values = [
|
|
|
|
(
|
|
|
|
destination,
|
|
|
|
next(stream_id_iterator),
|
|
|
|
user_id,
|
|
|
|
device_id,
|
|
|
|
mark_sent,
|
|
|
|
now,
|
|
|
|
encoded_context if whitelisted_homeserver(destination) else "{}",
|
|
|
|
)
|
|
|
|
for destination in hosts
|
|
|
|
]
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_insert_many_txn(
|
2017-01-25 09:27:27 -05:00
|
|
|
txn,
|
|
|
|
table="device_lists_outbound_pokes",
|
2022-01-13 19:44:18 -05:00
|
|
|
keys=(
|
|
|
|
"destination",
|
|
|
|
"stream_id",
|
|
|
|
"user_id",
|
|
|
|
"device_id",
|
|
|
|
"sent",
|
|
|
|
"ts",
|
|
|
|
"opentracing_context",
|
|
|
|
),
|
2022-10-24 05:45:10 -04:00
|
|
|
values=values,
|
2017-01-25 09:27:27 -05:00
|
|
|
)
|
2022-04-04 10:25:20 -04:00
|
|
|
|
2022-10-24 05:45:10 -04:00
|
|
|
# debugging for https://github.com/matrix-org/synapse/issues/14251
|
|
|
|
if issue_8631_logger.isEnabledFor(logging.DEBUG):
|
|
|
|
issue_8631_logger.debug(
|
|
|
|
"Recorded outbound pokes for %s:%s with device stream ids %s",
|
|
|
|
user_id,
|
|
|
|
device_id,
|
|
|
|
{
|
|
|
|
stream_id: destination
|
|
|
|
for (destination, stream_id, _, _, _, _, _) in values
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2022-04-04 10:25:20 -04:00
|
|
|
def _add_device_outbound_room_poke_txn(
|
|
|
|
self,
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
user_id: str,
|
|
|
|
device_ids: Iterable[str],
|
|
|
|
room_ids: Collection[str],
|
2022-04-27 08:05:00 -04:00
|
|
|
stream_ids: List[int],
|
2022-04-04 10:25:20 -04:00
|
|
|
context: Dict[str, str],
|
|
|
|
) -> None:
|
2022-04-12 11:50:40 -04:00
|
|
|
"""Record the user in the room has updated their device."""
|
2022-04-04 10:25:20 -04:00
|
|
|
|
|
|
|
encoded_context = json_encoder.encode(context)
|
|
|
|
|
|
|
|
# The `device_lists_changes_in_room.stream_id` column matches the
|
|
|
|
# corresponding `stream_id` of the update in the `device_lists_stream`
|
|
|
|
# table, i.e. all rows persisted for the same device update will have
|
|
|
|
# the same `stream_id` (but different room IDs).
|
|
|
|
self.db_pool.simple_insert_many_txn(
|
|
|
|
txn,
|
|
|
|
table="device_lists_changes_in_room",
|
|
|
|
keys=(
|
|
|
|
"user_id",
|
|
|
|
"device_id",
|
|
|
|
"room_id",
|
|
|
|
"stream_id",
|
|
|
|
"converted_to_destinations",
|
|
|
|
"opentracing_context",
|
|
|
|
),
|
|
|
|
values=[
|
|
|
|
(
|
|
|
|
user_id,
|
|
|
|
device_id,
|
|
|
|
room_id,
|
|
|
|
stream_id,
|
2022-04-26 12:07:21 -04:00
|
|
|
# We only need to calculate outbound pokes for local users
|
|
|
|
not self.hs.is_mine_id(user_id),
|
2022-04-04 10:25:20 -04:00
|
|
|
encoded_context,
|
|
|
|
)
|
|
|
|
for room_id in room_ids
|
|
|
|
for device_id, stream_id in zip(device_ids, stream_ids)
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
async def get_uncoverted_outbound_room_pokes(
|
2022-11-22 11:46:52 -05:00
|
|
|
self, start_stream_id: int, start_room_id: str, limit: int = 10
|
2022-04-04 10:25:20 -04:00
|
|
|
) -> List[Tuple[str, str, str, int, Optional[Dict[str, str]]]]:
|
|
|
|
"""Get device list changes by room that have not yet been handled and
|
|
|
|
written to `device_lists_outbound_pokes`.
|
|
|
|
|
2022-11-22 11:46:52 -05:00
|
|
|
Args:
|
|
|
|
start_stream_id: Together with `start_room_id`, indicates the position after
|
|
|
|
which to return device list changes.
|
|
|
|
start_room_id: Together with `start_stream_id`, indicates the position after
|
|
|
|
which to return device list changes.
|
|
|
|
limit: The maximum number of device list changes to return.
|
|
|
|
|
2022-04-04 10:25:20 -04:00
|
|
|
Returns:
|
2022-11-22 11:46:52 -05:00
|
|
|
A list of user ID, device ID, room ID, stream ID and optional opentracing
|
|
|
|
context, in order of ascending (stream ID, room ID).
|
2022-04-04 10:25:20 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
sql = """
|
|
|
|
SELECT user_id, device_id, room_id, stream_id, opentracing_context
|
|
|
|
FROM device_lists_changes_in_room
|
2022-11-22 11:46:52 -05:00
|
|
|
WHERE
|
|
|
|
(stream_id, room_id) > (?, ?) AND
|
|
|
|
stream_id <= ? AND
|
|
|
|
NOT converted_to_destinations
|
|
|
|
ORDER BY stream_id ASC, room_id ASC
|
2022-04-04 10:25:20 -04:00
|
|
|
LIMIT ?
|
|
|
|
"""
|
|
|
|
|
2022-04-27 08:05:00 -04:00
|
|
|
def get_uncoverted_outbound_room_pokes_txn(
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
) -> List[Tuple[str, str, str, int, Optional[Dict[str, str]]]]:
|
2022-11-22 11:46:52 -05:00
|
|
|
txn.execute(
|
|
|
|
sql,
|
|
|
|
(
|
|
|
|
start_stream_id,
|
|
|
|
start_room_id,
|
|
|
|
# Avoid returning rows if there may be uncommitted device list
|
|
|
|
# changes with smaller stream IDs.
|
|
|
|
self._device_list_id_gen.get_current_token(),
|
|
|
|
limit,
|
|
|
|
),
|
|
|
|
)
|
2022-04-26 10:48:16 -04:00
|
|
|
|
|
|
|
return [
|
|
|
|
(
|
|
|
|
user_id,
|
|
|
|
device_id,
|
|
|
|
room_id,
|
|
|
|
stream_id,
|
|
|
|
db_to_json(opentracing_context),
|
|
|
|
)
|
|
|
|
for user_id, device_id, room_id, stream_id, opentracing_context in txn
|
|
|
|
]
|
2022-04-04 10:25:20 -04:00
|
|
|
|
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_uncoverted_outbound_room_pokes", get_uncoverted_outbound_room_pokes_txn
|
|
|
|
)
|
|
|
|
|
|
|
|
async def add_device_list_outbound_pokes(
|
|
|
|
self,
|
|
|
|
user_id: str,
|
|
|
|
device_id: str,
|
|
|
|
room_id: str,
|
|
|
|
hosts: Collection[str],
|
|
|
|
context: Optional[Dict[str, str]],
|
|
|
|
) -> None:
|
|
|
|
"""Queue the device update to be sent to the given set of hosts,
|
|
|
|
calculated from the room ID.
|
|
|
|
"""
|
2022-11-22 11:46:52 -05:00
|
|
|
if not hosts:
|
|
|
|
return
|
2022-04-04 10:25:20 -04:00
|
|
|
|
2022-04-27 08:05:00 -04:00
|
|
|
def add_device_list_outbound_pokes_txn(
|
|
|
|
txn: LoggingTransaction, stream_ids: List[int]
|
|
|
|
) -> None:
|
2022-11-22 11:46:52 -05:00
|
|
|
self._add_device_outbound_poke_to_stream_txn(
|
|
|
|
txn,
|
|
|
|
user_id=user_id,
|
|
|
|
device_id=device_id,
|
|
|
|
hosts=hosts,
|
|
|
|
stream_ids=stream_ids,
|
|
|
|
context=context,
|
2022-04-04 10:25:20 -04:00
|
|
|
)
|
|
|
|
|
2022-11-11 05:51:49 -05:00
|
|
|
async with self._device_list_id_gen.get_next_mult(len(hosts)) as stream_ids:
|
2022-04-04 10:25:20 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"add_device_list_outbound_pokes",
|
|
|
|
add_device_list_outbound_pokes_txn,
|
|
|
|
stream_ids,
|
|
|
|
)
|
2022-09-28 09:42:43 -04:00
|
|
|
|
|
|
|
async def add_remote_device_list_to_pending(
|
|
|
|
self, user_id: str, device_id: str
|
|
|
|
) -> None:
|
|
|
|
"""Add a device list update to the table tracking remote device list
|
|
|
|
updates during partial joins.
|
|
|
|
"""
|
|
|
|
|
2022-11-11 05:51:49 -05:00
|
|
|
async with self._device_list_id_gen.get_next() as stream_id:
|
2022-09-28 09:42:43 -04:00
|
|
|
await self.db_pool.simple_upsert(
|
|
|
|
table="device_lists_remote_pending",
|
|
|
|
keyvalues={
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
},
|
|
|
|
values={"stream_id": stream_id},
|
|
|
|
desc="add_remote_device_list_to_pending",
|
|
|
|
)
|
|
|
|
|
|
|
|
async def get_pending_remote_device_list_updates_for_room(
|
|
|
|
self, room_id: str
|
|
|
|
) -> Collection[Tuple[str, str]]:
|
|
|
|
"""Get the set of remote device list updates from the pending table for
|
|
|
|
the room.
|
|
|
|
"""
|
|
|
|
|
|
|
|
min_device_stream_id = await self.db_pool.simple_select_one_onecol(
|
|
|
|
table="partial_state_rooms",
|
|
|
|
keyvalues={
|
|
|
|
"room_id": room_id,
|
|
|
|
},
|
|
|
|
retcol="device_lists_stream_id",
|
|
|
|
desc="get_pending_remote_device_list_updates_for_room_device",
|
|
|
|
)
|
|
|
|
|
|
|
|
sql = """
|
|
|
|
SELECT user_id, device_id FROM device_lists_remote_pending AS d
|
|
|
|
INNER JOIN current_state_events AS c ON
|
|
|
|
type = 'm.room.member'
|
|
|
|
AND state_key = user_id
|
|
|
|
AND membership = 'join'
|
|
|
|
WHERE
|
|
|
|
room_id = ? AND stream_id > ?
|
|
|
|
"""
|
|
|
|
|
|
|
|
def get_pending_remote_device_list_updates_for_room_txn(
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
) -> Collection[Tuple[str, str]]:
|
|
|
|
txn.execute(sql, (room_id, min_device_stream_id))
|
|
|
|
return cast(Collection[Tuple[str, str]], txn.fetchall())
|
|
|
|
|
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_pending_remote_device_list_updates_for_room",
|
|
|
|
get_pending_remote_device_list_updates_for_room_txn,
|
|
|
|
)
|
2022-11-22 11:46:52 -05:00
|
|
|
|
|
|
|
async def get_device_change_last_converted_pos(self) -> Tuple[int, str]:
|
|
|
|
"""
|
|
|
|
Get the position of the last row in `device_list_changes_in_room` that has been
|
|
|
|
converted to `device_lists_outbound_pokes`.
|
|
|
|
|
|
|
|
Rows with a strictly greater position where `converted_to_destinations` is
|
|
|
|
`FALSE` have not been converted.
|
|
|
|
"""
|
|
|
|
|
2023-11-09 11:13:31 -05:00
|
|
|
return cast(
|
|
|
|
Tuple[int, str],
|
|
|
|
await self.db_pool.simple_select_one(
|
|
|
|
table="device_lists_changes_converted_stream_position",
|
|
|
|
keyvalues={},
|
|
|
|
retcols=["stream_id", "room_id"],
|
|
|
|
desc="get_device_change_last_converted_pos",
|
|
|
|
),
|
2022-11-22 11:46:52 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
async def set_device_change_last_converted_pos(
|
|
|
|
self,
|
|
|
|
stream_id: int,
|
|
|
|
room_id: str,
|
|
|
|
) -> None:
|
|
|
|
"""
|
|
|
|
Set the position of the last row in `device_list_changes_in_room` that has been
|
|
|
|
converted to `device_lists_outbound_pokes`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
await self.db_pool.simple_update_one(
|
|
|
|
table="device_lists_changes_converted_stream_position",
|
|
|
|
keyvalues={},
|
|
|
|
updatevalues={"stream_id": stream_id, "room_id": room_id},
|
|
|
|
desc="set_device_change_last_converted_pos",
|
|
|
|
)
|