2016-01-05 13:12:37 -05:00
|
|
|
# Copyright 2014 - 2016 OpenMarket Ltd
|
2014-08-12 10:10:52 -04: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.
|
|
|
|
|
2016-07-26 11:46:53 -04:00
|
|
|
import logging
|
2020-10-21 06:44:31 -04:00
|
|
|
from typing import TYPE_CHECKING, Optional
|
2016-07-26 11:46:53 -04:00
|
|
|
|
2020-06-05 05:47:20 -04:00
|
|
|
from synapse.api.ratelimiting import Ratelimiter
|
2014-11-05 06:07:54 -05:00
|
|
|
|
2020-10-21 06:44:31 -04:00
|
|
|
if TYPE_CHECKING:
|
2021-03-23 07:12:48 -04:00
|
|
|
from synapse.server import HomeServer
|
2020-10-21 06:44:31 -04:00
|
|
|
|
2014-11-05 06:07:54 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class BaseHandler:
|
2015-11-13 05:31:15 -05:00
|
|
|
"""
|
|
|
|
Common base class for the event handlers.
|
2020-12-08 09:03:38 -05:00
|
|
|
|
|
|
|
Deprecated: new code should not use this. Instead, Handler classes should define the
|
|
|
|
fields they actually need. The utility methods should either be factored out to
|
|
|
|
standalone helper functions, or to different Handler classes.
|
2015-11-13 05:31:15 -05:00
|
|
|
"""
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-10-21 06:44:31 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2021-07-16 13:22:36 -04:00
|
|
|
self.store = hs.get_datastore()
|
2014-08-12 10:10:52 -04:00
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.notifier = hs.get_notifier()
|
2021-07-16 13:22:36 -04:00
|
|
|
self.state_handler = hs.get_state_handler()
|
2014-08-21 09:38:22 -04:00
|
|
|
self.distributor = hs.get_distributor()
|
2014-09-02 12:57:04 -04:00
|
|
|
self.clock = hs.get_clock()
|
2014-08-12 10:10:52 -04:00
|
|
|
self.hs = hs
|
2014-08-26 13:49:51 -04:00
|
|
|
|
2020-06-05 05:47:20 -04:00
|
|
|
# The rate_hz and burst_count are overridden on a per-user basis
|
|
|
|
self.request_ratelimiter = Ratelimiter(
|
2021-03-30 07:06:09 -04:00
|
|
|
store=self.store, clock=self.clock, rate_hz=0, burst_count=0
|
2020-06-05 05:47:20 -04:00
|
|
|
)
|
2021-09-13 13:07:12 -04:00
|
|
|
self._rc_message = self.hs.config.ratelimiting.rc_message
|
2020-06-05 05:47:20 -04:00
|
|
|
|
|
|
|
# Check whether ratelimiting room admin message redaction is enabled
|
|
|
|
# by the presence of rate limits in the config
|
2021-09-13 13:07:12 -04:00
|
|
|
if self.hs.config.ratelimiting.rc_admin_redaction:
|
2021-07-16 13:22:36 -04:00
|
|
|
self.admin_redaction_ratelimiter: Optional[Ratelimiter] = Ratelimiter(
|
2021-03-30 07:06:09 -04:00
|
|
|
store=self.store,
|
2020-06-05 05:47:20 -04:00
|
|
|
clock=self.clock,
|
2021-09-13 13:07:12 -04:00
|
|
|
rate_hz=self.hs.config.ratelimiting.rc_admin_redaction.per_second,
|
|
|
|
burst_count=self.hs.config.ratelimiting.rc_admin_redaction.burst_count,
|
2021-07-16 13:22:36 -04:00
|
|
|
)
|
2020-06-05 05:47:20 -04:00
|
|
|
else:
|
|
|
|
self.admin_redaction_ratelimiter = None
|
|
|
|
|
2014-11-03 06:33:28 -05:00
|
|
|
self.server_name = hs.hostname
|
|
|
|
|
2014-12-04 10:50:01 -05:00
|
|
|
self.event_builder_factory = hs.get_event_builder_factory()
|
|
|
|
|
2020-07-17 07:08:30 -04:00
|
|
|
async def ratelimit(self, requester, update=True, is_admin_redaction=False):
|
2017-05-10 06:05:43 -04:00
|
|
|
"""Ratelimits requests.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
requester (Requester)
|
|
|
|
update (bool): Whether to record that a request is being processed.
|
|
|
|
Set to False when doing multiple checks for one request (e.g.
|
|
|
|
to check up front if we would reject the request), and set to
|
|
|
|
True for the last call for a given request.
|
2019-09-11 05:46:38 -04:00
|
|
|
is_admin_redaction (bool): Whether this is a room admin/moderator
|
|
|
|
redacting an event. If so then we may apply different
|
|
|
|
ratelimits depending on config.
|
2017-05-10 06:05:43 -04:00
|
|
|
|
|
|
|
Raises:
|
|
|
|
LimitExceededError if the request should be ratelimited
|
|
|
|
"""
|
2016-10-04 15:53:35 -04:00
|
|
|
user_id = requester.user.to_string()
|
|
|
|
|
2016-10-18 12:04:09 -04:00
|
|
|
# The AS user itself is never rate limited.
|
2016-10-04 15:53:35 -04:00
|
|
|
app_service = self.store.get_app_service_by_user_id(user_id)
|
|
|
|
if app_service is not None:
|
|
|
|
return # do not ratelimit app service senders
|
|
|
|
|
2020-06-05 05:47:20 -04:00
|
|
|
messages_per_second = self._rc_message.per_second
|
|
|
|
burst_count = self._rc_message.burst_count
|
|
|
|
|
2017-05-10 06:05:43 -04:00
|
|
|
# Check if there is a per user override in the DB.
|
2020-07-17 07:08:30 -04:00
|
|
|
override = await self.store.get_ratelimit_for_user(user_id)
|
2017-05-10 06:05:43 -04:00
|
|
|
if override:
|
2020-06-05 05:47:20 -04:00
|
|
|
# If overridden with a null Hz then ratelimiting has been entirely
|
2017-05-10 06:05:43 -04:00
|
|
|
# disabled for the user
|
|
|
|
if not override.messages_per_second:
|
|
|
|
return
|
|
|
|
|
|
|
|
messages_per_second = override.messages_per_second
|
|
|
|
burst_count = override.burst_count
|
2020-06-05 05:47:20 -04:00
|
|
|
|
|
|
|
if is_admin_redaction and self.admin_redaction_ratelimiter:
|
|
|
|
# If we have separate config for admin redactions, use a separate
|
|
|
|
# ratelimiter as to not have user_ids clash
|
2021-03-30 07:06:09 -04:00
|
|
|
await self.admin_redaction_ratelimiter.ratelimit(requester, update=update)
|
2017-05-10 06:05:43 -04:00
|
|
|
else:
|
2020-06-05 05:47:20 -04:00
|
|
|
# Override rate and burst count per-user
|
2021-03-30 07:06:09 -04:00
|
|
|
await self.request_ratelimiter.ratelimit(
|
|
|
|
requester,
|
2019-09-11 05:46:38 -04:00
|
|
|
rate_hz=messages_per_second,
|
|
|
|
burst_count=burst_count,
|
|
|
|
update=update,
|
|
|
|
)
|