2016-01-07 05:26:29 +01:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2019-02-14 18:10:36 +01:00
|
|
|
# Copyright 2019 New Vector Ltd
|
2014-08-12 16:10:52 +02: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 09:39:06 +01:00
|
|
|
|
2016-02-02 18:18:50 +01:00
|
|
|
import logging
|
|
|
|
import os
|
2015-02-17 11:54:06 +01:00
|
|
|
import sys
|
2022-05-11 15:43:22 +02:00
|
|
|
from typing import Dict, Iterable, List
|
2017-03-10 16:16:50 +01:00
|
|
|
|
2021-11-10 21:06:54 +01:00
|
|
|
from twisted.internet.tcp import Port
|
|
|
|
from twisted.web.resource import EncodingResourceWrapper, Resource
|
2018-07-09 08:09:20 +02:00
|
|
|
from twisted.web.server import GzipEncoderFactory
|
|
|
|
|
2017-08-15 16:57:46 +02:00
|
|
|
import synapse
|
2017-03-10 16:16:50 +01:00
|
|
|
import synapse.config.logger
|
2017-08-15 16:57:46 +02:00
|
|
|
from synapse import events
|
2018-07-09 08:09:20 +02:00
|
|
|
from synapse.api.urls import (
|
2022-02-08 13:06:25 +01:00
|
|
|
CLIENT_API_PREFIX,
|
2018-07-09 08:09:20 +02:00
|
|
|
FEDERATION_PREFIX,
|
|
|
|
LEGACY_MEDIA_PREFIX,
|
2021-11-17 16:30:24 +01:00
|
|
|
MEDIA_R0_PREFIX,
|
|
|
|
MEDIA_V3_PREFIX,
|
2022-10-20 17:32:47 +02:00
|
|
|
SERVER_KEY_PREFIX,
|
2018-07-09 08:09:20 +02:00
|
|
|
STATIC_PREFIX,
|
|
|
|
)
|
2017-08-15 16:57:46 +02:00
|
|
|
from synapse.app import _base
|
2021-04-23 20:20:44 +02:00
|
|
|
from synapse.app._base import (
|
2021-06-21 12:41:25 +02:00
|
|
|
handle_startup_exception,
|
2022-11-15 13:55:00 +01:00
|
|
|
listen_http,
|
2021-04-23 20:20:44 +02:00
|
|
|
max_request_body_size,
|
2021-06-21 12:41:25 +02:00
|
|
|
redirect_stdio_to_logs,
|
2021-04-23 20:20:44 +02:00
|
|
|
register_start,
|
|
|
|
)
|
2022-05-11 15:43:22 +02:00
|
|
|
from synapse.config._base import ConfigError, format_config_error
|
2014-08-31 17:06:39 +02:00
|
|
|
from synapse.config.homeserver import HomeServerConfig
|
2023-04-03 11:27:51 +02:00
|
|
|
from synapse.config.server import ListenerConfig, TCPListenerConfig
|
2017-08-15 16:57:46 +02:00
|
|
|
from synapse.federation.transport.server import TransportLayerServer
|
2017-11-02 15:18:24 +01:00
|
|
|
from synapse.http.additional_resource import AdditionalResource
|
2020-05-22 15:30:07 +02:00
|
|
|
from synapse.http.server import (
|
|
|
|
OptionsResource,
|
|
|
|
RootOptionsRedirectResource,
|
2020-07-01 15:10:23 +02:00
|
|
|
StaticResource,
|
2020-05-22 15:30:07 +02:00
|
|
|
)
|
2019-07-03 16:07:04 +02:00
|
|
|
from synapse.logging.context import LoggingContext
|
2019-07-18 15:57:15 +02:00
|
|
|
from synapse.metrics import METRICS_PREFIX, MetricsResource, RegistryProxy
|
2018-07-09 08:09:20 +02:00
|
|
|
from synapse.replication.http import REPLICATION_PREFIX, ReplicationRestResource
|
2017-08-15 16:57:46 +02:00
|
|
|
from synapse.rest import ClientRestResource
|
2019-05-01 16:32:38 +02:00
|
|
|
from synapse.rest.admin import AdminRestResource
|
2020-08-07 15:21:24 +02:00
|
|
|
from synapse.rest.health import HealthResource
|
2022-10-20 17:32:47 +02:00
|
|
|
from synapse.rest.key.v2 import KeyResource
|
2021-02-01 16:47:59 +01:00
|
|
|
from synapse.rest.synapse.client import build_synapse_client_resource_tree
|
2021-11-01 16:10:16 +01:00
|
|
|
from synapse.rest.well_known import well_known_resource
|
2017-08-15 16:57:46 +02:00
|
|
|
from synapse.server import HomeServer
|
2019-12-06 14:09:40 +01:00
|
|
|
from synapse.storage import DataStore
|
2022-06-07 16:24:11 +02:00
|
|
|
from synapse.util.check_dependencies import VERSION, check_requirements
|
2016-04-22 16:40:51 +02:00
|
|
|
from synapse.util.httpresourcetree import create_resource_tree
|
2017-11-02 15:18:24 +01:00
|
|
|
from synapse.util.module_loader import load_module
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2015-04-07 13:04:02 +02:00
|
|
|
logger = logging.getLogger("synapse.app.homeserver")
|
2014-08-12 16:10:52 +02:00
|
|
|
|
|
|
|
|
2021-11-10 21:06:54 +01:00
|
|
|
def gz_wrap(r: Resource) -> Resource:
|
2015-05-14 17:39:19 +02:00
|
|
|
return EncodingResourceWrapper(r, [GzipEncoderFactory()])
|
|
|
|
|
|
|
|
|
2016-01-26 14:52:29 +01:00
|
|
|
class SynapseHomeServer(HomeServer):
|
2021-11-10 21:06:54 +01:00
|
|
|
DATASTORE_CLASS = DataStore # type: ignore
|
2018-08-28 14:39:49 +02:00
|
|
|
|
2021-11-10 21:06:54 +01:00
|
|
|
def _listener_http(
|
2023-04-03 11:27:51 +02:00
|
|
|
self,
|
|
|
|
config: HomeServerConfig,
|
|
|
|
listener_config: ListenerConfig,
|
2021-11-10 21:06:54 +01:00
|
|
|
) -> Iterable[Port]:
|
|
|
|
# Must exist since this is an HTTP listener.
|
|
|
|
assert listener_config.http_options is not None
|
2023-04-03 11:27:51 +02:00
|
|
|
site_tag = listener_config.get_site_tag()
|
2015-06-12 16:33:07 +02:00
|
|
|
|
2020-08-07 15:21:24 +02:00
|
|
|
# We always include a health resource.
|
2021-11-10 21:06:54 +01:00
|
|
|
resources: Dict[str, Resource] = {"/health": HealthResource()}
|
2020-08-07 15:21:24 +02:00
|
|
|
|
2020-06-16 13:44:07 +02:00
|
|
|
for res in listener_config.http_options.resources:
|
|
|
|
for name in res.names:
|
|
|
|
if name == "openid" and "federation" in res.names:
|
2019-01-21 00:54:43 +01:00
|
|
|
# Skip loading openid resource if federation is defined
|
|
|
|
# since federation resource will include openid
|
|
|
|
continue
|
2023-01-11 13:00:38 +01:00
|
|
|
if name == "health":
|
|
|
|
# Skip loading, health resource is always included
|
|
|
|
continue
|
2020-06-16 13:44:07 +02:00
|
|
|
resources.update(self._configure_named_resource(name, res.compress))
|
2015-06-12 16:33:07 +02:00
|
|
|
|
2020-06-16 13:44:07 +02:00
|
|
|
additional_resources = listener_config.http_options.additional_resources
|
2019-06-20 11:32:02 +02:00
|
|
|
logger.debug("Configuring additional resources: %r", additional_resources)
|
2020-10-07 13:03:26 +02:00
|
|
|
module_api = self.get_module_api()
|
2017-11-02 15:18:24 +01:00
|
|
|
for path, resmodule in additional_resources.items():
|
2020-12-08 15:04:35 +01:00
|
|
|
handler_cls, config = load_module(
|
|
|
|
resmodule,
|
|
|
|
("listeners", site_tag, "additional_resources", "<%s>" % (path,)),
|
|
|
|
)
|
2017-11-02 15:18:24 +01:00
|
|
|
handler = handler_cls(config, module_api)
|
2021-11-10 21:06:54 +01:00
|
|
|
if isinstance(handler, Resource):
|
2020-01-13 13:42:44 +01: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 15:18:24 +01:00
|
|
|
|
2021-06-18 13:15:52 +02:00
|
|
|
# Attach additional resources registered by modules.
|
|
|
|
resources.update(self._module_web_resources)
|
|
|
|
self._module_web_resources_consumed = True
|
|
|
|
|
2022-01-20 16:34:45 +01:00
|
|
|
# Try to find something useful to serve at '/':
|
|
|
|
#
|
|
|
|
# 1. Redirect to the web client if it is an HTTP(S) URL.
|
2022-02-03 19:36:49 +01:00
|
|
|
# 2. Redirect to the static "Synapse is running" page.
|
|
|
|
# 3. Do not redirect and use a blank resource.
|
|
|
|
if self.config.server.web_client_location:
|
2022-01-20 15:21:06 +01:00
|
|
|
root_resource: Resource = RootOptionsRedirectResource(
|
|
|
|
self.config.server.web_client_location
|
|
|
|
)
|
2018-12-11 13:18:19 +01:00
|
|
|
elif STATIC_PREFIX in resources:
|
2020-05-22 15:30:07 +02:00
|
|
|
root_resource = RootOptionsRedirectResource(STATIC_PREFIX)
|
2016-04-22 16:40:51 +02:00
|
|
|
else:
|
2020-05-22 15:30:07 +02:00
|
|
|
root_resource = OptionsResource()
|
2016-04-22 16:40:51 +02:00
|
|
|
|
2022-11-15 13:55:00 +01:00
|
|
|
ports = listen_http(
|
2023-07-18 10:49:21 +02:00
|
|
|
self,
|
2021-04-23 18:06:47 +02:00
|
|
|
listener_config,
|
|
|
|
create_resource_tree(resources, root_resource),
|
|
|
|
self.version_string,
|
2022-11-15 13:55:00 +01:00
|
|
|
max_request_body_size(self.config),
|
|
|
|
self.tls_server_context_factory,
|
2021-04-23 18:06:47 +02:00
|
|
|
reactor=self.get_reactor(),
|
|
|
|
)
|
2016-12-18 20:42:43 +01:00
|
|
|
|
2019-02-13 12:53:43 +01:00
|
|
|
return ports
|
2014-08-14 10:52:20 +02:00
|
|
|
|
2021-11-10 21:06:54 +01:00
|
|
|
def _configure_named_resource(
|
|
|
|
self, name: str, compress: bool = False
|
|
|
|
) -> Dict[str, Resource]:
|
2017-11-02 14:27:21 +01:00
|
|
|
"""Build a resource map for a named resource
|
|
|
|
|
|
|
|
Args:
|
2021-11-10 21:06:54 +01:00
|
|
|
name: named resource: one of "client", "federation", etc
|
|
|
|
compress: whether to enable gzip compression for this resource
|
2017-11-02 14:27:21 +01:00
|
|
|
|
|
|
|
Returns:
|
2021-11-10 21:06:54 +01:00
|
|
|
map from path to HTTP resource
|
2017-11-02 14:27:21 +01:00
|
|
|
"""
|
2021-11-10 21:06:54 +01:00
|
|
|
resources: Dict[str, Resource] = {}
|
2017-11-02 14:27:21 +01:00
|
|
|
if name == "client":
|
2021-11-10 21:06:54 +01:00
|
|
|
client_resource: Resource = ClientRestResource(self)
|
2017-11-02 14:27:21 +01:00
|
|
|
if compress:
|
|
|
|
client_resource = gz_wrap(client_resource)
|
|
|
|
|
2019-06-20 11:32:02 +02:00
|
|
|
resources.update(
|
|
|
|
{
|
2022-02-08 13:06:25 +01:00
|
|
|
CLIENT_API_PREFIX: client_resource,
|
2021-11-01 16:10:16 +01:00
|
|
|
"/.well-known": well_known_resource(self),
|
2019-06-20 11:32:02 +02:00
|
|
|
"/_synapse/admin": AdminRestResource(self),
|
2021-02-01 16:47:59 +01:00
|
|
|
**build_synapse_client_resource_tree(self),
|
2019-06-20 11:32:02 +02:00
|
|
|
}
|
|
|
|
)
|
2017-11-02 14:27:21 +01:00
|
|
|
|
2022-08-23 13:40:00 +02:00
|
|
|
if self.config.email.can_verify_email:
|
2020-09-10 12:45:12 +02:00
|
|
|
from synapse.rest.synapse.client.password_reset import (
|
|
|
|
PasswordResetSubmitTokenResource,
|
|
|
|
)
|
|
|
|
|
|
|
|
resources[
|
|
|
|
"/_synapse/client/password_reset/email/submit_token"
|
|
|
|
] = PasswordResetSubmitTokenResource(self)
|
|
|
|
|
2018-05-11 01:17:11 +02:00
|
|
|
if name == "consent":
|
2018-05-22 15:00:23 +02:00
|
|
|
from synapse.rest.consent.consent_resource import ConsentResource
|
2019-06-20 11:32:02 +02:00
|
|
|
|
2021-11-10 21:06:54 +01:00
|
|
|
consent_resource: Resource = ConsentResource(self)
|
2018-05-11 01:17:11 +02:00
|
|
|
if compress:
|
|
|
|
consent_resource = gz_wrap(consent_resource)
|
2022-10-20 17:32:47 +02:00
|
|
|
resources["/_matrix/consent"] = consent_resource
|
2018-05-11 01:17:11 +02:00
|
|
|
|
2017-11-02 14:27:21 +01:00
|
|
|
if name == "federation":
|
2022-08-18 16:14:47 +02:00
|
|
|
federation_resource: Resource = TransportLayerServer(self)
|
|
|
|
if compress:
|
|
|
|
federation_resource = gz_wrap(federation_resource)
|
2022-10-20 17:32:47 +02:00
|
|
|
resources[FEDERATION_PREFIX] = federation_resource
|
2017-11-02 14:27:21 +01:00
|
|
|
|
2019-01-21 00:54:43 +01:00
|
|
|
if name == "openid":
|
2022-10-20 17:32:47 +02:00
|
|
|
resources[FEDERATION_PREFIX] = TransportLayerServer(
|
|
|
|
self, servlet_groups=["openid"]
|
2019-06-20 11:32:02 +02:00
|
|
|
)
|
2019-01-21 00:54:43 +01:00
|
|
|
|
2017-11-02 14:27:21 +01:00
|
|
|
if name in ["static", "client"]:
|
2022-10-20 17:32:47 +02:00
|
|
|
resources[STATIC_PREFIX] = StaticResource(
|
|
|
|
os.path.join(os.path.dirname(synapse.__file__), "static")
|
2019-06-20 11:32:02 +02:00
|
|
|
)
|
2017-11-02 14:27:21 +01:00
|
|
|
|
|
|
|
if name in ["media", "federation", "client"]:
|
2021-10-06 16:47:41 +02:00
|
|
|
if self.config.server.enable_media_repo:
|
2017-11-21 14:29:39 +01:00
|
|
|
media_repo = self.get_media_repository_resource()
|
2019-06-20 11:32:02 +02:00
|
|
|
resources.update(
|
2021-11-17 16:30:24 +01:00
|
|
|
{
|
|
|
|
MEDIA_R0_PREFIX: media_repo,
|
|
|
|
MEDIA_V3_PREFIX: media_repo,
|
|
|
|
LEGACY_MEDIA_PREFIX: media_repo,
|
|
|
|
}
|
2019-06-20 11:32:02 +02:00
|
|
|
)
|
2017-11-21 14:29:39 +01:00
|
|
|
elif name == "media":
|
|
|
|
raise ConfigError(
|
2019-06-20 11:32:02 +02:00
|
|
|
"'media' resource conflicts with enable_media_repo=False"
|
2017-11-21 14:29:39 +01:00
|
|
|
)
|
2017-11-02 14:27:21 +01:00
|
|
|
|
|
|
|
if name in ["keys", "federation"]:
|
2022-10-20 17:32:47 +02:00
|
|
|
resources[SERVER_KEY_PREFIX] = KeyResource(self)
|
2017-11-02 14:27:21 +01:00
|
|
|
|
2021-09-23 18:03:01 +02:00
|
|
|
if name == "metrics" and self.config.metrics.enable_metrics:
|
2022-03-21 12:52:10 +01:00
|
|
|
metrics_resource: Resource = MetricsResource(RegistryProxy)
|
|
|
|
if compress:
|
|
|
|
metrics_resource = gz_wrap(metrics_resource)
|
|
|
|
resources[METRICS_PREFIX] = metrics_resource
|
2017-11-02 14:27:21 +01:00
|
|
|
|
2018-02-05 18:22:16 +01:00
|
|
|
if name == "replication":
|
|
|
|
resources[REPLICATION_PREFIX] = ReplicationRestResource(self)
|
|
|
|
|
2017-11-02 14:27:21 +01:00
|
|
|
return resources
|
|
|
|
|
2021-11-10 21:06:54 +01:00
|
|
|
def start_listening(self) -> None:
|
2021-09-23 18:03:01 +02:00
|
|
|
if self.config.redis.redis_enabled:
|
2020-04-22 14:07:41 +02: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).
|
2022-03-10 14:01:56 +01:00
|
|
|
self.get_replication_command_handler().start_replication(self)
|
2020-04-22 14:07:41 +02:00
|
|
|
|
2021-04-23 20:20:44 +02:00
|
|
|
for listener in self.config.server.listeners:
|
2020-06-16 13:44:07 +02:00
|
|
|
if listener.type == "http":
|
2021-04-14 20:09:08 +02:00
|
|
|
self._listening_services.extend(
|
|
|
|
self._listener_http(self.config, listener)
|
|
|
|
)
|
2020-06-16 13:44:07 +02:00
|
|
|
elif listener.type == "manhole":
|
2023-04-03 11:27:51 +02:00
|
|
|
if isinstance(listener, TCPListenerConfig):
|
|
|
|
_base.listen_manhole(
|
|
|
|
listener.bind_addresses,
|
|
|
|
listener.port,
|
|
|
|
manhole_settings=self.config.server.manhole_settings,
|
|
|
|
manhole_globals={"hs": self},
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
raise ConfigError(
|
|
|
|
"Can not use a unix socket for manhole at this time."
|
|
|
|
)
|
2020-06-16 13:44:07 +02:00
|
|
|
elif listener.type == "metrics":
|
2021-09-23 18:03:01 +02:00
|
|
|
if not self.config.metrics.enable_metrics:
|
2019-10-31 11:23:24 +01:00
|
|
|
logger.warning(
|
2021-07-19 16:28:05 +02:00
|
|
|
"Metrics listener configured, but "
|
|
|
|
"enable_metrics is not True!"
|
2019-06-20 11:32:02 +02:00
|
|
|
)
|
2018-05-31 11:04:50 +02:00
|
|
|
else:
|
2023-04-03 11:27:51 +02:00
|
|
|
if isinstance(listener, TCPListenerConfig):
|
|
|
|
_base.listen_metrics(
|
|
|
|
listener.bind_addresses,
|
|
|
|
listener.port,
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
raise ConfigError(
|
|
|
|
"Can not use a unix socket for metrics at this time."
|
|
|
|
)
|
|
|
|
|
2015-06-12 16:33:07 +02:00
|
|
|
else:
|
2020-06-16 13:44:07 +02: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 17:05:46 +01:00
|
|
|
|
2015-04-29 13:12:18 +02:00
|
|
|
|
2021-11-10 21:06:54 +01:00
|
|
|
def setup(config_options: List[str]) -> SynapseHomeServer:
|
2015-03-10 10:39:42 +01:00
|
|
|
"""
|
|
|
|
Args:
|
2021-11-10 21:06:54 +01:00
|
|
|
config_options_options: The options passed to Synapse. Usually `sys.argv[1:]`.
|
2015-03-10 10:39:42 +01:00
|
|
|
|
|
|
|
Returns:
|
2021-11-10 21:06:54 +01:00
|
|
|
A homeserver instance.
|
2015-03-10 10:39:42 +01: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-05 02:58:23 +01:00
|
|
|
try:
|
2016-06-09 19:50:38 +02:00
|
|
|
config = HomeServerConfig.load_or_generate_config(
|
2019-06-20 11:32:02 +02: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-05 02:58:23 +01:00
|
|
|
)
|
|
|
|
except ConfigError as e:
|
2020-12-08 15:04:35 +01: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-05 02:58:23 +01: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 16:57:00 +01:00
|
|
|
|
2021-11-30 19:12:18 +01: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 12:44:15 +02:00
|
|
|
events.USE_FROZEN_DICTS = config.server.use_frozen_dicts
|
2021-05-05 17:54:36 +02:00
|
|
|
synapse.util.caches.TRACK_MEMORY_USAGE = config.caches.track_memory_usage
|
2015-05-29 13:17:33 +02:00
|
|
|
|
2021-05-05 17:53:45 +02:00
|
|
|
if config.server.gc_seconds:
|
|
|
|
synapse.metrics.MIN_TIME_BETWEEN_GCS = config.server.gc_seconds
|
|
|
|
|
2022-03-25 18:11:01 +01:00
|
|
|
if (
|
|
|
|
config.registration.enable_registration
|
|
|
|
and not config.registration.enable_registration_without_verification
|
|
|
|
):
|
|
|
|
if (
|
|
|
|
not config.captcha.enable_registration_captcha
|
|
|
|
and not config.registration.registrations_require_3pid
|
|
|
|
and not config.registration.registration_requires_token
|
|
|
|
):
|
|
|
|
raise ConfigError(
|
|
|
|
"You have enabled open registration without any verification. This is a known vector for "
|
|
|
|
"spam and abuse. If you would like to allow public registration, please consider adding email, "
|
|
|
|
"captcha, or token-based verification. Otherwise this check can be removed by setting the "
|
|
|
|
"`enable_registration_without_verification` config option to `true`."
|
|
|
|
)
|
|
|
|
|
2014-08-12 16:10:52 +02:00
|
|
|
hs = SynapseHomeServer(
|
2021-09-13 19:07:12 +02:00
|
|
|
config.server.server_name,
|
2014-09-02 18:57:04 +02:00
|
|
|
config=config,
|
2022-06-07 16:24:11 +02:00
|
|
|
version_string=f"Synapse/{VERSION}",
|
2014-08-12 16:10:52 +02:00
|
|
|
)
|
|
|
|
|
2019-08-28 13:18:53 +02:00
|
|
|
synapse.config.logger.setup_logging(hs, config, use_worker_options=False)
|
|
|
|
|
2019-12-06 14:09:40 +01:00
|
|
|
logger.info("Setting up server")
|
2014-09-10 17:23:58 +02:00
|
|
|
|
2014-12-16 15:20:32 +01:00
|
|
|
try:
|
2019-12-06 14:09:40 +01:00
|
|
|
hs.setup()
|
2021-06-21 12:41:25 +02:00
|
|
|
except Exception as e:
|
|
|
|
handle_startup_exception(e)
|
2014-09-10 17:23:58 +02:00
|
|
|
|
2021-11-10 21:06:54 +01:00
|
|
|
async def start() -> None:
|
2021-01-11 16:55:05 +01:00
|
|
|
# Load the OIDC provider metadatas, if OIDC is enabled.
|
2021-09-23 18:03:01 +02:00
|
|
|
if hs.config.oidc.oidc_enabled:
|
2021-01-11 16:55:05 +01:00
|
|
|
oidc = hs.get_oidc_handler()
|
|
|
|
# Loading the provider metadata also ensures the provider config is valid.
|
|
|
|
await oidc.load_metadata()
|
|
|
|
|
2021-04-23 20:20:44 +02:00
|
|
|
await _base.start(hs)
|
2021-01-11 16:55:05 +01:00
|
|
|
|
2022-02-23 12:04:02 +01:00
|
|
|
hs.get_datastores().main.db_pool.updates.start_doing_background_updates()
|
2021-01-11 16:55:05 +01:00
|
|
|
|
|
|
|
register_start(start)
|
2015-02-06 17:52:22 +01:00
|
|
|
|
2015-03-10 10:39:42 +01:00
|
|
|
return hs
|
|
|
|
|
2014-11-20 18:26:36 +01:00
|
|
|
|
2021-11-10 21:06:54 +01:00
|
|
|
def run(hs: HomeServer) -> None:
|
2017-08-15 16:57:46 +02:00
|
|
|
_base.start_reactor(
|
|
|
|
"synapse-homeserver",
|
2021-09-29 12:44:15 +02: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 14:32:14 +01:00
|
|
|
logger=logger,
|
2017-08-15 16:57:46 +02:00
|
|
|
)
|
2014-10-30 02:21:33 +01:00
|
|
|
|
2014-11-20 18:26:36 +01:00
|
|
|
|
2021-11-10 21:06:54 +01:00
|
|
|
def main() -> None:
|
2014-10-30 12:15:39 +01:00
|
|
|
with LoggingContext("main"):
|
2015-03-17 12:45:37 +01:00
|
|
|
# check base requirements
|
2015-01-08 18:07:28 +01:00
|
|
|
check_requirements()
|
2015-03-10 10:58:33 +01:00
|
|
|
hs = setup(sys.argv[1:])
|
2021-06-21 12:41:25 +02:00
|
|
|
|
|
|
|
# redirect stdio to the logs, if configured.
|
2021-09-23 18:03:01 +02:00
|
|
|
if not hs.config.logging.no_redirect_stdio:
|
2021-06-21 12:41:25 +02:00
|
|
|
redirect_stdio_to_logs()
|
|
|
|
|
2015-03-10 10:58:33 +01:00
|
|
|
run(hs)
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2014-11-20 18:26:36 +01:00
|
|
|
|
2019-06-20 11:32:02 +02:00
|
|
|
if __name__ == "__main__":
|
2014-11-18 16:57:00 +01:00
|
|
|
main()
|