mitmproxy/netlib/http/semantics.py

602 lines
18 KiB
Python
Raw Normal View History

2015-07-14 21:02:14 +00:00
from __future__ import (absolute_import, print_function, division)
2015-09-05 11:26:36 +00:00
import UserDict
2015-08-01 08:39:14 +00:00
import urllib
2015-07-14 21:02:14 +00:00
import urlparse
2015-07-22 11:01:24 +00:00
from .. import utils, odict
2015-08-05 19:32:53 +00:00
from . import cookies, exceptions
2015-08-01 08:39:14 +00:00
from netlib import utils, encoding
HDR_FORM_URLENCODED = "application/x-www-form-urlencoded"
HDR_FORM_MULTIPART = "multipart/form-data"
2015-07-14 21:02:14 +00:00
2015-07-29 09:27:43 +00:00
CONTENT_MISSING = 0
2015-09-05 11:26:36 +00:00
class Headers(UserDict.DictMixin):
"""
Header class which allows both convenient access to individual headers as well as
direct access to the underlying raw data. Provides a full dictionary interface.
Example:
.. code-block:: python
# Create header from a list of (header_name, header_value) tuples
>>> h = Headers([
["Host","example.com"],
["Accept","text/html"],
["accept","application/xml"]
])
# Headers mostly behave like a normal dict.
>>> h["Host"]
"example.com"
# HTTP Headers are case insensitive
>>> h["host"]
"example.com"
# Multiple headers are folded into a single header as per RFC7230
>>> h["Accept"]
"text/html, application/xml"
# Setting a header removes all existing headers with the same name.
>>> h["Accept"] = "application/text"
>>> h["Accept"]
"application/text"
# str(h) returns a HTTP1 header block.
>>> print(h)
Host: example.com
Accept: application/text
# For full control, the raw header lines can be accessed
>>> h.lines
# Headers can also be crated from keyword arguments
>>> h = Headers(host="example.com", content_type="application/xml")
Caveats:
For use with the "Set-Cookie" header, see :py:meth:`get_all`.
"""
def __init__(self, lines=None, **headers):
"""
For convenience, underscores in header names will be transformed to dashes.
This behaviour does not extend to other methods.
If ``**headers`` contains multiple keys that have equal ``.lower()``s,
the behavior is undefined.
"""
self.lines = lines or []
# content_type -> content-type
headers = {k.replace("_", "-"): v for k, v in headers.iteritems()}
self.update(headers)
2015-07-29 09:27:43 +00:00
2015-09-05 11:26:36 +00:00
def __str__(self):
return "\r\n".join(": ".join(line) for line in self.lines)
def __getitem__(self, key):
values = self.get_all(key)
if not values:
raise KeyError(key)
else:
return ", ".join(values)
def __setitem__(self, key, value):
idx = self._index(key)
# To please the human eye, we insert at the same position the first existing header occured.
if idx is not None:
del self[key]
self.lines.insert(idx, [key, value])
else:
self.lines.append([key, value])
def __delitem__(self, key):
key = key.lower()
self.lines = [
line for line in self.lines
if key != line[0].lower()
]
def _index(self, key):
key = key.lower()
for i, line in enumerate(self):
if line[0].lower() == key:
return i
return None
def keys(self):
return list(set(line[0] for line in self.lines))
def __eq__(self, other):
return self.lines == other.lines
def __ne__(self, other):
return not self.__eq__(other)
def get_all(self, key, default=None):
"""
Like :py:meth:`get`, but does not fold multiple headers into a single one.
This is useful for Set-Cookie headers, which do not support folding.
See also: https://tools.ietf.org/html/rfc7230#section-3.2.2
"""
key = key.lower()
values = [line[1] for line in self.lines if line[0].lower() == key]
return values or default
def set_all(self, key, values):
"""
Explicitly set multiple headers for the given key.
See: :py:meth:`get_all`
"""
if key in self:
del self[key]
self.lines.extend(
[key, value] for value in values
)
class ProtocolMixin(object):
2015-08-05 19:32:53 +00:00
def read_request(self, *args, **kwargs): # pragma: no cover
2015-08-10 18:50:05 +00:00
raise NotImplementedError
2015-07-29 09:27:43 +00:00
2015-08-05 19:32:53 +00:00
def read_response(self, *args, **kwargs): # pragma: no cover
2015-08-10 18:50:05 +00:00
raise NotImplementedError
2015-07-29 09:27:43 +00:00
def assemble(self, message):
if isinstance(message, Request):
return self.assemble_request(message)
elif isinstance(message, Response):
return self.assemble_response(message)
else:
raise ValueError("HTTP message not supported.")
2015-08-10 18:50:05 +00:00
def assemble_request(self, *args, **kwargs): # pragma: no cover
raise NotImplementedError
2015-07-29 09:27:43 +00:00
2015-08-10 18:50:05 +00:00
def assemble_response(self, *args, **kwargs): # pragma: no cover
raise NotImplementedError
2015-07-29 09:27:43 +00:00
class Request(object):
2015-08-05 19:32:53 +00:00
# This list is adopted legacy code.
# We probably don't need to strip off keep-alive.
_headers_to_strip_off = [
'Proxy-Connection',
'Keep-Alive',
'Connection',
'Transfer-Encoding',
'Upgrade',
]
def __init__(
self,
form_in,
method,
scheme,
host,
port,
path,
httpversion,
2015-07-29 09:27:43 +00:00
headers=None,
body=None,
2015-07-27 07:36:50 +00:00
timestamp_start=None,
timestamp_end=None,
2015-08-15 18:30:22 +00:00
form_out=None
):
2015-07-29 09:27:43 +00:00
if not headers:
headers = odict.ODictCaseless()
assert isinstance(headers, odict.ODictCaseless)
2015-07-27 07:36:50 +00:00
self.form_in = form_in
self.method = method
self.scheme = scheme
self.host = host
self.port = port
self.path = path
self.httpversion = httpversion
self.headers = headers
2015-07-19 15:52:10 +00:00
self.body = body
2015-07-27 07:36:50 +00:00
self.timestamp_start = timestamp_start
self.timestamp_end = timestamp_end
2015-08-15 18:30:22 +00:00
self.form_out = form_out or form_in
def __eq__(self, other):
2015-07-27 07:36:50 +00:00
try:
self_d = [self.__dict__[k] for k in self.__dict__ if k not in ('timestamp_start', 'timestamp_end')]
other_d = [other.__dict__[k] for k in other.__dict__ if k not in ('timestamp_start', 'timestamp_end')]
return self_d == other_d
except:
return False
def __repr__(self):
2015-08-01 08:39:14 +00:00
# return "Request(%s - %s, %s)" % (self.method, self.host, self.path)
return "<HTTPRequest: {0}>".format(
self.legacy_first_line()[:-9]
)
2015-08-15 18:30:22 +00:00
def legacy_first_line(self, form=None):
if form is None:
form = self.form_out
if form == "relative":
2015-08-01 08:39:14 +00:00
return '%s %s HTTP/%s.%s' % (
self.method,
self.path,
self.httpversion[0],
self.httpversion[1],
)
2015-08-15 18:30:22 +00:00
elif form == "authority":
2015-08-01 08:39:14 +00:00
return '%s %s:%s HTTP/%s.%s' % (
self.method,
self.host,
self.port,
self.httpversion[0],
self.httpversion[1],
)
2015-08-15 18:30:22 +00:00
elif form == "absolute":
2015-08-01 08:39:14 +00:00
return '%s %s://%s:%s%s HTTP/%s.%s' % (
self.method,
self.scheme,
self.host,
self.port,
self.path,
self.httpversion[0],
self.httpversion[1],
)
else:
2015-08-05 19:32:53 +00:00
raise exceptions.HttpError(400, "Invalid request form")
2015-08-01 08:39:14 +00:00
def anticache(self):
"""
Modifies this request to remove headers that might produce a cached
response. That is, we remove ETags and If-Modified-Since headers.
"""
delheaders = [
"if-modified-since",
"if-none-match",
]
for i in delheaders:
del self.headers[i]
def anticomp(self):
"""
Modifies this request to remove headers that will compress the
resource's data.
"""
self.headers["accept-encoding"] = ["identity"]
def constrain_encoding(self):
"""
Limits the permissible Accept-Encoding values, based on what we can
decode appropriately.
"""
if self.headers["accept-encoding"]:
self.headers["accept-encoding"] = [
', '.join(
2015-08-05 19:32:53 +00:00
e for e in encoding.ENCODINGS if e in self.headers.get_first("accept-encoding"))]
2015-08-01 08:39:14 +00:00
def update_host_header(self):
"""
Update the host header to reflect the current target.
"""
self.headers["Host"] = [self.host]
def get_form(self):
"""
Retrieves the URL-encoded or multipart form data, returning an ODict object.
Returns an empty ODict if there is no data or the content-type
indicates non-form data.
"""
if self.body:
if self.headers.in_any("content-type", HDR_FORM_URLENCODED, True):
return self.get_form_urlencoded()
elif self.headers.in_any("content-type", HDR_FORM_MULTIPART, True):
return self.get_form_multipart()
return odict.ODict([])
def get_form_urlencoded(self):
"""
Retrieves the URL-encoded form data, returning an ODict object.
Returns an empty ODict if there is no data or the content-type
indicates non-form data.
"""
if self.body and self.headers.in_any(
"content-type",
HDR_FORM_URLENCODED,
True):
return odict.ODict(utils.urldecode(self.body))
return odict.ODict([])
def get_form_multipart(self):
if self.body and self.headers.in_any(
"content-type",
HDR_FORM_MULTIPART,
True):
return odict.ODict(
utils.multipartdecode(
self.headers,
self.body))
return odict.ODict([])
def set_form_urlencoded(self, odict):
"""
Sets the body to the URL-encoded form data, and adds the
appropriate content-type header. Note that this will destory the
existing body if there is one.
"""
# FIXME: If there's an existing content-type header indicating a
# url-encoded form, leave it alone.
self.headers["Content-Type"] = [HDR_FORM_URLENCODED]
self.body = utils.urlencode(odict.lst)
def get_path_components(self):
"""
Returns the path components of the URL as a list of strings.
Components are unquoted.
"""
_, _, path, _, _, _ = urlparse.urlparse(self.url)
return [urllib.unquote(i) for i in path.split("/") if i]
def set_path_components(self, lst):
"""
Takes a list of strings, and sets the path component of the URL.
Components are quoted.
"""
lst = [urllib.quote(i, safe="") for i in lst]
path = "/" + "/".join(lst)
scheme, netloc, _, params, query, fragment = urlparse.urlparse(self.url)
self.url = urlparse.urlunparse(
[scheme, netloc, path, params, query, fragment]
)
def get_query(self):
"""
Gets the request query string. Returns an ODict object.
"""
_, _, _, _, query, _ = urlparse.urlparse(self.url)
if query:
return odict.ODict(utils.urldecode(query))
return odict.ODict([])
def set_query(self, odict):
"""
Takes an ODict object, and sets the request query string.
"""
scheme, netloc, path, params, _, fragment = urlparse.urlparse(self.url)
query = utils.urlencode(odict.lst)
self.url = urlparse.urlunparse(
[scheme, netloc, path, params, query, fragment]
)
def pretty_host(self, hostheader):
"""
Heuristic to get the host of the request.
Note that pretty_host() does not always return the TCP destination
of the request, e.g. if an upstream proxy is in place
If hostheader is set to True, the Host: header will be used as
additional (and preferred) data source. This is handy in
transparent mode, where only the IO of the destination is known,
but not the resolved name. This is disabled by default, as an
attacker may spoof the host header to confuse an analyst.
"""
host = None
if hostheader:
host = self.headers.get_first("host")
if not host:
host = self.host
if host:
try:
return host.encode("idna")
except ValueError:
return host
else:
return None
def pretty_url(self, hostheader):
if self.form_out == "authority": # upstream proxy mode
return "%s:%s" % (self.pretty_host(hostheader), self.port)
return utils.unparse_url(self.scheme,
self.pretty_host(hostheader),
self.port,
self.path).encode('ascii')
def get_cookies(self):
"""
Returns a possibly empty netlib.odict.ODict object.
"""
ret = odict.ODict()
for i in self.headers["cookie"]:
ret.extend(cookies.parse_cookie_header(i))
return ret
def set_cookies(self, odict):
"""
Takes an netlib.odict.ODict object. Over-writes any existing Cookie
headers.
"""
v = cookies.format_cookie_header(odict)
self.headers["Cookie"] = [v]
@property
def url(self):
"""
Returns a URL string, constructed from the Request's URL components.
"""
return utils.unparse_url(
self.scheme,
self.host,
self.port,
self.path
).encode('ascii')
@url.setter
def url(self, url):
"""
Parses a URL specification, and updates the Request's information
accordingly.
Returns False if the URL was invalid, True if the request succeeded.
"""
parts = utils.parse_url(url)
if not parts:
raise ValueError("Invalid URL: %s" % url)
self.scheme, self.host, self.port, self.path = parts
2015-07-22 11:01:24 +00:00
@property
2015-08-05 19:32:53 +00:00
def content(self): # pragma: no cover
2015-07-27 07:36:50 +00:00
# TODO: remove deprecated getter
2015-07-22 11:01:24 +00:00
return self.body
2015-07-27 07:36:50 +00:00
@content.setter
2015-08-05 19:32:53 +00:00
def content(self, content): # pragma: no cover
2015-07-27 07:36:50 +00:00
# TODO: remove deprecated setter
self.body = content
2015-07-19 18:46:26 +00:00
class EmptyRequest(Request):
2015-08-10 18:44:36 +00:00
def __init__(
self,
form_in="",
method="",
scheme="",
host="",
port="",
path="",
2015-08-24 16:16:34 +00:00
httpversion=(0, 0),
headers=None,
2015-08-24 16:16:34 +00:00
body=""
):
2015-07-19 18:46:26 +00:00
super(EmptyRequest, self).__init__(
form_in=form_in,
method=method,
scheme=scheme,
host=host,
port=port,
path=path,
2015-08-24 16:16:34 +00:00
httpversion=httpversion,
headers=(headers or odict.ODictCaseless()),
body=body,
2015-08-10 18:44:36 +00:00
)
2015-07-19 15:52:10 +00:00
2015-07-14 21:02:14 +00:00
class Response(object):
2015-08-05 19:32:53 +00:00
_headers_to_strip_off = [
'Proxy-Connection',
'Alternate-Protocol',
'Alt-Svc',
]
2015-07-14 21:02:14 +00:00
def __init__(
self,
httpversion,
status_code,
2015-07-29 09:27:43 +00:00
msg=None,
headers=None,
body=None,
2015-07-14 21:02:14 +00:00
sslinfo=None,
2015-07-27 07:36:50 +00:00
timestamp_start=None,
timestamp_end=None,
2015-07-14 21:02:14 +00:00
):
2015-07-29 09:27:43 +00:00
if not headers:
headers = odict.ODictCaseless()
assert isinstance(headers, odict.ODictCaseless)
2015-07-27 07:36:50 +00:00
2015-07-14 21:02:14 +00:00
self.httpversion = httpversion
self.status_code = status_code
self.msg = msg
self.headers = headers
2015-07-19 15:52:10 +00:00
self.body = body
2015-07-14 21:02:14 +00:00
self.sslinfo = sslinfo
2015-07-27 07:36:50 +00:00
self.timestamp_start = timestamp_start
self.timestamp_end = timestamp_end
2015-07-14 21:02:14 +00:00
def __eq__(self, other):
2015-07-27 07:36:50 +00:00
try:
self_d = [self.__dict__[k] for k in self.__dict__ if k not in ('timestamp_start', 'timestamp_end')]
other_d = [other.__dict__[k] for k in other.__dict__ if k not in ('timestamp_start', 'timestamp_end')]
return self_d == other_d
except:
return False
2015-07-14 21:02:14 +00:00
def __repr__(self):
2015-08-01 08:39:14 +00:00
# return "Response(%s - %s)" % (self.status_code, self.msg)
if self.body:
size = utils.pretty_size(len(self.body))
else:
size = "content missing"
# TODO: Remove "(unknown content type, content missing)" edge-case
return "<Response: {status_code} {msg} ({contenttype}, {size})>".format(
2015-08-01 08:39:14 +00:00
status_code=self.status_code,
msg=self.msg,
contenttype=self.headers.get_first(
2015-08-10 18:44:36 +00:00
"content-type",
"unknown content type"),
size=size)
2015-08-01 08:39:14 +00:00
def get_cookies(self):
"""
Get the contents of all Set-Cookie headers.
Returns a possibly empty ODict, where keys are cookie name strings,
and values are [value, attr] lists. Value is a string, and attr is
an ODictCaseless containing cookie attributes. Within attrs, unary
attributes (e.g. HTTPOnly) are indicated by a Null value.
"""
ret = []
for header in self.headers["set-cookie"]:
v = cookies.parse_set_cookie_header(header)
if v:
name, value, attrs = v
ret.append([name, [value, attrs]])
return odict.ODict(ret)
def set_cookies(self, odict):
"""
Set the Set-Cookie headers on this response, over-writing existing
headers.
Accepts an ODict of the same format as that returned by get_cookies.
"""
values = []
for i in odict.lst:
values.append(
cookies.format_set_cookie_header(
i[0],
i[1][0],
i[1][1]
)
)
self.headers["Set-Cookie"] = values
2015-07-14 21:02:14 +00:00
2015-07-22 11:01:24 +00:00
@property
2015-08-05 19:32:53 +00:00
def content(self): # pragma: no cover
2015-07-27 07:36:50 +00:00
# TODO: remove deprecated getter
2015-07-22 11:01:24 +00:00
return self.body
2015-07-27 07:36:50 +00:00
@content.setter
2015-08-05 19:32:53 +00:00
def content(self, content): # pragma: no cover
2015-07-27 07:36:50 +00:00
# TODO: remove deprecated setter
self.body = content
@property
2015-08-05 19:32:53 +00:00
def code(self): # pragma: no cover
2015-07-27 07:36:50 +00:00
# TODO: remove deprecated getter
return self.status_code
@code.setter
2015-08-05 19:32:53 +00:00
def code(self, code): # pragma: no cover
2015-07-27 07:36:50 +00:00
# TODO: remove deprecated setter
self.status_code = code