
This change renames everything to Neutron while providing backwards compatible adjustments for Grizzly configuration files. implements blueprint: remove-use-of-quantum Change-Id: Ie7d07ba7c89857e13d4ddc8f0e9b68de020a3d19
356 lines
14 KiB
Python
356 lines
14 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2012 Cisco Systems, Inc.
|
|
# 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.
|
|
#
|
|
# @author: Sumit Naiksatam, Cisco Systems, Inc.
|
|
# @author: Edgar Magana, Cisco Systems, Inc.
|
|
# @author: Arvind Somya, Cisco Systems, Inc. (asomya@cisco.com)
|
|
#
|
|
|
|
"""
|
|
PlugIn for Nexus OS driver
|
|
"""
|
|
|
|
import logging
|
|
|
|
from neutron.common import exceptions as exc
|
|
from neutron.openstack.common import excutils
|
|
from neutron.openstack.common import importutils
|
|
from neutron.plugins.cisco.common import cisco_constants as const
|
|
from neutron.plugins.cisco.common import cisco_credentials_v2 as cred
|
|
from neutron.plugins.cisco.common import cisco_exceptions as cisco_exc
|
|
from neutron.plugins.cisco.common import config as conf
|
|
from neutron.plugins.cisco.db import nexus_db_v2 as nxos_db
|
|
from neutron.plugins.cisco.l2device_plugin_base import L2DevicePluginBase
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class NexusPlugin(L2DevicePluginBase):
|
|
"""Nexus PlugIn Main Class."""
|
|
_networks = {}
|
|
|
|
def __init__(self):
|
|
"""Extract configuration parameters from the configuration file."""
|
|
self._client = importutils.import_object(conf.CISCO.nexus_driver)
|
|
LOG.debug(_("Loaded driver %s"), conf.CISCO.nexus_driver)
|
|
self._nexus_switches = conf.get_nexus_dictionary()
|
|
self.credentials = {}
|
|
|
|
def get_credential(self, nexus_ip):
|
|
if nexus_ip not in self.credentials:
|
|
_nexus_username = cred.Store.get_username(nexus_ip)
|
|
_nexus_password = cred.Store.get_password(nexus_ip)
|
|
self.credentials[nexus_ip] = {
|
|
'username': _nexus_username,
|
|
'password': _nexus_password
|
|
}
|
|
return self.credentials[nexus_ip]
|
|
|
|
def get_all_networks(self, tenant_id):
|
|
"""Get all networks.
|
|
|
|
Returns a dictionary containing all <network_uuid, network_name> for
|
|
the specified tenant.
|
|
"""
|
|
LOG.debug(_("NexusPlugin:get_all_networks() called"))
|
|
return self._networks.values()
|
|
|
|
def create_network(self, tenant_id, net_name, net_id, vlan_name, vlan_id,
|
|
host, instance):
|
|
"""Create network.
|
|
|
|
Create a VLAN in the appropriate switch/port, and configure the
|
|
appropriate interfaces for this VLAN.
|
|
"""
|
|
LOG.debug(_("NexusPlugin:create_network() called"))
|
|
# Grab the switch IP and port for this host
|
|
for switch_ip, attr in self._nexus_switches:
|
|
if str(attr) == str(host):
|
|
port_id = self._nexus_switches[switch_ip, attr]
|
|
break
|
|
else:
|
|
raise cisco_exc.NexusComputeHostNotConfigured(host=host)
|
|
|
|
# Check if this network is already in the DB
|
|
vlan_created = False
|
|
vlan_enabled = False
|
|
|
|
try:
|
|
nxos_db.get_port_vlan_switch_binding(port_id, vlan_id, switch_ip)
|
|
except cisco_exc.NexusPortBindingNotFound:
|
|
_nexus_ip = switch_ip
|
|
_nexus_ports = (port_id,)
|
|
_nexus_ssh_port = \
|
|
self._nexus_switches[switch_ip, 'ssh_port']
|
|
_nexus_creds = self.get_credential(_nexus_ip)
|
|
_nexus_username = _nexus_creds['username']
|
|
_nexus_password = _nexus_creds['password']
|
|
# Check for vlan/switch binding
|
|
try:
|
|
nxos_db.get_nexusvlan_binding(vlan_id, switch_ip)
|
|
except cisco_exc.NexusPortBindingNotFound:
|
|
# Create vlan and trunk vlan on the port
|
|
self._client.create_vlan(
|
|
vlan_name, str(vlan_id), _nexus_ip,
|
|
_nexus_username, _nexus_password,
|
|
_nexus_ports, _nexus_ssh_port, vlan_id)
|
|
vlan_created = True
|
|
else:
|
|
# Only trunk vlan on the port
|
|
man = self._client.nxos_connect(_nexus_ip,
|
|
int(_nexus_ssh_port),
|
|
_nexus_username,
|
|
_nexus_password)
|
|
self._client.enable_vlan_on_trunk_int(man,
|
|
_nexus_ip,
|
|
port_id,
|
|
vlan_id)
|
|
vlan_enabled = True
|
|
|
|
try:
|
|
nxos_db.add_nexusport_binding(port_id, str(vlan_id),
|
|
switch_ip, instance)
|
|
except Exception:
|
|
with excutils.save_and_reraise_exception():
|
|
# Add binding failed, roll back any vlan creation/enabling
|
|
if vlan_created:
|
|
self._client.delete_vlan(
|
|
str(vlan_id), _nexus_ip,
|
|
_nexus_username, _nexus_password,
|
|
_nexus_ports, _nexus_ssh_port)
|
|
if vlan_enabled:
|
|
self._client.disable_vlan_on_trunk_int(man,
|
|
port_id,
|
|
vlan_id)
|
|
|
|
new_net_dict = {const.NET_ID: net_id,
|
|
const.NET_NAME: net_name,
|
|
const.NET_PORTS: {},
|
|
const.NET_VLAN_NAME: vlan_name,
|
|
const.NET_VLAN_ID: vlan_id}
|
|
self._networks[net_id] = new_net_dict
|
|
return new_net_dict
|
|
|
|
def add_router_interface(self, vlan_name, vlan_id, subnet_id,
|
|
gateway_ip, router_id):
|
|
"""Create VLAN SVI on the Nexus switch."""
|
|
# Find a switch to create the SVI on
|
|
switch_ip = self._find_switch_for_svi()
|
|
if not switch_ip:
|
|
raise cisco_exc.NoNexusSwitch()
|
|
|
|
_nexus_ip = switch_ip
|
|
_nexus_ssh_port = self._nexus_switches[switch_ip, 'ssh_port']
|
|
_nexus_creds = self.get_credential(_nexus_ip)
|
|
_nexus_username = _nexus_creds['username']
|
|
_nexus_password = _nexus_creds['password']
|
|
|
|
# Check if this vlan exists on the switch already
|
|
try:
|
|
nxos_db.get_nexusvlan_binding(vlan_id, switch_ip)
|
|
except cisco_exc.NexusPortBindingNotFound:
|
|
# Create vlan and trunk vlan on the port
|
|
self._client.create_vlan(
|
|
vlan_name, str(vlan_id), _nexus_ip,
|
|
_nexus_username, _nexus_password,
|
|
[], _nexus_ssh_port, vlan_id)
|
|
|
|
# Check if a router interface has already been created
|
|
try:
|
|
nxos_db.get_nexusvm_binding(vlan_id, router_id)
|
|
raise cisco_exc.SubnetInterfacePresent(subnet_id=subnet_id,
|
|
router_id=router_id)
|
|
except cisco_exc.NexusPortBindingNotFound:
|
|
self._client.create_vlan_svi(vlan_id, _nexus_ip, _nexus_username,
|
|
_nexus_password, _nexus_ssh_port,
|
|
gateway_ip)
|
|
nxos_db.add_nexusport_binding('router', str(vlan_id),
|
|
switch_ip, router_id)
|
|
|
|
return True
|
|
|
|
def remove_router_interface(self, vlan_id, router_id):
|
|
"""Remove VLAN SVI from the Nexus Switch."""
|
|
# Grab switch_ip from database
|
|
row = nxos_db.get_nexusvm_binding(vlan_id, router_id)
|
|
|
|
# Delete the SVI interface from the switch
|
|
_nexus_ip = row['switch_ip']
|
|
_nexus_ssh_port = self._nexus_switches[_nexus_ip, 'ssh_port']
|
|
_nexus_creds = self.get_credential(_nexus_ip)
|
|
_nexus_username = _nexus_creds['username']
|
|
_nexus_password = _nexus_creds['password']
|
|
|
|
self._client.delete_vlan_svi(vlan_id, _nexus_ip, _nexus_username,
|
|
_nexus_password, _nexus_ssh_port)
|
|
|
|
# Invoke delete_port to delete this row
|
|
# And delete vlan if required
|
|
return self.delete_port(router_id, vlan_id)
|
|
|
|
def _find_switch_for_svi(self):
|
|
"""Get a switch to create the SVI on."""
|
|
LOG.debug(_("Grabbing a switch to create SVI"))
|
|
if conf.CISCO.svi_round_robin:
|
|
LOG.debug(_("Using round robin to create SVI"))
|
|
switch_dict = dict(
|
|
(switch_ip, 0) for switch_ip, _ in self._nexus_switches)
|
|
try:
|
|
bindings = nxos_db.get_nexussvi_bindings()
|
|
# Build a switch dictionary with weights
|
|
for binding in bindings:
|
|
switch_ip = binding.switch_ip
|
|
if switch_ip not in switch_dict:
|
|
switch_dict[switch_ip] = 1
|
|
else:
|
|
switch_dict[switch_ip] += 1
|
|
# Search for the lowest value in the dict
|
|
if switch_dict:
|
|
switch_ip = min(switch_dict.items(), key=switch_dict.get)
|
|
return switch_ip[0]
|
|
except cisco_exc.NexusPortBindingNotFound:
|
|
pass
|
|
|
|
LOG.debug(_("No round robin or zero weights, using first switch"))
|
|
# Return the first switch in the config
|
|
for switch_ip, attr in self._nexus_switches:
|
|
return switch_ip
|
|
|
|
def delete_network(self, tenant_id, net_id, **kwargs):
|
|
"""Delete network.
|
|
|
|
Deletes the VLAN in all switches, and removes the VLAN configuration
|
|
from the relevant interfaces.
|
|
"""
|
|
LOG.debug(_("NexusPlugin:delete_network() called"))
|
|
|
|
def get_network_details(self, tenant_id, net_id, **kwargs):
|
|
"""Return the details of a particular network."""
|
|
LOG.debug(_("NexusPlugin:get_network_details() called"))
|
|
network = self._get_network(tenant_id, net_id)
|
|
return network
|
|
|
|
def update_network(self, tenant_id, net_id, **kwargs):
|
|
"""Update the properties of a particular Virtual Network."""
|
|
LOG.debug(_("NexusPlugin:update_network() called"))
|
|
|
|
def get_all_ports(self, tenant_id, net_id, **kwargs):
|
|
"""Get all ports.
|
|
|
|
This is probably not applicable to the Nexus plugin.
|
|
Delete if not required.
|
|
"""
|
|
LOG.debug(_("NexusPlugin:get_all_ports() called"))
|
|
|
|
def create_port(self, tenant_id, net_id, port_state, port_id, **kwargs):
|
|
"""Create port.
|
|
|
|
This is probably not applicable to the Nexus plugin.
|
|
Delete if not required.
|
|
"""
|
|
LOG.debug(_("NexusPlugin:create_port() called"))
|
|
|
|
def delete_port(self, device_id, vlan_id):
|
|
"""Delete port.
|
|
|
|
Delete port bindings from the database and scan whether the network
|
|
is still required on the interfaces trunked.
|
|
"""
|
|
LOG.debug(_("NexusPlugin:delete_port() called"))
|
|
# Delete DB row for this port
|
|
try:
|
|
row = nxos_db.get_nexusvm_binding(vlan_id, device_id)
|
|
except cisco_exc.NexusPortBindingNotFound:
|
|
return
|
|
|
|
nxos_db.remove_nexusport_binding(row['port_id'], row['vlan_id'],
|
|
row['switch_ip'],
|
|
row['instance_id'])
|
|
# Check for any other bindings with the same vlan_id and switch_ip
|
|
try:
|
|
nxos_db.get_nexusvlan_binding(row['vlan_id'], row['switch_ip'])
|
|
except cisco_exc.NexusPortBindingNotFound:
|
|
try:
|
|
# Delete this vlan from this switch
|
|
_nexus_ip = row['switch_ip']
|
|
_nexus_ports = ()
|
|
if row['port_id'] != 'router':
|
|
_nexus_ports = (row['port_id'],)
|
|
_nexus_ssh_port = (self._nexus_switches[_nexus_ip,
|
|
'ssh_port'])
|
|
_nexus_creds = self.get_credential(_nexus_ip)
|
|
_nexus_username = _nexus_creds['username']
|
|
_nexus_password = _nexus_creds['password']
|
|
self._client.delete_vlan(
|
|
str(row['vlan_id']), _nexus_ip,
|
|
_nexus_username, _nexus_password,
|
|
_nexus_ports, _nexus_ssh_port)
|
|
except Exception:
|
|
# The delete vlan operation on the Nexus failed,
|
|
# so this delete_port request has failed. For
|
|
# consistency, roll back the Nexus database to what
|
|
# it was before this request.
|
|
with excutils.save_and_reraise_exception():
|
|
nxos_db.add_nexusport_binding(row['port_id'],
|
|
row['vlan_id'],
|
|
row['switch_ip'],
|
|
row['instance_id'])
|
|
|
|
return row['instance_id']
|
|
|
|
def update_port(self, tenant_id, net_id, port_id, port_state, **kwargs):
|
|
"""Update port.
|
|
|
|
This is probably not applicable to the Nexus plugin.
|
|
Delete if not required.
|
|
"""
|
|
LOG.debug(_("NexusPlugin:update_port() called"))
|
|
|
|
def get_port_details(self, tenant_id, net_id, port_id, **kwargs):
|
|
"""Get port details.
|
|
|
|
This is probably not applicable to the Nexus plugin.
|
|
Delete if not required.
|
|
"""
|
|
LOG.debug(_("NexusPlugin:get_port_details() called"))
|
|
|
|
def plug_interface(self, tenant_id, net_id, port_id, remote_interface_id,
|
|
**kwargs):
|
|
"""Plug interfaces.
|
|
|
|
This is probably not applicable to the Nexus plugin.
|
|
Delete if not required.
|
|
"""
|
|
LOG.debug(_("NexusPlugin:plug_interface() called"))
|
|
|
|
def unplug_interface(self, tenant_id, net_id, port_id, **kwargs):
|
|
"""Unplug interface.
|
|
|
|
This is probably not applicable to the Nexus plugin.
|
|
Delete if not required.
|
|
"""
|
|
LOG.debug(_("NexusPlugin:unplug_interface() called"))
|
|
|
|
def _get_network(self, tenant_id, network_id, context, base_plugin_ref):
|
|
"""Get the Network ID."""
|
|
network = base_plugin_ref._get_network(context, network_id)
|
|
if not network:
|
|
raise exc.NetworkNotFound(net_id=network_id)
|
|
return {const.NET_ID: network_id, const.NET_NAME: network.name,
|
|
const.NET_PORTS: network.ports}
|