2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
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-09-05 10:10:47 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-09-05 10:10:47 -04:00
|
|
|
from six import text_type
|
|
|
|
from six.moves import urllib
|
2015-02-11 12:34:23 -05:00
|
|
|
|
2018-09-05 10:10:47 -04:00
|
|
|
import treq
|
2018-07-09 02:09:20 -04:00
|
|
|
from canonicaljson import encode_canonical_json, json
|
|
|
|
from prometheus_client import Counter
|
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
|
2018-09-05 10:10:47 -04:00
|
|
|
from twisted.internet import defer, protocol, reactor, ssl
|
2016-12-12 10:19:54 -05:00
|
|
|
from twisted.internet.endpoints import HostnameEndpoint, wrapClientTLS
|
2018-07-09 02:09:20 -04:00
|
|
|
from twisted.web._newclient import ResponseDone
|
2014-10-29 21:21:33 -04:00
|
|
|
from twisted.web.client import (
|
2018-07-19 06:03:33 -04:00
|
|
|
Agent,
|
|
|
|
BrowserLikeRedirectAgent,
|
|
|
|
ContentDecoderAgent,
|
2018-07-09 02:09:20 -04:00
|
|
|
GzipDecoder,
|
2018-01-19 19:55:44 -05:00
|
|
|
HTTPConnectionPool,
|
2018-07-09 02:09:20 -04:00
|
|
|
PartialDownloadError,
|
|
|
|
readBody,
|
2014-10-29 21:21:33 -04:00
|
|
|
)
|
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
|
|
|
|
|
2018-08-01 10:04:50 -04:00
|
|
|
from synapse.api.errors import Codes, HttpResponseException, SynapseError
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.http import cancelled_to_request_timed_out_error, redact_uri
|
|
|
|
from synapse.http.endpoint import SpiderEndpoint
|
2018-09-19 05:39:40 -04:00
|
|
|
from synapse.util.async_helpers import timeout_deferred
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.util.caches import CACHE_SIZE_FACTOR
|
|
|
|
from synapse.util.logcontext import make_deferred_yieldable
|
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-05-22 18:32:57 -04:00
|
|
|
incoming_responses_counter = Counter("synapse_http_client_responses", "",
|
|
|
|
["method", "code"])
|
2015-02-24 14:51:21 -05:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-20 12:41:56 -05:00
|
|
|
class SimpleHttpClient(object):
|
|
|
|
"""
|
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
|
|
|
"""
|
|
|
|
def __init__(self, hs):
|
|
|
|
self.hs = hs
|
2018-01-19 19:55:44 -05:00
|
|
|
|
|
|
|
pool = HTTPConnectionPool(reactor)
|
2018-01-29 09:30:15 -05:00
|
|
|
|
|
|
|
# the pusher makes lots of concurrent SSL connections to sygnal, and
|
|
|
|
# tends to do so in batches, so we need to allow the pool to keep lots
|
|
|
|
# of idle connections around.
|
|
|
|
pool.maxPersistentPerHost = max((100 * CACHE_SIZE_FACTOR, 5))
|
2018-01-19 19:55:44 -05:00
|
|
|
pool.cachedConnectionTimeout = 2 * 60
|
|
|
|
|
2014-11-20 12:41:56 -05:00
|
|
|
# The default context factory in Twisted 14.0.0 (which we require) is
|
2014-11-20 13:00:10 -05:00
|
|
|
# BrowserLikePolicyForHTTPS which will do regular cert validation
|
|
|
|
# 'like a browser'
|
2016-03-30 20:55:21 -04:00
|
|
|
self.agent = Agent(
|
2015-09-09 07:02:07 -04:00
|
|
|
reactor,
|
|
|
|
connectTimeout=15,
|
2018-01-19 19:55:44 -05:00
|
|
|
contextFactory=hs.get_http_client_context_factory(),
|
|
|
|
pool=pool,
|
2016-03-30 20:55:21 -04:00
|
|
|
)
|
2015-10-05 21:49:39 -04:00
|
|
|
self.user_agent = hs.version_string
|
2017-05-05 05:52:46 -04:00
|
|
|
self.clock = hs.get_clock()
|
2015-10-05 21:49:39 -04:00
|
|
|
if hs.config.user_agent_suffix:
|
2015-10-06 10:53:33 -04:00
|
|
|
self.user_agent = "%s %s" % (self.user_agent, hs.config.user_agent_suffix,)
|
2014-10-02 08:57:48 -04:00
|
|
|
|
2018-09-05 10:10:47 -04:00
|
|
|
self.user_agent = self.user_agent.encode('ascii')
|
|
|
|
|
2017-05-05 05:49:19 -04:00
|
|
|
@defer.inlineCallbacks
|
2018-09-05 10:10:47 -04:00
|
|
|
def request(self, method, uri, data=b'', headers=None):
|
2015-02-24 14:05:20 -05:00
|
|
|
# A small wrapper around self.agent.request() so we can easily attach
|
|
|
|
# counters to it
|
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)
|
2018-09-14 10:26:00 -04:00
|
|
|
logger.info("Sending request %s %s", method, redact_uri(uri))
|
2018-04-22 19:53:18 -04:00
|
|
|
|
|
|
|
try:
|
2018-09-05 10:10:47 -04:00
|
|
|
request_deferred = treq.request(
|
|
|
|
method, uri, agent=self.agent, data=data, headers=headers
|
2017-05-05 05:49:19 -04:00
|
|
|
)
|
2018-09-19 05:39:40 -04:00
|
|
|
request_deferred = timeout_deferred(
|
2018-06-22 04:37:10 -04:00
|
|
|
request_deferred, 60, self.hs.get_reactor(),
|
|
|
|
cancelled_to_request_timed_out_error,
|
2017-05-05 05:49:19 -04:00
|
|
|
)
|
2018-04-22 19:53:18 -04:00
|
|
|
response = yield make_deferred_yieldable(request_deferred)
|
2017-05-05 05:49:19 -04:00
|
|
|
|
2018-05-21 20:47:37 -04:00
|
|
|
incoming_responses_counter.labels(method, response.code).inc()
|
2015-06-15 08:05:11 -04:00
|
|
|
logger.info(
|
|
|
|
"Received response to %s %s: %s",
|
2018-09-14 10:26:00 -04:00
|
|
|
method, redact_uri(uri), response.code
|
2015-06-15 08:05:11 -04:00
|
|
|
)
|
2017-05-05 06:00:21 -04:00
|
|
|
defer.returnValue(response)
|
2017-05-05 05:49:19 -04:00
|
|
|
except Exception as e:
|
2018-05-21 20:47:37 -04:00
|
|
|
incoming_responses_counter.labels(method, "ERR").inc()
|
2015-06-15 08:05:11 -04:00
|
|
|
logger.info(
|
|
|
|
"Error sending request to %s %s: %s %s",
|
2018-09-14 10:26:00 -04:00
|
|
|
method, redact_uri(uri), type(e).__name__, e.args[0]
|
2015-06-15 08:05:11 -04:00
|
|
|
)
|
2018-06-22 04:37:10 -04:00
|
|
|
raise
|
2015-02-24 14:05:20 -05:00
|
|
|
|
2014-11-20 08:53:34 -05:00
|
|
|
@defer.inlineCallbacks
|
2017-10-26 12:59:50 -04:00
|
|
|
def post_urlencoded_get_json(self, uri, args={}, headers=None):
|
2017-10-27 05:59:50 -04:00
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
uri (str):
|
|
|
|
args (dict[str, str|List[str]]): query params
|
|
|
|
headers (dict[str, List[str]]|None): If not None, a map from
|
|
|
|
header name to a list of values for that header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred[object]: parsed json
|
2018-08-01 10:04:50 -04:00
|
|
|
|
|
|
|
Raises:
|
|
|
|
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
|
|
|
|
2018-09-05 10:10:47 -04:00
|
|
|
query_bytes = urllib.parse.urlencode(
|
|
|
|
encode_urlencode_args(args), True).encode("utf8")
|
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],
|
|
|
|
}
|
|
|
|
if headers:
|
|
|
|
actual_headers.update(headers)
|
|
|
|
|
2015-02-24 14:05:20 -05:00
|
|
|
response = yield self.request(
|
2014-11-20 08:53:34 -05:00
|
|
|
"POST",
|
2018-09-05 10:10:47 -04:00
|
|
|
uri,
|
2017-10-26 12:59:50 -04:00
|
|
|
headers=Headers(actual_headers),
|
2018-09-05 10:10:47 -04:00
|
|
|
data=query_bytes
|
2014-11-20 08:53:34 -05:00
|
|
|
)
|
|
|
|
|
2018-08-01 10:04:50 -04:00
|
|
|
if 200 <= response.code < 300:
|
2018-09-05 10:10:47 -04:00
|
|
|
body = yield make_deferred_yieldable(treq.json_content(response))
|
|
|
|
defer.returnValue(body)
|
2018-08-01 10:04:50 -04:00
|
|
|
else:
|
|
|
|
raise HttpResponseException(response.code, response.phrase, body)
|
2014-11-21 07:21:00 -05:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2017-10-26 12:59:50 -04:00
|
|
|
def post_json_get_json(self, uri, post_json, headers=None):
|
|
|
|
"""
|
|
|
|
|
|
|
|
Args:
|
|
|
|
uri (str):
|
|
|
|
post_json (object):
|
|
|
|
headers (dict[str, List[str]]|None): If not None, a map from
|
|
|
|
header name to a list of values for that header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred[object]: parsed json
|
2018-08-01 10:04:50 -04:00
|
|
|
|
|
|
|
Raises:
|
|
|
|
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],
|
|
|
|
}
|
|
|
|
if headers:
|
|
|
|
actual_headers.update(headers)
|
|
|
|
|
2015-02-24 14:05:20 -05:00
|
|
|
response = yield self.request(
|
2014-11-21 07:21:00 -05:00
|
|
|
"POST",
|
2018-09-05 10:10:47 -04:00
|
|
|
uri,
|
2017-10-26 12:59:50 -04:00
|
|
|
headers=Headers(actual_headers),
|
2018-09-05 10:10:47 -04:00
|
|
|
data=json_str
|
2014-11-21 07:21:00 -05:00
|
|
|
)
|
|
|
|
|
2017-10-26 13:00:47 -04:00
|
|
|
body = yield 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:
|
|
|
|
defer.returnValue(json.loads(body))
|
|
|
|
else:
|
2018-08-01 10:04:50 -04:00
|
|
|
raise HttpResponseException(response.code, response.phrase, body)
|
2014-11-20 08:53:34 -05:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2017-10-26 12:59:50 -04:00
|
|
|
def get_json(self, uri, args={}, headers=None):
|
2015-02-04 12:39:51 -05:00
|
|
|
""" Gets some json from the given URI.
|
2014-11-20 08:53:34 -05:00
|
|
|
|
|
|
|
Args:
|
2014-11-20 12:41:56 -05:00
|
|
|
uri (str): The URI to request, not including query parameters
|
2014-11-20 08:53:34 -05:00
|
|
|
args (dict): A dictionary used to create query strings, defaults to
|
|
|
|
None.
|
|
|
|
**Note**: The value of each key is assumed to be an iterable
|
|
|
|
and *not* a string.
|
2017-10-26 12:59:50 -04:00
|
|
|
headers (dict[str, List[str]]|None): If not None, a map from
|
|
|
|
header name to a list of values for that header
|
2014-11-20 08:53:34 -05:00
|
|
|
Returns:
|
2015-02-04 12:39:51 -05:00
|
|
|
Deferred: Succeeds when we get *any* 2xx HTTP response, with the
|
|
|
|
HTTP body as JSON.
|
2015-02-04 12:07:31 -05:00
|
|
|
Raises:
|
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
|
|
|
"""
|
2018-08-01 10:04:50 -04:00
|
|
|
body = yield self.get_raw(uri, args, headers=headers)
|
|
|
|
defer.returnValue(json.loads(body))
|
2015-10-09 06:02:56 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2017-10-26 12:59:50 -04:00
|
|
|
def put_json(self, uri, json_body, args={}, headers=None):
|
2015-10-09 06:02:56 -04:00
|
|
|
""" Puts some json to the given URI.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
uri (str): The URI to request, not including query parameters
|
|
|
|
json_body (dict): The JSON to put in the HTTP body,
|
|
|
|
args (dict): A dictionary used to create query strings, defaults to
|
|
|
|
None.
|
|
|
|
**Note**: The value of each key is assumed to be an iterable
|
|
|
|
and *not* a string.
|
2017-10-26 12:59:50 -04:00
|
|
|
headers (dict[str, List[str]]|None): If not None, a map from
|
|
|
|
header name to a list of values for that header
|
2015-10-09 06:02:56 -04:00
|
|
|
Returns:
|
|
|
|
Deferred: Succeeds when we get *any* 2xx HTTP response, with the
|
|
|
|
HTTP body as JSON.
|
|
|
|
Raises:
|
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
|
|
|
"""
|
2014-11-20 12:41:56 -05:00
|
|
|
if len(args):
|
2018-09-05 10:10:47 -04:00
|
|
|
query_bytes = urllib.parse.urlencode(args, True)
|
2014-11-20 12:41:56 -05:00
|
|
|
uri = "%s?%s" % (uri, query_bytes)
|
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],
|
|
|
|
}
|
|
|
|
if headers:
|
|
|
|
actual_headers.update(headers)
|
|
|
|
|
2015-02-24 14:05:20 -05:00
|
|
|
response = yield self.request(
|
2015-10-09 06:02:56 -04:00
|
|
|
"PUT",
|
2018-09-05 10:10:47 -04:00
|
|
|
uri,
|
2017-10-26 12:59:50 -04:00
|
|
|
headers=Headers(actual_headers),
|
2018-09-05 10:10:47 -04:00
|
|
|
data=json_str
|
2014-11-20 08:53:34 -05:00
|
|
|
)
|
|
|
|
|
2017-10-26 13:00:47 -04:00
|
|
|
body = yield 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:
|
|
|
|
defer.returnValue(json.loads(body))
|
|
|
|
else:
|
2018-08-01 10:04:50 -04:00
|
|
|
raise HttpResponseException(response.code, response.phrase, body)
|
2014-11-20 08:53:34 -05:00
|
|
|
|
2015-02-04 12:39:51 -05:00
|
|
|
@defer.inlineCallbacks
|
2017-10-26 12:59:50 -04:00
|
|
|
def get_raw(self, uri, args={}, headers=None):
|
2015-10-09 06:02:56 -04:00
|
|
|
""" Gets raw text from the given URI.
|
2015-02-04 12:39:51 -05:00
|
|
|
|
|
|
|
Args:
|
|
|
|
uri (str): The URI to request, not including query parameters
|
|
|
|
args (dict): A dictionary used to create query strings, defaults to
|
|
|
|
None.
|
|
|
|
**Note**: The value of each key is assumed to be an iterable
|
|
|
|
and *not* a string.
|
2017-10-26 12:59:50 -04:00
|
|
|
headers (dict[str, List[str]]|None): If not None, a map from
|
|
|
|
header name to a list of values for that header
|
2015-02-04 12:39:51 -05:00
|
|
|
Returns:
|
|
|
|
Deferred: Succeeds when we get *any* 2xx HTTP response, with the
|
2015-10-09 06:02:56 -04:00
|
|
|
HTTP body at text.
|
2015-02-04 12:39:51 -05:00
|
|
|
Raises:
|
2018-08-01 10:04:50 -04:00
|
|
|
HttpResponseException on a non-2xx HTTP response.
|
2015-02-04 12:39:51 -05:00
|
|
|
"""
|
|
|
|
if len(args):
|
2018-09-05 10:10:47 -04:00
|
|
|
query_bytes = urllib.parse.urlencode(args, True)
|
2015-02-04 12:39:51 -05:00
|
|
|
uri = "%s?%s" % (uri, query_bytes)
|
|
|
|
|
2017-10-26 12:59:50 -04:00
|
|
|
actual_headers = {
|
|
|
|
b"User-Agent": [self.user_agent],
|
|
|
|
}
|
|
|
|
if headers:
|
|
|
|
actual_headers.update(headers)
|
|
|
|
|
2015-02-24 14:05:20 -05:00
|
|
|
response = yield self.request(
|
2015-10-09 06:02:56 -04:00
|
|
|
"GET",
|
2018-09-05 10:10:47 -04:00
|
|
|
uri,
|
2017-10-26 12:59:50 -04:00
|
|
|
headers=Headers(actual_headers),
|
2015-02-04 12:39:51 -05:00
|
|
|
)
|
|
|
|
|
2017-10-26 13:00:47 -04:00
|
|
|
body = yield make_deferred_yieldable(readBody(response))
|
2015-02-04 12:39:51 -05:00
|
|
|
|
|
|
|
if 200 <= response.code < 300:
|
2015-10-09 06:02:56 -04:00
|
|
|
defer.returnValue(body)
|
2015-02-04 12:39:51 -05:00
|
|
|
else:
|
2018-08-01 10:04:50 -04:00
|
|
|
raise HttpResponseException(response.code, response.phrase, 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.
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2017-10-26 12:59:50 -04:00
|
|
|
def get_file(self, url, output_stream, max_size=None, headers=None):
|
2016-01-24 18:47:27 -05:00
|
|
|
"""GETs a file from a given URL
|
|
|
|
Args:
|
|
|
|
url (str): The URL to GET
|
|
|
|
output_stream (file): File to write the response body to.
|
2017-10-26 12:59:50 -04:00
|
|
|
headers (dict[str, List[str]]|None): If not None, a map from
|
|
|
|
header name to a list of values for that header
|
2016-01-24 18:47:27 -05:00
|
|
|
Returns:
|
2016-04-02 19:31:57 -04:00
|
|
|
A (int,dict,string,int) tuple of the file length, dict of the response
|
|
|
|
headers, absolute URI of the response and HTTP response code.
|
2016-01-24 18:47:27 -05:00
|
|
|
"""
|
|
|
|
|
2017-10-26 12:59:50 -04:00
|
|
|
actual_headers = {
|
|
|
|
b"User-Agent": [self.user_agent],
|
|
|
|
}
|
|
|
|
if headers:
|
|
|
|
actual_headers.update(headers)
|
|
|
|
|
2016-01-24 18:47:27 -05:00
|
|
|
response = yield self.request(
|
|
|
|
"GET",
|
2018-09-05 10:10:47 -04:00
|
|
|
url,
|
2017-10-26 12:59:50 -04:00
|
|
|
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
|
|
|
|
2018-09-13 13:11:11 -04:00
|
|
|
if (b'Content-Length' in resp_headers and
|
|
|
|
int(resp_headers[b'Content-Length']) > max_size):
|
2016-01-24 18:47:27 -05:00
|
|
|
logger.warn("Requested URL is too large > %r bytes" % (self.max_size,))
|
2016-04-08 16:36:48 -04:00
|
|
|
raise SynapseError(
|
|
|
|
502,
|
|
|
|
"Requested file is too large > %r bytes" % (self.max_size,),
|
|
|
|
Codes.TOO_LARGE,
|
|
|
|
)
|
2016-01-24 18:47:27 -05:00
|
|
|
|
2016-04-01 22:06:39 -04:00
|
|
|
if response.code > 299:
|
|
|
|
logger.warn("Got %d when downloading %s" % (response.code, url))
|
2016-04-08 16:36:48 -04:00
|
|
|
raise SynapseError(
|
|
|
|
502,
|
|
|
|
"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:
|
2017-10-26 13:00:47 -04:00
|
|
|
length = yield make_deferred_yieldable(_readBodyToFile(
|
|
|
|
response, output_stream, max_size,
|
|
|
|
))
|
2016-04-08 16:36:48 -04:00
|
|
|
except Exception as e:
|
2016-01-24 18:47:27 -05:00
|
|
|
logger.exception("Failed to download body")
|
2016-04-08 16:36:48 -04:00
|
|
|
raise SynapseError(
|
|
|
|
502,
|
|
|
|
("Failed to download remote body: %s" % e),
|
|
|
|
Codes.UNKNOWN,
|
|
|
|
)
|
2016-01-24 18:47:27 -05:00
|
|
|
|
2017-10-26 12:59:50 -04:00
|
|
|
defer.returnValue(
|
2018-09-13 13:11:11 -04:00
|
|
|
(
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
# XXX: FIXME: This is horribly copy-pasted from matrixfederationclient.
|
|
|
|
# The two should be factored out.
|
|
|
|
|
|
|
|
class _ReadBodyToFileProtocol(protocol.Protocol):
|
|
|
|
def __init__(self, stream, deferred, max_size):
|
|
|
|
self.stream = stream
|
|
|
|
self.deferred = deferred
|
|
|
|
self.length = 0
|
|
|
|
self.max_size = max_size
|
|
|
|
|
|
|
|
def dataReceived(self, data):
|
|
|
|
self.stream.write(data)
|
|
|
|
self.length += len(data)
|
|
|
|
if self.max_size is not None and self.length >= self.max_size:
|
2016-03-31 07:42:27 -04:00
|
|
|
self.deferred.errback(SynapseError(
|
|
|
|
502,
|
|
|
|
"Requested file is too large > %r bytes" % (self.max_size,),
|
|
|
|
Codes.TOO_LARGE,
|
|
|
|
))
|
2016-01-24 18:47:27 -05:00
|
|
|
self.deferred = defer.Deferred()
|
|
|
|
self.transport.loseConnection()
|
|
|
|
|
|
|
|
def connectionLost(self, reason):
|
|
|
|
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)
|
|
|
|
|
|
|
|
|
|
|
|
# XXX: FIXME: This is horribly copy-pasted from matrixfederationclient.
|
|
|
|
# The two should be factored out.
|
|
|
|
|
|
|
|
def _readBodyToFile(response, stream, max_size):
|
|
|
|
d = defer.Deferred()
|
|
|
|
response.deliverBody(_ReadBodyToFileProtocol(stream, d, max_size))
|
|
|
|
return d
|
2014-11-20 08:53:34 -05:00
|
|
|
|
2016-04-03 07:56:29 -04:00
|
|
|
|
2014-11-20 12:41:56 -05:00
|
|
|
class CaptchaServerHttpClient(SimpleHttpClient):
|
2014-11-20 08:53:34 -05:00
|
|
|
"""
|
|
|
|
Separate HTTP client for talking to google's captcha servers
|
|
|
|
Only slightly special because accepts partial download responses
|
2015-03-30 13:13:10 -04:00
|
|
|
|
|
|
|
used only by c/s api v1
|
2014-11-20 08:53:34 -05:00
|
|
|
"""
|
2014-10-02 08:57:48 -04:00
|
|
|
|
2014-09-05 22:18:23 -04:00
|
|
|
@defer.inlineCallbacks
|
2014-11-20 12:41:56 -05:00
|
|
|
def post_urlencoded_get_raw(self, url, args={}):
|
2018-09-05 10:10:47 -04:00
|
|
|
query_bytes = urllib.parse.urlencode(encode_urlencode_args(args), True)
|
2014-09-05 22:18:23 -04:00
|
|
|
|
2015-02-24 14:05:20 -05:00
|
|
|
response = yield self.request(
|
2014-09-05 22:18:23 -04:00
|
|
|
"POST",
|
2018-09-05 10:10:47 -04:00
|
|
|
url,
|
|
|
|
data=query_bytes,
|
2014-11-20 12:41:56 -05:00
|
|
|
headers=Headers({
|
2014-12-22 05:16:02 -05:00
|
|
|
b"Content-Type": [b"application/x-www-form-urlencoded"],
|
2015-10-02 18:13:51 -04:00
|
|
|
b"User-Agent": [self.user_agent],
|
2014-11-20 12:41:56 -05:00
|
|
|
})
|
2014-09-05 22:18:23 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
2017-10-26 13:00:47 -04:00
|
|
|
body = yield make_deferred_yieldable(readBody(response))
|
2014-09-05 22:18:23 -04:00
|
|
|
defer.returnValue(body)
|
|
|
|
except PartialDownloadError as e:
|
2014-11-20 12:41:56 -05:00
|
|
|
# twisted dislikes google's response, no content length.
|
2014-11-20 08:53:34 -05:00
|
|
|
defer.returnValue(e.response)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-04-03 07:56:29 -04:00
|
|
|
|
2016-04-08 13:37:15 -04:00
|
|
|
class SpiderEndpointFactory(object):
|
|
|
|
def __init__(self, hs):
|
|
|
|
self.blacklist = hs.config.url_preview_ip_range_blacklist
|
2016-05-16 08:03:59 -04:00
|
|
|
self.whitelist = hs.config.url_preview_ip_range_whitelist
|
2016-04-08 13:37:15 -04:00
|
|
|
self.policyForHTTPS = hs.get_http_client_context_factory()
|
|
|
|
|
|
|
|
def endpointForURI(self, uri):
|
|
|
|
logger.info("Getting endpoint for %s", uri.toBytes())
|
2016-12-12 10:19:54 -05:00
|
|
|
|
2018-09-13 13:11:11 -04:00
|
|
|
if uri.scheme == b"http":
|
2016-12-11 04:44:02 -05:00
|
|
|
endpoint_factory = HostnameEndpoint
|
2018-09-13 13:11:11 -04:00
|
|
|
elif uri.scheme == b"https":
|
2016-12-11 04:44:02 -05:00
|
|
|
tlsCreator = self.policyForHTTPS.creatorForNetloc(uri.host, uri.port)
|
2016-12-12 10:19:54 -05:00
|
|
|
|
2016-12-11 04:44:02 -05:00
|
|
|
def endpoint_factory(reactor, host, port, **kw):
|
2016-12-12 10:19:54 -05:00
|
|
|
return wrapClientTLS(
|
|
|
|
tlsCreator,
|
|
|
|
HostnameEndpoint(reactor, host, port, **kw))
|
2016-04-08 13:37:15 -04:00
|
|
|
else:
|
|
|
|
logger.warn("Can't get endpoint for unrecognised scheme %s", uri.scheme)
|
2016-12-11 04:44:02 -05:00
|
|
|
return None
|
|
|
|
return SpiderEndpoint(
|
|
|
|
reactor, uri.host, uri.port, self.blacklist, self.whitelist,
|
|
|
|
endpoint=endpoint_factory, endpoint_kw_args=dict(timeout=15),
|
|
|
|
)
|
2016-12-12 10:19:54 -05:00
|
|
|
|
2016-04-08 13:37:15 -04:00
|
|
|
|
2016-03-30 20:55:21 -04:00
|
|
|
class SpiderHttpClient(SimpleHttpClient):
|
|
|
|
"""
|
|
|
|
Separate HTTP client for spidering arbitrary URLs.
|
|
|
|
Special in that it follows retries and has a UA that looks
|
|
|
|
like a browser.
|
|
|
|
|
|
|
|
used by the preview_url endpoint in the content repo.
|
|
|
|
"""
|
|
|
|
def __init__(self, hs):
|
|
|
|
SimpleHttpClient.__init__(self, hs)
|
|
|
|
# clobber the base class's agent and UA:
|
2016-04-08 13:37:15 -04:00
|
|
|
self.agent = ContentDecoderAgent(
|
|
|
|
BrowserLikeRedirectAgent(
|
|
|
|
Agent.usingEndpointFactory(
|
|
|
|
reactor,
|
|
|
|
SpiderEndpointFactory(hs)
|
|
|
|
)
|
2018-04-28 05:39:37 -04:00
|
|
|
), [(b'gzip', GzipDecoder)]
|
2016-04-08 13:37:15 -04:00
|
|
|
)
|
2016-04-03 07:56:29 -04:00
|
|
|
# We could look like Chrome:
|
|
|
|
# self.user_agent = ("Mozilla/5.0 (%s) (KHTML, like Gecko)
|
|
|
|
# Chrome Safari" % hs.version_string)
|
|
|
|
|
2014-10-30 07:10:17 -04:00
|
|
|
|
2016-03-08 05:04:38 -05:00
|
|
|
def encode_urlencode_args(args):
|
2016-03-08 05:09:07 -05:00
|
|
|
return {k: encode_urlencode_arg(v) for k, v in args.items()}
|
|
|
|
|
2016-03-08 05:04:38 -05:00
|
|
|
|
|
|
|
def encode_urlencode_arg(arg):
|
2018-09-05 10:10:47 -04:00
|
|
|
if isinstance(arg, text_type):
|
2016-03-08 05:04:38 -05:00
|
|
|
return arg.encode('utf-8')
|
|
|
|
elif isinstance(arg, list):
|
2016-03-08 05:09:07 -05:00
|
|
|
return [encode_urlencode_arg(i) for i in arg]
|
2016-03-08 05:04:38 -05:00
|
|
|
else:
|
|
|
|
return arg
|
2014-10-30 07:10:17 -04:00
|
|
|
|
2016-03-08 05:09:07 -05:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
def _print_ex(e):
|
|
|
|
if hasattr(e, "reasons") and e.reasons:
|
|
|
|
for ex in e.reasons:
|
|
|
|
_print_ex(ex)
|
|
|
|
else:
|
|
|
|
logger.exception(e)
|
2015-09-09 07:02:07 -04:00
|
|
|
|
|
|
|
|
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)
|
|
|
|
self._context.set_verify(VERIFY_NONE, lambda *_: None)
|
|
|
|
|
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
|