diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-01-16 23:14:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-16 23:14:11 +0000 |
commit | 05e129664931c114fcaae8bebe0a26685dcd9c6d (patch) | |
tree | a86e36fa1dfb4d04f650c2cb8f3196e90e8fd17b /synapse/handlers/device.py | |
parent | Merge pull request #4399 from andrewshadura/update-python-deps (diff) | |
download | synapse-05e129664931c114fcaae8bebe0a26685dcd9c6d.tar.xz |
don't store more remote device lists if they have more than 1K devices (#4397)
Diffstat (limited to 'synapse/handlers/device.py')
-rw-r--r-- | synapse/handlers/device.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/synapse/handlers/device.py b/synapse/handlers/device.py index 9e017116a9..8955cde4ed 100644 --- a/synapse/handlers/device.py +++ b/synapse/handlers/device.py @@ -532,6 +532,25 @@ class DeviceListEduUpdater(object): stream_id = result["stream_id"] devices = result["devices"] + + # If the remote server has more than ~1000 devices for this user + # we assume that something is going horribly wrong (e.g. a bot + # that logs in and creates a new device every time it tries to + # send a message). Maintaining lots of devices per user in the + # cache can cause serious performance issues as if this request + # takes more than 60s to complete, internal replication from the + # inbound federation worker to the synapse master may time out + # causing the inbound federation to fail and causing the remote + # server to retry, causing a DoS. So in this scenario we give + # up on storing the total list of devices and only handle the + # delta instead. + if len(devices) > 1000: + logger.warn( + "Ignoring device list snapshot for %s as it has >1K devs (%d)", + user_id, len(devices) + ) + devices = [] + yield self.store.update_remote_device_list_cache( user_id, devices, stream_id, ) |