
Bump neutron-lib, and osc-lib, and update some more requirements Depends-on: Ie74ea517a403e6e2a7a4e0a245dd20e5281339e8 Change-Id: If34a9889fb0f137856f7c241788cf593e722d665
140 lines
5.1 KiB
Python
140 lines
5.1 KiB
Python
# Copyright 2018 VMware, 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.
|
|
|
|
import logging
|
|
|
|
from neutron.db import l3_dvr_db # noqa
|
|
from neutron import manager
|
|
from neutron_lib import context
|
|
from neutron_lib.plugins import constants as const
|
|
from neutron_lib.plugins import directory
|
|
from oslo_config import cfg
|
|
|
|
from vmware_nsx.common import config
|
|
from vmware_nsx.plugins.common_v3 import utils as v3_utils
|
|
from vmware_nsx.plugins.nsx_p import plugin
|
|
from vmware_nsx.services.fwaas.nsx_p import fwaas_callbacks_v2
|
|
from vmware_nsx.shell.admin.plugins.common import formatters
|
|
from vmware_nsx.shell.admin.plugins.common import utils as admin_utils
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
_NSXPOLICY = None
|
|
|
|
|
|
def get_nsxp_client(nsx_username=None, nsx_password=None,
|
|
use_basic_auth=False):
|
|
|
|
return get_connected_nsxpolicy(nsx_username,
|
|
nsx_password,
|
|
use_basic_auth).client
|
|
|
|
|
|
def get_connected_nsxpolicy(nsx_username=None, nsx_password=None,
|
|
use_basic_auth=False, conf_path=None,
|
|
retriable_exceptions=None,
|
|
verbose=False):
|
|
global _NSXPOLICY
|
|
|
|
if not verbose:
|
|
# Suppress logs for nsxpolicy init
|
|
logging.disable(logging.INFO)
|
|
|
|
# for non-default arguments, initiate new lib
|
|
if nsx_username or use_basic_auth:
|
|
if not verbose:
|
|
# Return logs to normal
|
|
logging.disable(logging.NOTSET)
|
|
return v3_utils.get_nsxpolicy_wrapper(
|
|
nsx_username, nsx_password, use_basic_auth,
|
|
conf_path=conf_path,
|
|
retriable_exceptions=retriable_exceptions)
|
|
if _NSXPOLICY is None:
|
|
_NSXPOLICY = v3_utils.get_nsxpolicy_wrapper(
|
|
conf_path=conf_path,
|
|
retriable_exceptions=retriable_exceptions)
|
|
if not verbose:
|
|
# Return logs to normal
|
|
logging.disable(logging.NOTSET)
|
|
return _NSXPOLICY
|
|
|
|
|
|
def log_info(resource, data, attrs=['display_name', 'id']):
|
|
LOG.info(formatters.output_formatter(resource, data, attrs))
|
|
|
|
|
|
def get_realization_info(resource, *realization_args):
|
|
try:
|
|
nsx_info = resource.get_realization_info(*realization_args,
|
|
silent=True)
|
|
if not nsx_info:
|
|
info_text = "MISSING"
|
|
else:
|
|
state = nsx_info.get('state')
|
|
nsx_id = nsx_info.get('realization_specific_identifier')
|
|
info_text = "%s (ID: %s)" % (state, nsx_id)
|
|
except Exception as e:
|
|
LOG.warning("Failed to get realization info for %s(%s): %s",
|
|
resource, str(realization_args), e)
|
|
info_text = "UNKNOWN"
|
|
return info_text
|
|
|
|
|
|
class NsxPolicyPluginWrapper(plugin.NsxPolicyPlugin):
|
|
def __init__(self, verbose=False):
|
|
if not verbose:
|
|
# Suppress logs for plugin init
|
|
logging.disable(logging.INFO)
|
|
|
|
# initialize the availability zones
|
|
config.register_nsxp_azs(cfg.CONF, cfg.CONF.nsx_p.availability_zones)
|
|
super(NsxPolicyPluginWrapper, self).__init__()
|
|
self.context = context.get_admin_context()
|
|
admin_utils._init_plugin_mock_quota()
|
|
|
|
if not verbose:
|
|
# Return logs to normal
|
|
logging.disable(logging.NOTSET)
|
|
|
|
def __enter__(self):
|
|
directory.add_plugin(const.CORE, self)
|
|
return self
|
|
|
|
def __exit__(self, exc_type, exc_value, traceback):
|
|
directory.add_plugin(const.CORE, None)
|
|
|
|
def _init_fwaas_plugin(self, provider, callbacks_class, plugin_callbacks):
|
|
fwaas_plugin_class = manager.NeutronManager.load_class_for_provider(
|
|
'neutron.service_plugins', provider)
|
|
fwaas_plugin = fwaas_plugin_class()
|
|
self.fwaas_callbacks = callbacks_class(False)
|
|
# override the fwplugin_rpc since there is no RPC support in adminutils
|
|
if plugin_callbacks:
|
|
self.fwaas_callbacks.fwplugin_rpc = plugin_callbacks(fwaas_plugin)
|
|
self.init_is_complete = True
|
|
|
|
def init_fwaas_for_admin_utils(self):
|
|
# initialize the FWaaS plugin and callbacks
|
|
self.fwaas_callbacks = None
|
|
# This is an ugly patch to find out if fwaas is enabled
|
|
service_plugins = cfg.CONF.service_plugins
|
|
for srv_plugin in service_plugins:
|
|
if 'firewall' in srv_plugin or 'fwaas' in srv_plugin:
|
|
if 'v2' in srv_plugin:
|
|
# FWaaS V2
|
|
self._init_fwaas_plugin(
|
|
'firewall_v2',
|
|
fwaas_callbacks_v2.NsxpFwaasCallbacksV2,
|
|
None)
|
|
return
|