2016-01-06 23:26:29 -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.
|
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
|
|
|
"""
|
2019-06-20 05:32:02 -04: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
|