Fixing non-bytes headers, adding proxyhost+proxyport custom headers

The headers on my environment aren't bytes, rather str-s, and so
getting the host and port from those will result None being passed
as a result.

Also, since X-Forwarded-For is not to be trusted, and custom nginx
configurations can pass a `X-Real-IP` header, add two extra command
line parameters to be able to parse custom passed remote IP headers.
This commit is contained in:
László Károlyi 2018-05-10 17:22:27 +02:00
parent dd2c8b2a0f
commit 31bb1bcc23
No known key found for this signature in database
GPG Key ID: 2DCAF25E55735BFE
4 changed files with 137 additions and 9 deletions

View File

@ -2,6 +2,9 @@ import argparse
import logging
import sys
from argparse import Namespace, ArgumentError
from typing import Union
from .access import AccessLogGenerator
from .endpoints import build_endpoint_description_strings
from .server import Server
@ -11,7 +14,7 @@ logger = logging.getLogger(__name__)
DEFAULT_HOST = "127.0.0.1"
DEFAULT_PORT = 8000
str_or_none = Union[None, str]
class CommandLineInterface(object):
"""
@ -132,6 +135,25 @@ class CommandLineInterface(object):
default=False,
action="store_true",
)
self._arg_proxy_host = self.parser.add_argument(
'--proxy-headers-host',
dest='proxy_headers_host',
help='Specify which header will be used for getting the host '
'part. Can be omitted, requires --proxy-headers to be specified '
'when passed. \'X-Real-IP\' (when passed by your webserver) is a '
'good candidate for this.',
default=False,
action='store',
)
self._arg_proxy_port = self.parser.add_argument(
'--proxy-headers-port',
dest='proxy_headers_port',
help='Specify which header will be used for getting the port '
'part. Can be omitted, requires --proxy-headers to be specified '
'when passed.',
default=False,
action='store',
)
self.parser.add_argument(
"application",
help="The application to dispatch to as path.to.module:instance.path",
@ -146,6 +168,38 @@ class CommandLineInterface(object):
"""
cls().run(sys.argv[1:])
def _check_proxy_headers_passed(self, argument: str, args: Namespace):
"""Raise if the `--proxy-headers` weren't specified."""
if args.proxy_headers:
return
raise ArgumentError(
argument=argument,
message='--proxy-headers has to be passed for this parameter.')
def _get_forwarded_host(self, args: Namespace) -> str_or_none:
"""
Return the default host header from which the remote hostname/ip
will be extracted.
"""
if args.proxy_headers_host:
self._check_proxy_headers_passed(
argument=self._arg_proxy_host, args=args)
return args.proxy_headers_host
if args.proxy_headers:
return 'X-Forwarded-For'
def _get_forwarded_port(self, args: Namespace) -> str_or_none:
"""
Return the default host header from which the remote hostname/ip
will be extracted.
"""
if args.proxy_headers_port:
self._check_proxy_headers_passed(
argument=self._arg_proxy_port, args=args)
return args.proxy_headers_port
if args.proxy_headers:
return 'X-Forwarded-Port'
def run(self, args):
"""
Pass in raw argument list and it will decode them
@ -212,7 +266,7 @@ class CommandLineInterface(object):
ws_protocols=args.ws_protocols,
root_path=args.root_path,
verbosity=args.verbosity,
proxy_forwarded_address_header="X-Forwarded-For" if args.proxy_headers else None,
proxy_forwarded_port_header="X-Forwarded-Port" if args.proxy_headers else None,
proxy_forwarded_address_header=self._get_forwarded_host(args=args),
proxy_forwarded_port_header=self._get_forwarded_port(args=args),
)
self.server.run()

View File

@ -15,11 +15,11 @@ def import_by_path(path):
return target
def header_value(headers, header_name):
def header_value(headers, header_name) -> str:
value = headers[header_name]
if isinstance(value, list):
value = value[0]
return value.decode("utf-8")
return value.decode("utf-8") if type(value) is bytes else value
def parse_x_forwarded_for(headers,
@ -43,9 +43,14 @@ def parse_x_forwarded_for(headers,
headers = dict(headers.getAllRawHeaders())
# Lowercase all header names in the dict
headers = {name.lower(): values for name, values in headers.items()}
new_headers = dict()
for name, values in headers.items():
name = name.lower()
name = name if type(name) is bytes else name.encode('utf-8')
new_headers[name] = values
headers = new_headers
address_header_name = address_header_name.lower().encode("utf-8")
address_header_name = address_header_name.lower().encode('utf-8')
result = original
if address_header_name in headers:
address_value = header_value(headers, address_header_name)

View File

@ -2,6 +2,7 @@
import logging
from unittest import TestCase
from argparse import ArgumentError
from daphne.cli import CommandLineInterface
from daphne.endpoints import build_endpoint_description_strings as build
@ -235,3 +236,61 @@ class TestCLIInterface(TestCase):
],
},
)
def test_default_proxyheaders(self):
"""
Passing `--proxy-headers` without a parameter will use the
`X-Forwarded-For` header.
"""
self.assertCLI(
['--proxy-headers'],
{
'proxy_forwarded_address_header': 'X-Forwarded-For',
},
)
def test_custom_proxyhost(self):
"""
Passing `--proxy-headers-host` will set the used host header to
the passed one, and `--proxy-headers` is mandatory.
"""
self.assertCLI(
['--proxy-headers', '--proxy-headers-host', 'blah'],
{
'proxy_forwarded_address_header': 'blah',
},
)
with self.assertRaises(expected_exception=ArgumentError) as exc:
self.assertCLI(
['--proxy-headers-host', 'blah'],
{
'proxy_forwarded_address_header': 'blah',
},
)
self.assertEqual(exc.exception.argument_name, '--proxy-headers-host')
self.assertEqual(
exc.exception.message,
'--proxy-headers has to be passed for this parameter.')
def test_custom_proxyport(self):
"""
Passing `--proxy-headers-port` will set the used port header to
the passed one, and `--proxy-headers` is mandatory.
"""
self.assertCLI(
['--proxy-headers', '--proxy-headers-port', 'blah2'],
{
'proxy_forwarded_port_header': 'blah2',
},
)
with self.assertRaises(expected_exception=ArgumentError) as exc:
self.assertCLI(
['--proxy-headers-port', 'blah2'],
{
'proxy_forwarded_address_header': 'blah2',
},
)
self.assertEqual(exc.exception.argument_name, '--proxy-headers-port')
self.assertEqual(
exc.exception.message,
'--proxy-headers has to be passed for this parameter.')

View File

@ -30,7 +30,7 @@ class TestXForwardedForHttpParsing(TestCase):
["10.1.2.3", 0]
)
def test_v6_address(self):
def test_v6_address_1(self):
headers = Headers({
b"X-Forwarded-For": [b"1043::a321:0001, 10.0.5.6"],
})
@ -84,7 +84,17 @@ class TestXForwardedForWsParsing(TestCase):
["10.1.2.3", 0]
)
def test_v6_address(self):
def test_non_bytes_header(self):
"""The passed headers can be non-bytes too."""
headers = {
"X-Forwarded-For": "10.1.2.3",
}
self.assertEqual(
parse_x_forwarded_for(headers),
["10.1.2.3", 0]
)
def test_v6_address_2(self):
headers = {
b"X-Forwarded-For": [b"1043::a321:0001, 10.0.5.6"],
}