2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-05 13:01:18 -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.
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2016-07-26 11:46:53 -04:00
|
|
|
import logging
|
|
|
|
|
2018-05-31 05:03:47 -04:00
|
|
|
from six import itervalues
|
|
|
|
|
2016-07-26 11:46:53 -04:00
|
|
|
import pymacaroons
|
2018-06-28 15:31:53 -04:00
|
|
|
from netaddr import IPAddress
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2019-08-16 11:13:25 -04:00
|
|
|
import synapse.logging.opentracing as opentracing
|
2016-07-26 11:46:53 -04:00
|
|
|
import synapse.types
|
2017-01-13 10:07:32 -05:00
|
|
|
from synapse import event_auth
|
2019-10-24 06:48:46 -04:00
|
|
|
from synapse.api.constants import (
|
|
|
|
EventTypes,
|
|
|
|
JoinRules,
|
|
|
|
LimitBlockingTypes,
|
|
|
|
Membership,
|
|
|
|
UserTypes,
|
|
|
|
)
|
2019-07-11 06:06:23 -04:00
|
|
|
from synapse.api.errors import (
|
|
|
|
AuthError,
|
|
|
|
Codes,
|
|
|
|
InvalidClientTokenError,
|
|
|
|
MissingClientTokenError,
|
|
|
|
ResourceLimitError,
|
|
|
|
)
|
2018-08-31 12:11:11 -04:00
|
|
|
from synapse.config.server import is_threepid_reserved
|
2017-01-13 10:07:32 -05:00
|
|
|
from synapse.types import UserID
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.util.caches import CACHE_SIZE_FACTOR, register_cache
|
2017-06-29 09:50:18 -04:00
|
|
|
from synapse.util.caches.lrucache import LruCache
|
2016-04-13 06:15:59 -04:00
|
|
|
from synapse.util.metrics import Measure
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2015-03-15 20:18:08 -04:00
|
|
|
AuthEventTypes = (
|
2019-06-20 05:32:02 -04:00
|
|
|
EventTypes.Create,
|
|
|
|
EventTypes.Member,
|
|
|
|
EventTypes.PowerLevels,
|
|
|
|
EventTypes.JoinRules,
|
|
|
|
EventTypes.RoomHistoryVisibility,
|
2015-10-01 12:49:52 -04:00
|
|
|
EventTypes.ThirdPartyInvite,
|
2015-03-15 20:18:08 -04:00
|
|
|
)
|
|
|
|
|
2016-11-25 10:25:30 -05:00
|
|
|
# guests always get this device id.
|
|
|
|
GUEST_DEVICE_ID = "guest_device"
|
|
|
|
|
2015-03-15 20:18:08 -04:00
|
|
|
|
2017-06-29 09:50:18 -04:00
|
|
|
class _InvalidMacaroonException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
class Auth(object):
|
|
|
|
"""
|
|
|
|
FIXME: This class contains a mix of functions for authenticating users
|
|
|
|
of our client-server API and authenticating events added to room graphs.
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
def __init__(self, hs):
|
|
|
|
self.hs = hs
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.state = hs.get_state_handler()
|
|
|
|
|
2017-06-29 09:50:18 -04:00
|
|
|
self.token_cache = LruCache(CACHE_SIZE_FACTOR * 10000)
|
2018-05-21 20:47:37 -04:00
|
|
|
register_cache("cache", "token_cache", self.token_cache)
|
2017-06-29 09:50:18 -04:00
|
|
|
|
2019-04-08 12:10:55 -04:00
|
|
|
self._account_validity = hs.config.account_validity
|
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
@defer.inlineCallbacks
|
2019-01-25 13:31:41 -05:00
|
|
|
def check_from_context(self, room_version, event, context, do_sig_check=True):
|
2018-07-23 08:00:22 -04:00
|
|
|
prev_state_ids = yield context.get_prev_state_ids(self.store)
|
2017-01-10 13:16:54 -05:00
|
|
|
auth_events_ids = yield self.compute_auth_events(
|
2019-06-20 05:32:02 -04:00
|
|
|
event, prev_state_ids, for_verification=True
|
2017-01-10 13:16:54 -05:00
|
|
|
)
|
|
|
|
auth_events = yield self.store.get_events(auth_events_ids)
|
2019-06-20 05:32:02 -04:00
|
|
|
auth_events = {(e.type, e.state_key): e for e in itervalues(auth_events)}
|
2019-10-18 13:43:36 -04:00
|
|
|
event_auth.check(
|
2019-06-20 05:32:02 -04:00
|
|
|
room_version, event, auth_events=auth_events, do_sig_check=do_sig_check
|
2019-01-25 13:31:41 -05:00
|
|
|
)
|
2017-01-10 13:16:54 -05:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def check_joined_room(self, room_id, user_id, current_state=None):
|
|
|
|
"""Check if the user is currently joined in the room
|
|
|
|
Args:
|
|
|
|
room_id(str): The room to check.
|
|
|
|
user_id(str): The user to check.
|
|
|
|
current_state(dict): Optional map of the current state of the room.
|
|
|
|
If provided then that map is used to check whether they are a
|
|
|
|
member of the room. Otherwise the current membership is
|
|
|
|
loaded from the database.
|
|
|
|
Raises:
|
|
|
|
AuthError if the user is not in the room.
|
|
|
|
Returns:
|
|
|
|
A deferred membership event for the user if the user is in
|
|
|
|
the room.
|
|
|
|
"""
|
|
|
|
if current_state:
|
2019-06-20 05:32:02 -04:00
|
|
|
member = current_state.get((EventTypes.Member, user_id), None)
|
2017-01-10 13:16:54 -05:00
|
|
|
else:
|
|
|
|
member = yield self.state.get_current_state(
|
2019-06-20 05:32:02 -04:00
|
|
|
room_id=room_id, event_type=EventTypes.Member, state_key=user_id
|
2017-01-10 13:16:54 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
self._check_joined_room(member, user_id, room_id)
|
2019-07-23 09:00:55 -04:00
|
|
|
return member
|
2015-11-05 11:43:19 -05:00
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def check_user_was_in_room(self, room_id, user_id):
|
|
|
|
"""Check if the user was in the room at some point.
|
|
|
|
Args:
|
|
|
|
room_id(str): The room to check.
|
|
|
|
user_id(str): The user to check.
|
|
|
|
Raises:
|
|
|
|
AuthError if the user was never in the room.
|
|
|
|
Returns:
|
|
|
|
A deferred membership event for the user if the user was in the
|
|
|
|
room. This will be the join event if they are currently joined to
|
|
|
|
the room. This will be the leave event if they have left the room.
|
|
|
|
"""
|
|
|
|
member = yield self.state.get_current_state(
|
2019-06-20 05:32:02 -04:00
|
|
|
room_id=room_id, event_type=EventTypes.Member, state_key=user_id
|
2017-01-10 13:16:54 -05:00
|
|
|
)
|
|
|
|
membership = member.membership if member else None
|
2015-10-01 12:49:52 -04:00
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
if membership not in (Membership.JOIN, Membership.LEAVE):
|
2019-06-20 05:32:02 -04:00
|
|
|
raise AuthError(403, "User %s not in room %s" % (user_id, room_id))
|
2016-02-23 10:11:25 -05:00
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
if membership == Membership.LEAVE:
|
|
|
|
forgot = yield self.store.did_forget(user_id, room_id)
|
|
|
|
if forgot:
|
2019-06-20 05:32:02 -04:00
|
|
|
raise AuthError(403, "User %s not in room %s" % (user_id, room_id))
|
2016-02-23 10:11:25 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return member
|
2016-02-23 10:11:25 -05:00
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def check_host_in_room(self, room_id, host):
|
|
|
|
with Measure(self.clock, "check_host_in_room"):
|
2017-06-09 05:52:26 -04:00
|
|
|
latest_event_ids = yield self.store.is_host_joined(room_id, host)
|
2019-07-23 09:00:55 -04:00
|
|
|
return latest_event_ids
|
2015-04-22 09:20:04 -04:00
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
def _check_joined_room(self, member, user_id, room_id):
|
|
|
|
if not member or member.membership != Membership.JOIN:
|
2019-06-20 05:32:02 -04:00
|
|
|
raise AuthError(
|
|
|
|
403, "User %s not in room %s (%s)" % (user_id, room_id, repr(member))
|
|
|
|
)
|
2014-10-15 11:06:59 -04:00
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
def can_federate(self, event, auth_events):
|
|
|
|
creation_event = auth_events.get((EventTypes.Create, ""))
|
2015-04-21 15:53:23 -04:00
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
return creation_event.content.get("m.federate", True) is True
|
2015-04-21 15:53:23 -04:00
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
def get_public_keys(self, invite_event):
|
2017-01-13 10:07:32 -05:00
|
|
|
return event_auth.get_public_keys(invite_event)
|
2014-10-15 11:06:59 -04:00
|
|
|
|
2014-09-26 11:36:24 -04:00
|
|
|
@defer.inlineCallbacks
|
2019-06-05 11:35:05 -04:00
|
|
|
def get_user_by_req(
|
2019-06-20 05:32:02 -04:00
|
|
|
self, request, allow_guest=False, rights="access", allow_expired=False
|
2019-06-05 11:35:05 -04:00
|
|
|
):
|
2014-08-12 10:10:52 -04:00
|
|
|
""" Get a registered user's ID.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
request - An HTTP request with an access_token query parameter.
|
2019-06-10 06:34:45 -04:00
|
|
|
allow_expired - Whether to allow the request through even if the account is
|
2019-06-10 06:35:54 -04:00
|
|
|
expired. If true, Synapse will still require an access token to be
|
2019-06-10 06:34:45 -04:00
|
|
|
provided but won't check if the account it belongs to has expired. This
|
|
|
|
works thanks to /login delivering access tokens regardless of accounts'
|
|
|
|
expiration.
|
2014-08-12 10:10:52 -04:00
|
|
|
Returns:
|
2016-07-26 11:46:53 -04:00
|
|
|
defer.Deferred: resolves to a ``synapse.types.Requester`` object
|
2014-08-12 10:10:52 -04:00
|
|
|
Raises:
|
2019-07-11 06:06:23 -04:00
|
|
|
InvalidClientCredentialsError if no user by that token exists or the token
|
|
|
|
is invalid.
|
|
|
|
AuthError if access is denied for the user in the access token
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
|
|
|
try:
|
2018-12-04 06:44:41 -05:00
|
|
|
ip_addr = self.hs.get_ip_from_request(request)
|
|
|
|
user_agent = request.requestHeaders.getRawHeaders(
|
2019-06-20 05:32:02 -04:00
|
|
|
b"User-Agent", default=[b""]
|
|
|
|
)[0].decode("ascii", "surrogateescape")
|
2018-12-04 06:44:41 -05:00
|
|
|
|
2019-07-11 06:06:23 -04:00
|
|
|
access_token = self.get_access_token_from_request(request)
|
2018-12-04 06:44:41 -05:00
|
|
|
|
2016-10-20 07:04:54 -04:00
|
|
|
user_id, app_service = yield self._get_appservice_user_id(request)
|
2016-01-18 11:32:33 -05:00
|
|
|
if user_id:
|
2015-08-18 10:16:28 -04:00
|
|
|
request.authenticated_entity = user_id
|
2019-08-16 11:13:25 -04:00
|
|
|
opentracing.set_tag("authenticated_entity", user_id)
|
2019-09-25 06:59:00 -04:00
|
|
|
opentracing.set_tag("appservice_id", app_service.id)
|
2018-12-04 06:44:41 -05:00
|
|
|
|
|
|
|
if ip_addr and self.hs.config.track_appservice_user_ips:
|
|
|
|
yield self.store.insert_client_ip(
|
|
|
|
user_id=user_id,
|
|
|
|
access_token=access_token,
|
|
|
|
ip=ip_addr,
|
|
|
|
user_agent=user_agent,
|
|
|
|
device_id="dummy-device", # stubbed
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return synapse.types.create_requester(user_id, app_service=app_service)
|
2015-02-05 10:00:33 -05:00
|
|
|
|
2016-06-01 12:40:52 -04:00
|
|
|
user_info = yield self.get_user_by_access_token(access_token, rights)
|
2014-09-29 09:59:52 -04:00
|
|
|
user = user_info["user"]
|
2015-01-28 11:58:23 -05:00
|
|
|
token_id = user_info["token_id"]
|
2015-11-04 12:29:07 -05:00
|
|
|
is_guest = user_info["is_guest"]
|
2014-09-26 11:36:24 -04:00
|
|
|
|
2019-04-08 12:10:55 -04:00
|
|
|
# Deny the request if the user account has expired.
|
2019-06-05 11:35:05 -04:00
|
|
|
if self._account_validity.enabled and not allow_expired:
|
2019-04-10 12:58:47 -04:00
|
|
|
user_id = user.to_string()
|
|
|
|
expiration_ts = yield self.store.get_expiration_ts_for_user(user_id)
|
2019-06-20 05:32:02 -04:00
|
|
|
if (
|
|
|
|
expiration_ts is not None
|
|
|
|
and self.clock.time_msec() >= expiration_ts
|
|
|
|
):
|
2019-04-08 12:10:55 -04:00
|
|
|
raise AuthError(
|
2019-06-20 05:32:02 -04:00
|
|
|
403, "User account has expired", errcode=Codes.EXPIRED_ACCOUNT
|
2019-04-08 12:10:55 -04:00
|
|
|
)
|
|
|
|
|
2016-07-20 10:25:40 -04:00
|
|
|
# device_id may not be present if get_user_by_access_token has been
|
|
|
|
# stubbed out.
|
|
|
|
device_id = user_info.get("device_id")
|
|
|
|
|
2014-09-26 11:36:24 -04:00
|
|
|
if user and access_token and ip_addr:
|
2018-08-02 08:47:19 -04:00
|
|
|
yield self.store.insert_client_ip(
|
2017-06-27 10:53:45 -04:00
|
|
|
user_id=user.to_string(),
|
2014-09-29 09:59:52 -04:00
|
|
|
access_token=access_token,
|
|
|
|
ip=ip_addr,
|
2016-07-20 10:25:40 -04:00
|
|
|
user_agent=user_agent,
|
|
|
|
device_id=device_id,
|
2014-09-29 08:35:15 -04:00
|
|
|
)
|
2014-09-26 11:36:24 -04:00
|
|
|
|
2015-11-04 12:29:07 -05:00
|
|
|
if is_guest and not allow_guest:
|
|
|
|
raise AuthError(
|
2019-06-20 05:32:02 -04:00
|
|
|
403,
|
|
|
|
"Guest access not allowed",
|
|
|
|
errcode=Codes.GUEST_ACCESS_FORBIDDEN,
|
2015-11-04 12:29:07 -05:00
|
|
|
)
|
|
|
|
|
2015-06-15 12:11:44 -04:00
|
|
|
request.authenticated_entity = user.to_string()
|
2019-08-16 11:13:25 -04:00
|
|
|
opentracing.set_tag("authenticated_entity", user.to_string())
|
2019-09-25 06:59:00 -04:00
|
|
|
if device_id:
|
|
|
|
opentracing.set_tag("device_id", device_id)
|
2015-06-15 12:11:44 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return synapse.types.create_requester(
|
|
|
|
user, token_id, is_guest, device_id, app_service=app_service
|
2016-10-20 07:07:16 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
except KeyError:
|
2019-07-11 06:06:23 -04:00
|
|
|
raise MissingClientTokenError()
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-01-18 11:32:33 -05:00
|
|
|
@defer.inlineCallbacks
|
2016-09-09 11:29:10 -04:00
|
|
|
def _get_appservice_user_id(self, request):
|
2016-10-06 04:43:32 -04:00
|
|
|
app_service = self.store.get_app_service_by_token(
|
2019-07-11 06:06:23 -04:00
|
|
|
self.get_access_token_from_request(request)
|
2016-01-18 11:32:33 -05:00
|
|
|
)
|
|
|
|
if app_service is None:
|
2019-08-30 11:28:26 -04:00
|
|
|
return None, None
|
2016-01-18 11:32:33 -05:00
|
|
|
|
2018-06-28 15:31:53 -04:00
|
|
|
if app_service.ip_range_whitelist:
|
|
|
|
ip_address = IPAddress(self.hs.get_ip_from_request(request))
|
|
|
|
if ip_address not in app_service.ip_range_whitelist:
|
2019-08-30 11:28:26 -04:00
|
|
|
return None, None
|
2018-06-28 15:31:53 -04:00
|
|
|
|
2018-08-01 10:54:06 -04:00
|
|
|
if b"user_id" not in request.args:
|
2019-08-30 11:28:26 -04:00
|
|
|
return app_service.sender, app_service
|
2016-01-18 11:32:33 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
user_id = request.args[b"user_id"][0].decode("utf8")
|
2016-01-18 11:33:05 -05:00
|
|
|
if app_service.sender == user_id:
|
2019-08-30 11:28:26 -04:00
|
|
|
return app_service.sender, app_service
|
2016-01-18 11:32:33 -05:00
|
|
|
|
|
|
|
if not app_service.is_interested_in_user(user_id):
|
2019-06-20 05:32:02 -04:00
|
|
|
raise AuthError(403, "Application service cannot masquerade as this user.")
|
2016-01-18 11:32:33 -05:00
|
|
|
if not (yield self.store.get_user_by_id(user_id)):
|
2019-06-20 05:32:02 -04:00
|
|
|
raise AuthError(403, "Application service has not registered this user")
|
2019-08-30 11:28:26 -04:00
|
|
|
return user_id, app_service
|
2016-01-18 11:32:33 -05:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-06-01 12:40:52 -04:00
|
|
|
def get_user_by_access_token(self, token, rights="access"):
|
2016-12-06 10:31:37 -05:00
|
|
|
""" Validate access token and get user_id from it
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
Args:
|
2014-09-29 10:35:54 -04:00
|
|
|
token (str): The access token to get the user by.
|
2016-12-06 10:31:37 -05:00
|
|
|
rights (str): The operation being performed; the access token must
|
|
|
|
allow this.
|
2014-08-12 10:10:52 -04:00
|
|
|
Returns:
|
2017-11-29 10:41:20 -05:00
|
|
|
Deferred[dict]: dict that includes:
|
|
|
|
`user` (UserID)
|
|
|
|
`is_guest` (bool)
|
|
|
|
`token_id` (int|None): access token id. May be None if guest
|
|
|
|
`device_id` (str|None): device corresponding to access token
|
2014-08-12 10:10:52 -04:00
|
|
|
Raises:
|
2019-07-11 06:06:23 -04:00
|
|
|
InvalidClientCredentialsError if no user by that token exists or the token
|
|
|
|
is invalid.
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
2019-01-10 07:41:13 -05:00
|
|
|
|
|
|
|
if rights == "access":
|
|
|
|
# first look in the database
|
2016-12-06 10:31:37 -05:00
|
|
|
r = yield self._look_up_user_by_access_token(token)
|
2019-01-10 07:41:13 -05:00
|
|
|
if r:
|
2019-07-12 12:26:02 -04:00
|
|
|
valid_until_ms = r["valid_until_ms"]
|
|
|
|
if (
|
|
|
|
valid_until_ms is not None
|
|
|
|
and valid_until_ms < self.clock.time_msec()
|
|
|
|
):
|
|
|
|
# there was a valid access token, but it has expired.
|
|
|
|
# soft-logout the user.
|
|
|
|
raise InvalidClientTokenError(
|
|
|
|
msg="Access token has expired", soft_logout=True
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return r
|
2015-08-26 08:22:23 -04:00
|
|
|
|
2019-01-10 07:41:13 -05:00
|
|
|
# otherwise it needs to be a valid macaroon
|
2015-08-26 08:22:23 -04:00
|
|
|
try:
|
2019-01-10 07:41:13 -05:00
|
|
|
user_id, guest = self._parse_and_validate_macaroon(token, rights)
|
2016-08-08 11:34:07 -04:00
|
|
|
user = UserID.from_string(user_id)
|
2015-11-04 12:29:07 -05:00
|
|
|
|
2019-01-10 07:41:13 -05:00
|
|
|
if rights == "access":
|
|
|
|
if not guest:
|
|
|
|
# non-guest access tokens must be in the database
|
|
|
|
logger.warning("Unrecognised access token - not in store.")
|
2019-07-11 06:06:23 -04:00
|
|
|
raise InvalidClientTokenError()
|
2019-01-10 07:41:13 -05:00
|
|
|
|
2016-12-06 10:31:37 -05:00
|
|
|
# Guest access tokens are not stored in the database (there can
|
|
|
|
# only be one access token per guest, anyway).
|
|
|
|
#
|
|
|
|
# In order to prevent guest access tokens being used as regular
|
|
|
|
# user access tokens (and hence getting around the invalidation
|
|
|
|
# process), we look up the user id and check that it is indeed
|
|
|
|
# a guest user.
|
|
|
|
#
|
|
|
|
# It would of course be much easier to store guest access
|
|
|
|
# tokens in the database as well, but that would break existing
|
|
|
|
# guest tokens.
|
|
|
|
stored_user = yield self.store.get_user_by_id(user_id)
|
|
|
|
if not stored_user:
|
2019-07-11 06:06:23 -04:00
|
|
|
raise InvalidClientTokenError("Unknown user_id %s" % user_id)
|
2016-12-06 10:31:37 -05:00
|
|
|
if not stored_user["is_guest"]:
|
2019-07-11 06:06:23 -04:00
|
|
|
raise InvalidClientTokenError(
|
|
|
|
"Guest access token used for regular user"
|
2016-12-06 10:31:37 -05:00
|
|
|
)
|
2015-11-04 12:29:07 -05:00
|
|
|
ret = {
|
|
|
|
"user": user,
|
|
|
|
"is_guest": True,
|
|
|
|
"token_id": None,
|
2016-11-25 10:25:30 -05:00
|
|
|
# all guests get the same device id
|
|
|
|
"device_id": GUEST_DEVICE_ID,
|
2015-11-04 12:29:07 -05:00
|
|
|
}
|
2016-06-02 12:21:31 -04:00
|
|
|
elif rights == "delete_pusher":
|
|
|
|
# We don't store these tokens in the database
|
|
|
|
ret = {
|
|
|
|
"user": user,
|
|
|
|
"is_guest": False,
|
|
|
|
"token_id": None,
|
2016-07-20 10:25:40 -04:00
|
|
|
"device_id": None,
|
2016-06-02 12:21:31 -04:00
|
|
|
}
|
2015-11-04 12:29:07 -05:00
|
|
|
else:
|
2019-01-10 07:41:13 -05:00
|
|
|
raise RuntimeError("Unknown rights setting %s", rights)
|
2019-07-23 09:00:55 -04:00
|
|
|
return ret
|
2019-01-10 07:41:13 -05:00
|
|
|
except (
|
|
|
|
_InvalidMacaroonException,
|
|
|
|
pymacaroons.exceptions.MacaroonException,
|
|
|
|
TypeError,
|
|
|
|
ValueError,
|
|
|
|
) as e:
|
|
|
|
logger.warning("Invalid macaroon in auth: %s %s", type(e), e)
|
2019-07-11 06:06:23 -04:00
|
|
|
raise InvalidClientTokenError("Invalid macaroon passed.")
|
2015-08-26 08:22:23 -04:00
|
|
|
|
2017-06-29 09:50:18 -04:00
|
|
|
def _parse_and_validate_macaroon(self, token, rights="access"):
|
|
|
|
"""Takes a macaroon and tries to parse and validate it. This is cached
|
|
|
|
if and only if rights == access and there isn't an expiry.
|
|
|
|
|
|
|
|
On invalid macaroon raises _InvalidMacaroonException
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
(user_id, is_guest)
|
|
|
|
"""
|
|
|
|
if rights == "access":
|
|
|
|
cached = self.token_cache.get(token, None)
|
|
|
|
if cached:
|
|
|
|
return cached
|
|
|
|
|
|
|
|
try:
|
|
|
|
macaroon = pymacaroons.Macaroon.deserialize(token)
|
|
|
|
except Exception: # deserialize can throw more-or-less anything
|
|
|
|
# doesn't look like a macaroon: treat it as an opaque token which
|
|
|
|
# must be in the database.
|
|
|
|
# TODO: it would be nice to get rid of this, but apparently some
|
|
|
|
# people use access tokens which aren't macaroons
|
|
|
|
raise _InvalidMacaroonException()
|
|
|
|
|
|
|
|
try:
|
|
|
|
user_id = self.get_user_id_from_macaroon(macaroon)
|
|
|
|
|
|
|
|
guest = False
|
|
|
|
for caveat in macaroon.caveats:
|
2019-07-30 03:25:02 -04:00
|
|
|
if caveat.caveat_id == "guest = true":
|
2017-06-29 09:50:18 -04:00
|
|
|
guest = True
|
|
|
|
|
2019-07-30 03:25:02 -04:00
|
|
|
self.validate_macaroon(macaroon, rights, user_id=user_id)
|
2017-06-29 09:50:18 -04:00
|
|
|
except (pymacaroons.exceptions.MacaroonException, TypeError, ValueError):
|
2019-07-11 06:06:23 -04:00
|
|
|
raise InvalidClientTokenError("Invalid macaroon passed.")
|
2017-06-29 09:50:18 -04:00
|
|
|
|
2019-07-30 03:25:02 -04:00
|
|
|
if rights == "access":
|
2017-06-29 09:50:18 -04:00
|
|
|
self.token_cache[token] = (user_id, guest)
|
|
|
|
|
|
|
|
return user_id, guest
|
|
|
|
|
2016-08-08 11:34:07 -04:00
|
|
|
def get_user_id_from_macaroon(self, macaroon):
|
|
|
|
"""Retrieve the user_id given by the caveats on the macaroon.
|
|
|
|
|
|
|
|
Does *not* validate the macaroon.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
macaroon (pymacaroons.Macaroon): The macaroon to validate
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
(str) user id
|
|
|
|
|
|
|
|
Raises:
|
2019-07-11 06:06:23 -04:00
|
|
|
InvalidClientCredentialsError if there is no user_id caveat in the
|
|
|
|
macaroon
|
2016-08-08 11:34:07 -04:00
|
|
|
"""
|
|
|
|
user_prefix = "user_id = "
|
|
|
|
for caveat in macaroon.caveats:
|
|
|
|
if caveat.caveat_id.startswith(user_prefix):
|
2019-06-20 05:32:02 -04:00
|
|
|
return caveat.caveat_id[len(user_prefix) :]
|
2019-07-11 06:06:23 -04:00
|
|
|
raise InvalidClientTokenError("No user caveat in macaroon")
|
2016-08-08 11:34:07 -04:00
|
|
|
|
2019-07-30 03:25:02 -04:00
|
|
|
def validate_macaroon(self, macaroon, type_string, user_id):
|
2015-11-19 10:16:25 -05:00
|
|
|
"""
|
|
|
|
validate that a Macaroon is understood by and was signed by this server.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
macaroon(pymacaroons.Macaroon): The macaroon to validate
|
2016-11-30 12:40:18 -05:00
|
|
|
type_string(str): The kind of token required (e.g. "access",
|
2016-06-01 12:40:52 -04:00
|
|
|
"delete_pusher")
|
2016-08-08 11:34:07 -04:00
|
|
|
user_id (str): The user_id required
|
2015-11-19 10:16:25 -05:00
|
|
|
"""
|
2015-08-26 08:22:23 -04:00
|
|
|
v = pymacaroons.Verifier()
|
2016-11-24 07:38:17 -05:00
|
|
|
|
|
|
|
# the verifier runs a test for every caveat on the macaroon, to check
|
|
|
|
# that it is met for the current request. Each caveat must match at
|
|
|
|
# least one of the predicates specified by satisfy_exact or
|
|
|
|
# specify_general.
|
2015-08-26 08:22:23 -04:00
|
|
|
v.satisfy_exact("gen = 1")
|
2015-11-11 06:12:35 -05:00
|
|
|
v.satisfy_exact("type = " + type_string)
|
2016-07-07 11:11:37 -04:00
|
|
|
v.satisfy_exact("user_id = %s" % user_id)
|
2015-11-17 05:58:05 -05:00
|
|
|
v.satisfy_exact("guest = true")
|
2019-07-30 03:25:02 -04:00
|
|
|
v.satisfy_general(self._verify_expiry)
|
2015-11-11 06:12:35 -05:00
|
|
|
|
2016-11-30 12:40:18 -05:00
|
|
|
# access_tokens include a nonce for uniqueness: any value is acceptable
|
2016-11-28 04:55:21 -05:00
|
|
|
v.satisfy_general(lambda c: c.startswith("nonce = "))
|
|
|
|
|
2015-08-26 08:22:23 -04:00
|
|
|
v.verify(macaroon, self.hs.config.macaroon_secret_key)
|
|
|
|
|
2015-11-19 10:16:25 -05:00
|
|
|
def _verify_expiry(self, caveat):
|
2015-08-26 08:22:23 -04:00
|
|
|
prefix = "time < "
|
|
|
|
if not caveat.startswith(prefix):
|
|
|
|
return False
|
2019-06-20 05:32:02 -04:00
|
|
|
expiry = int(caveat[len(prefix) :])
|
2015-08-26 08:22:23 -04:00
|
|
|
now = self.hs.get_clock().time_msec()
|
|
|
|
return now < expiry
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _look_up_user_by_access_token(self, token):
|
2015-08-20 11:01:29 -04:00
|
|
|
ret = yield self.store.get_user_by_access_token(token)
|
2015-03-24 13:24:15 -04:00
|
|
|
if not ret:
|
2019-07-23 09:00:55 -04:00
|
|
|
return None
|
2019-01-10 07:41:13 -05:00
|
|
|
|
2016-07-20 10:25:40 -04:00
|
|
|
# we use ret.get() below because *lots* of unit tests stub out
|
|
|
|
# get_user_by_access_token in a way where it only returns a couple of
|
|
|
|
# the fields.
|
2015-03-24 13:24:15 -04:00
|
|
|
user_info = {
|
|
|
|
"user": UserID.from_string(ret.get("name")),
|
|
|
|
"token_id": ret.get("token_id", None),
|
2015-11-04 12:29:07 -05:00
|
|
|
"is_guest": False,
|
2016-07-20 10:25:40 -04:00
|
|
|
"device_id": ret.get("device_id"),
|
2019-07-12 12:26:02 -04:00
|
|
|
"valid_until_ms": ret.get("valid_until_ms"),
|
2015-03-24 13:24:15 -04:00
|
|
|
}
|
2019-07-23 09:00:55 -04:00
|
|
|
return user_info
|
2014-09-01 08:44:19 -04:00
|
|
|
|
2015-02-06 05:57:14 -05:00
|
|
|
def get_appservice_by_req(self, request):
|
2019-07-11 06:06:23 -04:00
|
|
|
token = self.get_access_token_from_request(request)
|
|
|
|
service = self.store.get_app_service_by_token(token)
|
|
|
|
if not service:
|
|
|
|
logger.warn("Unrecognised appservice access token.")
|
|
|
|
raise InvalidClientTokenError()
|
|
|
|
request.authenticated_entity = service.sender
|
|
|
|
return defer.succeed(service)
|
2015-02-06 05:57:14 -05:00
|
|
|
|
2014-09-29 08:35:38 -04:00
|
|
|
def is_server_admin(self, user):
|
2017-09-19 11:08:14 -04:00
|
|
|
""" Check if the given user is a local server admin.
|
|
|
|
|
|
|
|
Args:
|
2019-05-02 05:45:52 -04:00
|
|
|
user (UserID): user to check
|
2017-09-19 11:08:14 -04:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
bool: True if the user is an admin
|
|
|
|
"""
|
2014-09-29 08:35:38 -04:00
|
|
|
return self.store.is_server_admin(user)
|
|
|
|
|
2016-08-25 12:32:22 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def compute_auth_events(self, event, current_state_ids, for_verification=False):
|
2015-01-28 11:16:53 -05:00
|
|
|
if event.type == EventTypes.Create:
|
2019-07-23 09:00:55 -04:00
|
|
|
return []
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2014-12-08 04:08:26 -05:00
|
|
|
auth_ids = []
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
key = (EventTypes.PowerLevels, "")
|
2016-08-25 12:32:22 -04:00
|
|
|
power_level_event_id = current_state_ids.get(key)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2016-08-25 12:32:22 -04:00
|
|
|
if power_level_event_id:
|
|
|
|
auth_ids.append(power_level_event_id)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
key = (EventTypes.JoinRules, "")
|
2016-08-25 12:32:22 -04:00
|
|
|
join_rule_event_id = current_state_ids.get(key)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
key = (EventTypes.Member, event.sender)
|
2016-08-25 12:32:22 -04:00
|
|
|
member_event_id = current_state_ids.get(key)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
key = (EventTypes.Create, "")
|
2016-08-25 12:32:22 -04:00
|
|
|
create_event_id = current_state_ids.get(key)
|
|
|
|
if create_event_id:
|
|
|
|
auth_ids.append(create_event_id)
|
2014-11-25 06:31:18 -05:00
|
|
|
|
2016-08-25 12:32:22 -04:00
|
|
|
if join_rule_event_id:
|
|
|
|
join_rule_event = yield self.store.get_event(join_rule_event_id)
|
2014-11-07 05:42:44 -05:00
|
|
|
join_rule = join_rule_event.content.get("join_rule")
|
|
|
|
is_public = join_rule == JoinRules.PUBLIC if join_rule else False
|
2014-11-10 06:15:02 -05:00
|
|
|
else:
|
|
|
|
is_public = False
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2015-01-28 11:16:53 -05:00
|
|
|
if event.type == EventTypes.Member:
|
|
|
|
e_type = event.content["membership"]
|
2014-11-10 06:15:02 -05:00
|
|
|
if e_type in [Membership.JOIN, Membership.INVITE]:
|
2016-08-25 12:32:22 -04:00
|
|
|
if join_rule_event_id:
|
|
|
|
auth_ids.append(join_rule_event_id)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2014-12-12 05:42:27 -05:00
|
|
|
if e_type == Membership.JOIN:
|
2016-08-25 12:32:22 -04:00
|
|
|
if member_event_id and not is_public:
|
|
|
|
auth_ids.append(member_event_id)
|
2015-11-05 11:43:19 -05:00
|
|
|
else:
|
2016-08-25 12:32:22 -04:00
|
|
|
if member_event_id:
|
|
|
|
auth_ids.append(member_event_id)
|
|
|
|
|
|
|
|
if for_verification:
|
2019-06-20 05:32:02 -04:00
|
|
|
key = (EventTypes.Member, event.state_key)
|
2016-08-25 12:32:22 -04:00
|
|
|
existing_event_id = current_state_ids.get(key)
|
|
|
|
if existing_event_id:
|
|
|
|
auth_ids.append(existing_event_id)
|
2015-11-05 11:43:19 -05:00
|
|
|
|
|
|
|
if e_type == Membership.INVITE:
|
|
|
|
if "third_party_invite" in event.content:
|
2015-10-13 10:48:12 -04:00
|
|
|
key = (
|
|
|
|
EventTypes.ThirdPartyInvite,
|
2019-06-20 05:32:02 -04:00
|
|
|
event.content["third_party_invite"]["signed"]["token"],
|
2015-10-13 10:48:12 -04:00
|
|
|
)
|
2016-08-25 12:32:22 -04:00
|
|
|
third_party_invite_id = current_state_ids.get(key)
|
|
|
|
if third_party_invite_id:
|
|
|
|
auth_ids.append(third_party_invite_id)
|
|
|
|
elif member_event_id:
|
|
|
|
member_event = yield self.store.get_event(member_event_id)
|
2014-11-07 05:42:44 -05:00
|
|
|
if member_event.content["membership"] == Membership.JOIN:
|
2014-12-08 04:08:26 -05:00
|
|
|
auth_ids.append(member_event.event_id)
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return auth_ids
|
2014-11-07 05:42:44 -05:00
|
|
|
|
2016-03-21 10:03:20 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def check_can_change_room_list(self, room_id, user):
|
|
|
|
"""Check if the user is allowed to edit the room's entry in the
|
|
|
|
published room list.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
room_id (str)
|
|
|
|
user (UserID)
|
|
|
|
"""
|
|
|
|
|
|
|
|
is_admin = yield self.is_server_admin(user)
|
|
|
|
if is_admin:
|
2019-07-23 09:00:55 -04:00
|
|
|
return True
|
2016-03-21 10:03:20 -04:00
|
|
|
|
|
|
|
user_id = user.to_string()
|
|
|
|
yield self.check_joined_room(room_id, user_id)
|
|
|
|
|
|
|
|
# We currently require the user is a "moderator" in the room. We do this
|
|
|
|
# by checking if they would (theoretically) be able to change the
|
|
|
|
# m.room.aliases events
|
|
|
|
power_level_event = yield self.state.get_current_state(
|
|
|
|
room_id, EventTypes.PowerLevels, ""
|
|
|
|
)
|
|
|
|
|
|
|
|
auth_events = {}
|
|
|
|
if power_level_event:
|
|
|
|
auth_events[(EventTypes.PowerLevels, "")] = power_level_event
|
|
|
|
|
2017-01-13 10:07:32 -05:00
|
|
|
send_level = event_auth.get_send_level(
|
2019-06-20 05:32:02 -04:00
|
|
|
EventTypes.Aliases, "", power_level_event
|
2016-03-21 10:03:20 -04:00
|
|
|
)
|
2017-01-13 10:07:32 -05:00
|
|
|
user_level = event_auth.get_user_power_level(user_id, auth_events)
|
2016-03-21 10:03:20 -04:00
|
|
|
|
|
|
|
if user_level < send_level:
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"This server requires you to be a moderator in the room to"
|
2019-06-20 05:32:02 -04:00
|
|
|
" edit its room list entry",
|
2016-03-21 10:03:20 -04:00
|
|
|
)
|
2016-09-09 11:29:10 -04:00
|
|
|
|
2018-07-13 17:34:49 -04:00
|
|
|
@staticmethod
|
|
|
|
def has_access_token(request):
|
|
|
|
"""Checks if the request has an access_token.
|
2016-09-09 11:29:10 -04:00
|
|
|
|
2018-07-13 17:34:49 -04:00
|
|
|
Returns:
|
|
|
|
bool: False if no access_token was given, True otherwise.
|
|
|
|
"""
|
2018-08-20 09:54:49 -04:00
|
|
|
query_params = request.args.get(b"access_token")
|
2018-07-13 17:34:49 -04:00
|
|
|
auth_headers = request.requestHeaders.getRawHeaders(b"Authorization")
|
|
|
|
return bool(query_params) or bool(auth_headers)
|
2016-09-09 11:29:10 -04:00
|
|
|
|
2018-07-13 17:34:49 -04:00
|
|
|
@staticmethod
|
2019-07-11 06:06:23 -04:00
|
|
|
def get_access_token_from_request(request):
|
2018-07-13 17:34:49 -04:00
|
|
|
"""Extracts the access_token from the request.
|
2016-09-09 13:17:42 -04:00
|
|
|
|
2018-07-13 17:34:49 -04:00
|
|
|
Args:
|
|
|
|
request: The http request.
|
|
|
|
Returns:
|
2018-08-20 09:54:49 -04:00
|
|
|
unicode: The access_token
|
2018-07-13 17:34:49 -04:00
|
|
|
Raises:
|
2019-07-11 06:06:23 -04:00
|
|
|
MissingClientTokenError: If there isn't a single access_token in the
|
|
|
|
request
|
2018-07-13 17:34:49 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
auth_headers = request.requestHeaders.getRawHeaders(b"Authorization")
|
|
|
|
query_params = request.args.get(b"access_token")
|
|
|
|
if auth_headers:
|
|
|
|
# Try the get the access_token from a "Authorization: Bearer"
|
|
|
|
# header
|
|
|
|
if query_params is not None:
|
2019-07-11 06:06:23 -04:00
|
|
|
raise MissingClientTokenError(
|
|
|
|
"Mixing Authorization headers and access_token query parameters."
|
2018-07-13 17:34:49 -04:00
|
|
|
)
|
|
|
|
if len(auth_headers) > 1:
|
2019-07-11 06:06:23 -04:00
|
|
|
raise MissingClientTokenError("Too many Authorization headers.")
|
2018-08-20 09:54:49 -04:00
|
|
|
parts = auth_headers[0].split(b" ")
|
|
|
|
if parts[0] == b"Bearer" and len(parts) == 2:
|
2019-06-20 05:32:02 -04:00
|
|
|
return parts[1].decode("ascii")
|
2018-07-13 17:34:49 -04:00
|
|
|
else:
|
2019-07-11 06:06:23 -04:00
|
|
|
raise MissingClientTokenError("Invalid Authorization header.")
|
2016-09-09 13:17:42 -04:00
|
|
|
else:
|
2018-07-13 17:34:49 -04:00
|
|
|
# Try to get the access_token from the query params.
|
|
|
|
if not query_params:
|
2019-07-11 06:06:23 -04:00
|
|
|
raise MissingClientTokenError()
|
2016-09-09 11:29:10 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
return query_params[0].decode("ascii")
|
2018-07-20 10:30:59 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def check_in_room_or_world_readable(self, room_id, user_id):
|
|
|
|
"""Checks that the user is or was in the room or the room is world
|
|
|
|
readable. If it isn't then an exception is raised.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred[tuple[str, str|None]]: Resolves to the current membership of
|
2019-03-26 13:48:30 -04:00
|
|
|
the user in the room and the membership event ID of the user. If
|
|
|
|
the user is not in the room and never has been, then
|
|
|
|
`(Membership.JOIN, None)` is returned.
|
2018-07-20 10:30:59 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
try:
|
|
|
|
# check_user_was_in_room will return the most recent membership
|
|
|
|
# event for the user if:
|
|
|
|
# * The user is a non-guest user, and was ever in the room
|
|
|
|
# * The user is a guest user, and has joined the room
|
|
|
|
# else it will throw.
|
|
|
|
member_event = yield self.check_user_was_in_room(room_id, user_id)
|
2019-08-30 11:28:26 -04:00
|
|
|
return member_event.membership, member_event.event_id
|
2018-07-20 10:30:59 -04:00
|
|
|
except AuthError:
|
|
|
|
visibility = yield self.state.get_current_state(
|
|
|
|
room_id, EventTypes.RoomHistoryVisibility, ""
|
|
|
|
)
|
|
|
|
if (
|
2019-06-20 05:32:02 -04:00
|
|
|
visibility
|
|
|
|
and visibility.content["history_visibility"] == "world_readable"
|
2018-07-20 10:30:59 -04:00
|
|
|
):
|
2019-08-30 11:28:26 -04:00
|
|
|
return Membership.JOIN, None
|
2018-07-20 10:30:59 -04:00
|
|
|
raise AuthError(
|
|
|
|
403, "Guest access not allowed", errcode=Codes.GUEST_ACCESS_FORBIDDEN
|
|
|
|
)
|
2018-08-02 11:57:35 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2019-09-11 13:22:18 -04:00
|
|
|
def check_auth_blocking(self, user_id=None, threepid=None, user_type=None):
|
2018-08-02 11:57:35 -04:00
|
|
|
"""Checks if the user should be rejected for some external reason,
|
|
|
|
such as monthly active user limiting or global disable flag
|
2018-08-09 12:39:12 -04:00
|
|
|
|
|
|
|
Args:
|
2018-08-14 10:48:12 -04:00
|
|
|
user_id(str|None): If present, checks for presence against existing
|
2019-03-26 13:48:30 -04:00
|
|
|
MAU cohort
|
2018-08-31 12:29:35 -04:00
|
|
|
|
2018-08-31 12:11:11 -04:00
|
|
|
threepid(dict|None): If present, checks for presence against configured
|
2019-03-26 13:48:30 -04:00
|
|
|
reserved threepid. Used in cases where the user is trying register
|
|
|
|
with a MAU blocked server, normally they would be rejected but their
|
|
|
|
threepid is on the reserved list. user_id and
|
|
|
|
threepid should never be set at the same time.
|
2019-09-11 13:22:18 -04:00
|
|
|
|
|
|
|
user_type(str|None): If present, is used to decide whether to check against
|
|
|
|
certain blocking reasons like MAU.
|
2018-08-06 13:01:46 -04:00
|
|
|
"""
|
2018-08-18 07:33:07 -04:00
|
|
|
|
2018-12-14 13:20:59 -05:00
|
|
|
# Never fail an auth check for the server notices users or support user
|
2018-08-18 07:33:07 -04:00
|
|
|
# This can be a problem where event creation is prohibited due to blocking
|
2019-03-19 07:04:12 -04:00
|
|
|
if user_id is not None:
|
|
|
|
if user_id == self.hs.config.server_notices_mxid:
|
|
|
|
return
|
|
|
|
if (yield self.store.is_support_user(user_id)):
|
|
|
|
return
|
2018-08-18 07:33:07 -04:00
|
|
|
|
2018-08-04 17:07:04 -04:00
|
|
|
if self.hs.config.hs_disabled:
|
2018-08-16 13:02:02 -04:00
|
|
|
raise ResourceLimitError(
|
2019-06-20 05:32:02 -04:00
|
|
|
403,
|
|
|
|
self.hs.config.hs_disabled_message,
|
2018-08-18 09:39:45 -04:00
|
|
|
errcode=Codes.RESOURCE_LIMIT_EXCEEDED,
|
2018-08-24 11:51:27 -04:00
|
|
|
admin_contact=self.hs.config.admin_contact,
|
2019-10-24 06:48:46 -04:00
|
|
|
limit_type=LimitBlockingTypes.HS_DISABLED,
|
2018-08-04 17:07:04 -04:00
|
|
|
)
|
2018-08-02 11:57:35 -04:00
|
|
|
if self.hs.config.limit_usage_by_mau is True:
|
2018-08-31 12:29:35 -04:00
|
|
|
assert not (user_id and threepid)
|
2018-08-31 12:11:11 -04:00
|
|
|
|
2018-08-23 14:17:08 -04:00
|
|
|
# If the user is already part of the MAU cohort or a trial user
|
2018-08-09 12:39:12 -04:00
|
|
|
if user_id:
|
2018-08-09 13:02:12 -04:00
|
|
|
timestamp = yield self.store.user_last_seen_monthly_active(user_id)
|
2018-08-09 12:39:12 -04:00
|
|
|
if timestamp:
|
|
|
|
return
|
2018-08-23 14:17:08 -04:00
|
|
|
|
|
|
|
is_trial = yield self.store.is_trial_user(user_id)
|
|
|
|
if is_trial:
|
|
|
|
return
|
2018-08-31 05:49:14 -04:00
|
|
|
elif threepid:
|
|
|
|
# If the user does not exist yet, but is signing up with a
|
|
|
|
# reserved threepid then pass auth check
|
2019-01-22 11:52:29 -05:00
|
|
|
if is_threepid_reserved(
|
|
|
|
self.hs.config.mau_limits_reserved_threepids, threepid
|
|
|
|
):
|
2018-08-31 10:42:51 -04:00
|
|
|
return
|
2019-09-11 13:22:18 -04:00
|
|
|
elif user_type == UserTypes.SUPPORT:
|
|
|
|
# If the user does not exist yet and is of type "support",
|
|
|
|
# allow registration. Support users are excluded from MAU checks.
|
|
|
|
return
|
2018-08-09 12:39:12 -04:00
|
|
|
# Else if there is no room in the MAU bucket, bail
|
2018-08-02 11:57:35 -04:00
|
|
|
current_mau = yield self.store.get_monthly_active_count()
|
|
|
|
if current_mau >= self.hs.config.max_mau_value:
|
2018-08-16 13:02:02 -04:00
|
|
|
raise ResourceLimitError(
|
2019-06-20 05:32:02 -04:00
|
|
|
403,
|
|
|
|
"Monthly Active User Limit Exceeded",
|
2018-08-24 11:51:27 -04:00
|
|
|
admin_contact=self.hs.config.admin_contact,
|
2018-08-18 09:39:45 -04:00
|
|
|
errcode=Codes.RESOURCE_LIMIT_EXCEEDED,
|
2019-10-24 06:48:46 -04:00
|
|
|
limit_type=LimitBlockingTypes.MONTHLY_ACTIVE_USER,
|
2018-08-03 12:55:50 -04:00
|
|
|
)
|