2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2019-02-14 12:10:36 -05:00
|
|
|
# Copyright 2019 New Vector 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.
|
2019-01-23 03:39:06 -05:00
|
|
|
|
2016-02-02 12:18:50 -05:00
|
|
|
import logging
|
|
|
|
import os
|
2015-02-17 05:54:06 -05:00
|
|
|
import sys
|
2021-11-10 15:06:54 -05:00
|
|
|
from typing import Dict, Iterable, Iterator, List
|
2017-03-10 10:16:50 -05:00
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
from twisted.internet.tcp import Port
|
|
|
|
from twisted.web.resource import EncodingResourceWrapper, Resource
|
2018-07-09 02:09:20 -04:00
|
|
|
from twisted.web.server import GzipEncoderFactory
|
|
|
|
from twisted.web.static import File
|
|
|
|
|
2017-08-15 10:57:46 -04:00
|
|
|
import synapse
|
2017-03-10 10:16:50 -05:00
|
|
|
import synapse.config.logger
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse import events
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.urls import (
|
|
|
|
FEDERATION_PREFIX,
|
|
|
|
LEGACY_MEDIA_PREFIX,
|
2021-11-17 10:30:24 -05:00
|
|
|
MEDIA_R0_PREFIX,
|
|
|
|
MEDIA_V3_PREFIX,
|
2018-07-09 02:09:20 -04:00
|
|
|
SERVER_KEY_V2_PREFIX,
|
|
|
|
STATIC_PREFIX,
|
|
|
|
WEB_CLIENT_PREFIX,
|
|
|
|
)
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.app import _base
|
2021-04-23 14:20:44 -04:00
|
|
|
from synapse.app._base import (
|
2021-06-21 06:41:25 -04:00
|
|
|
handle_startup_exception,
|
2021-04-23 14:20:44 -04:00
|
|
|
listen_ssl,
|
|
|
|
listen_tcp,
|
|
|
|
max_request_body_size,
|
2021-06-21 06:41:25 -04:00
|
|
|
redirect_stdio_to_logs,
|
2021-04-23 14:20:44 -04:00
|
|
|
register_start,
|
|
|
|
)
|
Error if macaroon key is missing from config
Currently we store all access tokens in the DB, and fall back to that
check if we can't validate the macaroon, so our fallback works here, but
for guests, their macaroons don't get persisted, so we don't get to
find them in the database. Each restart, we generate a new ephemeral
key, so guests lose access after each server restart.
I tried to fix up the config stuff to be less insane, but gave up, so
instead I bolt on yet another piece of custom one-off insanity.
Also, add some basic tests for config generation and loading.
2016-02-04 20:58:23 -05:00
|
|
|
from synapse.config._base import ConfigError
|
2020-09-10 06:45:12 -04:00
|
|
|
from synapse.config.emailconfig import ThreepidBehaviour
|
2014-08-31 11:06:39 -04:00
|
|
|
from synapse.config.homeserver import HomeServerConfig
|
2020-06-16 07:44:07 -04:00
|
|
|
from synapse.config.server import ListenerConfig
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.federation.transport.server import TransportLayerServer
|
2017-11-02 10:18:24 -04:00
|
|
|
from synapse.http.additional_resource import AdditionalResource
|
2020-05-22 09:30:07 -04:00
|
|
|
from synapse.http.server import (
|
|
|
|
OptionsResource,
|
|
|
|
RootOptionsRedirectResource,
|
|
|
|
RootRedirect,
|
2020-07-01 09:10:23 -04:00
|
|
|
StaticResource,
|
2020-05-22 09:30:07 -04:00
|
|
|
)
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.http.site import SynapseSite
|
2019-07-03 10:07:04 -04:00
|
|
|
from synapse.logging.context import LoggingContext
|
2019-07-18 09:57:15 -04:00
|
|
|
from synapse.metrics import METRICS_PREFIX, MetricsResource, RegistryProxy
|
2018-12-11 08:18:48 -05:00
|
|
|
from synapse.python_dependencies import check_requirements
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.replication.http import REPLICATION_PREFIX, ReplicationRestResource
|
2017-03-30 08:31:10 -04:00
|
|
|
from synapse.replication.tcp.resource import ReplicationStreamProtocolFactory
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.rest import ClientRestResource
|
2019-05-01 10:32:38 -04:00
|
|
|
from synapse.rest.admin import AdminRestResource
|
2020-08-07 09:21:24 -04:00
|
|
|
from synapse.rest.health import HealthResource
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.rest.key.v2 import KeyApiV2Resource
|
2021-02-01 10:47:59 -05:00
|
|
|
from synapse.rest.synapse.client import build_synapse_client_resource_tree
|
2021-11-01 11:10:16 -04:00
|
|
|
from synapse.rest.well_known import well_known_resource
|
2017-08-15 10:57:46 -04:00
|
|
|
from synapse.server import HomeServer
|
2019-12-06 08:09:40 -05:00
|
|
|
from synapse.storage import DataStore
|
2016-04-22 10:40:51 -04:00
|
|
|
from synapse.util.httpresourcetree import create_resource_tree
|
2017-11-02 10:18:24 -04:00
|
|
|
from synapse.util.module_loader import load_module
|
2018-09-17 12:37:56 -04:00
|
|
|
from synapse.util.versionstring import get_version_string
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-04-07 07:04:02 -04:00
|
|
|
logger = logging.getLogger("synapse.app.homeserver")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
def gz_wrap(r: Resource) -> Resource:
|
2015-05-14 11:39:19 -04:00
|
|
|
return EncodingResourceWrapper(r, [GzipEncoderFactory()])
|
|
|
|
|
|
|
|
|
2016-01-26 08:52:29 -05:00
|
|
|
class SynapseHomeServer(HomeServer):
|
2021-11-10 15:06:54 -05:00
|
|
|
DATASTORE_CLASS = DataStore # type: ignore
|
2018-08-28 08:39:49 -04:00
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
def _listener_http(
|
|
|
|
self, config: HomeServerConfig, listener_config: ListenerConfig
|
|
|
|
) -> Iterable[Port]:
|
2020-06-16 07:44:07 -04:00
|
|
|
port = listener_config.port
|
|
|
|
bind_addresses = listener_config.bind_addresses
|
|
|
|
tls = listener_config.tls
|
2021-11-10 15:06:54 -05:00
|
|
|
# Must exist since this is an HTTP listener.
|
|
|
|
assert listener_config.http_options is not None
|
2020-06-16 07:44:07 -04:00
|
|
|
site_tag = listener_config.http_options.tag
|
|
|
|
if site_tag is None:
|
2020-12-08 09:04:35 -05:00
|
|
|
site_tag = str(port)
|
2015-06-12 10:33:07 -04:00
|
|
|
|
2020-08-07 09:21:24 -04:00
|
|
|
# We always include a health resource.
|
2021-11-10 15:06:54 -05:00
|
|
|
resources: Dict[str, Resource] = {"/health": HealthResource()}
|
2020-08-07 09:21:24 -04:00
|
|
|
|
2020-06-16 07:44:07 -04:00
|
|
|
for res in listener_config.http_options.resources:
|
|
|
|
for name in res.names:
|
|
|
|
if name == "openid" and "federation" in res.names:
|
2019-01-20 18:54:43 -05:00
|
|
|
# Skip loading openid resource if federation is defined
|
|
|
|
# since federation resource will include openid
|
|
|
|
continue
|
2020-06-16 07:44:07 -04:00
|
|
|
resources.update(self._configure_named_resource(name, res.compress))
|
2015-06-12 10:33:07 -04:00
|
|
|
|
2020-06-16 07:44:07 -04:00
|
|
|
additional_resources = listener_config.http_options.additional_resources
|
2019-06-20 05:32:02 -04:00
|
|
|
logger.debug("Configuring additional resources: %r", additional_resources)
|
2020-10-07 07:03:26 -04:00
|
|
|
module_api = self.get_module_api()
|
2017-11-02 10:18:24 -04:00
|
|
|
for path, resmodule in additional_resources.items():
|
2020-12-08 09:04:35 -05:00
|
|
|
handler_cls, config = load_module(
|
|
|
|
resmodule,
|
|
|
|
("listeners", site_tag, "additional_resources", "<%s>" % (path,)),
|
|
|
|
)
|
2017-11-02 10:18:24 -04:00
|
|
|
handler = handler_cls(config, module_api)
|
2021-11-10 15:06:54 -05:00
|
|
|
if isinstance(handler, Resource):
|
2020-01-13 07:42:44 -05:00
|
|
|
resource = handler
|
|
|
|
elif hasattr(handler, "handle_request"):
|
|
|
|
resource = AdditionalResource(self, handler.handle_request)
|
|
|
|
else:
|
|
|
|
raise ConfigError(
|
|
|
|
"additional_resource %s does not implement a known interface"
|
|
|
|
% (resmodule["module"],)
|
|
|
|
)
|
|
|
|
resources[path] = resource
|
2017-11-02 10:18:24 -04:00
|
|
|
|
2021-06-18 07:15:52 -04:00
|
|
|
# Attach additional resources registered by modules.
|
|
|
|
resources.update(self._module_web_resources)
|
|
|
|
self._module_web_resources_consumed = True
|
|
|
|
|
2022-01-20 10:34:45 -05:00
|
|
|
# Try to find something useful to serve at '/':
|
|
|
|
#
|
|
|
|
# 1. Redirect to the web client if it is an HTTP(S) URL.
|
|
|
|
# 2. Redirect to the web client served via Synapse.
|
|
|
|
# 3. Redirect to the static "Synapse is running" page.
|
|
|
|
# 4. Do not redirect and use a blank resource.
|
2022-01-20 09:21:06 -05:00
|
|
|
if self.config.server.web_client_location_is_redirect:
|
|
|
|
root_resource: Resource = RootOptionsRedirectResource(
|
|
|
|
self.config.server.web_client_location
|
|
|
|
)
|
2022-01-20 10:34:45 -05:00
|
|
|
elif WEB_CLIENT_PREFIX in resources:
|
|
|
|
root_resource = RootOptionsRedirectResource(WEB_CLIENT_PREFIX)
|
2018-12-11 07:18:19 -05:00
|
|
|
elif STATIC_PREFIX in resources:
|
2020-05-22 09:30:07 -04:00
|
|
|
root_resource = RootOptionsRedirectResource(STATIC_PREFIX)
|
2016-04-22 10:40:51 -04:00
|
|
|
else:
|
2020-05-22 09:30:07 -04:00
|
|
|
root_resource = OptionsResource()
|
2016-04-22 10:40:51 -04:00
|
|
|
|
2021-04-23 12:06:47 -04:00
|
|
|
site = SynapseSite(
|
|
|
|
"synapse.access.%s.%s" % ("https" if tls else "http", site_tag),
|
|
|
|
site_tag,
|
|
|
|
listener_config,
|
|
|
|
create_resource_tree(resources, root_resource),
|
|
|
|
self.version_string,
|
2021-04-23 14:20:44 -04:00
|
|
|
max_request_body_size=max_request_body_size(self.config),
|
2021-04-23 12:06:47 -04:00
|
|
|
reactor=self.get_reactor(),
|
|
|
|
)
|
2016-12-18 14:42:43 -05:00
|
|
|
|
2015-06-12 10:33:07 -04:00
|
|
|
if tls:
|
2021-11-10 15:06:54 -05:00
|
|
|
# refresh_certificate should have been called before this.
|
|
|
|
assert self.tls_server_context_factory is not None
|
2019-02-13 06:53:43 -05:00
|
|
|
ports = listen_ssl(
|
2017-09-06 11:48:49 -04:00
|
|
|
bind_addresses,
|
|
|
|
port,
|
2021-04-23 12:06:47 -04:00
|
|
|
site,
|
2017-09-06 11:48:49 -04:00
|
|
|
self.tls_server_context_factory,
|
2019-01-18 03:02:08 -05:00
|
|
|
reactor=self.get_reactor(),
|
2017-09-06 11:48:49 -04:00
|
|
|
)
|
2019-02-13 06:53:43 -05:00
|
|
|
logger.info("Synapse now listening on TCP port %d (TLS)", port)
|
2017-09-02 11:26:40 -04:00
|
|
|
|
2015-06-12 10:33:07 -04:00
|
|
|
else:
|
2019-02-13 06:53:43 -05:00
|
|
|
ports = listen_tcp(
|
2017-09-06 11:48:49 -04:00
|
|
|
bind_addresses,
|
|
|
|
port,
|
2021-04-23 12:06:47 -04:00
|
|
|
site,
|
2019-01-18 03:02:08 -05:00
|
|
|
reactor=self.get_reactor(),
|
2017-09-06 11:48:49 -04:00
|
|
|
)
|
2019-02-13 06:53:43 -05:00
|
|
|
logger.info("Synapse now listening on TCP port %d", port)
|
|
|
|
|
|
|
|
return ports
|
2014-08-14 04:52:20 -04:00
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
def _configure_named_resource(
|
|
|
|
self, name: str, compress: bool = False
|
|
|
|
) -> Dict[str, Resource]:
|
2017-11-02 09:27:21 -04:00
|
|
|
"""Build a resource map for a named resource
|
|
|
|
|
|
|
|
Args:
|
2021-11-10 15:06:54 -05:00
|
|
|
name: named resource: one of "client", "federation", etc
|
|
|
|
compress: whether to enable gzip compression for this resource
|
2017-11-02 09:27:21 -04:00
|
|
|
|
|
|
|
Returns:
|
2021-11-10 15:06:54 -05:00
|
|
|
map from path to HTTP resource
|
2017-11-02 09:27:21 -04:00
|
|
|
"""
|
2021-11-10 15:06:54 -05:00
|
|
|
resources: Dict[str, Resource] = {}
|
2017-11-02 09:27:21 -04:00
|
|
|
if name == "client":
|
2021-11-10 15:06:54 -05:00
|
|
|
client_resource: Resource = ClientRestResource(self)
|
2017-11-02 09:27:21 -04:00
|
|
|
if compress:
|
|
|
|
client_resource = gz_wrap(client_resource)
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
resources.update(
|
|
|
|
{
|
2022-01-18 11:03:56 -05:00
|
|
|
"/_matrix/client/api/v1": client_resource,
|
|
|
|
"/_matrix/client/r0": client_resource,
|
|
|
|
"/_matrix/client/v1": client_resource,
|
|
|
|
"/_matrix/client/v3": client_resource,
|
|
|
|
"/_matrix/client/unstable": client_resource,
|
|
|
|
"/_matrix/client/v2_alpha": client_resource,
|
|
|
|
"/_matrix/client/versions": client_resource,
|
2021-11-01 11:10:16 -04:00
|
|
|
"/.well-known": well_known_resource(self),
|
2019-06-20 05:32:02 -04:00
|
|
|
"/_synapse/admin": AdminRestResource(self),
|
2021-02-01 10:47:59 -05:00
|
|
|
**build_synapse_client_resource_tree(self),
|
2019-06-20 05:32:02 -04:00
|
|
|
}
|
|
|
|
)
|
2017-11-02 09:27:21 -04:00
|
|
|
|
2021-09-23 07:13:34 -04:00
|
|
|
if self.config.email.threepid_behaviour_email == ThreepidBehaviour.LOCAL:
|
2020-09-10 06:45:12 -04:00
|
|
|
from synapse.rest.synapse.client.password_reset import (
|
|
|
|
PasswordResetSubmitTokenResource,
|
|
|
|
)
|
|
|
|
|
|
|
|
resources[
|
|
|
|
"/_synapse/client/password_reset/email/submit_token"
|
|
|
|
] = PasswordResetSubmitTokenResource(self)
|
|
|
|
|
2018-05-10 19:17:11 -04:00
|
|
|
if name == "consent":
|
2018-05-22 09:00:23 -04:00
|
|
|
from synapse.rest.consent.consent_resource import ConsentResource
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
consent_resource: Resource = ConsentResource(self)
|
2018-05-10 19:17:11 -04:00
|
|
|
if compress:
|
|
|
|
consent_resource = gz_wrap(consent_resource)
|
2019-06-20 05:32:02 -04:00
|
|
|
resources.update({"/_matrix/consent": consent_resource})
|
2018-05-10 19:17:11 -04:00
|
|
|
|
2017-11-02 09:27:21 -04:00
|
|
|
if name == "federation":
|
2019-06-20 05:32:02 -04:00
|
|
|
resources.update({FEDERATION_PREFIX: TransportLayerServer(self)})
|
2017-11-02 09:27:21 -04:00
|
|
|
|
2019-01-20 18:54:43 -05:00
|
|
|
if name == "openid":
|
2019-06-20 05:32:02 -04:00
|
|
|
resources.update(
|
|
|
|
{
|
|
|
|
FEDERATION_PREFIX: TransportLayerServer(
|
|
|
|
self, servlet_groups=["openid"]
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
2019-01-20 18:54:43 -05:00
|
|
|
|
2017-11-02 09:27:21 -04:00
|
|
|
if name in ["static", "client"]:
|
2019-06-20 05:32:02 -04:00
|
|
|
resources.update(
|
|
|
|
{
|
2020-07-01 09:10:23 -04:00
|
|
|
STATIC_PREFIX: StaticResource(
|
2019-06-20 05:32:02 -04:00
|
|
|
os.path.join(os.path.dirname(synapse.__file__), "static")
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
2017-11-02 09:27:21 -04:00
|
|
|
|
|
|
|
if name in ["media", "federation", "client"]:
|
2021-10-06 10:47:41 -04:00
|
|
|
if self.config.server.enable_media_repo:
|
2017-11-21 08:29:39 -05:00
|
|
|
media_repo = self.get_media_repository_resource()
|
2019-06-20 05:32:02 -04:00
|
|
|
resources.update(
|
2021-11-17 10:30:24 -05:00
|
|
|
{
|
|
|
|
MEDIA_R0_PREFIX: media_repo,
|
|
|
|
MEDIA_V3_PREFIX: media_repo,
|
|
|
|
LEGACY_MEDIA_PREFIX: media_repo,
|
|
|
|
}
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2017-11-21 08:29:39 -05:00
|
|
|
elif name == "media":
|
|
|
|
raise ConfigError(
|
2019-06-20 05:32:02 -04:00
|
|
|
"'media' resource conflicts with enable_media_repo=False"
|
2017-11-21 08:29:39 -05:00
|
|
|
)
|
2017-11-02 09:27:21 -04:00
|
|
|
|
|
|
|
if name in ["keys", "federation"]:
|
2018-10-31 07:29:02 -04:00
|
|
|
resources[SERVER_KEY_V2_PREFIX] = KeyApiV2Resource(self)
|
2017-11-02 09:27:21 -04:00
|
|
|
|
|
|
|
if name == "webclient":
|
2022-01-20 09:21:06 -05:00
|
|
|
# webclient listeners are deprecated as of Synapse v1.51.0, remove it
|
|
|
|
# in > v1.53.0.
|
2021-09-29 06:44:15 -04:00
|
|
|
webclient_loc = self.config.server.web_client_location
|
2018-12-11 08:18:48 -05:00
|
|
|
|
2020-04-03 11:57:34 -04:00
|
|
|
if webclient_loc is None:
|
2018-12-11 08:18:48 -05:00
|
|
|
logger.warning(
|
|
|
|
"Not enabling webclient resource, as web_client_location is unset."
|
|
|
|
)
|
2022-01-20 09:21:06 -05:00
|
|
|
elif self.config.server.web_client_location_is_redirect:
|
2020-04-03 11:57:34 -04:00
|
|
|
resources[WEB_CLIENT_PREFIX] = RootRedirect(webclient_loc)
|
2018-12-11 08:18:48 -05:00
|
|
|
else:
|
2020-04-03 11:57:34 -04:00
|
|
|
logger.warning(
|
|
|
|
"Running webclient on the same domain is not recommended: "
|
|
|
|
"https://github.com/matrix-org/synapse#security-note - "
|
|
|
|
"after you move webclient to different host you can set "
|
|
|
|
"web_client_location to its full URL to enable redirection."
|
|
|
|
)
|
2018-12-11 08:18:48 -05:00
|
|
|
# GZip is disabled here due to
|
|
|
|
# https://twistedmatrix.com/trac/ticket/7678
|
2020-04-03 11:57:34 -04:00
|
|
|
resources[WEB_CLIENT_PREFIX] = File(webclient_loc)
|
2017-11-02 09:27:21 -04:00
|
|
|
|
2021-09-23 12:03:01 -04:00
|
|
|
if name == "metrics" and self.config.metrics.enable_metrics:
|
2018-05-31 05:04:50 -04:00
|
|
|
resources[METRICS_PREFIX] = MetricsResource(RegistryProxy)
|
2017-11-02 09:27:21 -04:00
|
|
|
|
2018-02-05 12:22:16 -05:00
|
|
|
if name == "replication":
|
|
|
|
resources[REPLICATION_PREFIX] = ReplicationRestResource(self)
|
|
|
|
|
2017-11-02 09:27:21 -04:00
|
|
|
return resources
|
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
def start_listening(self) -> None:
|
2021-09-23 12:03:01 -04:00
|
|
|
if self.config.redis.redis_enabled:
|
2020-04-22 08:07:41 -04:00
|
|
|
# If redis is enabled we connect via the replication command handler
|
|
|
|
# in the same way as the workers (since we're effectively a client
|
|
|
|
# rather than a server).
|
|
|
|
self.get_tcp_replication().start_replication(self)
|
|
|
|
|
2021-04-23 14:20:44 -04:00
|
|
|
for listener in self.config.server.listeners:
|
2020-06-16 07:44:07 -04:00
|
|
|
if listener.type == "http":
|
2021-04-14 14:09:08 -04:00
|
|
|
self._listening_services.extend(
|
|
|
|
self._listener_http(self.config, listener)
|
|
|
|
)
|
2020-06-16 07:44:07 -04:00
|
|
|
elif listener.type == "manhole":
|
2021-03-26 13:33:55 -04:00
|
|
|
_base.listen_manhole(
|
2021-09-06 11:08:03 -04:00
|
|
|
listener.bind_addresses,
|
|
|
|
listener.port,
|
|
|
|
manhole_settings=self.config.server.manhole_settings,
|
|
|
|
manhole_globals={"hs": self},
|
2017-09-06 11:48:49 -04:00
|
|
|
)
|
2020-06-16 07:44:07 -04:00
|
|
|
elif listener.type == "replication":
|
2019-02-13 06:59:04 -05:00
|
|
|
services = listen_tcp(
|
2020-06-16 07:44:07 -04:00
|
|
|
listener.bind_addresses,
|
|
|
|
listener.port,
|
2019-02-13 06:59:04 -05:00
|
|
|
ReplicationStreamProtocolFactory(self),
|
|
|
|
)
|
|
|
|
for s in services:
|
2021-11-10 15:06:54 -05:00
|
|
|
self.get_reactor().addSystemEventTrigger(
|
|
|
|
"before", "shutdown", s.stopListening
|
|
|
|
)
|
2020-06-16 07:44:07 -04:00
|
|
|
elif listener.type == "metrics":
|
2021-09-23 12:03:01 -04:00
|
|
|
if not self.config.metrics.enable_metrics:
|
2019-10-31 06:23:24 -04:00
|
|
|
logger.warning(
|
2021-07-19 10:28:05 -04:00
|
|
|
"Metrics listener configured, but "
|
|
|
|
"enable_metrics is not True!"
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2018-05-31 05:04:50 -04:00
|
|
|
else:
|
2020-06-16 07:44:07 -04:00
|
|
|
_base.listen_metrics(listener.bind_addresses, listener.port)
|
2015-06-12 10:33:07 -04:00
|
|
|
else:
|
2020-06-16 07:44:07 -04:00
|
|
|
# this shouldn't happen, as the listener type should have been checked
|
|
|
|
# during parsing
|
|
|
|
logger.warning("Unrecognized listener type: %s", listener.type)
|
2015-03-12 12:05:46 -04:00
|
|
|
|
2015-04-29 07:12:18 -04:00
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
def setup(config_options: List[str]) -> SynapseHomeServer:
|
2015-03-10 05:39:42 -04:00
|
|
|
"""
|
|
|
|
Args:
|
2021-11-10 15:06:54 -05:00
|
|
|
config_options_options: The options passed to Synapse. Usually `sys.argv[1:]`.
|
2015-03-10 05:39:42 -04:00
|
|
|
|
|
|
|
Returns:
|
2021-11-10 15:06:54 -05:00
|
|
|
A homeserver instance.
|
2015-03-10 05:39:42 -04:00
|
|
|
"""
|
Error if macaroon key is missing from config
Currently we store all access tokens in the DB, and fall back to that
check if we can't validate the macaroon, so our fallback works here, but
for guests, their macaroons don't get persisted, so we don't get to
find them in the database. Each restart, we generate a new ephemeral
key, so guests lose access after each server restart.
I tried to fix up the config stuff to be less insane, but gave up, so
instead I bolt on yet another piece of custom one-off insanity.
Also, add some basic tests for config generation and loading.
2016-02-04 20:58:23 -05:00
|
|
|
try:
|
2016-06-09 13:50:38 -04:00
|
|
|
config = HomeServerConfig.load_or_generate_config(
|
2019-06-20 05:32:02 -04:00
|
|
|
"Synapse Homeserver", config_options
|
Error if macaroon key is missing from config
Currently we store all access tokens in the DB, and fall back to that
check if we can't validate the macaroon, so our fallback works here, but
for guests, their macaroons don't get persisted, so we don't get to
find them in the database. Each restart, we generate a new ephemeral
key, so guests lose access after each server restart.
I tried to fix up the config stuff to be less insane, but gave up, so
instead I bolt on yet another piece of custom one-off insanity.
Also, add some basic tests for config generation and loading.
2016-02-04 20:58:23 -05:00
|
|
|
)
|
|
|
|
except ConfigError as e:
|
2020-12-08 09:04:35 -05:00
|
|
|
sys.stderr.write("\n")
|
|
|
|
for f in format_config_error(e):
|
|
|
|
sys.stderr.write(f)
|
|
|
|
sys.stderr.write("\n")
|
Error if macaroon key is missing from config
Currently we store all access tokens in the DB, and fall back to that
check if we can't validate the macaroon, so our fallback works here, but
for guests, their macaroons don't get persisted, so we don't get to
find them in the database. Each restart, we generate a new ephemeral
key, so guests lose access after each server restart.
I tried to fix up the config stuff to be less insane, but gave up, so
instead I bolt on yet another piece of custom one-off insanity.
Also, add some basic tests for config generation and loading.
2016-02-04 20:58:23 -05:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
if not config:
|
|
|
|
# If a config isn't returned, and an exception isn't raised, we're just
|
|
|
|
# generating config files and shouldn't try to continue.
|
|
|
|
sys.exit(0)
|
2014-11-18 10:57:00 -05:00
|
|
|
|
2021-11-30 13:12:18 -05:00
|
|
|
if config.worker.worker_app:
|
|
|
|
raise ConfigError(
|
|
|
|
"You have specified `worker_app` in the config but are attempting to start a non-worker "
|
|
|
|
"instance. Please use `python -m synapse.app.generic_worker` instead (or remove the option if this is the main process)."
|
|
|
|
)
|
|
|
|
sys.exit(1)
|
|
|
|
|
2021-09-29 06:44:15 -04:00
|
|
|
events.USE_FROZEN_DICTS = config.server.use_frozen_dicts
|
2021-05-05 11:54:36 -04:00
|
|
|
synapse.util.caches.TRACK_MEMORY_USAGE = config.caches.track_memory_usage
|
2015-05-29 07:17:33 -04:00
|
|
|
|
2021-05-05 11:53:45 -04:00
|
|
|
if config.server.gc_seconds:
|
|
|
|
synapse.metrics.MIN_TIME_BETWEEN_GCS = config.server.gc_seconds
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
hs = SynapseHomeServer(
|
2021-09-13 13:07:12 -04:00
|
|
|
config.server.server_name,
|
2014-09-02 12:57:04 -04:00
|
|
|
config=config,
|
2018-06-20 10:33:14 -04:00
|
|
|
version_string="Synapse/" + get_version_string(synapse),
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2019-08-28 07:18:53 -04:00
|
|
|
synapse.config.logger.setup_logging(hs, config, use_worker_options=False)
|
|
|
|
|
2019-12-06 08:09:40 -05:00
|
|
|
logger.info("Setting up server")
|
2014-09-10 11:23:58 -04:00
|
|
|
|
2014-12-16 09:20:32 -05:00
|
|
|
try:
|
2019-12-06 08:09:40 -05:00
|
|
|
hs.setup()
|
2021-06-21 06:41:25 -04:00
|
|
|
except Exception as e:
|
|
|
|
handle_startup_exception(e)
|
2014-09-10 11:23:58 -04:00
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
async def start() -> None:
|
2021-01-11 10:55:05 -05:00
|
|
|
# Load the OIDC provider metadatas, if OIDC is enabled.
|
2021-09-23 12:03:01 -04:00
|
|
|
if hs.config.oidc.oidc_enabled:
|
2021-01-11 10:55:05 -05:00
|
|
|
oidc = hs.get_oidc_handler()
|
|
|
|
# Loading the provider metadata also ensures the provider config is valid.
|
|
|
|
await oidc.load_metadata()
|
|
|
|
|
2021-04-23 14:20:44 -04:00
|
|
|
await _base.start(hs)
|
2021-01-11 10:55:05 -05:00
|
|
|
|
|
|
|
hs.get_datastore().db_pool.updates.start_doing_background_updates()
|
|
|
|
|
|
|
|
register_start(start)
|
2015-02-06 11:52:22 -05:00
|
|
|
|
2015-03-10 05:39:42 -04:00
|
|
|
return hs
|
|
|
|
|
2014-11-20 12:26:36 -05:00
|
|
|
|
2020-12-08 09:04:35 -05:00
|
|
|
def format_config_error(e: ConfigError) -> Iterator[str]:
|
|
|
|
"""
|
|
|
|
Formats a config error neatly
|
|
|
|
|
|
|
|
The idea is to format the immediate error, plus the "causes" of those errors,
|
|
|
|
hopefully in a way that makes sense to the user. For example:
|
|
|
|
|
|
|
|
Error in configuration at 'oidc_config.user_mapping_provider.config.display_name_template':
|
|
|
|
Failed to parse config for module 'JinjaOidcMappingProvider':
|
|
|
|
invalid jinja template:
|
|
|
|
unexpected end of template, expected 'end of print statement'.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
e: the error to be formatted
|
|
|
|
|
|
|
|
Returns: An iterator which yields string fragments to be formatted
|
|
|
|
"""
|
|
|
|
yield "Error in configuration"
|
|
|
|
|
|
|
|
if e.path:
|
|
|
|
yield " at '%s'" % (".".join(e.path),)
|
|
|
|
|
|
|
|
yield ":\n %s" % (e.msg,)
|
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
parent_e = e.__cause__
|
2020-12-08 09:04:35 -05:00
|
|
|
indent = 1
|
2021-11-10 15:06:54 -05:00
|
|
|
while parent_e:
|
2020-12-08 09:04:35 -05:00
|
|
|
indent += 1
|
2021-11-10 15:06:54 -05:00
|
|
|
yield ":\n%s%s" % (" " * indent, str(parent_e))
|
|
|
|
parent_e = parent_e.__cause__
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2015-03-10 05:58:33 -04:00
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
def run(hs: HomeServer) -> None:
|
2017-08-15 10:57:46 -04:00
|
|
|
_base.start_reactor(
|
|
|
|
"synapse-homeserver",
|
2021-09-29 06:44:15 -04:00
|
|
|
soft_file_limit=hs.config.server.soft_file_limit,
|
|
|
|
gc_thresholds=hs.config.server.gc_thresholds,
|
|
|
|
pid_file=hs.config.server.pid_file,
|
|
|
|
daemonize=hs.config.server.daemonize,
|
|
|
|
print_pidfile=hs.config.server.print_pidfile,
|
2019-03-14 09:32:14 -04:00
|
|
|
logger=logger,
|
2017-08-15 10:57:46 -04:00
|
|
|
)
|
2014-10-29 21:21:33 -04:00
|
|
|
|
2014-11-20 12:26:36 -05:00
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
def main() -> None:
|
2014-10-30 07:15:39 -04:00
|
|
|
with LoggingContext("main"):
|
2015-03-17 07:45:37 -04:00
|
|
|
# check base requirements
|
2015-01-08 12:07:28 -05:00
|
|
|
check_requirements()
|
2015-03-10 05:58:33 -04:00
|
|
|
hs = setup(sys.argv[1:])
|
2021-06-21 06:41:25 -04:00
|
|
|
|
|
|
|
# redirect stdio to the logs, if configured.
|
2021-09-23 12:03:01 -04:00
|
|
|
if not hs.config.logging.no_redirect_stdio:
|
2021-06-21 06:41:25 -04:00
|
|
|
redirect_stdio_to_logs()
|
|
|
|
|
2015-03-10 05:58:33 -04:00
|
|
|
run(hs)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-20 12:26:36 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if __name__ == "__main__":
|
2014-11-18 10:57:00 -05:00
|
|
|
main()
|