2019-01-21 18:27:57 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2019 New Vector Ltd
|
|
|
|
#
|
|
|
|
# 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-08-07 10:36:38 -04:00
|
|
|
|
2019-01-21 18:27:57 -05:00
|
|
|
import logging
|
|
|
|
|
2019-01-27 18:24:17 -05:00
|
|
|
import attr
|
2019-01-26 16:48:50 -05:00
|
|
|
from netaddr import IPAddress
|
2019-01-21 18:27:57 -05:00
|
|
|
from zope.interface import implementer
|
|
|
|
|
|
|
|
from twisted.internet import defer
|
|
|
|
from twisted.internet.endpoints import HostnameEndpoint, wrapClientTLS
|
2019-01-31 18:18:20 -05:00
|
|
|
from twisted.internet.interfaces import IStreamClientEndpoint
|
2019-08-07 10:36:38 -04:00
|
|
|
from twisted.web.client import URI, Agent, HTTPConnectionPool
|
2019-01-25 07:38:16 -05:00
|
|
|
from twisted.web.http_headers import Headers
|
2019-01-21 18:27:57 -05:00
|
|
|
from twisted.web.iweb import IAgent
|
|
|
|
|
2019-01-22 12:42:26 -05:00
|
|
|
from synapse.http.federation.srv_resolver import SrvResolver, pick_server_from_list
|
2019-08-07 10:36:38 -04:00
|
|
|
from synapse.http.federation.well_known_resolver import WellKnownResolver
|
2019-07-03 10:07:04 -04:00
|
|
|
from synapse.logging.context import make_deferred_yieldable
|
2019-01-31 19:36:24 -05:00
|
|
|
from synapse.util import Clock
|
2019-08-06 11:27:46 -04:00
|
|
|
|
2019-01-21 18:27:57 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
@implementer(IAgent)
|
|
|
|
class MatrixFederationAgent(object):
|
|
|
|
"""An Agent-like thing which provides a `request` method which will look up a matrix
|
|
|
|
server and send an HTTP request to it.
|
|
|
|
|
|
|
|
Doesn't implement any retries. (Those are done in MatrixFederationHttpClient.)
|
|
|
|
|
|
|
|
Args:
|
|
|
|
reactor (IReactor): twisted reactor to use for underlying requests
|
2019-01-22 12:42:26 -05:00
|
|
|
|
2019-01-21 18:27:57 -05:00
|
|
|
tls_client_options_factory (ClientTLSOptionsFactory|None):
|
|
|
|
factory to use for fetching client tls options, or none to disable TLS.
|
2019-01-22 12:42:26 -05:00
|
|
|
|
2019-02-28 11:24:01 -05:00
|
|
|
_srv_resolver (SrvResolver|None):
|
2019-01-22 12:42:26 -05:00
|
|
|
SRVResolver impl to use for looking up SRV records. None to use a default
|
|
|
|
implementation.
|
2019-02-28 11:24:01 -05:00
|
|
|
|
|
|
|
_well_known_cache (TTLCache|None):
|
|
|
|
TTLCache impl for storing cached well-known lookups. None to use a default
|
|
|
|
implementation.
|
2019-01-21 18:27:57 -05:00
|
|
|
"""
|
|
|
|
|
2019-01-22 12:42:26 -05:00
|
|
|
def __init__(
|
2019-06-20 05:32:02 -04:00
|
|
|
self,
|
|
|
|
reactor,
|
|
|
|
tls_client_options_factory,
|
2019-01-29 08:53:02 -05:00
|
|
|
_srv_resolver=None,
|
2019-08-07 10:36:38 -04:00
|
|
|
_well_known_cache=None,
|
2019-01-22 12:42:26 -05:00
|
|
|
):
|
2019-01-21 18:27:57 -05:00
|
|
|
self._reactor = reactor
|
2019-01-31 19:36:24 -05:00
|
|
|
self._clock = Clock(reactor)
|
|
|
|
|
2019-01-21 18:27:57 -05:00
|
|
|
self._tls_client_options_factory = tls_client_options_factory
|
2019-01-22 12:42:26 -05:00
|
|
|
if _srv_resolver is None:
|
|
|
|
_srv_resolver = SrvResolver()
|
|
|
|
self._srv_resolver = _srv_resolver
|
2019-01-21 18:27:57 -05:00
|
|
|
|
|
|
|
self._pool = HTTPConnectionPool(reactor)
|
|
|
|
self._pool.retryAutomatically = False
|
|
|
|
self._pool.maxPersistentPerHost = 5
|
|
|
|
self._pool.cachedConnectionTimeout = 2 * 60
|
|
|
|
|
2019-08-07 10:36:38 -04:00
|
|
|
self._well_known_resolver = WellKnownResolver(
|
|
|
|
self._reactor,
|
|
|
|
agent=Agent(
|
2019-07-30 12:42:56 -04:00
|
|
|
self._reactor,
|
|
|
|
pool=self._pool,
|
|
|
|
contextFactory=tls_client_options_factory,
|
2019-08-07 10:36:38 -04:00
|
|
|
),
|
|
|
|
well_known_cache=_well_known_cache,
|
2019-01-30 06:43:33 -05:00
|
|
|
)
|
2019-01-30 05:55:25 -05:00
|
|
|
|
2019-01-21 18:27:57 -05:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def request(self, method, uri, headers=None, bodyProducer=None):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
method (bytes): HTTP method: GET/POST/etc
|
|
|
|
|
|
|
|
uri (bytes): Absolute URI to be retrieved
|
|
|
|
|
|
|
|
headers (twisted.web.http_headers.Headers|None):
|
|
|
|
HTTP headers to send with the request, or None to
|
|
|
|
send no extra headers.
|
|
|
|
|
|
|
|
bodyProducer (twisted.web.iweb.IBodyProducer|None):
|
|
|
|
An object which can generate bytes to make up the
|
|
|
|
body of this request (for example, the properly encoded contents of
|
|
|
|
a file for a file upload). Or None if the request is to have
|
|
|
|
no body.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred[twisted.web.iweb.IResponse]:
|
|
|
|
fires when the header of the response has been received (regardless of the
|
|
|
|
response status code). Fails if there is any problem which prevents that
|
|
|
|
response from being received (including problems that prevent the request
|
|
|
|
from being sent).
|
|
|
|
"""
|
2019-01-28 04:56:59 -05:00
|
|
|
parsed_uri = URI.fromBytes(uri, defaultPort=-1)
|
2019-01-27 18:24:17 -05:00
|
|
|
res = yield self._route_matrix_uri(parsed_uri)
|
2019-01-21 18:27:57 -05:00
|
|
|
|
2019-01-27 18:24:17 -05:00
|
|
|
# set up the TLS connection params
|
|
|
|
#
|
2019-01-21 18:27:57 -05:00
|
|
|
# XXX disabling TLS is really only supported here for the benefit of the
|
|
|
|
# unit tests. We should make the UTs cope with TLS rather than having to make
|
|
|
|
# the code support the unit tests.
|
|
|
|
if self._tls_client_options_factory is None:
|
|
|
|
tls_options = None
|
|
|
|
else:
|
2019-01-28 04:56:59 -05:00
|
|
|
tls_options = self._tls_client_options_factory.get_options(
|
2019-06-20 05:32:02 -04:00
|
|
|
res.tls_server_name.decode("ascii")
|
2019-01-28 04:56:59 -05:00
|
|
|
)
|
2019-01-21 18:27:57 -05:00
|
|
|
|
2019-01-25 07:38:16 -05:00
|
|
|
# make sure that the Host header is set correctly
|
|
|
|
if headers is None:
|
|
|
|
headers = Headers()
|
|
|
|
else:
|
|
|
|
headers = headers.copy()
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if not headers.hasHeader(b"host"):
|
|
|
|
headers.addRawHeader(b"host", res.host_header)
|
2019-01-25 07:38:16 -05:00
|
|
|
|
2019-01-21 18:27:57 -05:00
|
|
|
class EndpointFactory(object):
|
|
|
|
@staticmethod
|
|
|
|
def endpointForURI(_uri):
|
2019-01-31 18:18:20 -05:00
|
|
|
ep = LoggingHostnameEndpoint(
|
2019-06-20 05:32:02 -04:00
|
|
|
self._reactor, res.target_host, res.target_port
|
2019-01-29 08:53:02 -05:00
|
|
|
)
|
2019-01-21 18:27:57 -05:00
|
|
|
if tls_options is not None:
|
|
|
|
ep = wrapClientTLS(tls_options, ep)
|
|
|
|
return ep
|
|
|
|
|
|
|
|
agent = Agent.usingEndpointFactory(self._reactor, EndpointFactory(), self._pool)
|
|
|
|
res = yield make_deferred_yieldable(
|
|
|
|
agent.request(method, uri, headers, bodyProducer)
|
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return res
|
2019-01-27 18:24:17 -05:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2019-01-29 08:53:02 -05:00
|
|
|
def _route_matrix_uri(self, parsed_uri, lookup_well_known=True):
|
2019-01-27 18:24:17 -05:00
|
|
|
"""Helper for `request`: determine the routing for a Matrix URI
|
|
|
|
|
|
|
|
Args:
|
|
|
|
parsed_uri (twisted.web.client.URI): uri to route. Note that it should be
|
|
|
|
parsed with URI.fromBytes(uri, defaultPort=-1) to set the `port` to -1
|
|
|
|
if there is no explicit port given.
|
|
|
|
|
2019-01-29 08:53:02 -05:00
|
|
|
lookup_well_known (bool): True if we should look up the .well-known file if
|
|
|
|
there is no SRV record.
|
|
|
|
|
2019-01-27 18:24:17 -05:00
|
|
|
Returns:
|
|
|
|
Deferred[_RoutingResult]
|
|
|
|
"""
|
2019-01-26 16:48:50 -05:00
|
|
|
# check for an IP literal
|
|
|
|
try:
|
|
|
|
ip_address = IPAddress(parsed_uri.host.decode("ascii"))
|
|
|
|
except Exception:
|
|
|
|
# not an IP address
|
|
|
|
ip_address = None
|
|
|
|
|
|
|
|
if ip_address:
|
|
|
|
port = parsed_uri.port
|
|
|
|
if port == -1:
|
|
|
|
port = 8448
|
2019-07-23 09:00:55 -04:00
|
|
|
return _RoutingResult(
|
|
|
|
host_header=parsed_uri.netloc,
|
|
|
|
tls_server_name=parsed_uri.host,
|
|
|
|
target_host=parsed_uri.host,
|
|
|
|
target_port=port,
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2019-01-26 16:48:50 -05:00
|
|
|
|
2019-01-27 18:24:17 -05:00
|
|
|
if parsed_uri.port != -1:
|
|
|
|
# there is an explicit port
|
2019-07-23 09:00:55 -04:00
|
|
|
return _RoutingResult(
|
|
|
|
host_header=parsed_uri.netloc,
|
|
|
|
tls_server_name=parsed_uri.host,
|
|
|
|
target_host=parsed_uri.host,
|
|
|
|
target_port=parsed_uri.port,
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2019-01-27 18:24:17 -05:00
|
|
|
|
2019-01-31 18:13:44 -05:00
|
|
|
if lookup_well_known:
|
2019-01-29 08:53:02 -05:00
|
|
|
# try a .well-known lookup
|
2019-08-07 10:36:38 -04:00
|
|
|
well_known_result = yield self._well_known_resolver.get_well_known(
|
|
|
|
parsed_uri.host
|
|
|
|
)
|
|
|
|
well_known_server = well_known_result.delegated_server
|
2019-01-29 08:53:02 -05:00
|
|
|
|
|
|
|
if well_known_server:
|
|
|
|
# if we found a .well-known, start again, but don't do another
|
|
|
|
# .well-known lookup.
|
|
|
|
|
|
|
|
# parse the server name in the .well-known response into host/port.
|
|
|
|
# (This code is lifted from twisted.web.client.URI.fromBytes).
|
2019-06-20 05:32:02 -04:00
|
|
|
if b":" in well_known_server:
|
|
|
|
well_known_host, well_known_port = well_known_server.rsplit(b":", 1)
|
2019-01-29 08:53:02 -05:00
|
|
|
try:
|
|
|
|
well_known_port = int(well_known_port)
|
|
|
|
except ValueError:
|
|
|
|
# the part after the colon could not be parsed as an int
|
|
|
|
# - we assume it is an IPv6 literal with no port (the closing
|
|
|
|
# ']' stops it being parsed as an int)
|
|
|
|
well_known_host, well_known_port = well_known_server, -1
|
|
|
|
else:
|
|
|
|
well_known_host, well_known_port = well_known_server, -1
|
|
|
|
|
|
|
|
new_uri = URI(
|
|
|
|
scheme=parsed_uri.scheme,
|
|
|
|
netloc=well_known_server,
|
|
|
|
host=well_known_host,
|
|
|
|
port=well_known_port,
|
|
|
|
path=parsed_uri.path,
|
|
|
|
params=parsed_uri.params,
|
|
|
|
query=parsed_uri.query,
|
|
|
|
fragment=parsed_uri.fragment,
|
|
|
|
)
|
|
|
|
|
|
|
|
res = yield self._route_matrix_uri(new_uri, lookup_well_known=False)
|
2019-07-23 09:00:55 -04:00
|
|
|
return res
|
2019-01-29 08:53:02 -05:00
|
|
|
|
2019-01-31 18:13:44 -05:00
|
|
|
# try a SRV lookup
|
|
|
|
service_name = b"_matrix._tcp.%s" % (parsed_uri.host,)
|
|
|
|
server_list = yield self._srv_resolver.resolve_service(service_name)
|
|
|
|
|
2019-01-27 18:24:17 -05:00
|
|
|
if not server_list:
|
|
|
|
target_host = parsed_uri.host
|
|
|
|
port = 8448
|
|
|
|
logger.debug(
|
|
|
|
"No SRV record for %s, using %s:%i",
|
2019-06-20 05:32:02 -04:00
|
|
|
parsed_uri.host.decode("ascii"),
|
|
|
|
target_host.decode("ascii"),
|
|
|
|
port,
|
2019-01-27 18:24:17 -05:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
target_host, port = pick_server_from_list(server_list)
|
|
|
|
logger.debug(
|
|
|
|
"Picked %s:%i from SRV records for %s",
|
2019-06-20 05:32:02 -04:00
|
|
|
target_host.decode("ascii"),
|
|
|
|
port,
|
|
|
|
parsed_uri.host.decode("ascii"),
|
2019-01-27 18:24:17 -05:00
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return _RoutingResult(
|
|
|
|
host_header=parsed_uri.netloc,
|
|
|
|
tls_server_name=parsed_uri.host,
|
|
|
|
target_host=target_host,
|
|
|
|
target_port=port,
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2019-01-27 18:24:17 -05:00
|
|
|
|
2019-01-30 05:55:25 -05:00
|
|
|
|
2019-01-31 18:18:20 -05:00
|
|
|
@implementer(IStreamClientEndpoint)
|
|
|
|
class LoggingHostnameEndpoint(object):
|
|
|
|
"""A wrapper for HostnameEndpint which logs when it connects"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2019-01-31 18:18:20 -05:00
|
|
|
def __init__(self, reactor, host, port, *args, **kwargs):
|
|
|
|
self.host = host
|
|
|
|
self.port = port
|
|
|
|
self.ep = HostnameEndpoint(reactor, host, port, *args, **kwargs)
|
|
|
|
|
|
|
|
def connect(self, protocol_factory):
|
2019-02-01 07:34:31 -05:00
|
|
|
logger.info("Connecting to %s:%i", self.host.decode("ascii"), self.port)
|
2019-01-31 18:18:20 -05:00
|
|
|
return self.ep.connect(protocol_factory)
|
|
|
|
|
|
|
|
|
2019-01-27 18:24:17 -05:00
|
|
|
@attr.s
|
|
|
|
class _RoutingResult(object):
|
2019-01-28 07:43:09 -05:00
|
|
|
"""The result returned by `_route_matrix_uri`.
|
|
|
|
|
|
|
|
Contains the parameters needed to direct a federation connection to a particular
|
|
|
|
server.
|
|
|
|
|
|
|
|
Where a SRV record points to several servers, this object contains a single server
|
|
|
|
chosen from the list.
|
|
|
|
"""
|
|
|
|
|
2019-01-27 18:24:17 -05:00
|
|
|
host_header = attr.ib()
|
2019-01-28 07:43:09 -05:00
|
|
|
"""
|
|
|
|
The value we should assign to the Host header (host:port from the matrix
|
|
|
|
URI, or .well-known).
|
|
|
|
|
|
|
|
:type: bytes
|
|
|
|
"""
|
|
|
|
|
2019-01-27 18:24:17 -05:00
|
|
|
tls_server_name = attr.ib()
|
2019-01-28 07:43:09 -05:00
|
|
|
"""
|
|
|
|
The server name we should set in the SNI (typically host, without port, from the
|
|
|
|
matrix URI or .well-known)
|
|
|
|
|
|
|
|
:type: bytes
|
|
|
|
"""
|
|
|
|
|
2019-01-27 18:24:17 -05:00
|
|
|
target_host = attr.ib()
|
2019-01-28 07:43:09 -05:00
|
|
|
"""
|
|
|
|
The hostname (or IP literal) we should route the TCP connection to (the target of the
|
|
|
|
SRV record, or the hostname from the URL/.well-known)
|
|
|
|
|
|
|
|
:type: bytes
|
|
|
|
"""
|
|
|
|
|
2019-01-27 18:24:17 -05:00
|
|
|
target_port = attr.ib()
|
2019-01-28 07:43:09 -05:00
|
|
|
"""
|
|
|
|
The port we should route the TCP connection to (the target of the SRV record, or
|
|
|
|
the port from the URL/.well-known, or 8448)
|
|
|
|
|
|
|
|
:type: int
|
|
|
|
"""
|