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.
|
2016-07-26 11:46:53 -04:00
|
|
|
import logging
|
2021-07-01 14:25:37 -04:00
|
|
|
from typing import TYPE_CHECKING, Optional, Tuple
|
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
|
|
|
|
2020-05-14 11:32:49 -04:00
|
|
|
from twisted.web.server import Request
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2017-01-13 10:07:32 -05:00
|
|
|
from synapse import event_auth
|
2020-05-06 10:54:58 -04:00
|
|
|
from synapse.api.auth_blocking import AuthBlocking
|
2020-12-16 08:46:37 -05:00
|
|
|
from synapse.api.constants import EventTypes, HistoryVisibility, Membership
|
2019-07-11 06:06:23 -04:00
|
|
|
from synapse.api.errors import (
|
|
|
|
AuthError,
|
|
|
|
Codes,
|
|
|
|
InvalidClientTokenError,
|
|
|
|
MissingClientTokenError,
|
|
|
|
)
|
2020-12-11 11:33:31 -05:00
|
|
|
from synapse.appservice import ApplicationService
|
2020-02-18 18:13:29 -05:00
|
|
|
from synapse.events import EventBase
|
2021-01-12 07:34:16 -05:00
|
|
|
from synapse.http import get_request_user_agent
|
2020-12-11 11:33:31 -05:00
|
|
|
from synapse.http.site import SynapseRequest
|
2021-12-21 06:10:36 -05:00
|
|
|
from synapse.logging.opentracing import active_span, force_tracing, start_active_span
|
2020-10-29 11:58:44 -04:00
|
|
|
from synapse.storage.databases.main.registration import TokenLookupResult
|
2021-04-23 12:02:16 -04:00
|
|
|
from synapse.types import Requester, StateMap, UserID, create_requester
|
2017-06-29 09:50:18 -04:00
|
|
|
from synapse.util.caches.lrucache import LruCache
|
2021-03-04 09:44:22 -05:00
|
|
|
from synapse.util.macaroons import get_value_from_macaroon, satisfy_expiry
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2021-04-23 12:02:16 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class Auth:
|
2017-01-10 13:16:54 -05:00
|
|
|
"""
|
2021-07-01 14:25:37 -04:00
|
|
|
This class contains functions for authenticating users of our client-server API.
|
2017-01-10 13:16:54 -05:00
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2021-04-23 12:02:16 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2017-01-10 13:16:54 -05:00
|
|
|
self.hs = hs
|
|
|
|
self.clock = hs.get_clock()
|
2022-02-23 06:04:02 -05:00
|
|
|
self.store = hs.get_datastores().main
|
2017-01-10 13:16:54 -05:00
|
|
|
self.state = hs.get_state_handler()
|
2021-07-16 12:11:53 -04:00
|
|
|
self._account_validity_handler = hs.get_account_validity_handler()
|
2017-01-10 13:16:54 -05:00
|
|
|
|
2021-07-15 06:02:43 -04:00
|
|
|
self.token_cache: LruCache[str, Tuple[str, bool]] = LruCache(
|
2020-10-16 10:56:39 -04:00
|
|
|
10000, "token_cache"
|
2021-07-15 06:02:43 -04:00
|
|
|
)
|
2017-06-29 09:50:18 -04:00
|
|
|
|
2020-05-06 10:54:58 -04:00
|
|
|
self._auth_blocking = AuthBlocking(self.hs)
|
|
|
|
|
2021-09-15 08:34:52 -04:00
|
|
|
self._track_appservice_user_ips = hs.config.appservice.track_appservice_user_ips
|
2022-01-12 11:09:36 -05:00
|
|
|
self._track_puppeted_user_ips = hs.config.api.track_puppeted_user_ips
|
2021-09-15 08:34:52 -04:00
|
|
|
self._macaroon_secret_key = hs.config.key.macaroon_secret_key
|
2021-05-14 05:51:08 -04:00
|
|
|
self._force_tracing_for_users = hs.config.tracing.force_tracing_for_users
|
2019-04-08 12:10:55 -04:00
|
|
|
|
2020-08-06 08:30:06 -04:00
|
|
|
async def check_user_in_room(
|
2020-02-18 18:13:29 -05:00
|
|
|
self,
|
|
|
|
room_id: str,
|
|
|
|
user_id: str,
|
|
|
|
current_state: Optional[StateMap[EventBase]] = None,
|
|
|
|
allow_departed_users: bool = False,
|
2020-08-06 08:30:06 -04:00
|
|
|
) -> EventBase:
|
2020-02-18 18:13:29 -05:00
|
|
|
"""Check if the user is in the room, or was at some point.
|
2017-01-10 13:16:54 -05:00
|
|
|
Args:
|
2020-02-18 18:13:29 -05:00
|
|
|
room_id: The room to check.
|
|
|
|
|
|
|
|
user_id: The user to check.
|
|
|
|
|
|
|
|
current_state: Optional map of the current state of the room.
|
2017-01-10 13:16:54 -05:00
|
|
|
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.
|
2020-02-18 18:13:29 -05:00
|
|
|
|
|
|
|
allow_departed_users: if True, accept users that were previously
|
|
|
|
members but have now departed.
|
|
|
|
|
2017-01-10 13:16:54 -05:00
|
|
|
Raises:
|
2020-02-18 18:13:29 -05:00
|
|
|
AuthError if the user is/was not in the room.
|
2017-01-10 13:16:54 -05:00
|
|
|
Returns:
|
2020-08-06 08:30:06 -04:00
|
|
|
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.
|
2017-01-10 13:16:54 -05:00
|
|
|
"""
|
|
|
|
if current_state:
|
|
|
|
member = current_state.get((EventTypes.Member, user_id), None)
|
|
|
|
else:
|
2020-08-06 08:30:06 -04:00
|
|
|
member = await self.state.get_current_state(
|
|
|
|
room_id=room_id, event_type=EventTypes.Member, state_key=user_id
|
2017-01-10 13:16:54 -05:00
|
|
|
)
|
2015-10-01 12:49:52 -04:00
|
|
|
|
2020-08-06 08:30:06 -04:00
|
|
|
if member:
|
|
|
|
membership = member.membership
|
2016-02-23 10:11:25 -05:00
|
|
|
|
2020-08-06 08:30:06 -04:00
|
|
|
if membership == Membership.JOIN:
|
2020-02-18 18:13:29 -05:00
|
|
|
return member
|
2016-02-23 10:11:25 -05:00
|
|
|
|
2020-08-06 08:30:06 -04:00
|
|
|
# XXX this looks totally bogus. Why do we not allow users who have been banned,
|
|
|
|
# or those who were members previously and have been re-invited?
|
|
|
|
if allow_departed_users and membership == Membership.LEAVE:
|
|
|
|
forgot = await self.store.did_forget(user_id, room_id)
|
|
|
|
if not forgot:
|
|
|
|
return member
|
|
|
|
|
2020-02-18 18:13:29 -05:00
|
|
|
raise AuthError(403, "User %s not in room %s" % (user_id, room_id))
|
2016-02-23 10:11:25 -05:00
|
|
|
|
2020-08-06 08:30:06 -04:00
|
|
|
async def get_user_by_req(
|
2020-05-14 11:32:49 -04:00
|
|
|
self,
|
2021-03-12 11:37:57 -05:00
|
|
|
request: SynapseRequest,
|
2020-05-14 11:32:49 -04:00
|
|
|
allow_guest: bool = False,
|
|
|
|
rights: str = "access",
|
|
|
|
allow_expired: bool = False,
|
2021-04-23 12:02:16 -04:00
|
|
|
) -> Requester:
|
2014-08-12 10:10:52 -04:00
|
|
|
"""Get a registered user's ID.
|
|
|
|
|
|
|
|
Args:
|
2020-05-14 11:32:49 -04:00
|
|
|
request: An HTTP request with an access_token query parameter.
|
|
|
|
allow_guest: If False, will raise an AuthError if the user making the
|
|
|
|
request is a guest.
|
|
|
|
rights: The operation being performed; the access token must allow this
|
|
|
|
allow_expired: If True, allow the request through even if the account
|
|
|
|
is expired, or session token lifetime has ended. Note that
|
|
|
|
/login will deliver access tokens regardless of expiration.
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
Returns:
|
2020-08-06 08:30:06 -04:00
|
|
|
Resolves to the requester
|
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
|
|
|
"""
|
2021-12-21 06:10:36 -05:00
|
|
|
parent_span = active_span()
|
|
|
|
with start_active_span("get_user_by_req"):
|
|
|
|
requester = await self._wrapped_get_user_by_req(
|
|
|
|
request, allow_guest, rights, allow_expired
|
|
|
|
)
|
|
|
|
|
|
|
|
if parent_span:
|
|
|
|
if requester.authenticated_entity in self._force_tracing_for_users:
|
|
|
|
# request tracing is enabled for this user, so we need to force it
|
|
|
|
# tracing on for the parent span (which will be the servlet span).
|
|
|
|
#
|
|
|
|
# It's too late for the get_user_by_req span to inherit the setting,
|
|
|
|
# so we also force it on for that.
|
|
|
|
force_tracing()
|
|
|
|
force_tracing(parent_span)
|
|
|
|
parent_span.set_tag(
|
|
|
|
"authenticated_entity", requester.authenticated_entity
|
|
|
|
)
|
|
|
|
parent_span.set_tag("user_id", requester.user.to_string())
|
|
|
|
if requester.device_id is not None:
|
|
|
|
parent_span.set_tag("device_id", requester.device_id)
|
|
|
|
if requester.app_service is not None:
|
|
|
|
parent_span.set_tag("appservice_id", requester.app_service.id)
|
|
|
|
return requester
|
|
|
|
|
|
|
|
async def _wrapped_get_user_by_req(
|
|
|
|
self,
|
|
|
|
request: SynapseRequest,
|
|
|
|
allow_guest: bool,
|
|
|
|
rights: str,
|
|
|
|
allow_expired: bool,
|
|
|
|
) -> Requester:
|
|
|
|
"""Helper for get_user_by_req
|
|
|
|
|
|
|
|
Once get_user_by_req has set up the opentracing span, this does the actual work.
|
|
|
|
"""
|
2014-08-12 10:10:52 -04:00
|
|
|
try:
|
2022-05-04 14:11:21 -04:00
|
|
|
ip_addr = request.getClientAddress().host
|
2021-01-12 07:34:16 -05:00
|
|
|
user_agent = get_request_user_agent(request)
|
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
|
|
|
|
2021-12-15 05:40:52 -05:00
|
|
|
(
|
|
|
|
user_id,
|
|
|
|
device_id,
|
|
|
|
app_service,
|
|
|
|
) = await self._get_appservice_user_id_and_device_id(request)
|
2021-04-23 12:02:16 -04:00
|
|
|
if user_id and app_service:
|
2020-05-06 10:54:58 -04:00
|
|
|
if ip_addr and self._track_appservice_user_ips:
|
2020-08-06 08:30:06 -04:00
|
|
|
await self.store.insert_client_ip(
|
2018-12-04 06:44:41 -05:00
|
|
|
user_id=user_id,
|
|
|
|
access_token=access_token,
|
|
|
|
ip=ip_addr,
|
|
|
|
user_agent=user_agent,
|
2021-12-15 05:40:52 -05:00
|
|
|
device_id="dummy-device"
|
|
|
|
if device_id is None
|
|
|
|
else device_id, # stubbed
|
2018-12-04 06:44:41 -05:00
|
|
|
)
|
|
|
|
|
2021-12-15 05:40:52 -05:00
|
|
|
requester = create_requester(
|
|
|
|
user_id, app_service=app_service, device_id=device_id
|
|
|
|
)
|
2020-10-29 11:58:44 -04:00
|
|
|
|
|
|
|
request.requester = user_id
|
|
|
|
return requester
|
2015-02-05 10:00:33 -05:00
|
|
|
|
2020-08-06 08:30:06 -04:00
|
|
|
user_info = await self.get_user_by_access_token(
|
2020-05-14 11:32:49 -04:00
|
|
|
access_token, rights, allow_expired=allow_expired
|
|
|
|
)
|
2020-10-29 11:58:44 -04:00
|
|
|
token_id = user_info.token_id
|
|
|
|
is_guest = user_info.is_guest
|
|
|
|
shadow_banned = user_info.shadow_banned
|
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.
|
2021-07-16 12:11:53 -04:00
|
|
|
if not allow_expired:
|
|
|
|
if await self._account_validity_handler.is_user_expired(
|
|
|
|
user_info.user_id
|
2020-10-29 11:58:44 -04:00
|
|
|
):
|
2021-07-16 12:11:53 -04:00
|
|
|
# Raise the error if either an account validity module has determined
|
|
|
|
# the account has expired, or the legacy account validity
|
|
|
|
# implementation is enabled and determined the account has expired
|
2019-04-08 12:10:55 -04:00
|
|
|
raise AuthError(
|
2021-07-16 12:11:53 -04:00
|
|
|
403,
|
|
|
|
"User account has expired",
|
|
|
|
errcode=Codes.EXPIRED_ACCOUNT,
|
2019-04-08 12:10:55 -04:00
|
|
|
)
|
|
|
|
|
2020-10-29 11:58:44 -04:00
|
|
|
device_id = user_info.device_id
|
2016-07-20 10:25:40 -04:00
|
|
|
|
2020-10-29 11:58:44 -04:00
|
|
|
if access_token and ip_addr:
|
2020-08-06 08:30:06 -04:00
|
|
|
await self.store.insert_client_ip(
|
2020-10-29 11:58:44 -04:00
|
|
|
user_id=user_info.token_owner,
|
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
|
|
|
)
|
2022-01-12 11:09:36 -05:00
|
|
|
# Track also the puppeted user client IP if enabled and the user is puppeting
|
|
|
|
if (
|
|
|
|
user_info.user_id != user_info.token_owner
|
|
|
|
and self._track_puppeted_user_ips
|
|
|
|
):
|
|
|
|
await self.store.insert_client_ip(
|
|
|
|
user_id=user_info.user_id,
|
|
|
|
access_token=access_token,
|
|
|
|
ip=ip_addr,
|
|
|
|
user_agent=user_agent,
|
|
|
|
device_id=device_id,
|
|
|
|
)
|
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(
|
|
|
|
403,
|
|
|
|
"Guest access not allowed",
|
|
|
|
errcode=Codes.GUEST_ACCESS_FORBIDDEN,
|
|
|
|
)
|
|
|
|
|
2021-06-24 09:33:20 -04:00
|
|
|
# Mark the token as used. This is used to invalidate old refresh
|
|
|
|
# tokens after some time.
|
|
|
|
if not user_info.token_used and token_id is not None:
|
|
|
|
await self.store.mark_access_token_as_used(token_id)
|
|
|
|
|
2021-04-23 12:02:16 -04:00
|
|
|
requester = create_requester(
|
2020-10-29 11:58:44 -04:00
|
|
|
user_info.user_id,
|
2020-08-14 12:37:59 -04:00
|
|
|
token_id,
|
|
|
|
is_guest,
|
|
|
|
shadow_banned,
|
|
|
|
device_id,
|
|
|
|
app_service=app_service,
|
2020-10-29 11:58:44 -04:00
|
|
|
authenticated_entity=user_info.token_owner,
|
2016-10-20 07:07:16 -04:00
|
|
|
)
|
2020-10-29 11:58:44 -04:00
|
|
|
|
|
|
|
request.requester = requester
|
|
|
|
return requester
|
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
|
|
|
|
2021-07-13 15:12:33 -04:00
|
|
|
async def validate_appservice_can_control_user_id(
|
|
|
|
self, app_service: ApplicationService, user_id: str
|
2021-10-18 15:01:10 -04:00
|
|
|
) -> None:
|
2021-07-13 15:12:33 -04:00
|
|
|
"""Validates that the app service is allowed to control
|
|
|
|
the given user.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
app_service: The app service that controls the user
|
|
|
|
user_id: The author MXID that the app service is controlling
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
AuthError: If the application service is not allowed to control the user
|
|
|
|
(user namespace regex does not match, wrong homeserver, etc)
|
|
|
|
or if the user has not been registered yet.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# It's ok if the app service is trying to use the sender from their registration
|
|
|
|
if app_service.sender == user_id:
|
|
|
|
pass
|
|
|
|
# Check to make sure the app service is allowed to control the user
|
|
|
|
elif not app_service.is_interested_in_user(user_id):
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"Application service cannot masquerade as this user (%s)." % user_id,
|
|
|
|
)
|
|
|
|
# Check to make sure the user is already registered on the homeserver
|
|
|
|
elif not (await self.store.get_user_by_id(user_id)):
|
|
|
|
raise AuthError(
|
|
|
|
403, "Application service has not registered this user (%s)" % user_id
|
|
|
|
)
|
|
|
|
|
2021-12-15 05:40:52 -05:00
|
|
|
async def _get_appservice_user_id_and_device_id(
|
2021-04-23 12:02:16 -04:00
|
|
|
self, request: Request
|
2021-12-15 05:40:52 -05:00
|
|
|
) -> Tuple[Optional[str], Optional[str], Optional[ApplicationService]]:
|
|
|
|
"""
|
|
|
|
Given a request, reads the request parameters to determine:
|
|
|
|
- whether it's an application service that's making this request
|
|
|
|
- what user the application service should be treated as controlling
|
|
|
|
(the user_id URI parameter allows an application service to masquerade
|
|
|
|
any applicable user in its namespace)
|
|
|
|
- what device the application service should be treated as controlling
|
|
|
|
(the device_id[^1] URI parameter allows an application service to masquerade
|
|
|
|
as any device that exists for the relevant user)
|
|
|
|
|
|
|
|
[^1] Unstable and provided by MSC3202.
|
|
|
|
Must use `org.matrix.msc3202.device_id` in place of `device_id` for now.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
3-tuple of
|
|
|
|
(user ID?, device ID?, application service?)
|
|
|
|
|
|
|
|
Postconditions:
|
|
|
|
- If an application service is returned, so is a user ID
|
|
|
|
- A user ID is never returned without an application service
|
|
|
|
- A device ID is never returned without a user ID or an application service
|
|
|
|
- The returned application service, if present, is permitted to control the
|
|
|
|
returned user ID.
|
|
|
|
- The returned device ID, if present, has been checked to be a valid device ID
|
|
|
|
for the returned user ID.
|
|
|
|
"""
|
|
|
|
DEVICE_ID_ARG_NAME = b"org.matrix.msc3202.device_id"
|
|
|
|
|
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:
|
2021-12-15 05:40:52 -05:00
|
|
|
return None, None, None
|
2016-01-18 11:32:33 -05:00
|
|
|
|
2018-06-28 15:31:53 -04:00
|
|
|
if app_service.ip_range_whitelist:
|
2022-05-04 14:11:21 -04:00
|
|
|
ip_address = IPAddress(request.getClientAddress().host)
|
2018-06-28 15:31:53 -04:00
|
|
|
if ip_address not in app_service.ip_range_whitelist:
|
2021-12-15 05:40:52 -05:00
|
|
|
return None, None, None
|
2018-06-28 15:31:53 -04:00
|
|
|
|
2021-04-23 12:02:16 -04:00
|
|
|
# This will always be set by the time Twisted calls us.
|
|
|
|
assert request.args is not None
|
|
|
|
|
2021-12-15 05:40:52 -05:00
|
|
|
if b"user_id" in request.args:
|
|
|
|
effective_user_id = request.args[b"user_id"][0].decode("utf8")
|
|
|
|
await self.validate_appservice_can_control_user_id(
|
|
|
|
app_service, effective_user_id
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
effective_user_id = app_service.sender
|
|
|
|
|
|
|
|
effective_device_id: Optional[str] = None
|
|
|
|
|
|
|
|
if (
|
|
|
|
self.hs.config.experimental.msc3202_device_masquerading_enabled
|
|
|
|
and DEVICE_ID_ARG_NAME in request.args
|
|
|
|
):
|
|
|
|
effective_device_id = request.args[DEVICE_ID_ARG_NAME][0].decode("utf8")
|
|
|
|
# We only just set this so it can't be None!
|
|
|
|
assert effective_device_id is not None
|
|
|
|
device_opt = await self.store.get_device(
|
|
|
|
effective_user_id, effective_device_id
|
|
|
|
)
|
|
|
|
if device_opt is None:
|
|
|
|
# For now, use 400 M_EXCLUSIVE if the device doesn't exist.
|
|
|
|
# This is an open thread of discussion on MSC3202 as of 2021-12-09.
|
|
|
|
raise AuthError(
|
|
|
|
400,
|
|
|
|
f"Application service trying to use a device that doesn't exist ('{effective_device_id}' for {effective_user_id})",
|
|
|
|
Codes.EXCLUSIVE,
|
|
|
|
)
|
2016-01-18 11:32:33 -05:00
|
|
|
|
2021-12-15 05:40:52 -05:00
|
|
|
return effective_user_id, effective_device_id, app_service
|
2016-01-18 11:32:33 -05:00
|
|
|
|
2020-08-06 08:30:06 -04:00
|
|
|
async def get_user_by_access_token(
|
2020-05-14 11:32:49 -04:00
|
|
|
self,
|
|
|
|
token: str,
|
|
|
|
rights: str = "access",
|
|
|
|
allow_expired: bool = False,
|
2020-10-29 11:58:44 -04:00
|
|
|
) -> TokenLookupResult:
|
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:
|
2020-05-14 11:32:49 -04:00
|
|
|
token: The access token to get the user by
|
|
|
|
rights: The operation being performed; the access token must
|
|
|
|
allow this
|
|
|
|
allow_expired: If False, raises an InvalidClientTokenError
|
|
|
|
if the token is expired
|
2020-10-29 11:58:44 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
Raises:
|
2020-05-14 11:32:49 -04:00
|
|
|
InvalidClientTokenError if a user by that token exists, but the token is
|
|
|
|
expired
|
2019-07-11 06:06:23 -04:00
|
|
|
InvalidClientCredentialsError if no user by that token exists or the token
|
2020-05-14 11:32:49 -04:00
|
|
|
is invalid
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
2019-01-10 07:41:13 -05:00
|
|
|
|
|
|
|
if rights == "access":
|
2022-05-05 08:39:59 -04:00
|
|
|
# First look in the database to see if the access token is present
|
|
|
|
# as an opaque token.
|
2020-10-29 11:58:44 -04:00
|
|
|
r = await self.store.get_user_by_access_token(token)
|
2019-01-10 07:41:13 -05:00
|
|
|
if r:
|
2020-10-29 11:58:44 -04:00
|
|
|
valid_until_ms = r.valid_until_ms
|
2019-07-12 12:26:02 -04:00
|
|
|
if (
|
2020-05-14 11:32:49 -04:00
|
|
|
not allow_expired
|
|
|
|
and valid_until_ms is not None
|
2019-07-12 12:26:02 -04:00
|
|
|
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
|
|
|
|
2022-05-05 08:39:59 -04:00
|
|
|
# If the token isn't found in the database, then it could still be a
|
|
|
|
# macaroon, so we check that here.
|
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)
|
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.
|
2020-08-06 08:30:06 -04:00
|
|
|
stored_user = await self.store.get_user_by_id(user_id)
|
2016-12-06 10:31:37 -05:00
|
|
|
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
|
|
|
)
|
2020-10-29 11:58:44 -04:00
|
|
|
|
|
|
|
ret = TokenLookupResult(
|
|
|
|
user_id=user_id,
|
|
|
|
is_guest=True,
|
2016-11-25 10:25:30 -05:00
|
|
|
# all guests get the same device id
|
2020-10-29 11:58:44 -04:00
|
|
|
device_id=GUEST_DEVICE_ID,
|
|
|
|
)
|
2016-06-02 12:21:31 -04:00
|
|
|
elif rights == "delete_pusher":
|
|
|
|
# We don't store these tokens in the database
|
2020-10-29 11:58:44 -04:00
|
|
|
|
|
|
|
ret = TokenLookupResult(user_id=user_id, is_guest=False)
|
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:
|
2022-05-05 08:39:59 -04:00
|
|
|
logger.warning(
|
|
|
|
"Invalid access token in auth: %s %s.",
|
|
|
|
type(e),
|
|
|
|
e,
|
|
|
|
)
|
|
|
|
raise InvalidClientTokenError("Invalid access token passed.")
|
2015-08-26 08:22:23 -04:00
|
|
|
|
2021-04-23 12:02:16 -04:00
|
|
|
def _parse_and_validate_macaroon(
|
|
|
|
self, token: str, rights: str = "access"
|
|
|
|
) -> Tuple[str, bool]:
|
2017-06-29 09:50:18 -04:00
|
|
|
"""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
|
2022-05-05 08:39:59 -04:00
|
|
|
# The access token doesn't look like a macaroon.
|
2017-06-29 09:50:18 -04:00
|
|
|
raise _InvalidMacaroonException()
|
|
|
|
|
|
|
|
try:
|
2021-03-04 09:44:22 -05:00
|
|
|
user_id = get_value_from_macaroon(macaroon, "user_id")
|
2017-06-29 09:50:18 -04:00
|
|
|
|
|
|
|
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)
|
2021-03-04 09:44:22 -05:00
|
|
|
except (
|
|
|
|
pymacaroons.exceptions.MacaroonException,
|
|
|
|
KeyError,
|
|
|
|
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
|
|
|
|
|
2021-04-23 12:02:16 -04:00
|
|
|
def validate_macaroon(
|
|
|
|
self, macaroon: pymacaroons.Macaroon, type_string: str, user_id: str
|
|
|
|
) -> None:
|
2015-11-19 10:16:25 -05:00
|
|
|
"""
|
|
|
|
validate that a Macaroon is understood by and was signed by this server.
|
|
|
|
|
|
|
|
Args:
|
2021-04-23 12:02:16 -04:00
|
|
|
macaroon: The macaroon to validate
|
|
|
|
type_string: The kind of token required (e.g. "access", "delete_pusher")
|
|
|
|
user_id: 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")
|
2021-03-04 09:44:22 -05:00
|
|
|
satisfy_expiry(v, self.clock.time_msec)
|
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 = "))
|
|
|
|
|
2020-05-06 10:54:58 -04:00
|
|
|
v.verify(macaroon, self._macaroon_secret_key)
|
2015-08-26 08:22:23 -04:00
|
|
|
|
2020-12-11 11:33:31 -05:00
|
|
|
def get_appservice_by_req(self, request: SynapseRequest) -> ApplicationService:
|
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:
|
2019-10-31 06:23:24 -04:00
|
|
|
logger.warning("Unrecognised appservice access token.")
|
2019-07-11 06:06:23 -04:00
|
|
|
raise InvalidClientTokenError()
|
2021-04-23 12:02:16 -04:00
|
|
|
request.requester = create_requester(service.sender, app_service=service)
|
2020-08-06 08:30:06 -04:00
|
|
|
return service
|
2015-02-06 05:57:14 -05:00
|
|
|
|
2020-06-05 09:33:49 -04:00
|
|
|
async def is_server_admin(self, user: UserID) -> bool:
|
2017-09-19 11:08:14 -04:00
|
|
|
"""Check if the given user is a local server admin.
|
|
|
|
|
|
|
|
Args:
|
2020-06-05 09:33:49 -04:00
|
|
|
user: user to check
|
2017-09-19 11:08:14 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-06-05 09:33:49 -04:00
|
|
|
True if the user is an admin
|
2017-09-19 11:08:14 -04:00
|
|
|
"""
|
2020-06-05 09:33:49 -04:00
|
|
|
return await self.store.is_server_admin(user)
|
2014-09-29 08:35:38 -04:00
|
|
|
|
2021-04-23 12:02:16 -04:00
|
|
|
async def check_can_change_room_list(self, room_id: str, user: UserID) -> bool:
|
2020-03-04 11:30:46 -05:00
|
|
|
"""Determine whether the user is allowed to edit the room's entry in the
|
2016-03-21 10:03:20 -04:00
|
|
|
published room list.
|
|
|
|
|
|
|
|
Args:
|
2020-02-21 07:18:33 -05:00
|
|
|
room_id
|
|
|
|
user
|
2016-03-21 10:03:20 -04:00
|
|
|
"""
|
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
is_admin = await self.is_server_admin(user)
|
2016-03-21 10:03:20 -04:00
|
|
|
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()
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.check_user_in_room(room_id, user_id)
|
2016-03-21 10:03:20 -04:00
|
|
|
|
|
|
|
# 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
|
2020-02-21 07:18:33 -05:00
|
|
|
# m.room.canonical_alias events
|
2020-05-01 10:15:36 -04:00
|
|
|
power_level_event = await self.state.get_current_state(
|
2016-03-21 10:03:20 -04:00
|
|
|
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(
|
2020-02-21 07:18:33 -05:00
|
|
|
EventTypes.CanonicalAlias, "", 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
|
|
|
|
2020-03-04 11:30:46 -05:00
|
|
|
return user_level >= send_level
|
2016-09-09 11:29:10 -04:00
|
|
|
|
2018-07-13 17:34:49 -04:00
|
|
|
@staticmethod
|
2021-04-23 12:02:16 -04:00
|
|
|
def has_access_token(request: Request) -> bool:
|
2018-07-13 17:34:49 -04:00
|
|
|
"""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:
|
2021-04-23 12:02:16 -04:00
|
|
|
False if no access_token was given, True otherwise.
|
2018-07-13 17:34:49 -04:00
|
|
|
"""
|
2021-03-26 12:49:46 -04:00
|
|
|
# This will always be set by the time Twisted calls us.
|
|
|
|
assert request.args is not None
|
|
|
|
|
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
|
2021-04-23 12:02:16 -04:00
|
|
|
def get_access_token_from_request(request: Request) -> str:
|
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:
|
2021-04-23 12:02:16 -04:00
|
|
|
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
|
|
|
"""
|
2021-03-26 12:49:46 -04:00
|
|
|
# This will always be set by the time Twisted calls us.
|
|
|
|
assert request.args is not None
|
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:
|
|
|
|
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
|
|
|
|
2018-08-20 09:54:49 -04:00
|
|
|
return query_params[0].decode("ascii")
|
2018-07-20 10:30:59 -04:00
|
|
|
|
2020-08-06 08:30:06 -04:00
|
|
|
async def check_user_in_room_or_world_readable(
|
2020-02-18 18:14:57 -05:00
|
|
|
self, room_id: str, user_id: str, allow_departed_users: bool = False
|
2020-08-06 08:30:06 -04:00
|
|
|
) -> Tuple[str, Optional[str]]:
|
2018-07-20 10:30:59 -04:00
|
|
|
"""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.
|
|
|
|
|
2020-02-18 18:14:57 -05:00
|
|
|
Args:
|
|
|
|
room_id: room to check
|
|
|
|
user_id: user to check
|
|
|
|
allow_departed_users: if True, accept users that were previously
|
|
|
|
members but have now departed
|
|
|
|
|
2018-07-20 10:30:59 -04:00
|
|
|
Returns:
|
2020-08-06 08:30:06 -04:00
|
|
|
Resolves to the current membership of 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:
|
2020-02-18 18:13:29 -05:00
|
|
|
# check_user_in_room will return the most recent membership
|
2018-07-20 10:30:59 -04:00
|
|
|
# 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.
|
2020-08-06 08:30:06 -04:00
|
|
|
member_event = await self.check_user_in_room(
|
2020-02-18 18:14:57 -05:00
|
|
|
room_id, user_id, allow_departed_users=allow_departed_users
|
2020-02-18 18:13:29 -05:00
|
|
|
)
|
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:
|
2020-08-06 08:30:06 -04:00
|
|
|
visibility = await self.state.get_current_state(
|
|
|
|
room_id, EventTypes.RoomHistoryVisibility, ""
|
2018-07-20 10:30:59 -04:00
|
|
|
)
|
|
|
|
if (
|
|
|
|
visibility
|
2020-12-16 08:46:37 -05:00
|
|
|
and visibility.content.get("history_visibility")
|
|
|
|
== HistoryVisibility.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(
|
2020-02-18 18:14:57 -05:00
|
|
|
403,
|
|
|
|
"User %s not in room %s, and room previews are disabled"
|
|
|
|
% (user_id, room_id),
|
2018-07-20 10:30:59 -04:00
|
|
|
)
|
2018-08-02 11:57:35 -04:00
|
|
|
|
2021-10-18 15:01:10 -04:00
|
|
|
async def check_auth_blocking(
|
|
|
|
self,
|
|
|
|
user_id: Optional[str] = None,
|
|
|
|
threepid: Optional[dict] = None,
|
|
|
|
user_type: Optional[str] = None,
|
|
|
|
requester: Optional[Requester] = None,
|
|
|
|
) -> None:
|
|
|
|
await self._auth_blocking.check_auth_blocking(
|
|
|
|
user_id=user_id, threepid=threepid, user_type=user_type, requester=requester
|
|
|
|
)
|