2021-08-26 07:53:52 -04:00
|
|
|
# Copyright 2014-2021 The Matrix.org Foundation C.I.C.
|
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
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
2021-03-16 07:21:26 -04:00
|
|
|
import re
|
2021-08-26 07:53:52 -04:00
|
|
|
from typing import TYPE_CHECKING, Any, Awaitable, Callable, Dict, List, Optional, Tuple
|
2021-06-24 09:33:20 -04:00
|
|
|
|
|
|
|
from typing_extensions import TypedDict
|
2017-03-14 09:37:36 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.errors import Codes, LoginError, SynapseError
|
2019-03-15 13:46:16 -04:00
|
|
|
from synapse.api.ratelimiting import Ratelimiter
|
2021-03-16 07:21:26 -04:00
|
|
|
from synapse.api.urls import CLIENT_API_PREFIX
|
2020-09-18 09:55:13 -04:00
|
|
|
from synapse.appservice import ApplicationService
|
2021-01-27 07:41:24 -05:00
|
|
|
from synapse.handlers.sso import SsoIdentityProvider
|
2021-02-26 09:02:06 -05:00
|
|
|
from synapse.http import get_request_uri
|
2021-01-27 07:41:24 -05:00
|
|
|
from synapse.http.server import HttpServer, finish_request
|
2018-12-07 07:10:07 -05:00
|
|
|
from synapse.http.servlet import (
|
|
|
|
RestServlet,
|
2021-06-24 09:33:20 -04:00
|
|
|
assert_params_in_dict,
|
|
|
|
parse_boolean,
|
2021-06-08 08:30:48 -04:00
|
|
|
parse_bytes_from_args,
|
2018-12-07 07:10:07 -05:00
|
|
|
parse_json_object_from_request,
|
|
|
|
parse_string,
|
|
|
|
)
|
2020-03-26 15:05:26 -04:00
|
|
|
from synapse.http.site import SynapseRequest
|
2021-08-17 07:57:58 -04:00
|
|
|
from synapse.rest.client._base import client_patterns
|
2018-12-24 04:44:33 -05:00
|
|
|
from synapse.rest.well_known import WellKnownBuilder
|
2020-07-06 08:31:51 -04:00
|
|
|
from synapse.types import JsonDict, UserID
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2020-12-11 11:33:31 -05:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2015-07-09 03:28:15 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
2021-07-19 10:28:05 -04:00
|
|
|
class LoginResponse(TypedDict, total=False):
|
|
|
|
user_id: str
|
|
|
|
access_token: str
|
|
|
|
home_server: str
|
|
|
|
expires_in_ms: Optional[int]
|
|
|
|
refresh_token: Optional[str]
|
|
|
|
device_id: str
|
|
|
|
well_known: Optional[Dict[str, Any]]
|
2021-06-24 09:33:20 -04:00
|
|
|
|
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
class LoginRestServlet(RestServlet):
|
|
|
|
PATTERNS = client_patterns("/login$", v1=True)
|
2015-10-07 09:45:57 -04:00
|
|
|
CAS_TYPE = "m.login.cas"
|
2018-11-27 02:51:52 -05:00
|
|
|
SSO_TYPE = "m.login.sso"
|
2015-11-05 09:01:12 -05:00
|
|
|
TOKEN_TYPE = "m.login.token"
|
2020-06-24 05:23:55 -04:00
|
|
|
JWT_TYPE = "org.matrix.login.jwt"
|
|
|
|
JWT_TYPE_DEPRECATED = "m.login.jwt"
|
2020-09-18 09:55:13 -04:00
|
|
|
APPSERVICE_TYPE = "uk.half-shot.msc2778.login.application_service"
|
2021-06-24 09:33:20 -04:00
|
|
|
REFRESH_TOKEN_PARAM = "org.matrix.msc2918.refresh_token"
|
2015-07-07 08:10:30 -04:00
|
|
|
|
2020-12-11 11:33:31 -05:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2019-06-03 07:28:59 -04:00
|
|
|
self.hs = hs
|
2020-07-14 07:16:43 -04:00
|
|
|
|
|
|
|
# JWT configuration variables.
|
2021-09-23 12:03:01 -04:00
|
|
|
self.jwt_enabled = hs.config.jwt.jwt_enabled
|
|
|
|
self.jwt_secret = hs.config.jwt.jwt_secret
|
|
|
|
self.jwt_algorithm = hs.config.jwt.jwt_algorithm
|
|
|
|
self.jwt_issuer = hs.config.jwt.jwt_issuer
|
|
|
|
self.jwt_audiences = hs.config.jwt.jwt_audiences
|
2020-07-14 07:16:43 -04:00
|
|
|
|
|
|
|
# SSO configuration.
|
2021-09-24 07:25:21 -04:00
|
|
|
self.saml2_enabled = hs.config.saml2.saml2_enabled
|
2021-09-23 07:13:34 -04:00
|
|
|
self.cas_enabled = hs.config.cas.cas_enabled
|
2021-09-23 12:03:01 -04:00
|
|
|
self.oidc_enabled = hs.config.oidc.oidc_enabled
|
2021-06-24 09:33:20 -04:00
|
|
|
self._msc2918_enabled = hs.config.access_token_lifetime is not None
|
2020-07-14 07:16:43 -04:00
|
|
|
|
2020-09-18 09:55:13 -04:00
|
|
|
self.auth = hs.get_auth()
|
|
|
|
|
2021-06-24 09:33:20 -04:00
|
|
|
self.clock = hs.get_clock()
|
|
|
|
|
2016-06-02 08:31:45 -04:00
|
|
|
self.auth_handler = self.hs.get_auth_handler()
|
2019-02-20 02:47:31 -05:00
|
|
|
self.registration_handler = hs.get_registration_handler()
|
2021-01-27 07:41:24 -05:00
|
|
|
self._sso_handler = hs.get_sso_handler()
|
|
|
|
|
2018-12-24 04:44:33 -05:00
|
|
|
self._well_known_builder = WellKnownBuilder(hs)
|
2020-06-05 05:47:20 -04:00
|
|
|
self._address_ratelimiter = Ratelimiter(
|
2021-03-30 07:06:09 -04:00
|
|
|
store=hs.get_datastore(),
|
2020-06-05 05:47:20 -04:00
|
|
|
clock=hs.get_clock(),
|
2021-09-13 13:07:12 -04:00
|
|
|
rate_hz=self.hs.config.ratelimiting.rc_login_address.per_second,
|
|
|
|
burst_count=self.hs.config.ratelimiting.rc_login_address.burst_count,
|
2020-06-05 05:47:20 -04:00
|
|
|
)
|
|
|
|
self._account_ratelimiter = Ratelimiter(
|
2021-03-30 07:06:09 -04:00
|
|
|
store=hs.get_datastore(),
|
2020-06-05 05:47:20 -04:00
|
|
|
clock=hs.get_clock(),
|
2021-09-13 13:07:12 -04:00
|
|
|
rate_hz=self.hs.config.ratelimiting.rc_login_account.per_second,
|
|
|
|
burst_count=self.hs.config.ratelimiting.rc_login_account.burst_count,
|
2020-06-05 05:47:20 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2021-08-24 05:17:51 -04:00
|
|
|
# ensure the CAS/SAML/OIDC handlers are loaded on this worker instance.
|
|
|
|
# The reason for this is to ensure that the auth_provider_ids are registered
|
|
|
|
# with SsoHandler, which in turn ensures that the login/registration prometheus
|
|
|
|
# counters are initialised for the auth_provider_ids.
|
|
|
|
_load_sso_handlers(hs)
|
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
def on_GET(self, request: SynapseRequest) -> Tuple[int, JsonDict]:
|
2021-09-09 12:59:59 -04:00
|
|
|
flows: List[JsonDict] = []
|
2016-03-28 15:33:40 -04:00
|
|
|
if self.jwt_enabled:
|
|
|
|
flows.append({"type": LoginRestServlet.JWT_TYPE})
|
2020-06-24 05:23:55 -04:00
|
|
|
flows.append({"type": LoginRestServlet.JWT_TYPE_DEPRECATED})
|
2020-05-08 08:30:40 -04:00
|
|
|
|
2015-10-07 09:45:57 -04:00
|
|
|
if self.cas_enabled:
|
2018-11-27 02:51:52 -05:00
|
|
|
# we advertise CAS for backwards compat, though MSC1721 renamed it
|
|
|
|
# to SSO.
|
2015-10-07 09:45:57 -04:00
|
|
|
flows.append({"type": LoginRestServlet.CAS_TYPE})
|
2015-11-20 09:05:22 -05:00
|
|
|
|
2020-06-04 06:49:51 -04:00
|
|
|
if self.cas_enabled or self.saml2_enabled or self.oidc_enabled:
|
2021-09-09 12:59:59 -04:00
|
|
|
flows.append(
|
|
|
|
{
|
|
|
|
"type": LoginRestServlet.SSO_TYPE,
|
|
|
|
"identity_providers": [
|
|
|
|
_get_auth_flow_dict_for_idp(idp)
|
|
|
|
for idp in self._sso_handler.get_identity_providers().values()
|
|
|
|
],
|
|
|
|
}
|
|
|
|
)
|
2021-01-27 07:41:24 -05:00
|
|
|
|
|
|
|
# While it's valid for us to advertise this login type generally,
|
2015-11-20 09:05:22 -05:00
|
|
|
# synapse currently only gives out these tokens as part of the
|
2020-06-04 06:49:51 -04:00
|
|
|
# SSO login flow.
|
2015-11-20 09:05:22 -05:00
|
|
|
# Generally we don't want to advertise login flows that clients
|
|
|
|
# don't know how to implement, since they (currently) will always
|
|
|
|
# fall back to the fallback API if they don't understand one of the
|
|
|
|
# login flow types returned.
|
2015-11-19 11:16:49 -05:00
|
|
|
flows.append({"type": LoginRestServlet.TOKEN_TYPE})
|
2017-10-31 06:38:40 -04:00
|
|
|
|
2021-07-19 10:28:05 -04:00
|
|
|
flows.extend({"type": t} for t in self.auth_handler.get_supported_login_types())
|
2015-11-19 11:16:49 -05:00
|
|
|
|
2020-10-19 13:03:55 -04:00
|
|
|
flows.append({"type": LoginRestServlet.APPSERVICE_TYPE})
|
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, {"flows": flows}
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
async def on_POST(self, request: SynapseRequest) -> Tuple[int, LoginResponse]:
|
2016-03-09 06:26:26 -05:00
|
|
|
login_submission = parse_json_object_from_request(request)
|
2020-09-18 09:55:13 -04:00
|
|
|
|
2021-06-24 09:33:20 -04:00
|
|
|
if self._msc2918_enabled:
|
|
|
|
# Check if this login should also issue a refresh token, as per
|
|
|
|
# MSC2918
|
|
|
|
should_issue_refresh_token = parse_boolean(
|
|
|
|
request, name=LoginRestServlet.REFRESH_TOKEN_PARAM, default=False
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
should_issue_refresh_token = False
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
try:
|
2020-09-18 09:55:13 -04:00
|
|
|
if login_submission["type"] == LoginRestServlet.APPSERVICE_TYPE:
|
|
|
|
appservice = self.auth.get_appservice_by_req(request)
|
2020-12-11 11:33:31 -05:00
|
|
|
|
|
|
|
if appservice.is_rate_limited():
|
2021-03-30 07:06:09 -04:00
|
|
|
await self._address_ratelimiter.ratelimit(
|
|
|
|
None, request.getClientIP()
|
|
|
|
)
|
2020-12-11 11:33:31 -05:00
|
|
|
|
2021-06-24 09:33:20 -04:00
|
|
|
result = await self._do_appservice_login(
|
|
|
|
login_submission,
|
|
|
|
appservice,
|
|
|
|
should_issue_refresh_token=should_issue_refresh_token,
|
|
|
|
)
|
2020-09-18 09:55:13 -04:00
|
|
|
elif self.jwt_enabled and (
|
2019-06-20 05:32:02 -04:00
|
|
|
login_submission["type"] == LoginRestServlet.JWT_TYPE
|
2020-06-24 05:23:55 -04:00
|
|
|
or login_submission["type"] == LoginRestServlet.JWT_TYPE_DEPRECATED
|
2019-06-20 05:32:02 -04:00
|
|
|
):
|
2021-03-30 07:06:09 -04:00
|
|
|
await self._address_ratelimiter.ratelimit(None, request.getClientIP())
|
2021-06-24 09:33:20 -04:00
|
|
|
result = await self._do_jwt_login(
|
|
|
|
login_submission,
|
|
|
|
should_issue_refresh_token=should_issue_refresh_token,
|
|
|
|
)
|
2015-11-05 09:01:12 -05:00
|
|
|
elif login_submission["type"] == LoginRestServlet.TOKEN_TYPE:
|
2021-03-30 07:06:09 -04:00
|
|
|
await self._address_ratelimiter.ratelimit(None, request.getClientIP())
|
2021-06-24 09:33:20 -04:00
|
|
|
result = await self._do_token_login(
|
|
|
|
login_submission,
|
|
|
|
should_issue_refresh_token=should_issue_refresh_token,
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
2021-03-30 07:06:09 -04:00
|
|
|
await self._address_ratelimiter.ratelimit(None, request.getClientIP())
|
2021-06-24 09:33:20 -04:00
|
|
|
result = await self._do_other_login(
|
|
|
|
login_submission,
|
|
|
|
should_issue_refresh_token=should_issue_refresh_token,
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
except KeyError:
|
|
|
|
raise SynapseError(400, "Missing JSON keys.")
|
|
|
|
|
2018-12-24 04:44:33 -05:00
|
|
|
well_known_data = self._well_known_builder.get_well_known()
|
|
|
|
if well_known_data:
|
|
|
|
result["well_known"] = well_known_data
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, result
|
2018-12-24 04:44:33 -05:00
|
|
|
|
2020-09-18 09:55:13 -04:00
|
|
|
async def _do_appservice_login(
|
2021-06-24 09:33:20 -04:00
|
|
|
self,
|
|
|
|
login_submission: JsonDict,
|
|
|
|
appservice: ApplicationService,
|
|
|
|
should_issue_refresh_token: bool = False,
|
2021-08-26 07:53:52 -04:00
|
|
|
) -> LoginResponse:
|
2020-11-30 14:20:56 -05:00
|
|
|
identifier = login_submission.get("identifier")
|
|
|
|
logger.info("Got appservice login request with identifier: %r", identifier)
|
|
|
|
|
|
|
|
if not isinstance(identifier, dict):
|
|
|
|
raise SynapseError(
|
|
|
|
400, "Invalid identifier in login submission", Codes.INVALID_PARAM
|
|
|
|
)
|
|
|
|
|
|
|
|
# this login flow only supports identifiers of type "m.id.user".
|
|
|
|
if identifier.get("type") != "m.id.user":
|
|
|
|
raise SynapseError(
|
|
|
|
400, "Unknown login identifier type", Codes.INVALID_PARAM
|
|
|
|
)
|
|
|
|
|
|
|
|
user = identifier.get("user")
|
|
|
|
if not isinstance(user, str):
|
|
|
|
raise SynapseError(400, "Invalid user in identifier", Codes.INVALID_PARAM)
|
|
|
|
|
|
|
|
if user.startswith("@"):
|
|
|
|
qualified_user_id = user
|
|
|
|
else:
|
|
|
|
qualified_user_id = UserID(user, self.hs.hostname).to_string()
|
2020-09-18 09:55:13 -04:00
|
|
|
|
|
|
|
if not appservice.is_interested_in_user(qualified_user_id):
|
|
|
|
raise LoginError(403, "Invalid access_token", errcode=Codes.FORBIDDEN)
|
|
|
|
|
2020-12-11 11:33:31 -05:00
|
|
|
return await self._complete_login(
|
2021-06-24 09:33:20 -04:00
|
|
|
qualified_user_id,
|
|
|
|
login_submission,
|
|
|
|
ratelimit=appservice.is_rate_limited(),
|
|
|
|
should_issue_refresh_token=should_issue_refresh_token,
|
2020-12-11 11:33:31 -05:00
|
|
|
)
|
2020-09-18 09:55:13 -04:00
|
|
|
|
2021-06-24 09:33:20 -04:00
|
|
|
async def _do_other_login(
|
|
|
|
self, login_submission: JsonDict, should_issue_refresh_token: bool = False
|
|
|
|
) -> LoginResponse:
|
2017-10-31 06:38:40 -04:00
|
|
|
"""Handle non-token/saml/jwt logins
|
|
|
|
|
|
|
|
Args:
|
|
|
|
login_submission:
|
2021-06-24 09:33:20 -04:00
|
|
|
should_issue_refresh_token: True if this login should issue
|
|
|
|
a refresh token alongside the access token.
|
2017-03-13 13:27:51 -04:00
|
|
|
|
2017-10-31 06:38:40 -04:00
|
|
|
Returns:
|
2020-07-06 08:31:51 -04:00
|
|
|
HTTP response
|
2017-10-31 06:38:40 -04:00
|
|
|
"""
|
2017-11-01 09:58:01 -04:00
|
|
|
# Log the request we got, but only certain fields to minimise the chance of
|
|
|
|
# logging someone's password (even if they accidentally put it in the wrong
|
|
|
|
# field)
|
|
|
|
logger.info(
|
|
|
|
"Got login request with identifier: %r, medium: %r, address: %r, user: %r",
|
2019-06-20 05:32:02 -04:00
|
|
|
login_submission.get("identifier"),
|
|
|
|
login_submission.get("medium"),
|
|
|
|
login_submission.get("address"),
|
|
|
|
login_submission.get("user"),
|
2017-11-01 10:02:52 -04:00
|
|
|
)
|
2020-12-01 12:42:26 -05:00
|
|
|
canonical_user_id, callback = await self.auth_handler.validate_login(
|
|
|
|
login_submission, ratelimit=True
|
2017-10-31 06:38:40 -04:00
|
|
|
)
|
2019-12-05 10:53:06 -05:00
|
|
|
result = await self._complete_login(
|
2021-06-24 09:33:20 -04:00
|
|
|
canonical_user_id,
|
|
|
|
login_submission,
|
|
|
|
callback,
|
|
|
|
should_issue_refresh_token=should_issue_refresh_token,
|
2019-03-26 13:48:30 -04:00
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return result
|
2019-03-26 13:48:30 -04:00
|
|
|
|
2019-12-05 10:53:06 -05:00
|
|
|
async def _complete_login(
|
2020-07-06 08:31:51 -04:00
|
|
|
self,
|
|
|
|
user_id: str,
|
|
|
|
login_submission: JsonDict,
|
2021-06-24 09:33:20 -04:00
|
|
|
callback: Optional[Callable[[LoginResponse], Awaitable[None]]] = None,
|
2020-07-06 08:31:51 -04:00
|
|
|
create_non_existent_users: bool = False,
|
2020-12-11 11:33:31 -05:00
|
|
|
ratelimit: bool = True,
|
2021-03-04 11:39:27 -05:00
|
|
|
auth_provider_id: Optional[str] = None,
|
2021-06-24 09:33:20 -04:00
|
|
|
should_issue_refresh_token: bool = False,
|
|
|
|
) -> LoginResponse:
|
2019-11-05 12:39:16 -05:00
|
|
|
"""Called when we've successfully authed the user and now need to
|
|
|
|
actually login them in (e.g. create devices). This gets called on
|
2020-07-06 08:31:51 -04:00
|
|
|
all successful logins.
|
2019-11-05 12:39:16 -05:00
|
|
|
|
2020-07-06 08:31:51 -04:00
|
|
|
Applies the ratelimiting for successful login attempts against an
|
2019-11-05 12:39:16 -05:00
|
|
|
account.
|
2019-03-26 13:48:30 -04:00
|
|
|
|
|
|
|
Args:
|
2020-07-06 08:31:51 -04:00
|
|
|
user_id: ID of the user to register.
|
|
|
|
login_submission: Dictionary of login information.
|
2020-09-30 13:02:43 -04:00
|
|
|
callback: Callback function to run after login.
|
2020-07-06 08:31:51 -04:00
|
|
|
create_non_existent_users: Whether to create the user if they don't
|
|
|
|
exist. Defaults to False.
|
2020-12-11 11:33:31 -05:00
|
|
|
ratelimit: Whether to ratelimit the login request.
|
2021-03-04 11:39:27 -05:00
|
|
|
auth_provider_id: The SSO IdP the user used, if any (just used for the
|
|
|
|
prometheus metrics).
|
2021-06-24 09:33:20 -04:00
|
|
|
should_issue_refresh_token: True if this login should issue
|
|
|
|
a refresh token alongside the access token.
|
2019-03-26 13:48:30 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-09-30 13:02:43 -04:00
|
|
|
result: Dictionary of account information after successful login.
|
2019-03-26 13:48:30 -04:00
|
|
|
"""
|
2019-11-05 12:39:16 -05:00
|
|
|
|
|
|
|
# Before we actually log them in we check if they've already logged in
|
|
|
|
# too often. This happens here rather than before as we don't
|
|
|
|
# necessarily know the user before now.
|
2020-12-11 11:33:31 -05:00
|
|
|
if ratelimit:
|
2021-03-30 07:06:09 -04:00
|
|
|
await self._account_ratelimiter.ratelimit(None, user_id.lower())
|
2019-11-05 12:39:16 -05:00
|
|
|
|
2020-06-01 12:55:07 -04:00
|
|
|
if create_non_existent_users:
|
|
|
|
canonical_uid = await self.auth_handler.check_user_exists(user_id)
|
|
|
|
if not canonical_uid:
|
|
|
|
canonical_uid = await self.registration_handler.register_user(
|
2019-11-05 12:39:16 -05:00
|
|
|
localpart=UserID.from_string(user_id).localpart
|
|
|
|
)
|
2020-06-01 12:55:07 -04:00
|
|
|
user_id = canonical_uid
|
2019-11-05 12:39:16 -05:00
|
|
|
|
2019-02-18 11:49:38 -05:00
|
|
|
device_id = login_submission.get("device_id")
|
|
|
|
initial_display_name = login_submission.get("initial_device_display_name")
|
2021-06-24 09:33:20 -04:00
|
|
|
(
|
|
|
|
device_id,
|
|
|
|
access_token,
|
|
|
|
valid_until_ms,
|
|
|
|
refresh_token,
|
|
|
|
) = await self.registration_handler.register_device(
|
|
|
|
user_id,
|
|
|
|
device_id,
|
|
|
|
initial_display_name,
|
|
|
|
auth_provider_id=auth_provider_id,
|
|
|
|
should_issue_refresh_token=should_issue_refresh_token,
|
2016-07-15 07:34:23 -04:00
|
|
|
)
|
2017-10-31 06:38:40 -04:00
|
|
|
|
2021-06-24 09:33:20 -04:00
|
|
|
result = LoginResponse(
|
|
|
|
user_id=user_id,
|
|
|
|
access_token=access_token,
|
|
|
|
home_server=self.hs.hostname,
|
|
|
|
device_id=device_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
if valid_until_ms is not None:
|
|
|
|
expires_in_ms = valid_until_ms - self.clock.time_msec()
|
|
|
|
result["expires_in_ms"] = expires_in_ms
|
|
|
|
|
|
|
|
if refresh_token is not None:
|
|
|
|
result["refresh_token"] = refresh_token
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2017-10-31 11:15:51 -04:00
|
|
|
if callback is not None:
|
2019-12-05 10:53:06 -05:00
|
|
|
await callback(result)
|
2017-10-31 11:15:51 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return result
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2021-06-24 09:33:20 -04:00
|
|
|
async def _do_token_login(
|
|
|
|
self, login_submission: JsonDict, should_issue_refresh_token: bool = False
|
|
|
|
) -> LoginResponse:
|
2020-09-30 13:02:43 -04:00
|
|
|
"""
|
|
|
|
Handle the final stage of SSO login.
|
|
|
|
|
|
|
|
Args:
|
2021-06-24 09:33:20 -04:00
|
|
|
login_submission: The JSON request body.
|
|
|
|
should_issue_refresh_token: True if this login should issue
|
|
|
|
a refresh token alongside the access token.
|
2020-09-30 13:02:43 -04:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
The body of the JSON response.
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
token = login_submission["token"]
|
2016-06-02 08:31:45 -04:00
|
|
|
auth_handler = self.auth_handler
|
2021-03-04 09:44:22 -05:00
|
|
|
res = await auth_handler.validate_short_term_login_token(token)
|
2019-02-18 11:49:38 -05:00
|
|
|
|
2020-09-30 13:02:43 -04:00
|
|
|
return await self._complete_login(
|
2021-03-04 11:39:27 -05:00
|
|
|
res.user_id,
|
|
|
|
login_submission,
|
|
|
|
self.auth_handler._sso_login_callback,
|
|
|
|
auth_provider_id=res.auth_provider_id,
|
2021-06-24 09:33:20 -04:00
|
|
|
should_issue_refresh_token=should_issue_refresh_token,
|
2020-09-30 13:02:43 -04:00
|
|
|
)
|
2015-11-05 09:01:12 -05:00
|
|
|
|
2021-06-24 09:33:20 -04:00
|
|
|
async def _do_jwt_login(
|
|
|
|
self, login_submission: JsonDict, should_issue_refresh_token: bool = False
|
|
|
|
) -> LoginResponse:
|
2016-04-01 13:04:28 -04:00
|
|
|
token = login_submission.get("token", None)
|
2016-03-28 15:33:40 -04:00
|
|
|
if token is None:
|
2016-04-25 09:30:15 -04:00
|
|
|
raise LoginError(
|
2020-07-15 07:10:21 -04:00
|
|
|
403, "Token field for JWT is missing", errcode=Codes.FORBIDDEN
|
2016-04-25 09:30:15 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
import jwt
|
2016-03-28 15:33:40 -04:00
|
|
|
|
|
|
|
try:
|
2019-06-20 05:32:02 -04:00
|
|
|
payload = jwt.decode(
|
2020-07-14 07:16:43 -04:00
|
|
|
token,
|
|
|
|
self.jwt_secret,
|
|
|
|
algorithms=[self.jwt_algorithm],
|
|
|
|
issuer=self.jwt_issuer,
|
|
|
|
audience=self.jwt_audiences,
|
|
|
|
)
|
|
|
|
except jwt.PyJWTError as e:
|
|
|
|
# A JWT error occurred, return some info back to the client.
|
|
|
|
raise LoginError(
|
2021-02-16 17:32:34 -05:00
|
|
|
403,
|
|
|
|
"JWT validation failed: %s" % (str(e),),
|
|
|
|
errcode=Codes.FORBIDDEN,
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2016-03-28 15:33:40 -04:00
|
|
|
|
2016-04-01 13:04:28 -04:00
|
|
|
user = payload.get("sub", None)
|
2016-03-28 15:33:40 -04:00
|
|
|
if user is None:
|
2020-07-15 07:10:21 -04:00
|
|
|
raise LoginError(403, "Invalid JWT", errcode=Codes.FORBIDDEN)
|
2016-03-28 15:33:40 -04:00
|
|
|
|
2017-10-20 11:33:15 -04:00
|
|
|
user_id = UserID(user, self.hs.hostname).to_string()
|
2019-12-05 10:53:06 -05:00
|
|
|
result = await self._complete_login(
|
2021-06-24 09:33:20 -04:00
|
|
|
user_id,
|
|
|
|
login_submission,
|
|
|
|
create_non_existent_users=True,
|
|
|
|
should_issue_refresh_token=should_issue_refresh_token,
|
2019-11-20 04:29:48 -05:00
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return result
|
2016-03-28 15:33:40 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2021-09-09 12:59:59 -04:00
|
|
|
def _get_auth_flow_dict_for_idp(idp: SsoIdentityProvider) -> JsonDict:
|
2021-01-27 07:41:24 -05:00
|
|
|
"""Return an entry for the login flow dict
|
|
|
|
|
|
|
|
Returns an entry suitable for inclusion in "identity_providers" in the
|
|
|
|
response to GET /_matrix/client/r0/login
|
2021-03-16 07:21:26 -04:00
|
|
|
|
|
|
|
Args:
|
|
|
|
idp: the identity provider to describe
|
2021-01-27 07:41:24 -05:00
|
|
|
"""
|
2021-07-16 13:22:36 -04:00
|
|
|
e: JsonDict = {"id": idp.idp_id, "name": idp.idp_name}
|
2021-01-27 07:41:24 -05:00
|
|
|
if idp.idp_icon:
|
|
|
|
e["icon"] = idp.idp_icon
|
2021-01-27 16:31:45 -05:00
|
|
|
if idp.idp_brand:
|
|
|
|
e["brand"] = idp.idp_brand
|
2021-01-27 07:41:24 -05:00
|
|
|
return e
|
|
|
|
|
|
|
|
|
2021-06-24 09:33:20 -04:00
|
|
|
class RefreshTokenServlet(RestServlet):
|
|
|
|
PATTERNS = client_patterns(
|
|
|
|
"/org.matrix.msc2918.refresh_token/refresh$", releases=(), unstable=True
|
|
|
|
)
|
|
|
|
|
|
|
|
def __init__(self, hs: "HomeServer"):
|
|
|
|
self._auth_handler = hs.get_auth_handler()
|
|
|
|
self._clock = hs.get_clock()
|
|
|
|
self.access_token_lifetime = hs.config.access_token_lifetime
|
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
async def on_POST(self, request: SynapseRequest) -> Tuple[int, JsonDict]:
|
2021-06-24 09:33:20 -04:00
|
|
|
refresh_submission = parse_json_object_from_request(request)
|
|
|
|
|
|
|
|
assert_params_in_dict(refresh_submission, ["refresh_token"])
|
|
|
|
token = refresh_submission["refresh_token"]
|
|
|
|
if not isinstance(token, str):
|
|
|
|
raise SynapseError(400, "Invalid param: refresh_token", Codes.INVALID_PARAM)
|
|
|
|
|
|
|
|
valid_until_ms = self._clock.time_msec() + self.access_token_lifetime
|
|
|
|
access_token, refresh_token = await self._auth_handler.refresh_token(
|
|
|
|
token, valid_until_ms
|
|
|
|
)
|
|
|
|
expires_in_ms = valid_until_ms - self._clock.time_msec()
|
|
|
|
return (
|
|
|
|
200,
|
|
|
|
{
|
|
|
|
"access_token": access_token,
|
|
|
|
"refresh_token": refresh_token,
|
|
|
|
"expires_in_ms": expires_in_ms,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-01-04 13:13:49 -05:00
|
|
|
class SsoRedirectServlet(RestServlet):
|
2021-03-16 07:21:26 -04:00
|
|
|
PATTERNS = list(client_patterns("/login/(cas|sso)/redirect$", v1=True)) + [
|
|
|
|
re.compile(
|
|
|
|
"^"
|
|
|
|
+ CLIENT_API_PREFIX
|
|
|
|
+ "/r0/login/sso/redirect/(?P<idp_id>[A-Za-z0-9_.~-]+)$"
|
|
|
|
)
|
|
|
|
]
|
2015-11-05 09:01:12 -05:00
|
|
|
|
2021-01-04 13:13:49 -05:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
|
|
|
# make sure that the relevant handlers are instantiated, so that they
|
|
|
|
# register themselves with the main SSOHandler.
|
2021-08-24 05:17:51 -04:00
|
|
|
_load_sso_handlers(hs)
|
2021-01-04 13:13:49 -05:00
|
|
|
self._sso_handler = hs.get_sso_handler()
|
2021-09-13 13:07:12 -04:00
|
|
|
self._public_baseurl = hs.config.server.public_baseurl
|
2021-01-27 07:41:24 -05:00
|
|
|
|
|
|
|
async def on_GET(
|
|
|
|
self, request: SynapseRequest, idp_id: Optional[str] = None
|
|
|
|
) -> None:
|
2021-02-26 09:02:06 -05:00
|
|
|
if not self._public_baseurl:
|
|
|
|
raise SynapseError(400, "SSO requires a valid public_baseurl")
|
|
|
|
|
|
|
|
# if this isn't the expected hostname, redirect to the right one, so that we
|
|
|
|
# get our cookies back.
|
|
|
|
requested_uri = get_request_uri(request)
|
|
|
|
baseurl_bytes = self._public_baseurl.encode("utf-8")
|
|
|
|
if not requested_uri.startswith(baseurl_bytes):
|
|
|
|
# swap out the incorrect base URL for the right one.
|
|
|
|
#
|
|
|
|
# The idea here is to redirect from
|
|
|
|
# https://foo.bar/whatever/_matrix/...
|
|
|
|
# to
|
|
|
|
# https://public.baseurl/_matrix/...
|
|
|
|
#
|
|
|
|
i = requested_uri.index(b"/_matrix")
|
|
|
|
new_uri = baseurl_bytes[:-1] + requested_uri[i:]
|
|
|
|
logger.info(
|
|
|
|
"Requested URI %s is not canonical: redirecting to %s",
|
|
|
|
requested_uri.decode("utf-8", errors="replace"),
|
|
|
|
new_uri.decode("utf-8", errors="replace"),
|
|
|
|
)
|
|
|
|
request.redirect(new_uri)
|
|
|
|
finish_request(request)
|
|
|
|
return
|
|
|
|
|
2021-07-16 13:22:36 -04:00
|
|
|
args: Dict[bytes, List[bytes]] = request.args # type: ignore
|
2021-06-08 08:30:48 -04:00
|
|
|
client_redirect_url = parse_bytes_from_args(args, "redirectUrl", required=True)
|
2021-01-04 13:13:49 -05:00
|
|
|
sso_url = await self._sso_handler.handle_redirect_request(
|
2021-02-16 17:32:34 -05:00
|
|
|
request,
|
|
|
|
client_redirect_url,
|
|
|
|
idp_id,
|
2021-01-04 13:13:49 -05:00
|
|
|
)
|
|
|
|
logger.info("Redirecting to %s", sso_url)
|
2019-06-10 19:03:57 -04:00
|
|
|
request.redirect(sso_url)
|
|
|
|
finish_request(request)
|
|
|
|
|
2015-11-05 09:01:12 -05:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
class CasTicketServlet(RestServlet):
|
|
|
|
PATTERNS = client_patterns("/login/cas/ticket", v1=True)
|
2015-11-05 09:01:12 -05:00
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2020-03-26 15:05:26 -04:00
|
|
|
self._cas_handler = hs.get_cas_handler()
|
2015-11-05 09:01:12 -05:00
|
|
|
|
2020-03-26 15:05:26 -04:00
|
|
|
async def on_GET(self, request: SynapseRequest) -> None:
|
2020-04-03 15:35:05 -04:00
|
|
|
client_redirect_url = parse_string(request, "redirectUrl")
|
2020-03-26 15:05:26 -04:00
|
|
|
ticket = parse_string(request, "ticket", required=True)
|
2020-04-03 15:35:05 -04:00
|
|
|
|
|
|
|
# Maybe get a session ID (if this ticket is from user interactive
|
|
|
|
# authentication).
|
|
|
|
session = parse_string(request, "session")
|
|
|
|
|
|
|
|
# Either client_redirect_url or session must be provided.
|
|
|
|
if not client_redirect_url and not session:
|
|
|
|
message = "Missing string query parameter redirectUrl or session"
|
|
|
|
raise SynapseError(400, message, errcode=Codes.MISSING_PARAM)
|
|
|
|
|
|
|
|
await self._cas_handler.handle_ticket(
|
|
|
|
request, ticket, client_redirect_url, session
|
2017-02-02 05:53:36 -05:00
|
|
|
)
|
2015-11-05 09:01:12 -05:00
|
|
|
|
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2014-08-12 10:10:52 -04:00
|
|
|
LoginRestServlet(hs).register(http_server)
|
2021-06-24 09:33:20 -04:00
|
|
|
if hs.config.access_token_lifetime is not None:
|
|
|
|
RefreshTokenServlet(hs).register(http_server)
|
2021-01-04 13:13:49 -05:00
|
|
|
SsoRedirectServlet(hs).register(http_server)
|
2021-09-23 07:13:34 -04:00
|
|
|
if hs.config.cas.cas_enabled:
|
2015-11-05 09:01:12 -05:00
|
|
|
CasTicketServlet(hs).register(http_server)
|
2021-08-24 05:17:51 -04:00
|
|
|
|
|
|
|
|
2021-08-26 07:53:52 -04:00
|
|
|
def _load_sso_handlers(hs: "HomeServer") -> None:
|
2021-08-24 05:17:51 -04:00
|
|
|
"""Ensure that the SSO handlers are loaded, if they are enabled by configuration.
|
|
|
|
|
|
|
|
This is mostly useful to ensure that the CAS/SAML/OIDC handlers register themselves
|
|
|
|
with the main SsoHandler.
|
|
|
|
|
|
|
|
It's safe to call this multiple times.
|
|
|
|
"""
|
|
|
|
if hs.config.cas.cas_enabled:
|
|
|
|
hs.get_cas_handler()
|
|
|
|
if hs.config.saml2.saml2_enabled:
|
|
|
|
hs.get_saml_handler()
|
|
|
|
if hs.config.oidc.oidc_enabled:
|
|
|
|
hs.get_oidc_handler()
|