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-07-16 08:52:29 -04:00
|
|
|
import synapse.state
|
|
|
|
import synapse.storage
|
2016-07-26 11:46:53 -04:00
|
|
|
import synapse.types
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.constants import EventTypes, Membership
|
2020-06-05 05:47:20 -04:00
|
|
|
from synapse.api.ratelimiting import Ratelimiter
|
2016-07-26 11:46:53 -04:00
|
|
|
from synapse.types import UserID
|
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
|
|
|
)
|
|
|
|
self._rc_message = self.hs.config.rc_message
|
|
|
|
|
|
|
|
# Check whether ratelimiting room admin message redaction is enabled
|
|
|
|
# by the presence of rate limits in the config
|
|
|
|
if self.hs.config.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,
|
|
|
|
rate_hz=self.hs.config.rc_admin_redaction.per_second,
|
|
|
|
burst_count=self.hs.config.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,
|
|
|
|
)
|
2014-09-02 12:57:04 -04:00
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
async def maybe_kick_guest_users(self, event, context=None):
|
2015-11-10 11:57:13 -05:00
|
|
|
# Technically this function invalidates current_state by changing it.
|
|
|
|
# Hopefully this isn't that important to the caller.
|
|
|
|
if event.type == EventTypes.GuestAccess:
|
|
|
|
guest_access = event.content.get("guest_access", "forbidden")
|
|
|
|
if guest_access != "can_join":
|
2016-08-25 12:32:22 -04:00
|
|
|
if context:
|
2020-05-01 10:15:36 -04:00
|
|
|
current_state_ids = await context.get_current_state_ids()
|
2020-10-21 06:44:31 -04:00
|
|
|
current_state_dict = await self.store.get_events(
|
2018-07-23 08:00:22 -04:00
|
|
|
list(current_state_ids.values())
|
2016-08-25 12:32:22 -04:00
|
|
|
)
|
2020-10-21 06:44:31 -04:00
|
|
|
current_state = list(current_state_dict.values())
|
2016-08-25 12:32:22 -04:00
|
|
|
else:
|
2020-10-21 06:44:31 -04:00
|
|
|
current_state_map = await self.state_handler.get_current_state(
|
2017-01-20 10:40:04 -05:00
|
|
|
event.room_id
|
|
|
|
)
|
2020-10-21 06:44:31 -04:00
|
|
|
current_state = list(current_state_map.values())
|
2017-01-20 10:40:04 -05:00
|
|
|
|
2016-08-25 12:32:22 -04:00
|
|
|
logger.info("maybe_kick_guest_users %r", current_state)
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.kick_guest_users(current_state)
|
2015-11-10 11:57:13 -05:00
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
async def kick_guest_users(self, current_state):
|
2015-11-10 11:57:13 -05:00
|
|
|
for member_event in current_state:
|
|
|
|
try:
|
|
|
|
if member_event.type != EventTypes.Member:
|
|
|
|
continue
|
|
|
|
|
2016-02-15 11:40:22 -05:00
|
|
|
target_user = UserID.from_string(member_event.state_key)
|
|
|
|
if not self.hs.is_mine(target_user):
|
2015-11-10 11:57:13 -05:00
|
|
|
continue
|
|
|
|
|
|
|
|
if member_event.content["membership"] not in {
|
|
|
|
Membership.JOIN,
|
2019-06-20 05:32:02 -04:00
|
|
|
Membership.INVITE,
|
2015-11-10 11:57:13 -05:00
|
|
|
}:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if (
|
|
|
|
"kind" not in member_event.content
|
|
|
|
or member_event.content["kind"] != "guest"
|
|
|
|
):
|
|
|
|
continue
|
|
|
|
|
|
|
|
# We make the user choose to leave, rather than have the
|
|
|
|
# event-sender kick them. This is partially because we don't
|
|
|
|
# need to worry about power levels, and partially because guest
|
|
|
|
# users are a concept which doesn't hugely work over federation,
|
|
|
|
# and having homeservers have their own users leave keeps more
|
|
|
|
# of that decision-making and control local to the guest-having
|
|
|
|
# homeserver.
|
2020-11-17 05:51:25 -05:00
|
|
|
requester = synapse.types.create_requester(
|
|
|
|
target_user, is_guest=True, authenticated_entity=self.server_name
|
|
|
|
)
|
2018-03-01 05:54:37 -05:00
|
|
|
handler = self.hs.get_room_member_handler()
|
2020-05-01 10:15:36 -04:00
|
|
|
await handler.update_membership(
|
2016-02-15 11:40:22 -05:00
|
|
|
requester,
|
|
|
|
target_user,
|
|
|
|
member_event.room_id,
|
|
|
|
"leave",
|
2015-11-10 11:57:13 -05:00
|
|
|
ratelimit=False,
|
2019-03-20 13:39:29 -04:00
|
|
|
require_consent=False,
|
2015-11-10 11:57:13 -05:00
|
|
|
)
|
|
|
|
except Exception as e:
|
2019-02-18 09:08:13 -05:00
|
|
|
logger.exception("Error kicking guest user: %s" % (e,))
|