]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fix hostname regex pattern
authorJohn Perkins <john.perkins@rackspace.com>
Mon, 6 Oct 2014 21:24:57 +0000 (16:24 -0500)
committerTristan Cacqueray <tristan.cacqueray@enovance.com>
Wed, 19 Nov 2014 15:01:19 +0000 (15:01 +0000)
Current hostname_pattern regex complexity grows exponentially
when given a string of just digits, which can be exploited to
cause neutron-server to freeze.

Change-Id: I886c6d883a9cb0acd9908495eec50bf0411d8ba8
Closes-bug: #1378450

neutron/api/v2/attributes.py
neutron/tests/unit/test_attributes.py

index 893d0446d23c69355424ea7094669d5f0fd00a0e..1edcb7d0b557928d3d38187b9757b018f472f171 100644 (file)
@@ -538,8 +538,8 @@ def convert_to_list(data):
         return [data]
 
 
-HOSTNAME_PATTERN = ("(?=^.{1,254}$)(^(?:(?!\d+\.|-)[a-zA-Z0-9_\-]"
-                    "{1,63}(?<!-)\.?)+(?:[a-zA-Z]{2,})$)")
+HOSTNAME_PATTERN = ("(?=^.{1,254}$)(^(?:(?!\d+.|-)[a-zA-Z0-9_\-]{1,62}"
+                    "[a-zA-Z0-9]\.?)+(?:[a-zA-Z]{2,})$)")
 
 HEX_ELEM = '[0-9A-Fa-f]'
 UUID_PATTERN = '-'.join([HEX_ELEM + '{8}', HEX_ELEM + '{4}',
index 2fb268d07a3ad6bbc1af0cd5662fc7fd2d592147..f8cb462b3e7542b44a7f7b8e4502403a26488a64 100644 (file)
@@ -281,6 +281,7 @@ class TestAttributes(base.BaseTestCase):
                     ['www.hostname.com', 'www.hostname.com'],
                     ['77.hostname.com'],
                     ['1000.0.0.1'],
+                    ['111111111111111111111111111111111111111111111111111111111111'],  # noqa
                     None]
 
         for ns in ns_pools: