2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
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
|
|
|
|
|
2014-08-26 13:49:51 -04:00
|
|
|
from twisted.internet import defer
|
2014-08-12 22:14:34 -04:00
|
|
|
|
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
|
2016-07-26 11:46:53 -04:00
|
|
|
from synapse.api.errors import LimitExceededError
|
|
|
|
from synapse.types import UserID
|
2014-11-05 06:07:54 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
class BaseHandler(object):
|
2015-11-13 05:31:15 -05:00
|
|
|
"""
|
|
|
|
Common base class for the event handlers.
|
|
|
|
|
2016-04-01 11:08:59 -04:00
|
|
|
Attributes:
|
2016-07-18 04:47:33 -04:00
|
|
|
store (synapse.storage.DataStore):
|
2016-04-01 11:08:59 -04:00
|
|
|
state_handler (synapse.state.StateHandler):
|
2015-11-13 05:31:15 -05:00
|
|
|
"""
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2016-07-19 05:21:42 -04:00
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
hs (synapse.server.HomeServer):
|
|
|
|
"""
|
2014-08-12 10:10:52 -04:00
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.notifier = hs.get_notifier()
|
|
|
|
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.ratelimiter = hs.get_ratelimiter()
|
|
|
|
self.clock = hs.get_clock()
|
2014-08-12 10:10:52 -04:00
|
|
|
self.hs = hs
|
2014-08-26 13:49:51 -04:00
|
|
|
|
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()
|
|
|
|
|
2017-05-10 06:05:43 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def ratelimit(self, requester, update=True):
|
|
|
|
"""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.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
LimitExceededError if the request should be ratelimited
|
|
|
|
"""
|
2014-09-02 12:57:04 -04:00
|
|
|
time_now = self.clock.time()
|
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
|
|
|
|
|
2016-10-20 07:04:54 -04:00
|
|
|
# Disable rate limiting of users belonging to any AS that is configured
|
|
|
|
# not to be rate limited in its registration file (rate_limited: true|false).
|
|
|
|
if requester.app_service and not requester.app_service.is_rate_limited():
|
2016-10-18 12:04:09 -04:00
|
|
|
return
|
|
|
|
|
2017-05-10 06:05:43 -04:00
|
|
|
# Check if there is a per user override in the DB.
|
|
|
|
override = yield self.store.get_ratelimit_for_user(user_id)
|
|
|
|
if override:
|
|
|
|
# If overriden with a null Hz then ratelimiting has been entirely
|
|
|
|
# disabled for the user
|
|
|
|
if not override.messages_per_second:
|
|
|
|
return
|
|
|
|
|
|
|
|
messages_per_second = override.messages_per_second
|
|
|
|
burst_count = override.burst_count
|
|
|
|
else:
|
2019-05-15 13:06:04 -04:00
|
|
|
messages_per_second = self.hs.config.rc_message.per_second
|
|
|
|
burst_count = self.hs.config.rc_message.burst_count
|
2017-05-10 06:05:43 -04:00
|
|
|
|
2019-03-05 09:25:33 -05:00
|
|
|
allowed, time_allowed = self.ratelimiter.can_do_action(
|
2016-10-04 15:53:35 -04:00
|
|
|
user_id, time_now,
|
2019-03-05 09:25:33 -05:00
|
|
|
rate_hz=messages_per_second,
|
2017-05-10 06:05:43 -04:00
|
|
|
burst_count=burst_count,
|
|
|
|
update=update,
|
2014-09-02 12:57:04 -04:00
|
|
|
)
|
|
|
|
if not allowed:
|
2014-09-03 03:58:48 -04:00
|
|
|
raise LimitExceededError(
|
2016-02-02 12:18:50 -05:00
|
|
|
retry_after_ms=int(1000 * (time_allowed - time_now)),
|
2014-09-02 12:57:04 -04:00
|
|
|
)
|
|
|
|
|
2015-11-10 11:57:13 -05:00
|
|
|
@defer.inlineCallbacks
|
2016-08-25 12:32:22 -04:00
|
|
|
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:
|
2018-07-23 08:00:22 -04:00
|
|
|
current_state_ids = yield context.get_current_state_ids(self.store)
|
2016-08-25 12:32:22 -04:00
|
|
|
current_state = yield 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
|
|
|
)
|
|
|
|
else:
|
2017-01-20 10:40:04 -05:00
|
|
|
current_state = yield self.state_handler.get_current_state(
|
|
|
|
event.room_id
|
|
|
|
)
|
|
|
|
|
2018-05-31 05:03:47 -04:00
|
|
|
current_state = list(current_state.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)
|
2015-11-10 11:57:13 -05:00
|
|
|
yield self.kick_guest_users(current_state)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def kick_guest_users(self, current_state):
|
|
|
|
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,
|
|
|
|
Membership.INVITE
|
|
|
|
}:
|
|
|
|
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.
|
2016-07-26 11:46:53 -04:00
|
|
|
requester = synapse.types.create_requester(
|
|
|
|
target_user, is_guest=True)
|
2018-03-01 05:54:37 -05:00
|
|
|
handler = self.hs.get_room_member_handler()
|
2016-02-15 11:40:22 -05:00
|
|
|
yield handler.update_membership(
|
|
|
|
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,))
|