2014-08-12 10:10:52 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2023-11-21 15:29:58 -05:00
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
#
|
2019-01-30 09:17:55 -05:00
|
|
|
import logging
|
2016-02-02 12:18:50 -05:00
|
|
|
import sys
|
2021-11-10 15:06:54 -05:00
|
|
|
from typing import Container
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2022-03-01 12:44:41 -05:00
|
|
|
from synapse.util import check_dependencies
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2019-01-30 09:17:55 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2016-02-02 12:18:50 -05:00
|
|
|
try:
|
2022-03-01 12:44:41 -05:00
|
|
|
check_dependencies.check_requirements()
|
|
|
|
except check_dependencies.DependencyException as e:
|
2021-03-16 14:19:27 -04:00
|
|
|
sys.stderr.writelines(
|
|
|
|
e.message # noqa: B306, DependencyException.message is a property
|
|
|
|
)
|
2016-02-02 12:18:50 -05:00
|
|
|
sys.exit(1)
|
2019-01-30 09:17:55 -05:00
|
|
|
|
|
|
|
|
2021-11-10 15:06:54 -05:00
|
|
|
def check_bind_error(
|
|
|
|
e: Exception, address: str, bind_addresses: Container[str]
|
|
|
|
) -> None:
|
2019-01-30 09:17:55 -05:00
|
|
|
"""
|
|
|
|
This method checks an exception occurred while binding on 0.0.0.0.
|
|
|
|
If :: is specified in the bind addresses a warning is shown.
|
|
|
|
The exception is still raised otherwise.
|
|
|
|
|
|
|
|
Binding on both 0.0.0.0 and :: causes an exception on Linux and macOS
|
|
|
|
because :: binds on both IPv4 and IPv6 (as per RFC 3493).
|
|
|
|
When binding on 0.0.0.0 after :: this can safely be ignored.
|
|
|
|
|
|
|
|
Args:
|
2021-11-10 15:06:54 -05:00
|
|
|
e: Exception that was caught.
|
|
|
|
address: Address on which binding was attempted.
|
|
|
|
bind_addresses: Addresses on which the service listens.
|
2019-01-30 09:17:55 -05:00
|
|
|
"""
|
|
|
|
if address == "0.0.0.0" and "::" in bind_addresses:
|
2019-10-31 06:23:24 -04:00
|
|
|
logger.warning(
|
|
|
|
"Failed to listen on 0.0.0.0, continuing because listening on [::]"
|
|
|
|
)
|
2019-01-30 09:17:55 -05:00
|
|
|
else:
|
|
|
|
raise e
|