2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2018-04-22 19:53:18 -04:00
|
|
|
# Copyright 2018 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.
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
2020-11-25 13:30:47 -05:00
|
|
|
import urllib.parse
|
2021-12-09 06:58:25 -05:00
|
|
|
from http import HTTPStatus
|
2019-02-20 06:35:52 -05:00
|
|
|
from io import BytesIO
|
2020-09-24 10:47:20 -04:00
|
|
|
from typing import (
|
2020-11-25 13:30:47 -05:00
|
|
|
TYPE_CHECKING,
|
2020-09-24 10:47:20 -04:00
|
|
|
Any,
|
|
|
|
BinaryIO,
|
|
|
|
Dict,
|
|
|
|
Iterable,
|
|
|
|
List,
|
|
|
|
Mapping,
|
|
|
|
Optional,
|
|
|
|
Sequence,
|
|
|
|
Tuple,
|
|
|
|
Union,
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-09-05 10:10:47 -04:00
|
|
|
import treq
|
2020-08-19 07:26:03 -04:00
|
|
|
from canonicaljson import encode_canonical_json
|
2021-01-13 13:27:49 -05:00
|
|
|
from netaddr import AddrFormatError, IPAddress, IPSet
|
2018-07-09 02:09:20 -04:00
|
|
|
from prometheus_client import Counter
|
2021-04-23 06:08:41 -04:00
|
|
|
from typing_extensions import Protocol
|
2018-12-21 09:56:13 -05:00
|
|
|
from zope.interface import implementer, provider
|
2015-08-24 11:17:38 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from OpenSSL import SSL
|
|
|
|
from OpenSSL.SSL import VERIFY_NONE
|
2020-09-29 05:29:21 -04:00
|
|
|
from twisted.internet import defer, error as twisted_error, protocol, ssl
|
2021-03-11 09:15:22 -05:00
|
|
|
from twisted.internet.address import IPv4Address, IPv6Address
|
2018-12-21 09:56:13 -05:00
|
|
|
from twisted.internet.interfaces import (
|
2020-11-25 13:30:47 -05:00
|
|
|
IAddress,
|
|
|
|
IHostResolution,
|
2018-12-21 09:56:13 -05:00
|
|
|
IReactorPluggableNameResolver,
|
|
|
|
IResolutionReceiver,
|
2021-03-15 11:14:39 -04:00
|
|
|
ITCPTransport,
|
2014-10-29 21:21:33 -04:00
|
|
|
)
|
2021-03-15 11:14:39 -04:00
|
|
|
from twisted.internet.protocol import connectionDone
|
2020-07-15 10:27:35 -04:00
|
|
|
from twisted.internet.task import Cooperator
|
2018-12-21 09:56:13 -05:00
|
|
|
from twisted.python.failure import Failure
|
|
|
|
from twisted.web._newclient import ResponseDone
|
2020-09-29 05:29:21 -04:00
|
|
|
from twisted.web.client import (
|
|
|
|
Agent,
|
|
|
|
HTTPConnectionPool,
|
|
|
|
ResponseNeverReceived,
|
|
|
|
readBody,
|
|
|
|
)
|
2016-03-30 20:55:21 -04:00
|
|
|
from twisted.web.http import PotentialDataLoss
|
2014-08-12 10:10:52 -04:00
|
|
|
from twisted.web.http_headers import Headers
|
2021-03-12 11:37:57 -05:00
|
|
|
from twisted.web.iweb import (
|
|
|
|
UNKNOWN_LENGTH,
|
|
|
|
IAgent,
|
|
|
|
IBodyProducer,
|
|
|
|
IPolicyForHTTPS,
|
|
|
|
IResponse,
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-08-01 10:04:50 -04:00
|
|
|
from synapse.api.errors import Codes, HttpResponseException, SynapseError
|
2020-09-29 05:29:21 -04:00
|
|
|
from synapse.http import QuieterFileBodyProducer, RequestTimedOutError, redact_uri
|
2019-11-01 10:07:44 -04:00
|
|
|
from synapse.http.proxyagent import ProxyAgent
|
2019-07-03 10:07:04 -04:00
|
|
|
from synapse.logging.context import make_deferred_yieldable
|
2019-09-05 12:44:55 -04:00
|
|
|
from synapse.logging.opentracing import set_tag, start_active_span, tags
|
2021-03-08 08:25:43 -05:00
|
|
|
from synapse.types import ISynapseReactor
|
2020-08-19 07:26:03 -04:00
|
|
|
from synapse.util import json_decoder
|
2018-09-19 05:39:40 -04:00
|
|
|
from synapse.util.async_helpers import timeout_deferred
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
if TYPE_CHECKING:
|
2021-03-23 07:12:48 -04:00
|
|
|
from synapse.server import HomeServer
|
2020-11-25 13:30:47 -05:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2018-05-21 20:47:37 -04:00
|
|
|
outgoing_requests_counter = Counter("synapse_http_client_requests", "", ["method"])
|
2018-12-21 09:56:13 -05:00
|
|
|
incoming_responses_counter = Counter(
|
|
|
|
"synapse_http_client_responses", "", ["method", "code"]
|
|
|
|
)
|
|
|
|
|
2020-09-24 10:47:20 -04:00
|
|
|
# the type of the headers list, to be passed to the t.w.h.Headers.
|
|
|
|
# Actually we can mix str and bytes keys, but Mapping treats 'key' as invariant so
|
|
|
|
# we simplify.
|
|
|
|
RawHeaders = Union[Mapping[str, "RawHeaderValue"], Mapping[bytes, "RawHeaderValue"]]
|
|
|
|
|
|
|
|
# the value actually has to be a List, but List is invariant so we can't specify that
|
|
|
|
# the entries can either be Lists or bytes.
|
|
|
|
RawHeaderValue = Sequence[Union[str, bytes]]
|
|
|
|
|
|
|
|
# the type of the query params, to be passed into `urlencode`
|
|
|
|
QueryParamValue = Union[str, bytes, Iterable[Union[str, bytes]]]
|
|
|
|
QueryParams = Union[Mapping[str, QueryParamValue], Mapping[bytes, QueryParamValue]]
|
|
|
|
|
2018-12-21 09:56:13 -05:00
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
def check_against_blacklist(
|
|
|
|
ip_address: IPAddress, ip_whitelist: Optional[IPSet], ip_blacklist: IPSet
|
|
|
|
) -> bool:
|
2018-12-21 09:56:13 -05:00
|
|
|
"""
|
2020-11-25 13:30:47 -05:00
|
|
|
Compares an IP address to allowed and disallowed IP sets.
|
|
|
|
|
2018-12-21 09:56:13 -05:00
|
|
|
Args:
|
2020-11-25 13:30:47 -05:00
|
|
|
ip_address: The IP address to check
|
|
|
|
ip_whitelist: Allowed IP addresses.
|
|
|
|
ip_blacklist: Disallowed IP addresses.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
True if the IP address is in the blacklist and not in the whitelist.
|
2018-12-21 09:56:13 -05:00
|
|
|
"""
|
|
|
|
if ip_address in ip_blacklist:
|
|
|
|
if ip_whitelist is None or ip_address not in ip_whitelist:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2020-07-15 10:27:35 -04:00
|
|
|
_EPSILON = 0.00000001
|
|
|
|
|
|
|
|
|
|
|
|
def _make_scheduler(reactor):
|
|
|
|
"""Makes a schedular suitable for a Cooperator using the given reactor.
|
|
|
|
|
|
|
|
(This is effectively just a copy from `twisted.internet.task`)
|
|
|
|
"""
|
|
|
|
|
|
|
|
def _scheduler(x):
|
|
|
|
return reactor.callLater(_EPSILON, x)
|
|
|
|
|
|
|
|
return _scheduler
|
|
|
|
|
|
|
|
|
2020-12-02 11:09:24 -05:00
|
|
|
class _IPBlacklistingResolver:
|
2018-12-21 09:56:13 -05:00
|
|
|
"""
|
|
|
|
A proxy for reactor.nameResolver which only produces non-blacklisted IP
|
|
|
|
addresses, preventing DNS rebinding attacks on URL preview.
|
|
|
|
"""
|
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
reactor: IReactorPluggableNameResolver,
|
|
|
|
ip_whitelist: Optional[IPSet],
|
|
|
|
ip_blacklist: IPSet,
|
|
|
|
):
|
2018-12-21 09:56:13 -05:00
|
|
|
"""
|
|
|
|
Args:
|
2020-11-25 13:30:47 -05:00
|
|
|
reactor: The twisted reactor.
|
|
|
|
ip_whitelist: IP addresses to allow.
|
|
|
|
ip_blacklist: IP addresses to disallow.
|
2018-12-21 09:56:13 -05:00
|
|
|
"""
|
|
|
|
self._reactor = reactor
|
|
|
|
self._ip_whitelist = ip_whitelist
|
|
|
|
self._ip_blacklist = ip_blacklist
|
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
def resolveHostName(
|
|
|
|
self, recv: IResolutionReceiver, hostname: str, portNumber: int = 0
|
|
|
|
) -> IResolutionReceiver:
|
2021-07-15 06:02:43 -04:00
|
|
|
addresses: List[IAddress] = []
|
2018-12-21 09:56:13 -05:00
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
def _callback() -> None:
|
2019-05-10 13:32:44 -04:00
|
|
|
has_bad_ip = False
|
2021-03-11 09:15:22 -05:00
|
|
|
for address in addresses:
|
|
|
|
# We only expect IPv4 and IPv6 addresses since only A/AAAA lookups
|
|
|
|
# should go through this path.
|
|
|
|
if not isinstance(address, (IPv4Address, IPv6Address)):
|
|
|
|
continue
|
|
|
|
|
|
|
|
ip_address = IPAddress(address.host)
|
2018-12-21 09:56:13 -05:00
|
|
|
|
|
|
|
if check_against_blacklist(
|
|
|
|
ip_address, self._ip_whitelist, self._ip_blacklist
|
|
|
|
):
|
|
|
|
logger.info(
|
2019-05-10 13:32:44 -04:00
|
|
|
"Dropped %s from DNS resolution to %s due to blacklist"
|
|
|
|
% (ip_address, hostname)
|
2018-12-21 09:56:13 -05:00
|
|
|
)
|
2019-05-10 13:32:44 -04:00
|
|
|
has_bad_ip = True
|
|
|
|
|
|
|
|
# if we have a blacklisted IP, we'd like to raise an error to block the
|
|
|
|
# request, but all we can really do from here is claim that there were no
|
|
|
|
# valid results.
|
|
|
|
if not has_bad_ip:
|
2021-03-11 09:15:22 -05:00
|
|
|
for address in addresses:
|
|
|
|
recv.addressResolved(address)
|
|
|
|
recv.resolutionComplete()
|
2018-12-21 09:56:13 -05:00
|
|
|
|
2019-05-10 13:32:44 -04:00
|
|
|
@provider(IResolutionReceiver)
|
2020-09-04 06:54:56 -04:00
|
|
|
class EndpointReceiver:
|
2019-05-10 13:32:44 -04:00
|
|
|
@staticmethod
|
2020-11-25 13:30:47 -05:00
|
|
|
def resolutionBegan(resolutionInProgress: IHostResolution) -> None:
|
2021-03-11 09:15:22 -05:00
|
|
|
recv.resolutionBegan(resolutionInProgress)
|
2019-05-10 13:32:44 -04:00
|
|
|
|
|
|
|
@staticmethod
|
2020-11-25 13:30:47 -05:00
|
|
|
def addressResolved(address: IAddress) -> None:
|
2018-12-21 09:56:13 -05:00
|
|
|
addresses.append(address)
|
|
|
|
|
|
|
|
@staticmethod
|
2020-11-25 13:30:47 -05:00
|
|
|
def resolutionComplete() -> None:
|
2019-05-10 13:32:44 -04:00
|
|
|
_callback()
|
2018-12-21 09:56:13 -05:00
|
|
|
|
|
|
|
self._reactor.nameResolver.resolveHostName(
|
|
|
|
EndpointReceiver, hostname, portNumber=portNumber
|
|
|
|
)
|
|
|
|
|
2021-03-11 09:15:22 -05:00
|
|
|
return recv
|
2018-12-21 09:56:13 -05:00
|
|
|
|
|
|
|
|
2021-03-08 08:25:43 -05:00
|
|
|
@implementer(ISynapseReactor)
|
2020-12-02 11:09:24 -05:00
|
|
|
class BlacklistingReactorWrapper:
|
|
|
|
"""
|
|
|
|
A Reactor wrapper which will prevent DNS resolution to blacklisted IP
|
|
|
|
addresses, to prevent DNS rebinding.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
reactor: IReactorPluggableNameResolver,
|
|
|
|
ip_whitelist: Optional[IPSet],
|
|
|
|
ip_blacklist: IPSet,
|
|
|
|
):
|
|
|
|
self._reactor = reactor
|
|
|
|
|
|
|
|
# We need to use a DNS resolver which filters out blacklisted IP
|
|
|
|
# addresses, to prevent DNS rebinding.
|
|
|
|
self._nameResolver = _IPBlacklistingResolver(
|
|
|
|
self._reactor, ip_whitelist, ip_blacklist
|
|
|
|
)
|
|
|
|
|
|
|
|
def __getattr__(self, attr: str) -> Any:
|
|
|
|
# Passthrough to the real reactor except for the DNS resolver.
|
|
|
|
if attr == "nameResolver":
|
|
|
|
return self._nameResolver
|
|
|
|
else:
|
|
|
|
return getattr(self._reactor, attr)
|
|
|
|
|
|
|
|
|
2018-12-21 09:56:13 -05:00
|
|
|
class BlacklistingAgentWrapper(Agent):
|
|
|
|
"""
|
|
|
|
An Agent wrapper which will prevent access to IP addresses being accessed
|
|
|
|
directly (without an IP address lookup).
|
|
|
|
"""
|
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
agent: IAgent,
|
|
|
|
ip_whitelist: Optional[IPSet] = None,
|
|
|
|
ip_blacklist: Optional[IPSet] = None,
|
|
|
|
):
|
2018-12-21 09:56:13 -05:00
|
|
|
"""
|
|
|
|
Args:
|
2020-11-25 13:30:47 -05:00
|
|
|
agent: The Agent to wrap.
|
|
|
|
ip_whitelist: IP addresses to allow.
|
|
|
|
ip_blacklist: IP addresses to disallow.
|
2018-12-21 09:56:13 -05:00
|
|
|
"""
|
|
|
|
self._agent = agent
|
|
|
|
self._ip_whitelist = ip_whitelist
|
|
|
|
self._ip_blacklist = ip_blacklist
|
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
def request(
|
|
|
|
self,
|
|
|
|
method: bytes,
|
|
|
|
uri: bytes,
|
|
|
|
headers: Optional[Headers] = None,
|
|
|
|
bodyProducer: Optional[IBodyProducer] = None,
|
|
|
|
) -> defer.Deferred:
|
2018-12-21 09:56:13 -05:00
|
|
|
h = urllib.parse.urlparse(uri.decode("ascii"))
|
|
|
|
|
|
|
|
try:
|
|
|
|
ip_address = IPAddress(h.hostname)
|
2021-01-13 13:27:49 -05:00
|
|
|
except AddrFormatError:
|
|
|
|
# Not an IP
|
|
|
|
pass
|
|
|
|
else:
|
2018-12-21 09:56:13 -05:00
|
|
|
if check_against_blacklist(
|
|
|
|
ip_address, self._ip_whitelist, self._ip_blacklist
|
|
|
|
):
|
2019-05-13 14:05:06 -04:00
|
|
|
logger.info("Blocking access to %s due to blacklist" % (ip_address,))
|
2021-12-09 06:58:25 -05:00
|
|
|
e = SynapseError(
|
|
|
|
HTTPStatus.FORBIDDEN, "IP address blocked by IP blacklist entry"
|
|
|
|
)
|
2018-12-21 09:56:13 -05:00
|
|
|
return defer.fail(Failure(e))
|
|
|
|
|
|
|
|
return self._agent.request(
|
|
|
|
method, uri, headers=headers, bodyProducer=bodyProducer
|
|
|
|
)
|
2015-02-24 14:51:21 -05:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class SimpleHttpClient:
|
2014-11-20 12:41:56 -05:00
|
|
|
"""
|
2014-11-20 13:00:10 -05:00
|
|
|
A simple, no-frills HTTP client with methods that wrap up common ways of
|
|
|
|
using HTTP in Matrix
|
2014-10-02 08:57:48 -04:00
|
|
|
"""
|
2018-12-21 09:56:13 -05:00
|
|
|
|
2019-11-01 10:07:44 -04:00
|
|
|
def __init__(
|
|
|
|
self,
|
2020-11-25 13:30:47 -05:00
|
|
|
hs: "HomeServer",
|
2021-04-08 17:38:54 -04:00
|
|
|
treq_args: Optional[Dict[str, Any]] = None,
|
2020-11-25 13:30:47 -05:00
|
|
|
ip_whitelist: Optional[IPSet] = None,
|
|
|
|
ip_blacklist: Optional[IPSet] = None,
|
2021-02-26 12:37:57 -05:00
|
|
|
use_proxy: bool = False,
|
2019-11-01 10:07:44 -04:00
|
|
|
):
|
2018-12-21 09:56:13 -05:00
|
|
|
"""
|
|
|
|
Args:
|
2020-11-25 13:30:47 -05:00
|
|
|
hs
|
|
|
|
treq_args: Extra keyword arguments to be given to treq.request.
|
|
|
|
ip_blacklist: The IP addresses that are blacklisted that
|
2018-12-21 09:56:13 -05:00
|
|
|
we may not request.
|
2020-11-25 13:30:47 -05:00
|
|
|
ip_whitelist: The whitelisted IP addresses, that we can
|
2018-12-21 09:56:13 -05:00
|
|
|
request if it were otherwise caught in a blacklist.
|
2021-02-26 12:37:57 -05:00
|
|
|
use_proxy: Whether proxy settings should be discovered and used
|
|
|
|
from conventional environment variables.
|
2018-12-21 09:56:13 -05:00
|
|
|
"""
|
2014-10-02 08:57:48 -04:00
|
|
|
self.hs = hs
|
2018-01-19 19:55:44 -05:00
|
|
|
|
2018-12-21 09:56:13 -05:00
|
|
|
self._ip_whitelist = ip_whitelist
|
|
|
|
self._ip_blacklist = ip_blacklist
|
2021-04-08 17:38:54 -04:00
|
|
|
self._extra_treq_args = treq_args or {}
|
2018-12-21 09:56:13 -05:00
|
|
|
|
|
|
|
self.user_agent = hs.version_string
|
|
|
|
self.clock = hs.get_clock()
|
2021-09-15 08:34:52 -04:00
|
|
|
if hs.config.server.user_agent_suffix:
|
|
|
|
self.user_agent = "%s %s" % (
|
|
|
|
self.user_agent,
|
|
|
|
hs.config.server.user_agent_suffix,
|
|
|
|
)
|
2018-12-21 09:56:13 -05:00
|
|
|
|
2020-07-15 10:27:35 -04:00
|
|
|
# We use this for our body producers to ensure that they use the correct
|
|
|
|
# reactor.
|
|
|
|
self._cooperator = Cooperator(scheduler=_make_scheduler(hs.get_reactor()))
|
|
|
|
|
2018-12-21 09:56:13 -05:00
|
|
|
self.user_agent = self.user_agent.encode("ascii")
|
|
|
|
|
|
|
|
if self._ip_blacklist:
|
|
|
|
# If we have an IP blacklist, we need to use a DNS resolver which
|
|
|
|
# filters out blacklisted IP addresses, to prevent DNS rebinding.
|
2021-07-15 06:02:43 -04:00
|
|
|
self.reactor: ISynapseReactor = BlacklistingReactorWrapper(
|
2020-12-02 11:09:24 -05:00
|
|
|
hs.get_reactor(), self._ip_whitelist, self._ip_blacklist
|
2021-07-15 06:02:43 -04:00
|
|
|
)
|
2018-12-21 09:56:13 -05:00
|
|
|
else:
|
|
|
|
self.reactor = hs.get_reactor()
|
2018-01-29 09:30:15 -05:00
|
|
|
|
|
|
|
# the pusher makes lots of concurrent SSL connections to sygnal, and
|
2018-12-21 09:56:13 -05:00
|
|
|
# tends to do so in batches, so we need to allow the pool to keep
|
|
|
|
# lots of idle connections around.
|
|
|
|
pool = HTTPConnectionPool(self.reactor)
|
2020-05-11 13:45:23 -04:00
|
|
|
# XXX: The justification for using the cache factor here is that larger instances
|
|
|
|
# will need both more cache and more connections.
|
|
|
|
# Still, this should probably be a separate dial
|
|
|
|
pool.maxPersistentPerHost = max((100 * hs.config.caches.global_factor, 5))
|
2018-01-19 19:55:44 -05:00
|
|
|
pool.cachedConnectionTimeout = 2 * 60
|
|
|
|
|
2021-07-15 06:02:43 -04:00
|
|
|
self.agent: IAgent = ProxyAgent(
|
2018-12-21 09:56:13 -05:00
|
|
|
self.reactor,
|
2021-01-12 12:20:30 -05:00
|
|
|
hs.get_reactor(),
|
2015-09-09 07:02:07 -04:00
|
|
|
connectTimeout=15,
|
2018-12-21 09:56:13 -05:00
|
|
|
contextFactory=self.hs.get_http_client_context_factory(),
|
2018-01-19 19:55:44 -05:00
|
|
|
pool=pool,
|
2021-02-26 12:37:57 -05:00
|
|
|
use_proxy=use_proxy,
|
2021-07-15 06:02:43 -04:00
|
|
|
)
|
2014-10-02 08:57:48 -04:00
|
|
|
|
2018-12-21 09:56:13 -05:00
|
|
|
if self._ip_blacklist:
|
|
|
|
# If we have an IP blacklist, we then install the blacklisting Agent
|
|
|
|
# which prevents direct access to IP addresses, that are not caught
|
|
|
|
# by the DNS resolution.
|
|
|
|
self.agent = BlacklistingAgentWrapper(
|
|
|
|
self.agent,
|
|
|
|
ip_whitelist=self._ip_whitelist,
|
|
|
|
ip_blacklist=self._ip_blacklist,
|
|
|
|
)
|
2018-09-05 10:10:47 -04:00
|
|
|
|
2020-09-24 10:47:20 -04:00
|
|
|
async def request(
|
|
|
|
self,
|
|
|
|
method: str,
|
|
|
|
uri: str,
|
|
|
|
data: Optional[bytes] = None,
|
|
|
|
headers: Optional[Headers] = None,
|
|
|
|
) -> IResponse:
|
2018-12-21 09:56:13 -05:00
|
|
|
"""
|
|
|
|
Args:
|
2020-09-24 10:47:20 -04:00
|
|
|
method: HTTP method to use.
|
|
|
|
uri: URI to query.
|
|
|
|
data: Data to send in the request body, if applicable.
|
|
|
|
headers: Request headers.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Response object, once the headers have been read.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
RequestTimedOutError if the request times out before the headers are read
|
|
|
|
|
2018-12-21 09:56:13 -05:00
|
|
|
"""
|
2018-05-21 20:47:37 -04:00
|
|
|
outgoing_requests_counter.labels(method).inc()
|
2017-05-05 05:49:19 -04:00
|
|
|
|
2018-06-02 18:25:13 -04:00
|
|
|
# log request but strip `access_token` (AS requests for example include this)
|
2020-08-11 13:10:07 -04:00
|
|
|
logger.debug("Sending request %s %s", method, redact_uri(uri))
|
2018-04-22 19:53:18 -04:00
|
|
|
|
2019-09-05 12:44:55 -04:00
|
|
|
with start_active_span(
|
|
|
|
"outgoing-client-request",
|
|
|
|
tags={
|
|
|
|
tags.SPAN_KIND: tags.SPAN_KIND_RPC_CLIENT,
|
|
|
|
tags.HTTP_METHOD: method,
|
|
|
|
tags.HTTP_URL: uri,
|
|
|
|
},
|
|
|
|
finish_on_close=True,
|
|
|
|
):
|
|
|
|
try:
|
|
|
|
body_producer = None
|
|
|
|
if data is not None:
|
2020-07-15 10:27:35 -04:00
|
|
|
body_producer = QuieterFileBodyProducer(
|
|
|
|
BytesIO(data),
|
|
|
|
cooperator=self._cooperator,
|
|
|
|
)
|
2019-09-05 12:44:55 -04:00
|
|
|
|
2021-07-15 06:02:43 -04:00
|
|
|
request_deferred: defer.Deferred = treq.request(
|
2019-09-05 12:44:55 -04:00
|
|
|
method,
|
|
|
|
uri,
|
|
|
|
agent=self.agent,
|
|
|
|
data=body_producer,
|
|
|
|
headers=headers,
|
2021-02-18 09:01:29 -05:00
|
|
|
# Avoid buffering the body in treq since we do not reuse
|
|
|
|
# response bodies.
|
|
|
|
unbuffered=True,
|
2019-09-05 12:44:55 -04:00
|
|
|
**self._extra_treq_args,
|
2021-07-15 06:02:43 -04:00
|
|
|
)
|
2020-09-29 05:29:21 -04:00
|
|
|
|
2020-09-24 10:47:20 -04:00
|
|
|
# we use our own timeout mechanism rather than treq's as a workaround
|
|
|
|
# for https://twistedmatrix.com/trac/ticket/9534.
|
2019-09-05 12:44:55 -04:00
|
|
|
request_deferred = timeout_deferred(
|
2020-09-29 05:29:21 -04:00
|
|
|
request_deferred,
|
|
|
|
60,
|
|
|
|
self.hs.get_reactor(),
|
2019-09-05 12:44:55 -04:00
|
|
|
)
|
2020-09-29 05:29:21 -04:00
|
|
|
|
|
|
|
# turn timeouts into RequestTimedOutErrors
|
|
|
|
request_deferred.addErrback(_timeout_to_request_timed_out_error)
|
|
|
|
|
2020-08-04 07:22:04 -04:00
|
|
|
response = await make_deferred_yieldable(request_deferred)
|
2019-09-05 12:44:55 -04:00
|
|
|
|
|
|
|
incoming_responses_counter.labels(method, response.code).inc()
|
|
|
|
logger.info(
|
|
|
|
"Received response to %s %s: %s",
|
|
|
|
method,
|
|
|
|
redact_uri(uri),
|
|
|
|
response.code,
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
except Exception as e:
|
|
|
|
incoming_responses_counter.labels(method, "ERR").inc()
|
|
|
|
logger.info(
|
|
|
|
"Error sending request to %s %s: %s %s",
|
|
|
|
method,
|
|
|
|
redact_uri(uri),
|
|
|
|
type(e).__name__,
|
|
|
|
e.args[0],
|
|
|
|
)
|
|
|
|
set_tag(tags.ERROR, True)
|
|
|
|
set_tag("error_reason", e.args[0])
|
|
|
|
raise
|
2015-02-24 14:05:20 -05:00
|
|
|
|
2020-09-24 10:47:20 -04:00
|
|
|
async def post_urlencoded_get_json(
|
|
|
|
self,
|
|
|
|
uri: str,
|
2020-11-25 13:30:47 -05:00
|
|
|
args: Optional[Mapping[str, Union[str, List[str]]]] = None,
|
2020-09-24 10:47:20 -04:00
|
|
|
headers: Optional[RawHeaders] = None,
|
|
|
|
) -> Any:
|
2017-10-27 05:59:50 -04:00
|
|
|
"""
|
|
|
|
Args:
|
2020-09-24 10:47:20 -04:00
|
|
|
uri: uri to query
|
|
|
|
args: parameters to be url-encoded in the body
|
|
|
|
headers: a map from header name to a list of values for that header
|
2017-10-27 05:59:50 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-09-24 10:47:20 -04:00
|
|
|
parsed json
|
2018-08-01 10:04:50 -04:00
|
|
|
|
|
|
|
Raises:
|
2020-09-29 05:29:21 -04:00
|
|
|
RequestTimedOutError: if there is a timeout before the response headers
|
2020-09-24 10:47:20 -04:00
|
|
|
are received. Note there is currently no timeout on reading the response
|
|
|
|
body.
|
|
|
|
|
2018-08-01 10:04:50 -04:00
|
|
|
HttpResponseException: On a non-2xx HTTP response.
|
|
|
|
|
|
|
|
ValueError: if the response was not JSON
|
2017-10-27 05:59:50 -04:00
|
|
|
"""
|
|
|
|
|
2015-06-15 08:05:11 -04:00
|
|
|
# TODO: Do we ever want to log message contents?
|
2014-11-20 08:53:34 -05:00
|
|
|
logger.debug("post_urlencoded_get_json args: %s", args)
|
2015-06-15 08:05:11 -04:00
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
query_bytes = encode_query_args(args)
|
2014-11-20 08:53:34 -05:00
|
|
|
|
2017-10-26 12:59:50 -04:00
|
|
|
actual_headers = {
|
|
|
|
b"Content-Type": [b"application/x-www-form-urlencoded"],
|
|
|
|
b"User-Agent": [self.user_agent],
|
2020-05-08 08:30:40 -04:00
|
|
|
b"Accept": [b"application/json"],
|
2017-10-26 12:59:50 -04:00
|
|
|
}
|
|
|
|
if headers:
|
2020-11-25 13:30:47 -05:00
|
|
|
actual_headers.update(headers) # type: ignore
|
2017-10-26 12:59:50 -04:00
|
|
|
|
2020-08-04 07:22:04 -04:00
|
|
|
response = await self.request(
|
2018-12-21 09:56:13 -05:00
|
|
|
"POST", uri, headers=Headers(actual_headers), data=query_bytes
|
2014-11-20 08:53:34 -05:00
|
|
|
)
|
|
|
|
|
2020-08-04 07:22:04 -04:00
|
|
|
body = await make_deferred_yieldable(readBody(response))
|
2019-01-24 08:38:29 -05:00
|
|
|
|
2018-08-01 10:04:50 -04:00
|
|
|
if 200 <= response.code < 300:
|
2020-08-19 07:26:03 -04:00
|
|
|
return json_decoder.decode(body.decode("utf-8"))
|
2018-08-01 10:04:50 -04:00
|
|
|
else:
|
2020-07-29 13:56:06 -04:00
|
|
|
raise HttpResponseException(
|
|
|
|
response.code, response.phrase.decode("ascii", errors="replace"), body
|
|
|
|
)
|
2014-11-21 07:21:00 -05:00
|
|
|
|
2020-09-24 10:47:20 -04:00
|
|
|
async def post_json_get_json(
|
|
|
|
self, uri: str, post_json: Any, headers: Optional[RawHeaders] = None
|
|
|
|
) -> Any:
|
2017-10-26 12:59:50 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
Args:
|
2020-09-24 10:47:20 -04:00
|
|
|
uri: URI to query.
|
|
|
|
post_json: request body, to be encoded as json
|
|
|
|
headers: a map from header name to a list of values for that header
|
2017-10-26 12:59:50 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-09-24 10:47:20 -04:00
|
|
|
parsed json
|
2018-08-01 10:04:50 -04:00
|
|
|
|
|
|
|
Raises:
|
2020-09-29 05:29:21 -04:00
|
|
|
RequestTimedOutError: if there is a timeout before the response headers
|
2020-09-24 10:47:20 -04:00
|
|
|
are received. Note there is currently no timeout on reading the response
|
|
|
|
body.
|
|
|
|
|
2018-08-01 10:04:50 -04:00
|
|
|
HttpResponseException: On a non-2xx HTTP response.
|
|
|
|
|
|
|
|
ValueError: if the response was not JSON
|
2017-10-26 12:59:50 -04:00
|
|
|
"""
|
2015-02-11 12:34:23 -05:00
|
|
|
json_str = encode_canonical_json(post_json)
|
2014-11-21 07:21:00 -05:00
|
|
|
|
2015-06-15 08:05:11 -04:00
|
|
|
logger.debug("HTTP POST %s -> %s", json_str, uri)
|
2014-11-21 07:21:00 -05:00
|
|
|
|
2017-10-26 12:59:50 -04:00
|
|
|
actual_headers = {
|
|
|
|
b"Content-Type": [b"application/json"],
|
|
|
|
b"User-Agent": [self.user_agent],
|
2020-05-08 08:30:40 -04:00
|
|
|
b"Accept": [b"application/json"],
|
2017-10-26 12:59:50 -04:00
|
|
|
}
|
|
|
|
if headers:
|
2020-11-25 13:30:47 -05:00
|
|
|
actual_headers.update(headers) # type: ignore
|
2017-10-26 12:59:50 -04:00
|
|
|
|
2020-08-04 07:22:04 -04:00
|
|
|
response = await self.request(
|
2018-12-21 09:56:13 -05:00
|
|
|
"POST", uri, headers=Headers(actual_headers), data=json_str
|
2014-11-21 07:21:00 -05:00
|
|
|
)
|
|
|
|
|
2020-08-04 07:22:04 -04:00
|
|
|
body = await make_deferred_yieldable(readBody(response))
|
2014-11-21 07:21:00 -05:00
|
|
|
|
2017-04-25 14:30:55 -04:00
|
|
|
if 200 <= response.code < 300:
|
2020-08-19 07:26:03 -04:00
|
|
|
return json_decoder.decode(body.decode("utf-8"))
|
2017-04-25 14:30:55 -04:00
|
|
|
else:
|
2020-07-29 13:56:06 -04:00
|
|
|
raise HttpResponseException(
|
|
|
|
response.code, response.phrase.decode("ascii", errors="replace"), body
|
|
|
|
)
|
2014-11-20 08:53:34 -05:00
|
|
|
|
2020-09-24 10:47:20 -04:00
|
|
|
async def get_json(
|
2020-11-25 13:30:47 -05:00
|
|
|
self,
|
|
|
|
uri: str,
|
|
|
|
args: Optional[QueryParams] = None,
|
|
|
|
headers: Optional[RawHeaders] = None,
|
2020-09-24 10:47:20 -04:00
|
|
|
) -> Any:
|
|
|
|
"""Gets some json from the given URI.
|
2014-11-20 08:53:34 -05:00
|
|
|
|
|
|
|
Args:
|
2020-09-24 10:47:20 -04:00
|
|
|
uri: The URI to request, not including query parameters
|
|
|
|
args: A dictionary used to create query string
|
|
|
|
headers: a map from header name to a list of values for that header
|
2014-11-20 08:53:34 -05:00
|
|
|
Returns:
|
2020-09-24 10:47:20 -04:00
|
|
|
Succeeds when we get a 2xx HTTP response, with the HTTP body as JSON.
|
2015-02-04 12:07:31 -05:00
|
|
|
Raises:
|
2020-09-29 05:29:21 -04:00
|
|
|
RequestTimedOutError: if there is a timeout before the response headers
|
2020-09-24 10:47:20 -04:00
|
|
|
are received. Note there is currently no timeout on reading the response
|
|
|
|
body.
|
|
|
|
|
2018-08-01 10:04:50 -04:00
|
|
|
HttpResponseException On a non-2xx HTTP response.
|
|
|
|
|
|
|
|
ValueError: if the response was not JSON
|
2014-11-20 08:53:34 -05:00
|
|
|
"""
|
2020-05-08 08:30:40 -04:00
|
|
|
actual_headers = {b"Accept": [b"application/json"]}
|
|
|
|
if headers:
|
2020-11-25 13:30:47 -05:00
|
|
|
actual_headers.update(headers) # type: ignore
|
2020-05-08 08:30:40 -04:00
|
|
|
|
2022-01-05 06:59:29 -05:00
|
|
|
body = await self.get_raw(uri, args, headers=actual_headers)
|
2020-08-19 07:26:03 -04:00
|
|
|
return json_decoder.decode(body.decode("utf-8"))
|
2015-10-09 06:02:56 -04:00
|
|
|
|
2020-09-24 10:47:20 -04:00
|
|
|
async def put_json(
|
|
|
|
self,
|
|
|
|
uri: str,
|
|
|
|
json_body: Any,
|
2020-11-25 13:30:47 -05:00
|
|
|
args: Optional[QueryParams] = None,
|
2021-04-05 09:10:18 -04:00
|
|
|
headers: Optional[RawHeaders] = None,
|
2020-09-24 10:47:20 -04:00
|
|
|
) -> Any:
|
|
|
|
"""Puts some json to the given URI.
|
2015-10-09 06:02:56 -04:00
|
|
|
|
|
|
|
Args:
|
2020-09-24 10:47:20 -04:00
|
|
|
uri: The URI to request, not including query parameters
|
|
|
|
json_body: The JSON to put in the HTTP body,
|
|
|
|
args: A dictionary used to create query strings
|
|
|
|
headers: a map from header name to a list of values for that header
|
2015-10-09 06:02:56 -04:00
|
|
|
Returns:
|
2020-09-24 10:47:20 -04:00
|
|
|
Succeeds when we get a 2xx HTTP response, with the HTTP body as JSON.
|
2015-10-09 06:02:56 -04:00
|
|
|
Raises:
|
2020-09-29 05:29:21 -04:00
|
|
|
RequestTimedOutError: if there is a timeout before the response headers
|
2020-09-24 10:47:20 -04:00
|
|
|
are received. Note there is currently no timeout on reading the response
|
|
|
|
body.
|
|
|
|
|
2018-08-01 10:04:50 -04:00
|
|
|
HttpResponseException On a non-2xx HTTP response.
|
|
|
|
|
|
|
|
ValueError: if the response was not JSON
|
2015-10-09 06:02:56 -04:00
|
|
|
"""
|
2020-11-25 13:30:47 -05:00
|
|
|
if args:
|
|
|
|
query_str = urllib.parse.urlencode(args, True)
|
|
|
|
uri = "%s?%s" % (uri, query_str)
|
2014-11-20 08:53:34 -05:00
|
|
|
|
2015-10-09 06:02:56 -04:00
|
|
|
json_str = encode_canonical_json(json_body)
|
|
|
|
|
2017-10-26 12:59:50 -04:00
|
|
|
actual_headers = {
|
|
|
|
b"Content-Type": [b"application/json"],
|
|
|
|
b"User-Agent": [self.user_agent],
|
2020-05-08 08:30:40 -04:00
|
|
|
b"Accept": [b"application/json"],
|
2017-10-26 12:59:50 -04:00
|
|
|
}
|
|
|
|
if headers:
|
2020-11-25 13:30:47 -05:00
|
|
|
actual_headers.update(headers) # type: ignore
|
2017-10-26 12:59:50 -04:00
|
|
|
|
2020-08-04 07:22:04 -04:00
|
|
|
response = await self.request(
|
2018-12-21 09:56:13 -05:00
|
|
|
"PUT", uri, headers=Headers(actual_headers), data=json_str
|
2014-11-20 08:53:34 -05:00
|
|
|
)
|
|
|
|
|
2020-08-04 07:22:04 -04:00
|
|
|
body = await make_deferred_yieldable(readBody(response))
|
2014-11-20 08:53:34 -05:00
|
|
|
|
2015-02-04 12:07:31 -05:00
|
|
|
if 200 <= response.code < 300:
|
2020-08-19 07:26:03 -04:00
|
|
|
return json_decoder.decode(body.decode("utf-8"))
|
2015-02-04 12:07:31 -05:00
|
|
|
else:
|
2020-07-29 13:56:06 -04:00
|
|
|
raise HttpResponseException(
|
|
|
|
response.code, response.phrase.decode("ascii", errors="replace"), body
|
|
|
|
)
|
2014-11-20 08:53:34 -05:00
|
|
|
|
2020-09-24 10:47:20 -04:00
|
|
|
async def get_raw(
|
2020-11-25 13:30:47 -05:00
|
|
|
self,
|
|
|
|
uri: str,
|
|
|
|
args: Optional[QueryParams] = None,
|
|
|
|
headers: Optional[RawHeaders] = None,
|
2020-09-24 10:47:20 -04:00
|
|
|
) -> bytes:
|
|
|
|
"""Gets raw text from the given URI.
|
2015-02-04 12:39:51 -05:00
|
|
|
|
|
|
|
Args:
|
2020-09-24 10:47:20 -04:00
|
|
|
uri: The URI to request, not including query parameters
|
|
|
|
args: A dictionary used to create query strings
|
|
|
|
headers: a map from header name to a list of values for that header
|
2015-02-04 12:39:51 -05:00
|
|
|
Returns:
|
2020-09-24 10:47:20 -04:00
|
|
|
Succeeds when we get a 2xx HTTP response, with the
|
2020-07-10 14:30:08 -04:00
|
|
|
HTTP body as bytes.
|
2015-02-04 12:39:51 -05:00
|
|
|
Raises:
|
2020-09-29 05:29:21 -04:00
|
|
|
RequestTimedOutError: if there is a timeout before the response headers
|
2020-09-24 10:47:20 -04:00
|
|
|
are received. Note there is currently no timeout on reading the response
|
|
|
|
body.
|
|
|
|
|
2018-08-01 10:04:50 -04:00
|
|
|
HttpResponseException on a non-2xx HTTP response.
|
2015-02-04 12:39:51 -05:00
|
|
|
"""
|
2020-11-25 13:30:47 -05:00
|
|
|
if args:
|
|
|
|
query_str = urllib.parse.urlencode(args, True)
|
|
|
|
uri = "%s?%s" % (uri, query_str)
|
2015-02-04 12:39:51 -05:00
|
|
|
|
2018-12-21 09:56:13 -05:00
|
|
|
actual_headers = {b"User-Agent": [self.user_agent]}
|
2017-10-26 12:59:50 -04:00
|
|
|
if headers:
|
2020-11-25 13:30:47 -05:00
|
|
|
actual_headers.update(headers) # type: ignore
|
2017-10-26 12:59:50 -04:00
|
|
|
|
2020-08-04 07:22:04 -04:00
|
|
|
response = await self.request("GET", uri, headers=Headers(actual_headers))
|
2015-02-04 12:39:51 -05:00
|
|
|
|
2020-08-04 07:22:04 -04:00
|
|
|
body = await make_deferred_yieldable(readBody(response))
|
2015-02-04 12:39:51 -05:00
|
|
|
|
|
|
|
if 200 <= response.code < 300:
|
2019-07-23 09:00:55 -04:00
|
|
|
return body
|
2015-02-04 12:39:51 -05:00
|
|
|
else:
|
2020-07-29 13:56:06 -04:00
|
|
|
raise HttpResponseException(
|
|
|
|
response.code, response.phrase.decode("ascii", errors="replace"), body
|
|
|
|
)
|
2017-04-25 14:30:55 -04:00
|
|
|
|
2016-01-24 18:47:27 -05:00
|
|
|
# XXX: FIXME: This is horribly copy-pasted from matrixfederationclient.
|
|
|
|
# The two should be factored out.
|
|
|
|
|
2020-09-24 10:47:20 -04:00
|
|
|
async def get_file(
|
|
|
|
self,
|
|
|
|
url: str,
|
|
|
|
output_stream: BinaryIO,
|
|
|
|
max_size: Optional[int] = None,
|
|
|
|
headers: Optional[RawHeaders] = None,
|
|
|
|
) -> Tuple[int, Dict[bytes, List[bytes]], str, int]:
|
2016-01-24 18:47:27 -05:00
|
|
|
"""GETs a file from a given URL
|
|
|
|
Args:
|
2020-09-24 10:47:20 -04:00
|
|
|
url: The URL to GET
|
|
|
|
output_stream: File to write the response body to.
|
|
|
|
headers: A map from header name to a list of values for that header
|
2016-01-24 18:47:27 -05:00
|
|
|
Returns:
|
2020-09-24 10:47:20 -04:00
|
|
|
A tuple of the file length, dict of the response
|
2016-04-02 19:31:57 -04:00
|
|
|
headers, absolute URI of the response and HTTP response code.
|
2020-09-24 10:47:20 -04:00
|
|
|
|
|
|
|
Raises:
|
2020-09-29 05:29:21 -04:00
|
|
|
RequestTimedOutError: if there is a timeout before the response headers
|
2020-09-24 10:47:20 -04:00
|
|
|
are received. Note there is currently no timeout on reading the response
|
|
|
|
body.
|
|
|
|
|
|
|
|
SynapseError: if the response is not a 2xx, the remote file is too large, or
|
|
|
|
another exception happens during the download.
|
2016-01-24 18:47:27 -05:00
|
|
|
"""
|
|
|
|
|
2018-12-21 09:56:13 -05:00
|
|
|
actual_headers = {b"User-Agent": [self.user_agent]}
|
2017-10-26 12:59:50 -04:00
|
|
|
if headers:
|
2020-11-25 13:30:47 -05:00
|
|
|
actual_headers.update(headers) # type: ignore
|
2017-10-26 12:59:50 -04:00
|
|
|
|
2020-08-04 07:22:04 -04:00
|
|
|
response = await self.request("GET", url, headers=Headers(actual_headers))
|
2016-01-24 18:47:27 -05:00
|
|
|
|
2017-10-26 12:59:50 -04:00
|
|
|
resp_headers = dict(response.headers.getAllRawHeaders())
|
2016-01-24 18:47:27 -05:00
|
|
|
|
2016-04-01 22:06:39 -04:00
|
|
|
if response.code > 299:
|
2019-10-31 06:23:24 -04:00
|
|
|
logger.warning("Got %d when downloading %s" % (response.code, url))
|
2021-12-09 06:58:25 -05:00
|
|
|
raise SynapseError(
|
|
|
|
HTTPStatus.BAD_GATEWAY, "Got error %d" % (response.code,), Codes.UNKNOWN
|
|
|
|
)
|
2016-04-01 22:06:39 -04:00
|
|
|
|
2016-01-24 18:47:27 -05:00
|
|
|
# TODO: if our Content-Type is HTML or something, just read the first
|
|
|
|
# N bytes into RAM rather than saving it all to disk only to read it
|
|
|
|
# straight back in again
|
|
|
|
|
|
|
|
try:
|
2020-08-04 07:22:04 -04:00
|
|
|
length = await make_deferred_yieldable(
|
2020-12-16 17:25:24 -05:00
|
|
|
read_body_with_max_size(response, output_stream, max_size)
|
|
|
|
)
|
|
|
|
except BodyExceededMaxSize:
|
2021-01-18 10:21:42 -05:00
|
|
|
raise SynapseError(
|
2021-12-09 06:58:25 -05:00
|
|
|
HTTPStatus.BAD_GATEWAY,
|
2020-12-16 17:25:24 -05:00
|
|
|
"Requested file is too large > %r bytes" % (max_size,),
|
|
|
|
Codes.TOO_LARGE,
|
2018-12-21 09:56:13 -05:00
|
|
|
)
|
2016-04-08 16:36:48 -04:00
|
|
|
except Exception as e:
|
2021-12-09 06:58:25 -05:00
|
|
|
raise SynapseError(
|
|
|
|
HTTPStatus.BAD_GATEWAY, ("Failed to download remote body: %s" % e)
|
|
|
|
) from e
|
2016-01-24 18:47:27 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return (
|
|
|
|
length,
|
|
|
|
resp_headers,
|
|
|
|
response.request.absoluteURI.decode("ascii"),
|
|
|
|
response.code,
|
2017-10-26 12:59:50 -04:00
|
|
|
)
|
2016-01-24 18:47:27 -05:00
|
|
|
|
|
|
|
|
2020-09-29 05:29:21 -04:00
|
|
|
def _timeout_to_request_timed_out_error(f: Failure):
|
|
|
|
if f.check(twisted_error.TimeoutError, twisted_error.ConnectingCancelledError):
|
|
|
|
# The TCP connection has its own timeout (set by the 'connectTimeout' param
|
|
|
|
# on the Agent), which raises twisted_error.TimeoutError exception.
|
|
|
|
raise RequestTimedOutError("Timeout connecting to remote server")
|
|
|
|
elif f.check(defer.TimeoutError, ResponseNeverReceived):
|
|
|
|
# this one means that we hit our overall timeout on the request
|
|
|
|
raise RequestTimedOutError("Timeout waiting for response from remote server")
|
|
|
|
|
|
|
|
return f
|
|
|
|
|
|
|
|
|
2021-04-23 06:08:41 -04:00
|
|
|
class ByteWriteable(Protocol):
|
|
|
|
"""The type of object which must be passed into read_body_with_max_size.
|
|
|
|
|
|
|
|
Typically this is a file object.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def write(self, data: bytes) -> int:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2020-12-16 17:25:24 -05:00
|
|
|
class BodyExceededMaxSize(Exception):
|
|
|
|
"""The maximum allowed size of the HTTP body was exceeded."""
|
|
|
|
|
|
|
|
|
2021-03-01 12:45:00 -05:00
|
|
|
class _DiscardBodyWithMaxSizeProtocol(protocol.Protocol):
|
|
|
|
"""A protocol which immediately errors upon receiving data."""
|
|
|
|
|
2021-07-15 06:02:43 -04:00
|
|
|
transport: Optional[ITCPTransport] = None
|
2021-03-15 11:14:39 -04:00
|
|
|
|
2021-03-01 12:45:00 -05:00
|
|
|
def __init__(self, deferred: defer.Deferred):
|
|
|
|
self.deferred = deferred
|
|
|
|
|
|
|
|
def _maybe_fail(self):
|
|
|
|
"""
|
|
|
|
Report a max size exceed error and disconnect the first time this is called.
|
|
|
|
"""
|
|
|
|
if not self.deferred.called:
|
|
|
|
self.deferred.errback(BodyExceededMaxSize())
|
|
|
|
# Close the connection (forcefully) since all the data will get
|
|
|
|
# discarded anyway.
|
2021-03-15 11:14:39 -04:00
|
|
|
assert self.transport is not None
|
2021-03-01 12:45:00 -05:00
|
|
|
self.transport.abortConnection()
|
|
|
|
|
|
|
|
def dataReceived(self, data: bytes) -> None:
|
|
|
|
self._maybe_fail()
|
|
|
|
|
2021-03-15 11:14:39 -04:00
|
|
|
def connectionLost(self, reason: Failure = connectionDone) -> None:
|
2021-03-01 12:45:00 -05:00
|
|
|
self._maybe_fail()
|
|
|
|
|
|
|
|
|
2020-12-16 17:25:24 -05:00
|
|
|
class _ReadBodyWithMaxSizeProtocol(protocol.Protocol):
|
2021-03-01 12:45:00 -05:00
|
|
|
"""A protocol which reads body to a stream, erroring if the body exceeds a maximum size."""
|
|
|
|
|
2021-07-15 06:02:43 -04:00
|
|
|
transport: Optional[ITCPTransport] = None
|
2021-03-15 11:14:39 -04:00
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
def __init__(
|
2021-04-23 06:08:41 -04:00
|
|
|
self, stream: ByteWriteable, deferred: defer.Deferred, max_size: Optional[int]
|
2020-11-25 13:30:47 -05:00
|
|
|
):
|
2016-01-24 18:47:27 -05:00
|
|
|
self.stream = stream
|
|
|
|
self.deferred = deferred
|
|
|
|
self.length = 0
|
|
|
|
self.max_size = max_size
|
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
def dataReceived(self, data: bytes) -> None:
|
2021-01-15 11:00:13 -05:00
|
|
|
# If the deferred was called, bail early.
|
|
|
|
if self.deferred.called:
|
|
|
|
return
|
|
|
|
|
2021-05-20 11:11:48 -04:00
|
|
|
try:
|
|
|
|
self.stream.write(data)
|
|
|
|
except Exception:
|
|
|
|
self.deferred.errback()
|
|
|
|
return
|
|
|
|
|
2016-01-24 18:47:27 -05:00
|
|
|
self.length += len(data)
|
2021-01-15 11:00:13 -05:00
|
|
|
# The first time the maximum size is exceeded, error and cancel the
|
|
|
|
# connection. dataReceived might be called again if data was received
|
|
|
|
# in the meantime.
|
2016-01-24 18:47:27 -05:00
|
|
|
if self.max_size is not None and self.length >= self.max_size:
|
2020-12-16 17:25:24 -05:00
|
|
|
self.deferred.errback(BodyExceededMaxSize())
|
2021-02-18 09:01:29 -05:00
|
|
|
# Close the connection (forcefully) since all the data will get
|
|
|
|
# discarded anyway.
|
2021-03-15 11:14:39 -04:00
|
|
|
assert self.transport is not None
|
2021-02-18 09:01:29 -05:00
|
|
|
self.transport.abortConnection()
|
2016-01-24 18:47:27 -05:00
|
|
|
|
2021-03-15 11:14:39 -04:00
|
|
|
def connectionLost(self, reason: Failure = connectionDone) -> None:
|
2021-01-15 11:00:13 -05:00
|
|
|
# If the maximum size was already exceeded, there's nothing to do.
|
|
|
|
if self.deferred.called:
|
|
|
|
return
|
|
|
|
|
2016-01-24 18:47:27 -05:00
|
|
|
if reason.check(ResponseDone):
|
|
|
|
self.deferred.callback(self.length)
|
2016-03-30 20:55:21 -04:00
|
|
|
elif reason.check(PotentialDataLoss):
|
|
|
|
# stolen from https://github.com/twisted/treq/pull/49/files
|
|
|
|
# http://twistedmatrix.com/trac/ticket/4840
|
|
|
|
self.deferred.callback(self.length)
|
2016-01-24 18:47:27 -05:00
|
|
|
else:
|
|
|
|
self.deferred.errback(reason)
|
|
|
|
|
|
|
|
|
2020-12-16 17:25:24 -05:00
|
|
|
def read_body_with_max_size(
|
2021-04-23 06:08:41 -04:00
|
|
|
response: IResponse, stream: ByteWriteable, max_size: Optional[int]
|
2021-07-28 08:04:11 -04:00
|
|
|
) -> "defer.Deferred[int]":
|
2020-11-25 13:30:47 -05:00
|
|
|
"""
|
|
|
|
Read a HTTP response body to a file-object. Optionally enforcing a maximum file size.
|
2016-01-24 18:47:27 -05:00
|
|
|
|
2020-12-16 17:25:24 -05:00
|
|
|
If the maximum file size is reached, the returned Deferred will resolve to a
|
|
|
|
Failure with a BodyExceededMaxSize exception.
|
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
Args:
|
|
|
|
response: The HTTP response to read from.
|
|
|
|
stream: The file-object to write to.
|
|
|
|
max_size: The maximum file size to allow.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A Deferred which resolves to the length of the read body.
|
|
|
|
"""
|
2021-07-28 08:04:11 -04:00
|
|
|
d: "defer.Deferred[int]" = defer.Deferred()
|
2021-03-01 12:45:00 -05:00
|
|
|
|
2021-02-18 09:01:29 -05:00
|
|
|
# If the Content-Length header gives a size larger than the maximum allowed
|
|
|
|
# size, do not bother downloading the body.
|
|
|
|
if max_size is not None and response.length != UNKNOWN_LENGTH:
|
|
|
|
if response.length > max_size:
|
2021-03-01 12:45:00 -05:00
|
|
|
response.deliverBody(_DiscardBodyWithMaxSizeProtocol(d))
|
|
|
|
return d
|
2018-12-21 09:56:13 -05:00
|
|
|
|
2020-12-16 17:25:24 -05:00
|
|
|
response.deliverBody(_ReadBodyWithMaxSizeProtocol(stream, d, max_size))
|
2016-01-24 18:47:27 -05:00
|
|
|
return d
|
2014-11-20 08:53:34 -05:00
|
|
|
|
2016-04-03 07:56:29 -04:00
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
def encode_query_args(args: Optional[Mapping[str, Union[str, List[str]]]]) -> bytes:
|
|
|
|
"""
|
|
|
|
Encodes a map of query arguments to bytes which can be appended to a URL.
|
2016-03-08 05:09:07 -05:00
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
Args:
|
|
|
|
args: The query arguments, a mapping of string to string or list of strings.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The query arguments encoded as bytes.
|
|
|
|
"""
|
|
|
|
if args is None:
|
|
|
|
return b""
|
2016-03-08 05:04:38 -05:00
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
encoded_args = {}
|
|
|
|
for k, vs in args.items():
|
|
|
|
if isinstance(vs, str):
|
|
|
|
vs = [vs]
|
|
|
|
encoded_args[k] = [v.encode("utf8") for v in vs]
|
2014-10-30 07:10:17 -04:00
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
query_str = urllib.parse.urlencode(encoded_args, True)
|
2016-03-08 05:09:07 -05:00
|
|
|
|
2020-11-25 13:30:47 -05:00
|
|
|
return query_str.encode("utf8")
|
2015-09-09 07:02:07 -04:00
|
|
|
|
|
|
|
|
2021-03-12 11:37:57 -05:00
|
|
|
@implementer(IPolicyForHTTPS)
|
2015-09-15 10:46:22 -04:00
|
|
|
class InsecureInterceptableContextFactory(ssl.ContextFactory):
|
2015-09-09 07:02:07 -04:00
|
|
|
"""
|
2015-09-15 10:46:22 -04:00
|
|
|
Factory for PyOpenSSL SSL contexts which accepts any certificate for any domain.
|
2015-09-09 07:02:07 -04:00
|
|
|
|
2015-09-15 10:46:22 -04:00
|
|
|
Do not use this since it allows an attacker to intercept your communications.
|
2015-09-09 08:05:00 -04:00
|
|
|
"""
|
2015-09-09 07:02:07 -04:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self._context = SSL.Context(SSL.SSLv23_METHOD)
|
2021-10-08 09:49:41 -04:00
|
|
|
self._context.set_verify(VERIFY_NONE, lambda *_: False)
|
2015-09-09 07:02:07 -04:00
|
|
|
|
2016-04-19 10:39:08 -04:00
|
|
|
def getContext(self, hostname=None, port=None):
|
2015-09-09 07:02:07 -04:00
|
|
|
return self._context
|
2016-04-19 10:39:08 -04:00
|
|
|
|
|
|
|
def creatorForNetloc(self, hostname, port):
|
|
|
|
return self
|