Provide work around for 0.0.0.0/0 ::/0 for ipset

Previously, the ipset_manager would pass in 0.0.0.0/0 or ::/0 if
these addresses were inputted as allowed address pairs. This causes
ipset to raise an error as it does not work with zero prefix sizes.
To solve this problem we use two ipset rules to represent this:

Ipv4: 0.0.0.0/1 and 128.0.0.1/1
IPv6: ::/1' and '8000::/1

All of this logic is handled via _sanitize_addresses() in the ipset_manager
which is called to convert the input.

Conflicts:
	neutron/agent/linux/ipset_manager.py
	neutron/tests/unit/agent/linux/test_ipset_manager.py

Change-Id: I8c6a08e0cf3b5b5386fe03af9f2174c666b8ac75
Closes-bug: 1461054
This commit is contained in:
Aaron Rosen 2015-06-03 16:19:39 -07:00 committed by Tristan Cacqueray
parent bdf194a0e1
commit 9ff6138c47
2 changed files with 39 additions and 3 deletions

View File

@ -11,6 +11,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import netaddr
from neutron.agent.linux import utils as linux_utils
from neutron.common import utils
@ -31,6 +33,26 @@ class IpsetManager(object):
self.namespace = namespace
self.ipset_sets = {}
def _sanitize_addresses(self, addresses):
"""This method converts any address to ipset format.
If an address has a mask of /0 we need to cover to it to a mask of
/1 as ipset does not support /0 length addresses. Instead we use two
/1's to represent the /0.
"""
sanitized_addresses = []
for ip in addresses:
if (netaddr.IPNetwork(ip).prefixlen == 0):
if(netaddr.IPNetwork(ip).version == 4):
sanitized_addresses.append('0.0.0.0/1')
sanitized_addresses.append('128.0.0.0/1')
elif (netaddr.IPNetwork(ip).version == 6):
sanitized_addresses.append('::/1')
sanitized_addresses.append('8000::/1')
else:
sanitized_addresses.append(ip)
return sanitized_addresses
@staticmethod
def get_name(id, ethertype):
"""Returns the given ipset name for an id+ethertype pair.
@ -51,6 +73,7 @@ class IpsetManager(object):
add / remove new members, or swapped atomically if
that's faster.
"""
member_ips = self._sanitize_addresses(member_ips)
set_name = self.get_name(id, ethertype)
if not self.set_exists(id, ethertype):
# The initial creation is handled with create/refresh to

View File

@ -38,7 +38,7 @@ class BaseIpsetManagerTest(base.BaseTestCase):
def expect_set(self, addresses):
temp_input = ['create NETIPv4fake_sgid-new hash:net family inet']
temp_input.extend('add NETIPv4fake_sgid-new %s' % ip
for ip in addresses)
for ip in self.ipset._sanitize_addresses(addresses))
input = '\n'.join(temp_input)
self.expected_calls.extend([
mock.call(['ipset', 'restore', '-exist'],
@ -55,13 +55,16 @@ class BaseIpsetManagerTest(base.BaseTestCase):
self.expected_calls.extend(
mock.call(['ipset', 'add', '-exist', TEST_SET_NAME, ip],
process_input=None,
run_as_root=True) for ip in addresses)
run_as_root=True)
for ip in self.ipset._sanitize_addresses(addresses))
def expect_del(self, addresses):
self.expected_calls.extend(
mock.call(['ipset', 'del', TEST_SET_NAME, ip],
process_input=None,
run_as_root=True) for ip in addresses)
run_as_root=True)
for ip in self.ipset._sanitize_addresses(addresses))
def expect_create(self):
self.expected_calls.append(
@ -113,6 +116,16 @@ class IpsetManagerTestCase(BaseIpsetManagerTest):
self.ipset.set_members(TEST_SET_ID, ETHERTYPE, FAKE_IPS)
self.verify_mock_calls()
def test_set_members_adding_all_zero_ipv4(self):
self.expect_set(['0.0.0.0/0'])
self.ipset.set_members(TEST_SET_ID, ETHERTYPE, ['0.0.0.0/0'])
self.verify_mock_calls()
def test_set_members_adding_all_zero_ipv6(self):
self.expect_set(['::/0'])
self.ipset.set_members(TEST_SET_ID, ETHERTYPE, ['::/0'])
self.verify_mock_calls()
def test_destroy(self):
self.add_first_ip()
self.expect_destroy()