999b68733a
This patch will allow an IPv6 subnet configured with SLAAC (or dhcpv6-stateless) to be attached to a router interface. Closes-Bug: #1382076 Change-Id: If0c48a7287a828eef4a0f0b0859d4f898d2937bd
71 lines
2.4 KiB
Python
71 lines
2.4 KiB
Python
# Copyright 2013 IBM Corp.
|
|
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
|
|
"""
|
|
IPv6-related utilities and helper functions.
|
|
"""
|
|
import os
|
|
|
|
import netaddr
|
|
|
|
from neutron.common import constants
|
|
from neutron.openstack.common.gettextutils import _LI
|
|
from neutron.openstack.common import log
|
|
|
|
|
|
LOG = log.getLogger(__name__)
|
|
_IS_IPV6_ENABLED = None
|
|
|
|
|
|
def get_ipv6_addr_by_EUI64(prefix, mac):
|
|
# Check if the prefix is IPv4 address
|
|
isIPv4 = netaddr.valid_ipv4(prefix)
|
|
if isIPv4:
|
|
msg = _("Unable to generate IP address by EUI64 for IPv4 prefix")
|
|
raise TypeError(msg)
|
|
try:
|
|
eui64 = int(netaddr.EUI(mac).eui64())
|
|
prefix = netaddr.IPNetwork(prefix)
|
|
return netaddr.IPAddress(prefix.first + eui64 ^ (1 << 57))
|
|
except (ValueError, netaddr.AddrFormatError):
|
|
raise TypeError(_('Bad prefix or mac format for generating IPv6 '
|
|
'address by EUI-64: %(prefix)s, %(mac)s:')
|
|
% {'prefix': prefix, 'mac': mac})
|
|
except TypeError:
|
|
raise TypeError(_('Bad prefix type for generate IPv6 address by '
|
|
'EUI-64: %s') % prefix)
|
|
|
|
|
|
def is_enabled():
|
|
global _IS_IPV6_ENABLED
|
|
|
|
if _IS_IPV6_ENABLED is None:
|
|
disabled_ipv6_path = "/proc/sys/net/ipv6/conf/default/disable_ipv6"
|
|
if os.path.exists(disabled_ipv6_path):
|
|
with open(disabled_ipv6_path, 'r') as f:
|
|
disabled = f.read().strip()
|
|
_IS_IPV6_ENABLED = disabled == "0"
|
|
else:
|
|
_IS_IPV6_ENABLED = False
|
|
if not _IS_IPV6_ENABLED:
|
|
LOG.info(_LI("IPv6 is not enabled on this system."))
|
|
return _IS_IPV6_ENABLED
|
|
|
|
|
|
def is_slaac_subnet(subnet):
|
|
"""Check if subnet uses SLAAC addressing."""
|
|
return (subnet['ipv6_address_mode'] == constants.IPV6_SLAAC
|
|
or subnet['ipv6_address_mode'] == constants.DHCPV6_STATELESS)
|