Skip to content
Snippets Groups Projects
Unverified Commit 29ffd680 authored by JohannesKleine's avatar JohannesKleine Committed by GitHub
Browse files

Stop synapse from saving messages in device_inbox for hidden devices. (#10097)

parent e320f5db
No related branches found
No related tags found
No related merge requests found
Fix a long-standing bug which allowed hidden devices to receive to-device messages, resulting in unnecessary database bloat.
...@@ -489,10 +489,12 @@ class DeviceInboxWorkerStore(SQLBaseStore): ...@@ -489,10 +489,12 @@ class DeviceInboxWorkerStore(SQLBaseStore):
devices = list(messages_by_device.keys()) devices = list(messages_by_device.keys())
if len(devices) == 1 and devices[0] == "*": if len(devices) == 1 and devices[0] == "*":
# Handle wildcard device_ids. # Handle wildcard device_ids.
# We exclude hidden devices (such as cross-signing keys) here as they are
# not expected to receive to-device messages.
devices = self.db_pool.simple_select_onecol_txn( devices = self.db_pool.simple_select_onecol_txn(
txn, txn,
table="devices", table="devices",
keyvalues={"user_id": user_id}, keyvalues={"user_id": user_id, "hidden": False},
retcol="device_id", retcol="device_id",
) )
...@@ -505,10 +507,12 @@ class DeviceInboxWorkerStore(SQLBaseStore): ...@@ -505,10 +507,12 @@ class DeviceInboxWorkerStore(SQLBaseStore):
if not devices: if not devices:
continue continue
# We exclude hidden devices (such as cross-signing keys) here as they are
# not expected to receive to-device messages.
rows = self.db_pool.simple_select_many_txn( rows = self.db_pool.simple_select_many_txn(
txn, txn,
table="devices", table="devices",
keyvalues={"user_id": user_id}, keyvalues={"user_id": user_id, "hidden": False},
column="device_id", column="device_id",
iterable=devices, iterable=devices,
retcols=("device_id",), retcols=("device_id",),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment