f36c985e29
This commit adds support for currently provided Mellanox Plugin embedded switch functionality as part of the VPI (Ethernet/InfiniBand) HCA as an ML2 MechanismDriver. MechanismDriver adds support for VNIC_DIRECT and VNIC_MACVTAP vnic types. MechanismDriver provides configurable default vif_type for neutron port created with default VNIC_NORMAL vnic type till nova api support for vnic_type is available. Implements blueprint mlnx-ml2-support Change-Id: I16ad318f095b7af879e1b99dcc7f5f9e92facd2b
80 lines
3.2 KiB
Python
80 lines
3.2 KiB
Python
# Copyright (c) 2014 OpenStack Foundation
|
|
# 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.
|
|
|
|
from oslo.config import cfg
|
|
|
|
from neutron.common import constants
|
|
from neutron.extensions import portbindings
|
|
from neutron.openstack.common import log
|
|
from neutron.plugins.ml2 import driver_api as api
|
|
from neutron.plugins.ml2.drivers import mech_agent
|
|
from neutron.plugins.ml2.drivers.mlnx import config # noqa
|
|
|
|
LOG = log.getLogger(__name__)
|
|
|
|
|
|
class MlnxMechanismDriver(mech_agent.SimpleAgentMechanismDriverBase):
|
|
"""Attach to networks using Mellanox eSwitch L2 agent.
|
|
|
|
The MellanoxMechanismDriver integrates the ml2 plugin with the
|
|
Mellanox eswitch L2 agent. Port binding with this driver requires the
|
|
Mellanox eswitch agent to be running on the port's host, and that agent
|
|
to have connectivity to at least one segment of the port's
|
|
network.
|
|
"""
|
|
|
|
def __init__(self):
|
|
# REVISIT(irenab): update supported_vnic_types to contain
|
|
# only VNIC_DIRECT and VNIC_MACVTAP once its possible to specify
|
|
# vnic_type via nova API/GUI. Currently VNIC_NORMAL is included
|
|
# to enable VM creation via GUI. It should be noted, that if
|
|
# several MDs are capable to bing bind port on chosen host, the
|
|
# first listed MD will bind the port for VNIC_NORMAL.
|
|
super(MlnxMechanismDriver, self).__init__(
|
|
constants.AGENT_TYPE_MLNX,
|
|
cfg.CONF.ESWITCH.vnic_type,
|
|
{portbindings.CAP_PORT_FILTER: False},
|
|
portbindings.VNIC_TYPES)
|
|
|
|
def check_segment_for_agent(self, segment, agent):
|
|
mappings = agent['configurations'].get('interface_mappings', {})
|
|
LOG.debug(_("Checking segment: %(segment)s "
|
|
"for mappings: %(mappings)s "),
|
|
{'segment': segment, 'mappings': mappings})
|
|
|
|
network_type = segment[api.NETWORK_TYPE]
|
|
if network_type == 'local':
|
|
return True
|
|
elif network_type in ['flat', 'vlan']:
|
|
return segment[api.PHYSICAL_NETWORK] in mappings
|
|
else:
|
|
return False
|
|
|
|
def try_to_bind_segment_for_agent(self, context, segment, agent):
|
|
if self.check_segment_for_agent(segment, agent):
|
|
vif_type = self._get_vif_type(
|
|
context.current[portbindings.VNIC_TYPE])
|
|
context.set_binding(segment[api.ID],
|
|
vif_type,
|
|
self.vif_details)
|
|
|
|
def _get_vif_type(self, requested_vnic_type):
|
|
if requested_vnic_type == portbindings.VNIC_MACVTAP:
|
|
return portbindings.VIF_TYPE_MLNX_DIRECT
|
|
elif requested_vnic_type == portbindings.VNIC_DIRECT:
|
|
return portbindings.VIF_TYPE_MLNX_HOSTDEV
|
|
return self.vif_type
|