2016-07-15 14:19:07 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016 OpenMarket Ltd
|
2019-07-25 05:21:52 +02:00
|
|
|
# Copyright 2019 New Vector Ltd
|
|
|
|
# Copyright 2019 The Matrix.org Foundation C.I.C.
|
2016-07-15 14:19:07 +02:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
import logging
|
2020-03-18 11:13:55 +01:00
|
|
|
from typing import List, Tuple
|
2016-07-15 14:19:07 +02:00
|
|
|
|
2019-06-07 00:54:00 +02:00
|
|
|
from six import iteritems
|
2018-07-09 08:09:20 +02:00
|
|
|
|
|
|
|
from canonicaljson import json
|
|
|
|
|
2016-07-15 14:19:07 +02:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2019-07-25 05:21:52 +02:00
|
|
|
from synapse.api.errors import Codes, StoreError
|
2019-08-22 19:21:10 +02:00
|
|
|
from synapse.logging.opentracing import (
|
|
|
|
get_active_span_text_map,
|
2019-09-03 11:21:30 +02:00
|
|
|
set_tag,
|
2019-08-22 19:21:10 +02:00
|
|
|
trace,
|
|
|
|
whitelisted_homeserver,
|
|
|
|
)
|
2018-07-25 10:41:12 +02:00
|
|
|
from synapse.metrics.background_process_metrics import run_as_background_process
|
2019-12-03 15:28:46 +01:00
|
|
|
from synapse.storage._base import SQLBaseStore, db_to_json, make_in_list_sql_clause
|
2020-03-18 11:13:55 +01:00
|
|
|
from synapse.storage.database import Database, LoggingTransaction
|
2020-01-30 16:06:58 +01:00
|
|
|
from synapse.types import Collection, get_verify_key_from_cross_signing_key
|
2019-12-03 15:28:46 +01:00
|
|
|
from synapse.util.caches.descriptors import (
|
|
|
|
Cache,
|
|
|
|
cached,
|
|
|
|
cachedInlineCallbacks,
|
|
|
|
cachedList,
|
|
|
|
)
|
2020-01-14 12:58:02 +01:00
|
|
|
from synapse.util.iterutils import batch_iter
|
2020-03-30 20:06:52 +02:00
|
|
|
from synapse.util.stringutils import shortstr
|
2018-06-28 15:49:57 +02:00
|
|
|
|
2016-07-15 14:19:07 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2018-11-01 20:10:33 +01:00
|
|
|
DROP_DEVICE_LIST_STREAMS_NON_UNIQUE_INDEXES = (
|
|
|
|
"drop_device_list_streams_non_unique_indexes"
|
|
|
|
)
|
2016-07-15 14:19:07 +02:00
|
|
|
|
2018-11-01 20:10:33 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
class DeviceWorkerStore(SQLBaseStore):
|
2016-07-15 14:19:07 +02:00
|
|
|
def get_device(self, user_id, device_id):
|
2019-07-31 05:09:50 +02:00
|
|
|
"""Retrieve a device. Only returns devices that are not marked as
|
|
|
|
hidden.
|
2016-07-15 14:19:07 +02:00
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): The ID of the user which owns the device
|
|
|
|
device_id (str): The ID of the device to retrieve
|
|
|
|
Returns:
|
2016-07-20 17:34:00 +02:00
|
|
|
defer.Deferred for a dict containing the device information
|
2016-07-15 14:19:07 +02:00
|
|
|
Raises:
|
|
|
|
StoreError: if the device is not found
|
|
|
|
"""
|
2019-12-04 14:52:46 +01:00
|
|
|
return self.db.simple_select_one(
|
2016-07-15 14:19:07 +02:00
|
|
|
table="devices",
|
2019-07-31 05:09:50 +02:00
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id, "hidden": False},
|
2019-08-01 08:16:09 +02:00
|
|
|
retcols=("user_id", "device_id", "display_name"),
|
2016-07-15 14:19:07 +02:00
|
|
|
desc="get_device",
|
|
|
|
)
|
2016-07-20 17:34:00 +02:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_devices_by_user(self, user_id):
|
2019-07-31 05:09:50 +02:00
|
|
|
"""Retrieve all of a user's registered devices. Only returns devices
|
|
|
|
that are not marked as hidden.
|
2016-07-20 17:34:00 +02:00
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str):
|
|
|
|
Returns:
|
|
|
|
defer.Deferred: resolves to a dict from device_id to a dict
|
|
|
|
containing "device_id", "user_id" and "display_name" for each
|
|
|
|
device.
|
|
|
|
"""
|
2019-12-04 14:52:46 +01:00
|
|
|
devices = yield self.db.simple_select_list(
|
2016-07-20 17:34:00 +02:00
|
|
|
table="devices",
|
2019-07-31 05:09:50 +02:00
|
|
|
keyvalues={"user_id": user_id, "hidden": False},
|
|
|
|
retcols=("user_id", "device_id", "display_name"),
|
2019-04-03 11:07:29 +02:00
|
|
|
desc="get_devices_by_user",
|
2016-07-20 17:34:00 +02:00
|
|
|
)
|
|
|
|
|
2019-07-23 15:00:55 +02:00
|
|
|
return {d["device_id"]: d for d in devices}
|
2017-01-25 15:27:27 +01:00
|
|
|
|
2019-08-22 19:21:10 +02:00
|
|
|
@trace
|
2019-06-07 00:54:00 +02:00
|
|
|
@defer.inlineCallbacks
|
2019-10-30 19:57:34 +01:00
|
|
|
def get_device_updates_by_remote(self, destination, from_stream_id, limit):
|
2019-10-30 15:01:53 +01:00
|
|
|
"""Get a stream of device updates to send to the given remote server.
|
2019-03-04 19:03:29 +01:00
|
|
|
|
2019-10-30 15:01:53 +01:00
|
|
|
Args:
|
|
|
|
destination (str): The host the device updates are intended for
|
|
|
|
from_stream_id (int): The minimum stream_id to filter updates by, exclusive
|
|
|
|
limit (int): Maximum number of device updates to return
|
2019-03-04 19:03:29 +01:00
|
|
|
Returns:
|
2019-05-22 22:42:00 +02:00
|
|
|
Deferred[tuple[int, list[tuple[string,dict]]]]:
|
2019-06-07 00:54:00 +02:00
|
|
|
current stream id (ie, the stream id of the last update included in the
|
2019-05-22 22:42:00 +02:00
|
|
|
response), and the list of updates, where each update is a pair of EDU
|
|
|
|
type and EDU contents
|
2017-01-26 17:30:37 +01:00
|
|
|
"""
|
2019-03-04 19:03:29 +01:00
|
|
|
now_stream_id = self._device_list_id_gen.get_current_token()
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
has_changed = self._device_list_federation_stream_cache.has_entity_changed(
|
|
|
|
destination, int(from_stream_id)
|
2017-02-27 17:22:12 +01:00
|
|
|
)
|
2019-03-04 19:03:29 +01:00
|
|
|
if not has_changed:
|
2019-08-30 17:28:26 +02:00
|
|
|
return now_stream_id, []
|
2017-02-27 17:22:12 +01:00
|
|
|
|
2019-12-04 14:52:46 +01:00
|
|
|
updates = yield self.db.runInteraction(
|
2019-10-30 19:57:34 +01:00
|
|
|
"get_device_updates_by_remote",
|
|
|
|
self._get_device_updates_by_remote_txn,
|
2019-04-03 11:07:29 +02:00
|
|
|
destination,
|
|
|
|
from_stream_id,
|
|
|
|
now_stream_id,
|
2020-02-28 12:45:35 +01:00
|
|
|
limit,
|
2019-03-04 19:03:29 +01:00
|
|
|
)
|
2017-02-27 17:22:12 +01:00
|
|
|
|
2019-06-07 00:54:00 +02:00
|
|
|
# Return an empty list if there are no updates
|
|
|
|
if not updates:
|
2019-08-30 17:28:26 +02:00
|
|
|
return now_stream_id, []
|
2019-06-07 00:54:00 +02:00
|
|
|
|
2019-10-30 15:01:53 +01: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 13:15:07 +01:00
|
|
|
users = {r[0] for r in updates}
|
2019-05-22 22:42:00 +02:00
|
|
|
master_key_by_user = {}
|
|
|
|
self_signing_key_by_user = {}
|
|
|
|
for user in users:
|
|
|
|
cross_signing_key = yield self.get_e2e_cross_signing_key(user, "master")
|
2019-05-23 03:24:21 +02:00
|
|
|
if cross_signing_key:
|
|
|
|
key_id, verify_key = get_verify_key_from_cross_signing_key(
|
|
|
|
cross_signing_key
|
|
|
|
)
|
2019-10-30 15:01:53 +01: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-23 03:24:21 +02:00
|
|
|
master_key_by_user[user] = {
|
|
|
|
"key_info": cross_signing_key,
|
2019-10-30 15:01:53 +01:00
|
|
|
"device_id": verify_key.version,
|
2019-05-23 03:24:21 +02:00
|
|
|
}
|
2019-05-22 22:42:00 +02:00
|
|
|
|
2019-07-22 19:04:55 +02:00
|
|
|
cross_signing_key = yield self.get_e2e_cross_signing_key(
|
|
|
|
user, "self_signing"
|
|
|
|
)
|
2019-05-23 03:24:21 +02: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 15:01:53 +01:00
|
|
|
"device_id": verify_key.version,
|
2019-05-23 03:24:21 +02:00
|
|
|
}
|
2019-05-22 22:42:00 +02:00
|
|
|
|
2019-06-07 00:54:00 +02: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 19:21:10 +02:00
|
|
|
# maps (user_id, device_id) -> (stream_id, opentracing_context)
|
2019-06-07 00:54:00 +02:00
|
|
|
# as long as their stream_id does not match that of the last row
|
2019-08-22 19:21:10 +02:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2019-06-07 00:54:00 +02:00
|
|
|
query_map = {}
|
2019-10-30 15:01:53 +01:00
|
|
|
cross_signing_keys_by_user = {}
|
|
|
|
for user_id, device_id, update_stream_id, update_context in updates:
|
2019-07-22 19:04:55 +02:00
|
|
|
if (
|
2019-10-30 15:01:53 +01:00
|
|
|
user_id in master_key_by_user
|
|
|
|
and device_id == master_key_by_user[user_id]["device_id"]
|
2019-07-22 19:04:55 +02:00
|
|
|
):
|
2019-05-22 22:42:00 +02:00
|
|
|
result = cross_signing_keys_by_user.setdefault(user_id, {})
|
2019-07-22 19:04:55 +02:00
|
|
|
result["master_key"] = master_key_by_user[user_id]["key_info"]
|
2019-10-30 15:01:53 +01:00
|
|
|
elif (
|
2019-11-01 03:49:48 +01:00
|
|
|
user_id in self_signing_key_by_user
|
2019-10-30 15:01:53 +01:00
|
|
|
and device_id == self_signing_key_by_user[user_id]["device_id"]
|
2019-07-22 19:04:55 +02:00
|
|
|
):
|
2019-05-22 22:42:00 +02:00
|
|
|
result = cross_signing_keys_by_user.setdefault(user_id, {})
|
2019-07-22 19:04:55 +02:00
|
|
|
result["self_signing_key"] = self_signing_key_by_user[user_id][
|
|
|
|
"key_info"
|
|
|
|
]
|
2019-10-30 15:01:53 +01:00
|
|
|
else:
|
|
|
|
key = (user_id, device_id)
|
2019-05-22 22:42:00 +02:00
|
|
|
|
2019-10-30 15:01:53 +01:00
|
|
|
previous_update_stream_id, _ = query_map.get(key, (0, None))
|
2019-05-22 22:42:00 +02:00
|
|
|
|
2019-10-30 15:01:53 +01:00
|
|
|
if update_stream_id > previous_update_stream_id:
|
|
|
|
query_map[key] = (update_stream_id, update_context)
|
|
|
|
|
2019-06-07 00:54:00 +02:00
|
|
|
results = yield self._get_device_update_edus_by_remote(
|
2019-06-20 11:32:02 +02:00
|
|
|
destination, from_stream_id, query_map
|
2019-06-07 00:54:00 +02:00
|
|
|
)
|
2019-10-30 15:01:53 +01:00
|
|
|
|
|
|
|
# add the updated cross-signing keys to the results list
|
|
|
|
for user_id, result in iteritems(cross_signing_keys_by_user):
|
|
|
|
result["user_id"] = user_id
|
|
|
|
# FIXME: switch to m.signing_key_update when MSC1756 is merged into the spec
|
|
|
|
results.append(("org.matrix.signing_key_update", result))
|
2019-06-07 00:54:00 +02:00
|
|
|
|
2019-08-30 17:28:26 +02:00
|
|
|
return now_stream_id, results
|
2019-06-07 00:54:00 +02:00
|
|
|
|
2019-10-30 19:57:34 +01:00
|
|
|
def _get_device_updates_by_remote_txn(
|
2019-06-07 00:54:00 +02:00
|
|
|
self, txn, destination, from_stream_id, now_stream_id, limit
|
2019-04-03 11:07:29 +02:00
|
|
|
):
|
2019-06-07 00:54:00 +02:00
|
|
|
"""Return device update information for a given remote destination
|
|
|
|
|
|
|
|
Args:
|
|
|
|
txn (LoggingTransaction): The transaction to execute
|
|
|
|
destination (str): The host the device updates are intended for
|
|
|
|
from_stream_id (int): The minimum stream_id to filter updates by, exclusive
|
|
|
|
now_stream_id (int): The maximum stream_id to filter updates by, inclusive
|
|
|
|
limit (int): Maximum number of device updates to return
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
List: List of device updates
|
|
|
|
"""
|
2019-05-22 22:42:00 +02:00
|
|
|
# get the list of device updates that need to be sent
|
2019-03-04 19:03:29 +01:00
|
|
|
sql = """
|
2019-08-22 19:21:10 +02:00
|
|
|
SELECT user_id, device_id, stream_id, opentracing_context FROM device_lists_outbound_pokes
|
2019-03-04 19:03:29 +01:00
|
|
|
WHERE destination = ? AND ? < stream_id AND stream_id <= ? AND sent = ?
|
2019-06-07 00:54:00 +02:00
|
|
|
ORDER BY stream_id
|
|
|
|
LIMIT ?
|
2017-01-27 11:31:06 +01:00
|
|
|
"""
|
2019-06-07 00:54:00 +02:00
|
|
|
txn.execute(sql, (destination, from_stream_id, now_stream_id, False, limit))
|
2017-01-26 17:39:33 +01:00
|
|
|
|
2019-06-07 00:54:00 +02:00
|
|
|
return list(txn)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2019-06-20 11:32:02 +02:00
|
|
|
def _get_device_update_edus_by_remote(self, destination, from_stream_id, query_map):
|
2019-06-07 00:54:00 +02:00
|
|
|
"""Returns a list of device update EDUs as well as E2EE keys
|
2018-11-01 20:01:29 +01:00
|
|
|
|
2019-06-07 00:54:00 +02:00
|
|
|
Args:
|
|
|
|
destination (str): The host the device updates are intended for
|
|
|
|
from_stream_id (int): The minimum stream_id to filter updates by, exclusive
|
2019-08-22 19:21:10 +02:00
|
|
|
query_map (Dict[(str, str): (int, str|None)]): Dictionary mapping
|
|
|
|
user_id/device_id to update stream_id and the relevent json-encoded
|
|
|
|
opentracing context
|
2018-11-01 20:01:29 +01:00
|
|
|
|
2019-06-07 00:54:00 +02:00
|
|
|
Returns:
|
|
|
|
List[Dict]: List of objects representing an device update EDU
|
|
|
|
|
|
|
|
"""
|
2019-07-22 19:04:55 +02:00
|
|
|
devices = (
|
2019-12-04 14:52:46 +01:00
|
|
|
yield self.db.runInteraction(
|
2019-07-22 19:04:55 +02:00
|
|
|
"_get_e2e_device_keys_txn",
|
|
|
|
self._get_e2e_device_keys_txn,
|
|
|
|
query_map.keys(),
|
|
|
|
include_all_devices=True,
|
|
|
|
include_deleted_devices=True,
|
|
|
|
)
|
|
|
|
if query_map
|
|
|
|
else {}
|
|
|
|
)
|
2018-11-01 20:01:29 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
results = []
|
|
|
|
for user_id, user_devices in iteritems(devices):
|
|
|
|
# The prev_id for the first row is always the last row before
|
|
|
|
# `from_stream_id`
|
2019-06-07 00:54:00 +02:00
|
|
|
prev_id = yield self._get_last_device_update_for_remote_user(
|
2019-06-20 11:32:02 +02:00
|
|
|
destination, user_id, from_stream_id
|
2019-06-07 00:54:00 +02:00
|
|
|
)
|
2019-03-04 19:03:29 +01:00
|
|
|
for device_id, device in iteritems(user_devices):
|
2019-08-22 19:21:10 +02:00
|
|
|
stream_id, opentracing_context = query_map[(user_id, device_id)]
|
2019-03-04 19:03:29 +01:00
|
|
|
result = {
|
2018-07-12 02:32:39 +02:00
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
2019-03-04 19:03:29 +01:00
|
|
|
"prev_id": [prev_id] if prev_id else [],
|
|
|
|
"stream_id": stream_id,
|
2019-08-22 19:21:10 +02:00
|
|
|
"org.matrix.opentracing_context": opentracing_context,
|
2019-03-04 19:03:29 +01:00
|
|
|
}
|
2018-07-12 02:32:39 +02:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
prev_id = stream_id
|
2018-11-01 20:01:29 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
if device is not None:
|
|
|
|
key_json = device.get("key_json", None)
|
|
|
|
if key_json:
|
|
|
|
result["keys"] = db_to_json(key_json)
|
|
|
|
device_display_name = device.get("device_display_name", None)
|
|
|
|
if device_display_name:
|
|
|
|
result["device_display_name"] = device_display_name
|
2020-02-04 06:10:21 +01:00
|
|
|
if "signatures" in device:
|
|
|
|
for sig_user_id, sigs in device["signatures"].items():
|
|
|
|
result["keys"].setdefault("signatures", {}).setdefault(
|
|
|
|
sig_user_id, {}
|
|
|
|
).update(sigs)
|
2019-03-04 19:03:29 +01:00
|
|
|
else:
|
|
|
|
result["deleted"] = True
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-05-22 22:42:00 +02:00
|
|
|
results.append(("m.device_list_update", result))
|
2019-03-04 19:03:29 +01:00
|
|
|
|
2019-07-23 15:00:55 +02:00
|
|
|
return results
|
2019-06-07 00:54:00 +02:00
|
|
|
|
|
|
|
def _get_last_device_update_for_remote_user(
|
2019-06-20 11:32:02 +02:00
|
|
|
self, destination, user_id, from_stream_id
|
2019-06-07 00:54:00 +02:00
|
|
|
):
|
|
|
|
def f(txn):
|
|
|
|
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]
|
|
|
|
|
2019-12-04 14:52:46 +01:00
|
|
|
return self.db.runInteraction("get_last_device_update_for_remote_user", f)
|
2019-03-04 19:03:29 +01:00
|
|
|
|
|
|
|
def mark_as_sent_devices_by_remote(self, destination, stream_id):
|
|
|
|
"""Mark that updates have successfully been sent to the destination.
|
|
|
|
"""
|
2019-12-04 14:52:46 +01:00
|
|
|
return self.db.runInteraction(
|
2019-04-03 11:07:29 +02:00
|
|
|
"mark_as_sent_devices_by_remote",
|
|
|
|
self._mark_as_sent_devices_by_remote_txn,
|
|
|
|
destination,
|
|
|
|
stream_id,
|
2017-02-27 17:22:12 +01:00
|
|
|
)
|
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
def _mark_as_sent_devices_by_remote_txn(self, txn, destination, stream_id):
|
|
|
|
# We update the device_lists_outbound_last_success with the successfully
|
|
|
|
# poked users. We do the join to see which users need to be inserted and
|
|
|
|
# which updated.
|
|
|
|
sql = """
|
|
|
|
SELECT user_id, coalesce(max(o.stream_id), 0), (max(s.stream_id) IS NOT NULL)
|
|
|
|
FROM device_lists_outbound_pokes as o
|
|
|
|
LEFT JOIN device_lists_outbound_last_success as s
|
|
|
|
USING (destination, user_id)
|
|
|
|
WHERE destination = ? AND o.stream_id <= ?
|
|
|
|
GROUP BY user_id
|
|
|
|
"""
|
2019-04-03 11:07:29 +02:00
|
|
|
txn.execute(sql, (destination, stream_id))
|
2019-03-04 19:03:29 +01:00
|
|
|
rows = txn.fetchall()
|
2018-11-01 20:01:29 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
sql = """
|
|
|
|
UPDATE device_lists_outbound_last_success
|
|
|
|
SET stream_id = ?
|
|
|
|
WHERE destination = ? AND user_id = ?
|
|
|
|
"""
|
2019-04-03 11:07:29 +02:00
|
|
|
txn.executemany(sql, ((row[1], destination, row[0]) for row in rows if row[2]))
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
sql = """
|
|
|
|
INSERT INTO device_lists_outbound_last_success
|
|
|
|
(destination, user_id, stream_id) VALUES (?, ?, ?)
|
|
|
|
"""
|
|
|
|
txn.executemany(
|
2019-04-03 11:07:29 +02:00
|
|
|
sql, ((destination, row[0], row[1]) for row in rows if not row[2])
|
2019-03-04 19:03:29 +01:00
|
|
|
)
|
2018-11-01 20:01:29 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
# Delete all sent outbound pokes
|
|
|
|
sql = """
|
|
|
|
DELETE FROM device_lists_outbound_pokes
|
|
|
|
WHERE destination = ? AND stream_id <= ?
|
|
|
|
"""
|
2019-04-03 11:07:29 +02:00
|
|
|
txn.execute(sql, (destination, stream_id))
|
2019-03-04 19:03:29 +01:00
|
|
|
|
2019-07-25 17:08:24 +02:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def add_user_signature_change_to_streams(self, from_user_id, user_ids):
|
|
|
|
"""Persist that a user has made new signatures
|
|
|
|
|
|
|
|
Args:
|
|
|
|
from_user_id (str): the user who made the signatures
|
|
|
|
user_ids (list[str]): the users who were signed
|
|
|
|
"""
|
|
|
|
|
|
|
|
with self._device_list_id_gen.get_next() as stream_id:
|
2019-12-04 14:52:46 +01:00
|
|
|
yield self.db.runInteraction(
|
2019-07-25 17:08:24 +02:00
|
|
|
"add_user_sig_change_to_streams",
|
|
|
|
self._add_user_signature_change_txn,
|
|
|
|
from_user_id,
|
|
|
|
user_ids,
|
|
|
|
stream_id,
|
|
|
|
)
|
2019-08-21 22:19:35 +02:00
|
|
|
return stream_id
|
2019-07-25 17:08:24 +02:00
|
|
|
|
|
|
|
def _add_user_signature_change_txn(self, txn, from_user_id, user_ids, stream_id):
|
|
|
|
txn.call_after(
|
|
|
|
self._user_signature_stream_cache.entity_has_changed,
|
|
|
|
from_user_id,
|
|
|
|
stream_id,
|
|
|
|
)
|
2019-12-04 14:52:46 +01:00
|
|
|
self.db.simple_insert_txn(
|
2019-07-25 17:08:24 +02:00
|
|
|
txn,
|
|
|
|
"user_signature_stream",
|
|
|
|
values={
|
|
|
|
"stream_id": stream_id,
|
|
|
|
"from_user_id": from_user_id,
|
|
|
|
"user_ids": json.dumps(user_ids),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
def get_device_stream_token(self):
|
|
|
|
return self._device_list_id_gen.get_current_token()
|
|
|
|
|
2019-09-03 11:21:30 +02:00
|
|
|
@trace
|
2019-03-04 19:03:29 +01:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_user_devices_from_cache(self, query_list):
|
|
|
|
"""Get the devices (and keys if any) for remote users from the cache.
|
2018-11-01 20:01:29 +01:00
|
|
|
|
|
|
|
Args:
|
2019-03-04 19:03:29 +01:00
|
|
|
query_list(list): List of (user_id, device_ids), if device_ids is
|
|
|
|
falsey then return all device ids for that user.
|
2018-11-01 20:01:29 +01:00
|
|
|
|
|
|
|
Returns:
|
2019-03-04 19:03:29 +01:00
|
|
|
(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 17:30:37 +01:00
|
|
|
"""
|
2020-02-21 13:15:07 +01:00
|
|
|
user_ids = {user_id for user_id, _ in query_list}
|
2019-03-04 19:03:29 +01:00
|
|
|
user_map = yield self.get_device_list_last_stream_id_for_remotes(list(user_ids))
|
2020-01-30 16:06:58 +01:00
|
|
|
|
|
|
|
# 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 = yield self.get_user_ids_requiring_device_list_resync(
|
|
|
|
user_ids
|
|
|
|
)
|
2020-02-21 13:15:07 +01:00
|
|
|
user_ids_in_cache = {
|
|
|
|
user_id for user_id, stream_id in user_map.items() if stream_id
|
|
|
|
} - users_needing_resync
|
2019-03-04 19:03:29 +01:00
|
|
|
user_ids_not_in_cache = user_ids - user_ids_in_cache
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
results = {}
|
|
|
|
for user_id, device_id in query_list:
|
|
|
|
if user_id not in user_ids_in_cache:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if device_id:
|
|
|
|
device = yield self._get_cached_user_device(user_id, device_id)
|
|
|
|
results.setdefault(user_id, {})[device_id] = device
|
|
|
|
else:
|
2020-01-28 15:43:21 +01:00
|
|
|
results[user_id] = yield self.get_cached_devices_for_user(user_id)
|
2019-03-04 19:03:29 +01:00
|
|
|
|
2019-09-03 11:21:30 +02:00
|
|
|
set_tag("in_cache", results)
|
|
|
|
set_tag("not_in_cache", user_ids_not_in_cache)
|
|
|
|
|
2019-08-30 17:28:26 +02:00
|
|
|
return user_ids_not_in_cache, results
|
2019-03-04 19:03:29 +01:00
|
|
|
|
|
|
|
@cachedInlineCallbacks(num_args=2, tree=True)
|
|
|
|
def _get_cached_user_device(self, user_id, device_id):
|
2019-12-04 14:52:46 +01:00
|
|
|
content = yield self.db.simple_select_one_onecol(
|
2017-01-26 17:06:54 +01:00
|
|
|
table="device_lists_remote_cache",
|
2019-04-03 11:07:29 +02:00
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id},
|
2019-03-04 19:03:29 +01:00
|
|
|
retcol="content",
|
|
|
|
desc="_get_cached_user_device",
|
2017-01-26 17:06:54 +01:00
|
|
|
)
|
2019-07-23 15:00:55 +02:00
|
|
|
return db_to_json(content)
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
@cachedInlineCallbacks()
|
2020-01-28 15:43:21 +01:00
|
|
|
def get_cached_devices_for_user(self, user_id):
|
2019-12-04 14:52:46 +01:00
|
|
|
devices = yield self.db.simple_select_list(
|
2017-01-26 17:06:54 +01:00
|
|
|
table="device_lists_remote_cache",
|
2019-04-03 11:07:29 +02:00
|
|
|
keyvalues={"user_id": user_id},
|
2019-03-04 19:03:29 +01:00
|
|
|
retcols=("device_id", "content"),
|
2020-01-28 15:43:21 +01:00
|
|
|
desc="get_cached_devices_for_user",
|
2017-01-26 17:06:54 +01:00
|
|
|
)
|
2019-07-23 15:00:55 +02:00
|
|
|
return {
|
|
|
|
device["device_id"]: db_to_json(device["content"]) for device in devices
|
|
|
|
}
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
def get_devices_with_keys_by_user(self, user_id):
|
|
|
|
"""Get all devices (with any device keys) for a user
|
2017-01-26 17:30:37 +01:00
|
|
|
|
|
|
|
Returns:
|
2019-03-04 19:03:29 +01:00
|
|
|
(stream_id, devices)
|
2017-01-26 17:30:37 +01:00
|
|
|
"""
|
2019-12-04 14:52:46 +01:00
|
|
|
return self.db.runInteraction(
|
2019-03-04 19:03:29 +01:00
|
|
|
"get_devices_with_keys_by_user",
|
2019-04-03 11:07:29 +02:00
|
|
|
self._get_devices_with_keys_by_user_txn,
|
|
|
|
user_id,
|
2019-03-04 19:03:29 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
def _get_devices_with_keys_by_user_txn(self, txn, user_id):
|
2017-01-25 15:27:27 +01:00
|
|
|
now_stream_id = self._device_list_id_gen.get_current_token()
|
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
devices = self._get_e2e_device_keys_txn(
|
|
|
|
txn, [(user_id, None)], include_all_devices=True
|
2017-01-25 15:27:27 +01:00
|
|
|
)
|
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
if devices:
|
|
|
|
user_devices = devices[user_id]
|
|
|
|
results = []
|
|
|
|
for device_id, device in iteritems(user_devices):
|
2019-04-03 11:07:29 +02:00
|
|
|
result = {"device_id": device_id}
|
2019-03-04 19:03:29 +01:00
|
|
|
|
|
|
|
key_json = device.get("key_json", None)
|
|
|
|
if key_json:
|
|
|
|
result["keys"] = db_to_json(key_json)
|
|
|
|
device_display_name = device.get("device_display_name", None)
|
|
|
|
if device_display_name:
|
|
|
|
result["device_display_name"] = device_display_name
|
2020-02-04 06:10:21 +01:00
|
|
|
if "signatures" in device:
|
|
|
|
for sig_user_id, sigs in device["signatures"].items():
|
|
|
|
result["keys"].setdefault("signatures", {}).setdefault(
|
|
|
|
sig_user_id, {}
|
|
|
|
).update(sigs)
|
2019-03-04 19:03:29 +01:00
|
|
|
|
|
|
|
results.append(result)
|
|
|
|
|
|
|
|
return now_stream_id, results
|
|
|
|
|
|
|
|
return now_stream_id, []
|
|
|
|
|
2019-06-26 20:09:10 +02:00
|
|
|
def get_users_whose_devices_changed(self, from_key, user_ids):
|
2019-06-26 12:56:52 +02:00
|
|
|
"""Get set of users whose devices have changed since `from_key` that
|
|
|
|
are in the given list of user_ids.
|
|
|
|
|
|
|
|
Args:
|
2019-06-26 20:10:38 +02:00
|
|
|
from_key (str): The device lists stream token
|
2019-06-26 12:56:52 +02:00
|
|
|
user_ids (Iterable[str])
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred[set[str]]: The set of user_ids whose devices have changed
|
|
|
|
since `from_key`
|
2019-03-04 19:03:29 +01:00
|
|
|
"""
|
|
|
|
from_key = int(from_key)
|
2019-06-26 12:56:52 +02:00
|
|
|
|
|
|
|
# Get set of users who *may* have changed. Users not in the returned
|
|
|
|
# list have definitely not changed.
|
|
|
|
to_check = list(
|
|
|
|
self._device_list_stream_cache.get_entities_changed(user_ids, from_key)
|
|
|
|
)
|
|
|
|
|
|
|
|
if not to_check:
|
|
|
|
return defer.succeed(set())
|
|
|
|
|
2019-06-26 20:09:10 +02:00
|
|
|
def _get_users_whose_devices_changed_txn(txn):
|
2019-06-26 12:56:52 +02:00
|
|
|
changes = set()
|
|
|
|
|
2019-06-26 20:10:38 +02:00
|
|
|
sql = """
|
|
|
|
SELECT DISTINCT user_id FROM device_lists_stream
|
|
|
|
WHERE stream_id > ?
|
2019-10-02 20:07:07 +02:00
|
|
|
AND
|
2019-06-26 20:10:38 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
for chunk in batch_iter(to_check, 100):
|
2019-10-02 20:07:07 +02:00
|
|
|
clause, args = make_in_list_sql_clause(
|
|
|
|
txn.database_engine, "user_id", chunk
|
|
|
|
)
|
|
|
|
txn.execute(sql + clause, (from_key,) + tuple(args))
|
2019-06-26 12:56:52 +02:00
|
|
|
changes.update(user_id for user_id, in txn)
|
|
|
|
|
|
|
|
return changes
|
|
|
|
|
2019-12-04 14:52:46 +01:00
|
|
|
return self.db.runInteraction(
|
2019-06-26 20:09:10 +02:00
|
|
|
"get_users_whose_devices_changed", _get_users_whose_devices_changed_txn
|
2019-04-03 11:07:29 +02:00
|
|
|
)
|
2019-03-04 19:03:29 +01:00
|
|
|
|
2019-07-25 17:08:24 +02:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_users_whose_signatures_changed(self, user_id, from_key):
|
|
|
|
"""Get the users who have new cross-signing signatures made by `user_id` since
|
|
|
|
`from_key`.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): the user who made the signatures
|
|
|
|
from_key (str): The device lists stream token
|
|
|
|
"""
|
|
|
|
from_key = int(from_key)
|
|
|
|
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 > ?
|
|
|
|
"""
|
2019-12-04 14:52:46 +01:00
|
|
|
rows = yield self.db.execute(
|
2019-07-25 17:08:24 +02:00
|
|
|
"get_users_whose_signatures_changed", None, sql, user_id, from_key
|
|
|
|
)
|
2020-02-21 13:15:07 +01:00
|
|
|
return {user for row in rows for user in json.loads(row[0])}
|
2019-07-25 17:08:24 +02:00
|
|
|
else:
|
2019-08-21 22:19:35 +02:00
|
|
|
return set()
|
2019-07-25 17:08:24 +02:00
|
|
|
|
2020-03-18 11:13:55 +01:00
|
|
|
async def get_all_device_list_changes_for_remotes(
|
2020-03-20 15:40:47 +01:00
|
|
|
self, from_key: int, to_key: int, limit: int,
|
2020-03-18 11:13:55 +01:00
|
|
|
) -> List[Tuple[int, str]]:
|
|
|
|
"""Return a list of `(stream_id, entity)` which is the combined list of
|
|
|
|
changes to devices and which destinations need to be poked. Entity is
|
|
|
|
either a user ID (starting with '@') or a remote destination.
|
2019-03-04 19:03:29 +01:00
|
|
|
"""
|
2020-02-28 12:24:05 +01:00
|
|
|
|
|
|
|
# This query Does The Right Thing where it'll correctly apply the
|
|
|
|
# bounds to the inner queries.
|
2019-03-04 19:03:29 +01:00
|
|
|
sql = """
|
2020-02-28 12:24:05 +01:00
|
|
|
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
|
2019-03-04 19:03:29 +01:00
|
|
|
WHERE ? < stream_id AND stream_id <= ?
|
2020-03-20 15:40:47 +01:00
|
|
|
LIMIT ?
|
2019-03-04 19:03:29 +01:00
|
|
|
"""
|
2020-02-28 12:24:05 +01:00
|
|
|
|
2020-03-18 11:13:55 +01:00
|
|
|
return await self.db.execute(
|
2020-03-20 15:40:47 +01:00
|
|
|
"get_all_device_list_changes_for_remotes",
|
|
|
|
None,
|
|
|
|
sql,
|
|
|
|
from_key,
|
|
|
|
to_key,
|
|
|
|
limit,
|
2017-01-25 15:27:27 +01:00
|
|
|
)
|
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
@cached(max_entries=10000)
|
|
|
|
def get_device_list_last_stream_id_for_remote(self, user_id):
|
|
|
|
"""Get the last stream_id we got for a user. May be None if we haven't
|
|
|
|
got any information for them.
|
|
|
|
"""
|
2019-12-04 14:52:46 +01:00
|
|
|
return self.db.simple_select_one_onecol(
|
2019-03-04 19:03:29 +01: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 15:27:27 +01:00
|
|
|
|
2019-04-03 11:07:29 +02:00
|
|
|
@cachedList(
|
|
|
|
cached_method_name="get_device_list_last_stream_id_for_remote",
|
|
|
|
list_name="user_ids",
|
|
|
|
inlineCallbacks=True,
|
|
|
|
)
|
2019-03-04 19:03:29 +01:00
|
|
|
def get_device_list_last_stream_id_for_remotes(self, user_ids):
|
2019-12-04 14:52:46 +01:00
|
|
|
rows = yield self.db.simple_select_many_batch(
|
2019-03-04 19:03:29 +01:00
|
|
|
table="device_lists_remote_extremeties",
|
|
|
|
column="user_id",
|
|
|
|
iterable=user_ids,
|
2019-04-03 11:07:29 +02:00
|
|
|
retcols=("user_id", "stream_id"),
|
2019-03-04 19:03:29 +01:00
|
|
|
desc="get_device_list_last_stream_id_for_remotes",
|
|
|
|
)
|
2017-03-24 15:44:49 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
results = {user_id: None for user_id in user_ids}
|
2019-04-03 11:07:29 +02:00
|
|
|
results.update({row["user_id"]: row["stream_id"] for row in rows})
|
2019-03-04 19:03:29 +01:00
|
|
|
|
2019-07-23 15:00:55 +02:00
|
|
|
return results
|
2019-03-04 19:03:29 +01:00
|
|
|
|
2020-01-30 16:06:58 +01:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_user_ids_requiring_device_list_resync(self, user_ids: Collection[str]):
|
|
|
|
"""Given a list of remote users return the list of users that we
|
|
|
|
should resync the device lists for.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred[Set[str]]
|
|
|
|
"""
|
|
|
|
|
|
|
|
rows = yield self.db.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",
|
|
|
|
)
|
|
|
|
|
|
|
|
return {row["user_id"] for row in rows}
|
|
|
|
|
2020-01-28 15:43:21 +01:00
|
|
|
def mark_remote_user_device_cache_as_stale(self, user_id: str):
|
|
|
|
"""Records that the server has reason to believe the cache of the devices
|
|
|
|
for the remote users is out of date.
|
|
|
|
"""
|
|
|
|
return self.db.simple_upsert(
|
|
|
|
table="device_lists_remote_resync",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
values={},
|
|
|
|
insertion_values={"added_ts": self._clock.time_msec()},
|
|
|
|
desc="make_remote_user_device_cache_as_stale",
|
|
|
|
)
|
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
|
2019-12-04 16:09:36 +01:00
|
|
|
class DeviceBackgroundUpdateStore(SQLBaseStore):
|
2019-12-06 14:08:40 +01:00
|
|
|
def __init__(self, database: Database, db_conn, hs):
|
|
|
|
super(DeviceBackgroundUpdateStore, self).__init__(database, db_conn, hs)
|
2019-03-04 19:03:29 +01:00
|
|
|
|
2019-12-04 16:09:36 +01:00
|
|
|
self.db.updates.register_background_index_update(
|
2019-03-04 19:03:29 +01: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
|
2019-12-04 16:09:36 +01:00
|
|
|
self.db.updates.register_background_index_update(
|
2019-03-04 19:03:29 +01: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
|
2019-12-04 16:09:36 +01:00
|
|
|
self.db.updates.register_background_index_update(
|
2019-03-04 19:03:29 +01: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.
|
2019-12-04 16:09:36 +01:00
|
|
|
self.db.updates.register_background_update_handler(
|
2019-03-04 19:03:29 +01:00
|
|
|
DROP_DEVICE_LIST_STREAMS_NON_UNIQUE_INDEXES,
|
|
|
|
self._drop_device_list_streams_non_unique_indexes,
|
|
|
|
)
|
|
|
|
|
2019-10-03 18:24:03 +02:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _drop_device_list_streams_non_unique_indexes(self, progress, batch_size):
|
|
|
|
def f(conn):
|
|
|
|
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()
|
|
|
|
|
2019-12-04 14:52:46 +01:00
|
|
|
yield self.db.runWithConnection(f)
|
2019-12-04 16:09:36 +01:00
|
|
|
yield self.db.updates._end_background_update(
|
|
|
|
DROP_DEVICE_LIST_STREAMS_NON_UNIQUE_INDEXES
|
|
|
|
)
|
2019-10-03 18:24:03 +02:00
|
|
|
return 1
|
|
|
|
|
|
|
|
|
|
|
|
class DeviceStore(DeviceWorkerStore, DeviceBackgroundUpdateStore):
|
2019-12-06 14:08:40 +01:00
|
|
|
def __init__(self, database: Database, db_conn, hs):
|
|
|
|
super(DeviceStore, self).__init__(database, db_conn, hs)
|
2019-10-03 18:24:03 +02:00
|
|
|
|
|
|
|
# Map of (user_id, device_id) -> bool. If there is an entry that implies
|
|
|
|
# the device exists.
|
|
|
|
self.device_id_exists_cache = Cache(
|
|
|
|
name="device_id_exists", keylen=2, max_entries=10000
|
|
|
|
)
|
|
|
|
|
|
|
|
self._clock.looping_call(self._prune_old_outbound_device_pokes, 60 * 60 * 1000)
|
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
@defer.inlineCallbacks
|
2019-04-03 11:07:29 +02:00
|
|
|
def store_device(self, user_id, device_id, initial_device_display_name):
|
2019-03-04 19:03:29 +01:00
|
|
|
"""Ensure the given device is known; add it to the store if not
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): id of user associated with the device
|
|
|
|
device_id (str): id of device
|
|
|
|
initial_device_display_name (str): initial displayname of the
|
|
|
|
device. Ignored if device exists.
|
|
|
|
Returns:
|
|
|
|
defer.Deferred: boolean whether the device was inserted or an
|
|
|
|
existing device existed with that ID.
|
2019-07-25 05:21:52 +02:00
|
|
|
Raises:
|
|
|
|
StoreError: if the device is already in use
|
2017-01-25 15:27:27 +01:00
|
|
|
"""
|
2019-03-04 19:03:29 +01:00
|
|
|
key = (user_id, device_id)
|
|
|
|
if self.device_id_exists_cache.get(key, None):
|
2019-07-23 15:00:55 +02:00
|
|
|
return False
|
2017-01-25 15:27:27 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
try:
|
2019-12-04 14:52:46 +01:00
|
|
|
inserted = yield self.db.simple_insert(
|
2019-03-04 19:03:29 +01:00
|
|
|
"devices",
|
|
|
|
values={
|
2017-01-25 15:27:27 +01:00
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
2019-04-03 11:07:29 +02:00
|
|
|
"display_name": initial_device_display_name,
|
2019-07-25 05:21:52 +02:00
|
|
|
"hidden": False,
|
2019-03-04 19:03:29 +01:00
|
|
|
},
|
|
|
|
desc="store_device",
|
|
|
|
or_ignore=True,
|
|
|
|
)
|
2019-07-25 05:21:52 +02: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
|
2019-12-04 14:52:46 +01:00
|
|
|
hidden = yield self.db.simple_select_one_onecol(
|
2019-07-25 05:21:52 +02: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)
|
2019-03-04 19:03:29 +01:00
|
|
|
self.device_id_exists_cache.prefill(key, True)
|
2019-07-23 15:00:55 +02:00
|
|
|
return inserted
|
2019-07-25 05:21:52 +02:00
|
|
|
except StoreError:
|
|
|
|
raise
|
2019-03-04 19:03:29 +01:00
|
|
|
except Exception as e:
|
2019-04-03 11:07:29 +02: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 19:03:29 +01:00
|
|
|
raise StoreError(500, "Problem storing device.")
|
2017-01-25 15:27:27 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def delete_device(self, user_id, device_id):
|
|
|
|
"""Delete a device.
|
2017-01-25 15:27:27 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
Args:
|
|
|
|
user_id (str): The ID of the user which owns the device
|
|
|
|
device_id (str): The ID of the device to delete
|
|
|
|
Returns:
|
|
|
|
defer.Deferred
|
|
|
|
"""
|
2019-12-04 14:52:46 +01:00
|
|
|
yield self.db.simple_delete_one(
|
2019-08-01 00:37:05 +02:00
|
|
|
table="devices",
|
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id, "hidden": False},
|
|
|
|
desc="delete_device",
|
|
|
|
)
|
2017-01-25 15:27:27 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
self.device_id_exists_cache.invalidate((user_id, device_id))
|
2017-01-25 15:27:27 +01:00
|
|
|
|
2017-02-27 17:22:12 +01:00
|
|
|
@defer.inlineCallbacks
|
2019-03-04 19:03:29 +01:00
|
|
|
def delete_devices(self, user_id, device_ids):
|
|
|
|
"""Deletes several devices.
|
2017-01-26 17:30:37 +01:00
|
|
|
|
|
|
|
Args:
|
2019-03-04 19:03:29 +01:00
|
|
|
user_id (str): The ID of the user which owns the devices
|
|
|
|
device_ids (list): The IDs of the devices to delete
|
|
|
|
Returns:
|
|
|
|
defer.Deferred
|
|
|
|
"""
|
2019-12-04 14:52:46 +01:00
|
|
|
yield self.db.simple_delete_many(
|
2019-08-01 00:37:05 +02:00
|
|
|
table="devices",
|
|
|
|
column="device_id",
|
|
|
|
iterable=device_ids,
|
|
|
|
keyvalues={"user_id": user_id, "hidden": False},
|
|
|
|
desc="delete_devices",
|
2019-03-04 19:03:29 +01:00
|
|
|
)
|
|
|
|
for device_id in device_ids:
|
|
|
|
self.device_id_exists_cache.invalidate((user_id, device_id))
|
2017-01-26 17:30:37 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
def update_device(self, user_id, device_id, new_display_name=None):
|
2019-07-31 05:09:50 +02:00
|
|
|
"""Update a device. Only updates the device if it is not marked as
|
|
|
|
hidden.
|
2019-03-04 19:03:29 +01:00
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): The ID of the user which owns the device
|
|
|
|
device_id (str): The ID of the device to update
|
|
|
|
new_display_name (str|None): new displayname for device; None
|
|
|
|
to leave unchanged
|
|
|
|
Raises:
|
|
|
|
StoreError: if the device is not found
|
2017-01-26 17:30:37 +01:00
|
|
|
Returns:
|
2019-03-04 19:03:29 +01:00
|
|
|
defer.Deferred
|
2017-01-26 17:30:37 +01:00
|
|
|
"""
|
2019-03-04 19:03:29 +01:00
|
|
|
updates = {}
|
|
|
|
if new_display_name is not None:
|
|
|
|
updates["display_name"] = new_display_name
|
|
|
|
if not updates:
|
|
|
|
return defer.succeed(None)
|
2019-12-04 14:52:46 +01:00
|
|
|
return self.db.simple_update_one(
|
2019-03-04 19:03:29 +01:00
|
|
|
table="devices",
|
2019-07-31 05:09:50 +02:00
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id, "hidden": False},
|
2019-03-04 19:03:29 +01:00
|
|
|
updatevalues=updates,
|
|
|
|
desc="update_device",
|
2017-01-26 17:06:54 +01:00
|
|
|
)
|
2017-02-27 17:22:12 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def mark_remote_user_device_list_as_unsubscribed(self, user_id):
|
|
|
|
"""Mark that we no longer track device lists for remote user.
|
|
|
|
"""
|
2019-12-04 14:52:46 +01:00
|
|
|
yield self.db.simple_delete(
|
2019-03-04 19:03:29 +01:00
|
|
|
table="device_lists_remote_extremeties",
|
2019-04-03 11:07:29 +02:00
|
|
|
keyvalues={"user_id": user_id},
|
2019-03-04 19:03:29 +01:00
|
|
|
desc="mark_remote_user_device_list_as_unsubscribed",
|
2017-02-27 17:22:12 +01:00
|
|
|
)
|
2019-03-04 19:03:29 +01:00
|
|
|
self.get_device_list_last_stream_id_for_remote.invalidate((user_id,))
|
2017-02-27 17:22:12 +01:00
|
|
|
|
2019-04-03 11:07:29 +02:00
|
|
|
def update_remote_device_list_cache_entry(
|
|
|
|
self, user_id, device_id, content, stream_id
|
|
|
|
):
|
2019-03-04 19:03:29 +01:00
|
|
|
"""Updates a single device in the cache of a remote user's devicelist.
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
Note: assumes that we are the only thread that can be updating this user's
|
|
|
|
device list.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): User to update device list for
|
|
|
|
device_id (str): ID of decivice being updated
|
|
|
|
content (dict): new data on this device
|
|
|
|
stream_id (int): the version of the device list
|
2017-01-26 17:30:37 +01:00
|
|
|
|
|
|
|
Returns:
|
2019-03-04 19:03:29 +01:00
|
|
|
Deferred[None]
|
2017-01-26 17:30:37 +01:00
|
|
|
"""
|
2019-12-04 14:52:46 +01:00
|
|
|
return self.db.runInteraction(
|
2019-03-04 19:03:29 +01:00
|
|
|
"update_remote_device_list_cache_entry",
|
|
|
|
self._update_remote_device_list_cache_entry_txn,
|
2019-04-03 11:07:29 +02:00
|
|
|
user_id,
|
|
|
|
device_id,
|
|
|
|
content,
|
|
|
|
stream_id,
|
2017-01-26 17:06:54 +01:00
|
|
|
)
|
|
|
|
|
2019-04-03 11:07:29 +02:00
|
|
|
def _update_remote_device_list_cache_entry_txn(
|
|
|
|
self, txn, user_id, device_id, content, stream_id
|
|
|
|
):
|
2019-03-04 19:03:29 +01:00
|
|
|
if content.get("deleted"):
|
2019-12-04 14:52:46 +01:00
|
|
|
self.db.simple_delete_txn(
|
2019-03-04 19:03:29 +01:00
|
|
|
txn,
|
|
|
|
table="device_lists_remote_cache",
|
2019-04-03 11:07:29 +02:00
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id},
|
2019-03-04 19:03:29 +01:00
|
|
|
)
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-04-03 11:07:29 +02:00
|
|
|
txn.call_after(self.device_id_exists_cache.invalidate, (user_id, device_id))
|
2019-03-04 19:03:29 +01:00
|
|
|
else:
|
2019-12-04 14:52:46 +01:00
|
|
|
self.db.simple_upsert_txn(
|
2019-03-04 19:03:29 +01:00
|
|
|
txn,
|
|
|
|
table="device_lists_remote_cache",
|
2019-04-03 11:07:29 +02:00
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id},
|
|
|
|
values={"content": json.dumps(content)},
|
2019-03-04 19:03:29 +01:00
|
|
|
# we don't need to lock, because we assume we are the only thread
|
|
|
|
# updating this user's devices.
|
|
|
|
lock=False,
|
|
|
|
)
|
|
|
|
|
2019-04-03 11:07:29 +02:00
|
|
|
txn.call_after(self._get_cached_user_device.invalidate, (user_id, device_id))
|
2020-01-28 15:43:21 +01:00
|
|
|
txn.call_after(self.get_cached_devices_for_user.invalidate, (user_id,))
|
2019-03-04 19:03:29 +01:00
|
|
|
txn.call_after(
|
|
|
|
self.get_device_list_last_stream_id_for_remote.invalidate, (user_id,)
|
2017-01-26 17:06:54 +01:00
|
|
|
)
|
|
|
|
|
2019-12-04 14:52:46 +01:00
|
|
|
self.db.simple_upsert_txn(
|
2019-03-04 19:03:29 +01:00
|
|
|
txn,
|
|
|
|
table="device_lists_remote_extremeties",
|
2019-04-03 11:07:29 +02:00
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
values={"stream_id": stream_id},
|
2019-03-04 19:03:29 +01:00
|
|
|
# again, we can assume we are the only thread updating this user's
|
|
|
|
# extremity.
|
|
|
|
lock=False,
|
|
|
|
)
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
def update_remote_device_list_cache(self, user_id, devices, stream_id):
|
|
|
|
"""Replace the entire cache of the remote user's devices.
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
Note: assumes that we are the only thread that can be updating this user's
|
|
|
|
device list.
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
Args:
|
|
|
|
user_id (str): User to update device list for
|
|
|
|
devices (list[dict]): list of device objects supplied over federation
|
|
|
|
stream_id (int): the version of the device list
|
2017-01-26 17:06:54 +01:00
|
|
|
|
2019-03-04 19:03:29 +01:00
|
|
|
Returns:
|
|
|
|
Deferred[None]
|
2017-01-26 17:30:37 +01:00
|
|
|
"""
|
2019-12-04 14:52:46 +01:00
|
|
|
return self.db.runInteraction(
|
2019-03-04 19:03:29 +01:00
|
|
|
"update_remote_device_list_cache",
|
|
|
|
self._update_remote_device_list_cache_txn,
|
2019-04-03 11:07:29 +02:00
|
|
|
user_id,
|
|
|
|
devices,
|
|
|
|
stream_id,
|
2017-01-25 15:27:27 +01:00
|
|
|
)
|
|
|
|
|
2019-04-03 11:07:29 +02:00
|
|
|
def _update_remote_device_list_cache_txn(self, txn, user_id, devices, stream_id):
|
2019-12-04 14:52:46 +01:00
|
|
|
self.db.simple_delete_txn(
|
2019-04-03 11:07:29 +02:00
|
|
|
txn, table="device_lists_remote_cache", keyvalues={"user_id": user_id}
|
2017-01-31 14:22:41 +01:00
|
|
|
)
|
2017-01-25 15:27:27 +01:00
|
|
|
|
2019-12-04 14:52:46 +01:00
|
|
|
self.db.simple_insert_many_txn(
|
2019-03-04 19:03:29 +01:00
|
|
|
txn,
|
|
|
|
table="device_lists_remote_cache",
|
|
|
|
values=[
|
|
|
|
{
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": content["device_id"],
|
|
|
|
"content": json.dumps(content),
|
|
|
|
}
|
|
|
|
for content in devices
|
2019-04-03 11:07:29 +02:00
|
|
|
],
|
2017-06-07 12:02:38 +02:00
|
|
|
)
|
|
|
|
|
2020-01-28 15:43:21 +01:00
|
|
|
txn.call_after(self.get_cached_devices_for_user.invalidate, (user_id,))
|
2019-03-04 19:03:29 +01:00
|
|
|
txn.call_after(self._get_cached_user_device.invalidate_many, (user_id,))
|
|
|
|
txn.call_after(
|
|
|
|
self.get_device_list_last_stream_id_for_remote.invalidate, (user_id,)
|
|
|
|
)
|
2017-01-25 17:55:21 +01:00
|
|
|
|
2019-12-04 14:52:46 +01:00
|
|
|
self.db.simple_upsert_txn(
|
2019-03-04 19:03:29 +01:00
|
|
|
txn,
|
|
|
|
table="device_lists_remote_extremeties",
|
2019-04-03 11:07:29 +02:00
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
values={"stream_id": stream_id},
|
2019-03-04 19:03:29 +01:00
|
|
|
# we don't need to lock, because we can assume we are the only thread
|
|
|
|
# updating this user's extremity.
|
|
|
|
lock=False,
|
2017-01-27 14:36:39 +01:00
|
|
|
)
|
|
|
|
|
2020-01-31 15:04:15 +01:00
|
|
|
# If we're replacing the remote user's device list cache presumably
|
|
|
|
# we've done a full resync, so we remove the entry that says we need
|
|
|
|
# to resync
|
|
|
|
self.db.simple_delete_txn(
|
|
|
|
txn, table="device_lists_remote_resync", keyvalues={"user_id": user_id},
|
|
|
|
)
|
|
|
|
|
2017-01-25 15:27:27 +01:00
|
|
|
@defer.inlineCallbacks
|
2017-01-26 17:06:54 +01:00
|
|
|
def add_device_change_to_streams(self, user_id, device_ids, hosts):
|
2017-01-26 17:30:37 +01:00
|
|
|
"""Persist that a user's devices have been updated, and which hosts
|
|
|
|
(if any) should be poked.
|
|
|
|
"""
|
2020-02-28 12:21:25 +01:00
|
|
|
if not device_ids:
|
|
|
|
return
|
|
|
|
|
|
|
|
with self._device_list_id_gen.get_next_mult(len(device_ids)) as stream_ids:
|
|
|
|
yield self.db.runInteraction(
|
|
|
|
"add_device_change_to_stream",
|
|
|
|
self._add_device_change_to_stream_txn,
|
|
|
|
user_id,
|
|
|
|
device_ids,
|
|
|
|
stream_ids,
|
|
|
|
)
|
|
|
|
|
|
|
|
if not hosts:
|
|
|
|
return stream_ids[-1]
|
|
|
|
|
|
|
|
context = get_active_span_text_map()
|
|
|
|
with self._device_list_id_gen.get_next_mult(
|
|
|
|
len(hosts) * len(device_ids)
|
|
|
|
) as stream_ids:
|
2019-12-04 14:52:46 +01:00
|
|
|
yield self.db.runInteraction(
|
2020-02-28 12:21:25 +01:00
|
|
|
"add_device_outbound_poke_to_stream",
|
|
|
|
self._add_device_outbound_poke_to_stream_txn,
|
2019-04-03 11:07:29 +02:00
|
|
|
user_id,
|
|
|
|
device_ids,
|
|
|
|
hosts,
|
2020-02-28 12:21:25 +01:00
|
|
|
stream_ids,
|
|
|
|
context,
|
2017-01-25 15:27:27 +01:00
|
|
|
)
|
|
|
|
|
2020-02-28 12:21:25 +01:00
|
|
|
return stream_ids[-1]
|
2017-01-27 16:23:48 +01:00
|
|
|
|
2020-03-18 11:13:55 +01:00
|
|
|
def _add_device_change_to_stream_txn(
|
|
|
|
self,
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
user_id: str,
|
|
|
|
device_ids: Collection[str],
|
|
|
|
stream_ids: List[str],
|
|
|
|
):
|
2017-01-25 15:27:27 +01:00
|
|
|
txn.call_after(
|
2020-02-28 12:21:25 +01:00
|
|
|
self._device_list_stream_cache.entity_has_changed, user_id, stream_ids[-1],
|
2017-01-25 15:27:27 +01:00
|
|
|
)
|
|
|
|
|
2020-03-18 11:13:55 +01:00
|
|
|
min_stream_id = stream_ids[0]
|
|
|
|
|
2017-03-01 11:21:30 +01:00
|
|
|
# Delete older entries in the table, as we really only care about
|
|
|
|
# when the latest change happened.
|
|
|
|
txn.executemany(
|
|
|
|
"""
|
|
|
|
DELETE FROM device_lists_stream
|
|
|
|
WHERE user_id = ? AND device_id = ? AND stream_id < ?
|
|
|
|
""",
|
2020-03-18 11:13:55 +01:00
|
|
|
[(user_id, device_id, min_stream_id) for device_id in device_ids],
|
2017-03-01 11:21:30 +01:00
|
|
|
)
|
|
|
|
|
2019-12-04 14:52:46 +01:00
|
|
|
self.db.simple_insert_many_txn(
|
2017-01-25 15:27:27 +01:00
|
|
|
txn,
|
|
|
|
table="device_lists_stream",
|
2017-01-26 17:06:54 +01:00
|
|
|
values=[
|
2019-04-03 11:07:29 +02:00
|
|
|
{"stream_id": stream_id, "user_id": user_id, "device_id": device_id}
|
2020-02-28 12:21:25 +01:00
|
|
|
for stream_id, device_id in zip(stream_ids, device_ids)
|
2019-04-03 11:07:29 +02:00
|
|
|
],
|
2017-01-25 15:27:27 +01:00
|
|
|
)
|
|
|
|
|
2020-02-28 12:21:25 +01:00
|
|
|
def _add_device_outbound_poke_to_stream_txn(
|
|
|
|
self, txn, user_id, device_ids, hosts, stream_ids, context,
|
|
|
|
):
|
|
|
|
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()
|
|
|
|
next_stream_id = iter(stream_ids)
|
2019-08-22 19:21:10 +02:00
|
|
|
|
2019-12-04 14:52:46 +01:00
|
|
|
self.db.simple_insert_many_txn(
|
2017-01-25 15:27:27 +01:00
|
|
|
txn,
|
|
|
|
table="device_lists_outbound_pokes",
|
|
|
|
values=[
|
|
|
|
{
|
|
|
|
"destination": destination,
|
2020-02-28 12:21:25 +01:00
|
|
|
"stream_id": next(next_stream_id),
|
2017-01-25 15:27:27 +01:00
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
"sent": False,
|
2017-01-27 16:23:48 +01:00
|
|
|
"ts": now,
|
2019-08-22 19:21:10 +02:00
|
|
|
"opentracing_context": json.dumps(context)
|
|
|
|
if whitelisted_homeserver(destination)
|
2019-09-05 16:06:13 +02:00
|
|
|
else "{}",
|
2017-01-25 15:27:27 +01:00
|
|
|
}
|
|
|
|
for destination in hosts
|
2017-01-26 17:06:54 +01:00
|
|
|
for device_id in device_ids
|
2019-04-03 11:07:29 +02:00
|
|
|
],
|
2017-01-25 15:27:27 +01:00
|
|
|
)
|
|
|
|
|
2020-03-30 20:06:52 +02:00
|
|
|
def _prune_old_outbound_device_pokes(self, prune_age=24 * 60 * 60 * 1000):
|
2017-06-07 12:16:56 +02:00
|
|
|
"""Delete old entries out of the device_lists_outbound_pokes to ensure
|
2020-03-30 20:06:52 +02:00
|
|
|
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.
|
2017-06-07 12:16:56 +02:00
|
|
|
"""
|
2020-03-30 20:06:52 +02:00
|
|
|
yesterday = self._clock.time_msec() - prune_age
|
2017-06-07 12:16:56 +02:00
|
|
|
|
|
|
|
def _prune_txn(txn):
|
2020-03-30 20:06:52 +02: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.
|
2017-06-07 12:16:56 +02:00
|
|
|
select_sql = """
|
2020-03-30 20:06:52 +02:00
|
|
|
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
|
2017-06-07 12:16:56 +02:00
|
|
|
GROUP BY destination, user_id
|
|
|
|
HAVING min(ts) < ? AND count(*) > 1
|
|
|
|
"""
|
|
|
|
|
|
|
|
txn.execute(select_sql, (yesterday,))
|
|
|
|
rows = txn.fetchall()
|
|
|
|
|
|
|
|
if not rows:
|
|
|
|
return
|
|
|
|
|
2020-03-30 20:06:52 +02:00
|
|
|
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.
|
2017-06-07 12:16:56 +02:00
|
|
|
delete_sql = """
|
|
|
|
DELETE FROM device_lists_outbound_pokes
|
2020-03-30 20:06:52 +02:00
|
|
|
WHERE destination = ? AND user_id = ? AND (
|
|
|
|
stream_id < ? OR
|
|
|
|
(stream_id = ? AND device_id != ?)
|
|
|
|
)
|
2017-06-07 12:16:56 +02:00
|
|
|
"""
|
2020-03-30 20:06:52 +02:00
|
|
|
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
|
2017-06-07 12:16:56 +02:00
|
|
|
|
2017-06-07 12:20:47 +02:00
|
|
|
# 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 = ?
|
|
|
|
"""
|
|
|
|
txn.executemany(sql, ((row[0], row[1]) for row in rows))
|
|
|
|
|
2020-03-30 20:06:52 +02:00
|
|
|
logger.info("Pruned %d device list outbound pokes", count)
|
2017-06-07 12:16:56 +02:00
|
|
|
|
2018-07-26 12:44:26 +02:00
|
|
|
return run_as_background_process(
|
2018-07-25 10:41:12 +02:00
|
|
|
"prune_old_outbound_device_pokes",
|
2019-12-04 14:52:46 +01:00
|
|
|
self.db.runInteraction,
|
2018-07-25 10:41:12 +02:00
|
|
|
"_prune_old_outbound_device_pokes",
|
|
|
|
_prune_txn,
|
2017-06-07 12:16:56 +02:00
|
|
|
)
|