blob: 975abafc4415f49f9c3530547af0fc29b1ca0033 [file] [log] [blame]
tierno7edb6752016-03-21 17:37:52 +01001# -*- coding: utf-8 -*-
2
3##
tierno92021022018-09-12 16:29:23 +02004# Copyright 2015 Telefonica Investigacion y Desarrollo, S.A.U.
tierno7edb6752016-03-21 17:37:52 +01005# This file is part of openmano
6# All Rights Reserved.
7#
8# Licensed under the Apache License, Version 2.0 (the "License"); you may
9# not use this file except in compliance with the License. You may obtain
10# a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17# License for the specific language governing permissions and limitations
18# under the License.
19#
20# For those usages not covered by the Apache License, Version 2.0 please
21# contact with: nfvlabs@tid.es
22##
23
24'''
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +000025osconnector implements all the methods to interact with openstack using the python-neutronclient.
26
27For the VNF forwarding graph, The OpenStack VIM connector calls the
28networking-sfc Neutron extension methods, whose resources are mapped
29to the VIM connector's SFC resources as follows:
30- Classification (OSM) -> Flow Classifier (Neutron)
31- Service Function Instance (OSM) -> Port Pair (Neutron)
32- Service Function (OSM) -> Port Pair Group (Neutron)
33- Service Function Path (OSM) -> Port Chain (Neutron)
tierno7edb6752016-03-21 17:37:52 +010034'''
Eduardo Sousae3c0dbc2018-09-03 11:56:07 +010035__author__ = "Alfonso Tierno, Gerardo Garcia, Pablo Montes, xFlow Research, Igor D.C., Eduardo Sousa"
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +000036__date__ = "$22-sep-2017 23:59:59$"
tierno7edb6752016-03-21 17:37:52 +010037
38import vimconn
tierno69b590e2018-03-13 18:52:23 +010039# import json
tiernoae4a8d12016-07-08 12:30:39 +020040import logging
garciadeblas9f8456e2016-09-05 05:02:59 +020041import netaddr
montesmoreno0c8def02016-12-22 12:16:23 +000042import time
tierno36c0b172017-01-12 18:32:28 +010043import yaml
garciadeblas2299e3b2017-01-26 14:35:55 +000044import random
kate721d79b2017-06-24 04:21:38 -070045import re
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +000046import copy
tierno7edb6752016-03-21 17:37:52 +010047
tiernob5cef372017-06-19 15:52:22 +020048from novaclient import client as nClient, exceptions as nvExceptions
49from keystoneauth1.identity import v2, v3
50from keystoneauth1 import session
tierno7edb6752016-03-21 17:37:52 +010051import keystoneclient.exceptions as ksExceptions
tiernof716aea2017-06-21 18:01:40 +020052import keystoneclient.v3.client as ksClient_v3
53import keystoneclient.v2_0.client as ksClient_v2
tiernob5cef372017-06-19 15:52:22 +020054from glanceclient import client as glClient
tierno7edb6752016-03-21 17:37:52 +010055import glanceclient.exc as gl1Exceptions
tiernob5cef372017-06-19 15:52:22 +020056from cinderclient import client as cClient
tierno7edb6752016-03-21 17:37:52 +010057from httplib import HTTPException
tiernob5cef372017-06-19 15:52:22 +020058from neutronclient.neutron import client as neClient
tierno7edb6752016-03-21 17:37:52 +010059from neutronclient.common import exceptions as neExceptions
60from requests.exceptions import ConnectionError
61
tierno40e1bce2017-08-09 09:12:04 +020062
63"""contain the openstack virtual machine status to openmano status"""
tierno7edb6752016-03-21 17:37:52 +010064vmStatus2manoFormat={'ACTIVE':'ACTIVE',
65 'PAUSED':'PAUSED',
66 'SUSPENDED': 'SUSPENDED',
67 'SHUTOFF':'INACTIVE',
68 'BUILD':'BUILD',
69 'ERROR':'ERROR','DELETED':'DELETED'
70 }
71netStatus2manoFormat={'ACTIVE':'ACTIVE','PAUSED':'PAUSED','INACTIVE':'INACTIVE','BUILD':'BUILD','ERROR':'ERROR','DELETED':'DELETED'
72 }
73
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +000074supportedClassificationTypes = ['legacy_flow_classifier']
75
montesmoreno0c8def02016-12-22 12:16:23 +000076#global var to have a timeout creating and deleting volumes
tierno00e3df72017-11-29 17:20:13 +010077volume_timeout = 600
78server_timeout = 600
montesmoreno0c8def02016-12-22 12:16:23 +000079
tierno7edb6752016-03-21 17:37:52 +010080class vimconnector(vimconn.vimconnector):
tiernob3d36742017-03-03 23:51:05 +010081 def __init__(self, uuid, name, tenant_id, tenant_name, url, url_admin=None, user=None, passwd=None,
82 log_level=None, config={}, persistent_info={}):
ahmadsa96af9f42017-01-31 16:17:14 +050083 '''using common constructor parameters. In this case
tierno7edb6752016-03-21 17:37:52 +010084 'url' is the keystone authorization url,
85 'url_admin' is not use
86 '''
tiernof716aea2017-06-21 18:01:40 +020087 api_version = config.get('APIversion')
88 if api_version and api_version not in ('v3.3', 'v2.0', '2', '3'):
tiernob5cef372017-06-19 15:52:22 +020089 raise vimconn.vimconnException("Invalid value '{}' for config:APIversion. "
tiernof716aea2017-06-21 18:01:40 +020090 "Allowed values are 'v3.3', 'v2.0', '2' or '3'".format(api_version))
kate721d79b2017-06-24 04:21:38 -070091 vim_type = config.get('vim_type')
92 if vim_type and vim_type not in ('vio', 'VIO'):
93 raise vimconn.vimconnException("Invalid value '{}' for config:vim_type."
94 "Allowed values are 'vio' or 'VIO'".format(vim_type))
95
96 if config.get('dataplane_net_vlan_range') is not None:
97 #validate vlan ranges provided by user
98 self._validate_vlan_ranges(config.get('dataplane_net_vlan_range'))
99
tiernob5cef372017-06-19 15:52:22 +0200100 vimconn.vimconnector.__init__(self, uuid, name, tenant_id, tenant_name, url, url_admin, user, passwd, log_level,
101 config)
tiernob3d36742017-03-03 23:51:05 +0100102
tierno4d1ce222018-04-06 10:41:06 +0200103 if self.config.get("insecure") and self.config.get("ca_cert"):
104 raise vimconn.vimconnException("options insecure and ca_cert are mutually exclusive")
105 self.verify = True
106 if self.config.get("insecure"):
107 self.verify = False
108 if self.config.get("ca_cert"):
109 self.verify = self.config.get("ca_cert")
tierno4d1ce222018-04-06 10:41:06 +0200110
tierno7edb6752016-03-21 17:37:52 +0100111 if not url:
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000112 raise TypeError('url param can not be NoneType')
tiernob5cef372017-06-19 15:52:22 +0200113 self.persistent_info = persistent_info
mirabal29356312017-07-27 12:21:22 +0200114 self.availability_zone = persistent_info.get('availability_zone', None)
tiernob5cef372017-06-19 15:52:22 +0200115 self.session = persistent_info.get('session', {'reload_client': True})
116 self.nova = self.session.get('nova')
117 self.neutron = self.session.get('neutron')
118 self.cinder = self.session.get('cinder')
119 self.glance = self.session.get('glance')
tierno1beea862018-07-11 15:47:37 +0200120 # self.glancev1 = self.session.get('glancev1')
tiernof716aea2017-06-21 18:01:40 +0200121 self.keystone = self.session.get('keystone')
122 self.api_version3 = self.session.get('api_version3')
kate721d79b2017-06-24 04:21:38 -0700123 self.vim_type = self.config.get("vim_type")
124 if self.vim_type:
125 self.vim_type = self.vim_type.upper()
126 if self.config.get("use_internal_endpoint"):
127 self.endpoint_type = "internalURL"
128 else:
129 self.endpoint_type = None
montesmoreno0c8def02016-12-22 12:16:23 +0000130
tierno73ad9e42016-09-12 18:11:11 +0200131 self.logger = logging.getLogger('openmano.vim.openstack')
kate721d79b2017-06-24 04:21:38 -0700132
133 ####### VIO Specific Changes #########
134 if self.vim_type == "VIO":
135 self.logger = logging.getLogger('openmano.vim.vio')
136
tiernofe789902016-09-29 14:20:44 +0000137 if log_level:
kate54616752017-09-05 23:26:28 -0700138 self.logger.setLevel( getattr(logging, log_level))
tiernof716aea2017-06-21 18:01:40 +0200139
140 def __getitem__(self, index):
141 """Get individuals parameters.
142 Throw KeyError"""
143 if index == 'project_domain_id':
144 return self.config.get("project_domain_id")
145 elif index == 'user_domain_id':
146 return self.config.get("user_domain_id")
147 else:
tierno76a3c312017-06-29 16:42:15 +0200148 return vimconn.vimconnector.__getitem__(self, index)
tiernof716aea2017-06-21 18:01:40 +0200149
150 def __setitem__(self, index, value):
151 """Set individuals parameters and it is marked as dirty so to force connection reload.
152 Throw KeyError"""
153 if index == 'project_domain_id':
154 self.config["project_domain_id"] = value
155 elif index == 'user_domain_id':
156 self.config["user_domain_id"] = value
157 else:
158 vimconn.vimconnector.__setitem__(self, index, value)
tiernob5cef372017-06-19 15:52:22 +0200159 self.session['reload_client'] = True
tiernof716aea2017-06-21 18:01:40 +0200160
tierno7edb6752016-03-21 17:37:52 +0100161 def _reload_connection(self):
162 '''Called before any operation, it check if credentials has changed
163 Throw keystoneclient.apiclient.exceptions.AuthorizationFailure
164 '''
165 #TODO control the timing and possible token timeout, but it seams that python client does this task for us :-)
tiernob5cef372017-06-19 15:52:22 +0200166 if self.session['reload_client']:
tiernof716aea2017-06-21 18:01:40 +0200167 if self.config.get('APIversion'):
168 self.api_version3 = self.config['APIversion'] == 'v3.3' or self.config['APIversion'] == '3'
169 else: # get from ending auth_url that end with v3 or with v2.0
tierno3cb8dc32017-10-24 18:13:19 +0200170 self.api_version3 = self.url.endswith("/v3") or self.url.endswith("/v3/")
tiernof716aea2017-06-21 18:01:40 +0200171 self.session['api_version3'] = self.api_version3
172 if self.api_version3:
tierno3cb8dc32017-10-24 18:13:19 +0200173 if self.config.get('project_domain_id') or self.config.get('project_domain_name'):
174 project_domain_id_default = None
175 else:
176 project_domain_id_default = 'default'
177 if self.config.get('user_domain_id') or self.config.get('user_domain_name'):
178 user_domain_id_default = None
179 else:
180 user_domain_id_default = 'default'
tiernof716aea2017-06-21 18:01:40 +0200181 auth = v3.Password(auth_url=self.url,
tiernob5cef372017-06-19 15:52:22 +0200182 username=self.user,
183 password=self.passwd,
184 project_name=self.tenant_name,
185 project_id=self.tenant_id,
tierno3cb8dc32017-10-24 18:13:19 +0200186 project_domain_id=self.config.get('project_domain_id', project_domain_id_default),
187 user_domain_id=self.config.get('user_domain_id', user_domain_id_default),
188 project_domain_name=self.config.get('project_domain_name'),
189 user_domain_name=self.config.get('user_domain_name'))
ahmadsa95baa272016-11-30 09:14:11 +0500190 else:
tiernof716aea2017-06-21 18:01:40 +0200191 auth = v2.Password(auth_url=self.url,
tiernob5cef372017-06-19 15:52:22 +0200192 username=self.user,
193 password=self.passwd,
194 tenant_name=self.tenant_name,
195 tenant_id=self.tenant_id)
tierno4d1ce222018-04-06 10:41:06 +0200196 sess = session.Session(auth=auth, verify=self.verify)
tiernof716aea2017-06-21 18:01:40 +0200197 if self.api_version3:
kate721d79b2017-06-24 04:21:38 -0700198 self.keystone = ksClient_v3.Client(session=sess, endpoint_type=self.endpoint_type)
tiernof716aea2017-06-21 18:01:40 +0200199 else:
kate721d79b2017-06-24 04:21:38 -0700200 self.keystone = ksClient_v2.Client(session=sess, endpoint_type=self.endpoint_type)
tiernof716aea2017-06-21 18:01:40 +0200201 self.session['keystone'] = self.keystone
montesmoreno9317d302017-08-16 12:48:23 +0200202 # In order to enable microversion functionality an explicit microversion must be specified in 'config'.
203 # This implementation approach is due to the warning message in
204 # https://developer.openstack.org/api-guide/compute/microversions.html
205 # where it is stated that microversion backwards compatibility is not guaranteed and clients should
206 # always require an specific microversion.
207 # To be able to use 'device role tagging' functionality define 'microversion: 2.32' in datacenter config
208 version = self.config.get("microversion")
209 if not version:
210 version = "2.1"
kate54616752017-09-05 23:26:28 -0700211 self.nova = self.session['nova'] = nClient.Client(str(version), session=sess, endpoint_type=self.endpoint_type)
kate721d79b2017-06-24 04:21:38 -0700212 self.neutron = self.session['neutron'] = neClient.Client('2.0', session=sess, endpoint_type=self.endpoint_type)
213 self.cinder = self.session['cinder'] = cClient.Client(2, session=sess, endpoint_type=self.endpoint_type)
214 if self.endpoint_type == "internalURL":
215 glance_service_id = self.keystone.services.list(name="glance")[0].id
216 glance_endpoint = self.keystone.endpoints.list(glance_service_id, interface="internal")[0].url
217 else:
218 glance_endpoint = None
219 self.glance = self.session['glance'] = glClient.Client(2, session=sess, endpoint=glance_endpoint)
220 #using version 1 of glance client in new_image()
tierno1beea862018-07-11 15:47:37 +0200221 # self.glancev1 = self.session['glancev1'] = glClient.Client('1', session=sess,
222 # endpoint=glance_endpoint)
tiernob5cef372017-06-19 15:52:22 +0200223 self.session['reload_client'] = False
224 self.persistent_info['session'] = self.session
mirabal29356312017-07-27 12:21:22 +0200225 # add availablity zone info inside self.persistent_info
226 self._set_availablity_zones()
227 self.persistent_info['availability_zone'] = self.availability_zone
ahmadsa95baa272016-11-30 09:14:11 +0500228
tierno7edb6752016-03-21 17:37:52 +0100229 def __net_os2mano(self, net_list_dict):
230 '''Transform the net openstack format to mano format
231 net_list_dict can be a list of dict or a single dict'''
232 if type(net_list_dict) is dict:
233 net_list_=(net_list_dict,)
234 elif type(net_list_dict) is list:
235 net_list_=net_list_dict
236 else:
237 raise TypeError("param net_list_dict must be a list or a dictionary")
238 for net in net_list_:
239 if net.get('provider:network_type') == "vlan":
240 net['type']='data'
241 else:
242 net['type']='bridge'
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +0200243
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000244 def __classification_os2mano(self, class_list_dict):
245 """Transform the openstack format (Flow Classifier) to mano format
246 (Classification) class_list_dict can be a list of dict or a single dict
247 """
248 if isinstance(class_list_dict, dict):
249 class_list_ = [class_list_dict]
250 elif isinstance(class_list_dict, list):
251 class_list_ = class_list_dict
252 else:
253 raise TypeError(
254 "param class_list_dict must be a list or a dictionary")
255 for classification in class_list_:
256 id = classification.pop('id')
257 name = classification.pop('name')
258 description = classification.pop('description')
259 project_id = classification.pop('project_id')
260 tenant_id = classification.pop('tenant_id')
261 original_classification = copy.deepcopy(classification)
262 classification.clear()
263 classification['ctype'] = 'legacy_flow_classifier'
264 classification['definition'] = original_classification
265 classification['id'] = id
266 classification['name'] = name
267 classification['description'] = description
268 classification['project_id'] = project_id
269 classification['tenant_id'] = tenant_id
270
271 def __sfi_os2mano(self, sfi_list_dict):
272 """Transform the openstack format (Port Pair) to mano format (SFI)
273 sfi_list_dict can be a list of dict or a single dict
274 """
275 if isinstance(sfi_list_dict, dict):
276 sfi_list_ = [sfi_list_dict]
277 elif isinstance(sfi_list_dict, list):
278 sfi_list_ = sfi_list_dict
279 else:
280 raise TypeError(
281 "param sfi_list_dict must be a list or a dictionary")
282 for sfi in sfi_list_:
283 sfi['ingress_ports'] = []
284 sfi['egress_ports'] = []
285 if sfi.get('ingress'):
286 sfi['ingress_ports'].append(sfi['ingress'])
287 if sfi.get('egress'):
288 sfi['egress_ports'].append(sfi['egress'])
289 del sfi['ingress']
290 del sfi['egress']
291 params = sfi.get('service_function_parameters')
292 sfc_encap = False
293 if params:
294 correlation = params.get('correlation')
295 if correlation:
296 sfc_encap = True
297 sfi['sfc_encap'] = sfc_encap
298 del sfi['service_function_parameters']
299
300 def __sf_os2mano(self, sf_list_dict):
301 """Transform the openstack format (Port Pair Group) to mano format (SF)
302 sf_list_dict can be a list of dict or a single dict
303 """
304 if isinstance(sf_list_dict, dict):
305 sf_list_ = [sf_list_dict]
306 elif isinstance(sf_list_dict, list):
307 sf_list_ = sf_list_dict
308 else:
309 raise TypeError(
310 "param sf_list_dict must be a list or a dictionary")
311 for sf in sf_list_:
312 del sf['port_pair_group_parameters']
313 sf['sfis'] = sf['port_pairs']
314 del sf['port_pairs']
315
316 def __sfp_os2mano(self, sfp_list_dict):
317 """Transform the openstack format (Port Chain) to mano format (SFP)
318 sfp_list_dict can be a list of dict or a single dict
319 """
320 if isinstance(sfp_list_dict, dict):
321 sfp_list_ = [sfp_list_dict]
322 elif isinstance(sfp_list_dict, list):
323 sfp_list_ = sfp_list_dict
324 else:
325 raise TypeError(
326 "param sfp_list_dict must be a list or a dictionary")
327 for sfp in sfp_list_:
328 params = sfp.pop('chain_parameters')
329 sfc_encap = False
330 if params:
331 correlation = params.get('correlation')
332 if correlation:
333 sfc_encap = True
334 sfp['sfc_encap'] = sfc_encap
335 sfp['spi'] = sfp.pop('chain_id')
336 sfp['classifications'] = sfp.pop('flow_classifiers')
337 sfp['service_functions'] = sfp.pop('port_pair_groups')
338
339 # placeholder for now; read TODO note below
340 def _validate_classification(self, type, definition):
341 # only legacy_flow_classifier Type is supported at this point
342 return True
343 # TODO(igordcard): this method should be an abstract method of an
344 # abstract Classification class to be implemented by the specific
345 # Types. Also, abstract vimconnector should call the validation
346 # method before the implemented VIM connectors are called.
347
tiernoae4a8d12016-07-08 12:30:39 +0200348 def _format_exception(self, exception):
349 '''Transform a keystone, nova, neutron exception into a vimconn exception'''
350 if isinstance(exception, (HTTPException, gl1Exceptions.HTTPException, gl1Exceptions.CommunicationError,
tierno8e995ce2016-09-22 08:13:00 +0000351 ConnectionError, ksExceptions.ConnectionError, neExceptions.ConnectionFailed
352 )):
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000353 raise vimconn.vimconnConnectionException(type(exception).__name__ + ": " + str(exception))
354 elif isinstance(exception, (nvExceptions.ClientException, ksExceptions.ClientException,
tiernoae4a8d12016-07-08 12:30:39 +0200355 neExceptions.NeutronException, nvExceptions.BadRequest)):
356 raise vimconn.vimconnUnexpectedResponse(type(exception).__name__ + ": " + str(exception))
357 elif isinstance(exception, (neExceptions.NetworkNotFoundClient, nvExceptions.NotFound)):
358 raise vimconn.vimconnNotFoundException(type(exception).__name__ + ": " + str(exception))
359 elif isinstance(exception, nvExceptions.Conflict):
360 raise vimconn.vimconnConflictException(type(exception).__name__ + ": " + str(exception))
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +0200361 elif isinstance(exception, vimconn.vimconnException):
tierno41a69812018-02-16 14:34:33 +0100362 raise exception
tiernof716aea2017-06-21 18:01:40 +0200363 else: # ()
tiernob84cbdc2017-07-07 14:30:30 +0200364 self.logger.error("General Exception " + str(exception), exc_info=True)
tiernoae4a8d12016-07-08 12:30:39 +0200365 raise vimconn.vimconnConnectionException(type(exception).__name__ + ": " + str(exception))
366
367 def get_tenant_list(self, filter_dict={}):
368 '''Obtain tenants of VIM
369 filter_dict can contain the following keys:
370 name: filter by tenant name
371 id: filter by tenant uuid/id
372 <other VIM specific>
373 Returns the tenant list of dictionaries: [{'name':'<name>, 'id':'<id>, ...}, ...]
374 '''
ahmadsa95baa272016-11-30 09:14:11 +0500375 self.logger.debug("Getting tenants from VIM filter: '%s'", str(filter_dict))
tiernoae4a8d12016-07-08 12:30:39 +0200376 try:
377 self._reload_connection()
tiernof716aea2017-06-21 18:01:40 +0200378 if self.api_version3:
379 project_class_list = self.keystone.projects.list(name=filter_dict.get("name"))
ahmadsa95baa272016-11-30 09:14:11 +0500380 else:
tiernof716aea2017-06-21 18:01:40 +0200381 project_class_list = self.keystone.tenants.findall(**filter_dict)
ahmadsa95baa272016-11-30 09:14:11 +0500382 project_list=[]
383 for project in project_class_list:
tiernof716aea2017-06-21 18:01:40 +0200384 if filter_dict.get('id') and filter_dict["id"] != project.id:
385 continue
ahmadsa95baa272016-11-30 09:14:11 +0500386 project_list.append(project.to_dict())
387 return project_list
tiernof716aea2017-06-21 18:01:40 +0200388 except (ksExceptions.ConnectionError, ksExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200389 self._format_exception(e)
390
391 def new_tenant(self, tenant_name, tenant_description):
392 '''Adds a new tenant to openstack VIM. Returns the tenant identifier'''
393 self.logger.debug("Adding a new tenant name: %s", tenant_name)
394 try:
395 self._reload_connection()
tiernof716aea2017-06-21 18:01:40 +0200396 if self.api_version3:
397 project = self.keystone.projects.create(tenant_name, self.config.get("project_domain_id", "default"),
398 description=tenant_description, is_domain=False)
ahmadsa95baa272016-11-30 09:14:11 +0500399 else:
tiernof716aea2017-06-21 18:01:40 +0200400 project = self.keystone.tenants.create(tenant_name, tenant_description)
ahmadsa95baa272016-11-30 09:14:11 +0500401 return project.id
tierno8e995ce2016-09-22 08:13:00 +0000402 except (ksExceptions.ConnectionError, ksExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200403 self._format_exception(e)
404
405 def delete_tenant(self, tenant_id):
406 '''Delete a tenant from openstack VIM. Returns the old tenant identifier'''
407 self.logger.debug("Deleting tenant %s from VIM", tenant_id)
408 try:
409 self._reload_connection()
tiernof716aea2017-06-21 18:01:40 +0200410 if self.api_version3:
ahmadsa95baa272016-11-30 09:14:11 +0500411 self.keystone.projects.delete(tenant_id)
412 else:
413 self.keystone.tenants.delete(tenant_id)
tiernoae4a8d12016-07-08 12:30:39 +0200414 return tenant_id
tierno8e995ce2016-09-22 08:13:00 +0000415 except (ksExceptions.ConnectionError, ksExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200416 self._format_exception(e)
ahmadsa95baa272016-11-30 09:14:11 +0500417
garciadeblas9f8456e2016-09-05 05:02:59 +0200418 def new_network(self,net_name, net_type, ip_profile=None, shared=False, vlan=None):
tiernoae4a8d12016-07-08 12:30:39 +0200419 '''Adds a tenant network to VIM. Returns the network identifier'''
420 self.logger.debug("Adding a new network to VIM name '%s', type '%s'", net_name, net_type)
garciadeblasedca7b32016-09-29 14:01:52 +0000421 #self.logger.debug(">>>>>>>>>>>>>>>>>> IP profile %s", str(ip_profile))
tierno7edb6752016-03-21 17:37:52 +0100422 try:
garciadeblasedca7b32016-09-29 14:01:52 +0000423 new_net = None
tierno7edb6752016-03-21 17:37:52 +0100424 self._reload_connection()
425 network_dict = {'name': net_name, 'admin_state_up': True}
426 if net_type=="data" or net_type=="ptp":
427 if self.config.get('dataplane_physical_net') == None:
tiernoae4a8d12016-07-08 12:30:39 +0200428 raise vimconn.vimconnConflictException("You must provide a 'dataplane_physical_net' at config value before creating sriov network")
tierno7edb6752016-03-21 17:37:52 +0100429 network_dict["provider:physical_network"] = self.config['dataplane_physical_net'] #"physnet_sriov" #TODO physical
430 network_dict["provider:network_type"] = "vlan"
431 if vlan!=None:
432 network_dict["provider:network_type"] = vlan
kate721d79b2017-06-24 04:21:38 -0700433
434 ####### VIO Specific Changes #########
435 if self.vim_type == "VIO":
436 if vlan is not None:
437 network_dict["provider:segmentation_id"] = vlan
438 else:
439 if self.config.get('dataplane_net_vlan_range') is None:
440 raise vimconn.vimconnConflictException("You must provide "\
441 "'dataplane_net_vlan_range' in format [start_ID - end_ID]"\
442 "at config value before creating sriov network with vlan tag")
443
444 network_dict["provider:segmentation_id"] = self._genrate_vlanID()
445
tiernoae4a8d12016-07-08 12:30:39 +0200446 network_dict["shared"]=shared
tierno7edb6752016-03-21 17:37:52 +0100447 new_net=self.neutron.create_network({'network':network_dict})
448 #print new_net
garciadeblas9f8456e2016-09-05 05:02:59 +0200449 #create subnetwork, even if there is no profile
450 if not ip_profile:
451 ip_profile = {}
tierno41a69812018-02-16 14:34:33 +0100452 if not ip_profile.get('subnet_address'):
garciadeblas2299e3b2017-01-26 14:35:55 +0000453 #Fake subnet is required
454 subnet_rand = random.randint(0, 255)
455 ip_profile['subnet_address'] = "192.168.{}.0/24".format(subnet_rand)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000456 if 'ip_version' not in ip_profile:
garciadeblas9f8456e2016-09-05 05:02:59 +0200457 ip_profile['ip_version'] = "IPv4"
tiernoa1fb4462017-06-30 12:25:50 +0200458 subnet = {"name":net_name+"-subnet",
tierno7edb6752016-03-21 17:37:52 +0100459 "network_id": new_net["network"]["id"],
garciadeblas9f8456e2016-09-05 05:02:59 +0200460 "ip_version": 4 if ip_profile['ip_version']=="IPv4" else 6,
461 "cidr": ip_profile['subnet_address']
tierno7edb6752016-03-21 17:37:52 +0100462 }
tiernoa1fb4462017-06-30 12:25:50 +0200463 # Gateway should be set to None if not needed. Otherwise openstack assigns one by default
tierno41a69812018-02-16 14:34:33 +0100464 if ip_profile.get('gateway_address'):
tierno55d234c2018-07-04 18:29:21 +0200465 subnet['gateway_ip'] = ip_profile['gateway_address']
466 else:
467 subnet['gateway_ip'] = None
garciadeblasedca7b32016-09-29 14:01:52 +0000468 if ip_profile.get('dns_address'):
tierno455612d2017-05-30 16:40:10 +0200469 subnet['dns_nameservers'] = ip_profile['dns_address'].split(";")
garciadeblas9f8456e2016-09-05 05:02:59 +0200470 if 'dhcp_enabled' in ip_profile:
tierno41a69812018-02-16 14:34:33 +0100471 subnet['enable_dhcp'] = False if \
472 ip_profile['dhcp_enabled']=="false" or ip_profile['dhcp_enabled']==False else True
473 if ip_profile.get('dhcp_start_address'):
tiernoa1fb4462017-06-30 12:25:50 +0200474 subnet['allocation_pools'] = []
garciadeblas9f8456e2016-09-05 05:02:59 +0200475 subnet['allocation_pools'].append(dict())
476 subnet['allocation_pools'][0]['start'] = ip_profile['dhcp_start_address']
tierno41a69812018-02-16 14:34:33 +0100477 if ip_profile.get('dhcp_count'):
garciadeblas9f8456e2016-09-05 05:02:59 +0200478 #parts = ip_profile['dhcp_start_address'].split('.')
479 #ip_int = (int(parts[0]) << 24) + (int(parts[1]) << 16) + (int(parts[2]) << 8) + int(parts[3])
480 ip_int = int(netaddr.IPAddress(ip_profile['dhcp_start_address']))
garciadeblas21d795b2016-09-29 17:31:46 +0200481 ip_int += ip_profile['dhcp_count'] - 1
garciadeblas9f8456e2016-09-05 05:02:59 +0200482 ip_str = str(netaddr.IPAddress(ip_int))
483 subnet['allocation_pools'][0]['end'] = ip_str
garciadeblasedca7b32016-09-29 14:01:52 +0000484 #self.logger.debug(">>>>>>>>>>>>>>>>>> Subnet: %s", str(subnet))
tierno7edb6752016-03-21 17:37:52 +0100485 self.neutron.create_subnet({"subnet": subnet} )
tiernoae4a8d12016-07-08 12:30:39 +0200486 return new_net["network"]["id"]
tierno41a69812018-02-16 14:34:33 +0100487 except Exception as e:
garciadeblasedca7b32016-09-29 14:01:52 +0000488 if new_net:
489 self.neutron.delete_network(new_net['network']['id'])
tiernoae4a8d12016-07-08 12:30:39 +0200490 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100491
492 def get_network_list(self, filter_dict={}):
493 '''Obtain tenant networks of VIM
494 Filter_dict can be:
495 name: network name
496 id: network uuid
497 shared: boolean
498 tenant_id: tenant
499 admin_state_up: boolean
500 status: 'ACTIVE'
501 Returns the network list of dictionaries
502 '''
tiernoae4a8d12016-07-08 12:30:39 +0200503 self.logger.debug("Getting network from VIM filter: '%s'", str(filter_dict))
tierno7edb6752016-03-21 17:37:52 +0100504 try:
505 self._reload_connection()
tierno69b590e2018-03-13 18:52:23 +0100506 filter_dict_os = filter_dict.copy()
507 if self.api_version3 and "tenant_id" in filter_dict_os:
508 filter_dict_os['project_id'] = filter_dict_os.pop('tenant_id') #T ODO check
509 net_dict = self.neutron.list_networks(**filter_dict_os)
tierno00e3df72017-11-29 17:20:13 +0100510 net_list = net_dict["networks"]
tierno7edb6752016-03-21 17:37:52 +0100511 self.__net_os2mano(net_list)
tiernoae4a8d12016-07-08 12:30:39 +0200512 return net_list
tierno8e995ce2016-09-22 08:13:00 +0000513 except (neExceptions.ConnectionFailed, ksExceptions.ClientException, neExceptions.NeutronException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200514 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100515
tiernoae4a8d12016-07-08 12:30:39 +0200516 def get_network(self, net_id):
517 '''Obtain details of network from VIM
518 Returns the network information from a network id'''
519 self.logger.debug(" Getting tenant network %s from VIM", net_id)
tierno7edb6752016-03-21 17:37:52 +0100520 filter_dict={"id": net_id}
tiernoae4a8d12016-07-08 12:30:39 +0200521 net_list = self.get_network_list(filter_dict)
tierno7edb6752016-03-21 17:37:52 +0100522 if len(net_list)==0:
tiernoae4a8d12016-07-08 12:30:39 +0200523 raise vimconn.vimconnNotFoundException("Network '{}' not found".format(net_id))
tierno7edb6752016-03-21 17:37:52 +0100524 elif len(net_list)>1:
tiernoae4a8d12016-07-08 12:30:39 +0200525 raise vimconn.vimconnConflictException("Found more than one network with this criteria")
tierno7edb6752016-03-21 17:37:52 +0100526 net = net_list[0]
527 subnets=[]
528 for subnet_id in net.get("subnets", () ):
529 try:
530 subnet = self.neutron.show_subnet(subnet_id)
531 except Exception as e:
tiernoae4a8d12016-07-08 12:30:39 +0200532 self.logger.error("osconnector.get_network(): Error getting subnet %s %s" % (net_id, str(e)))
533 subnet = {"id": subnet_id, "fault": str(e)}
tierno7edb6752016-03-21 17:37:52 +0100534 subnets.append(subnet)
535 net["subnets"] = subnets
Pablo Montes Moreno51e553b2017-03-23 16:39:12 +0100536 net["encapsulation"] = net.get('provider:network_type')
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100537 net["segmentation_id"] = net.get('provider:segmentation_id')
tiernoae4a8d12016-07-08 12:30:39 +0200538 return net
tierno7edb6752016-03-21 17:37:52 +0100539
tiernoae4a8d12016-07-08 12:30:39 +0200540 def delete_network(self, net_id):
541 '''Deletes a tenant network from VIM. Returns the old network identifier'''
542 self.logger.debug("Deleting network '%s' from VIM", net_id)
tierno7edb6752016-03-21 17:37:52 +0100543 try:
544 self._reload_connection()
545 #delete VM ports attached to this networks before the network
546 ports = self.neutron.list_ports(network_id=net_id)
547 for p in ports['ports']:
548 try:
549 self.neutron.delete_port(p["id"])
550 except Exception as e:
tiernoae4a8d12016-07-08 12:30:39 +0200551 self.logger.error("Error deleting port %s: %s", p["id"], str(e))
tierno7edb6752016-03-21 17:37:52 +0100552 self.neutron.delete_network(net_id)
tiernoae4a8d12016-07-08 12:30:39 +0200553 return net_id
554 except (neExceptions.ConnectionFailed, neExceptions.NetworkNotFoundClient, neExceptions.NeutronException,
tierno8e995ce2016-09-22 08:13:00 +0000555 ksExceptions.ClientException, neExceptions.NeutronException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200556 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100557
tiernoae4a8d12016-07-08 12:30:39 +0200558 def refresh_nets_status(self, net_list):
559 '''Get the status of the networks
560 Params: the list of network identifiers
561 Returns a dictionary with:
562 net_id: #VIM id of this network
563 status: #Mandatory. Text with one of:
564 # DELETED (not found at vim)
565 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
566 # OTHER (Vim reported other status not understood)
567 # ERROR (VIM indicates an ERROR status)
568 # ACTIVE, INACTIVE, DOWN (admin down),
569 # BUILD (on building process)
570 #
571 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
572 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
573
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000574 '''
tiernoae4a8d12016-07-08 12:30:39 +0200575 net_dict={}
576 for net_id in net_list:
577 net = {}
578 try:
579 net_vim = self.get_network(net_id)
580 if net_vim['status'] in netStatus2manoFormat:
581 net["status"] = netStatus2manoFormat[ net_vim['status'] ]
582 else:
583 net["status"] = "OTHER"
584 net["error_msg"] = "VIM status reported " + net_vim['status']
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000585
tierno8e995ce2016-09-22 08:13:00 +0000586 if net['status'] == "ACTIVE" and not net_vim['admin_state_up']:
tiernoae4a8d12016-07-08 12:30:39 +0200587 net['status'] = 'DOWN'
tierno8e995ce2016-09-22 08:13:00 +0000588 try:
589 net['vim_info'] = yaml.safe_dump(net_vim, default_flow_style=True, width=256)
590 except yaml.representer.RepresenterError:
591 net['vim_info'] = str(net_vim)
tiernoae4a8d12016-07-08 12:30:39 +0200592 if net_vim.get('fault'): #TODO
593 net['error_msg'] = str(net_vim['fault'])
594 except vimconn.vimconnNotFoundException as e:
595 self.logger.error("Exception getting net status: %s", str(e))
596 net['status'] = "DELETED"
597 net['error_msg'] = str(e)
598 except vimconn.vimconnException as e:
599 self.logger.error("Exception getting net status: %s", str(e))
600 net['status'] = "VIM_ERROR"
601 net['error_msg'] = str(e)
602 net_dict[net_id] = net
603 return net_dict
604
605 def get_flavor(self, flavor_id):
606 '''Obtain flavor details from the VIM. Returns the flavor dict details'''
607 self.logger.debug("Getting flavor '%s'", flavor_id)
tierno7edb6752016-03-21 17:37:52 +0100608 try:
609 self._reload_connection()
610 flavor = self.nova.flavors.find(id=flavor_id)
611 #TODO parse input and translate to VIM format (openmano_schemas.new_vminstance_response_schema)
tiernoae4a8d12016-07-08 12:30:39 +0200612 return flavor.to_dict()
tierno8e995ce2016-09-22 08:13:00 +0000613 except (nvExceptions.NotFound, nvExceptions.ClientException, ksExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200614 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100615
tiernocf157a82017-01-30 14:07:06 +0100616 def get_flavor_id_from_data(self, flavor_dict):
617 """Obtain flavor id that match the flavor description
618 Returns the flavor_id or raises a vimconnNotFoundException
tiernoe26fc7a2017-05-30 14:43:03 +0200619 flavor_dict: contains the required ram, vcpus, disk
620 If 'use_existing_flavors' is set to True at config, the closer flavor that provides same or more ram, vcpus
621 and disk is returned. Otherwise a flavor with exactly same ram, vcpus and disk is returned or a
622 vimconnNotFoundException is raised
tiernocf157a82017-01-30 14:07:06 +0100623 """
tiernoe26fc7a2017-05-30 14:43:03 +0200624 exact_match = False if self.config.get('use_existing_flavors') else True
tiernocf157a82017-01-30 14:07:06 +0100625 try:
626 self._reload_connection()
tiernoe26fc7a2017-05-30 14:43:03 +0200627 flavor_candidate_id = None
628 flavor_candidate_data = (10000, 10000, 10000)
629 flavor_target = (flavor_dict["ram"], flavor_dict["vcpus"], flavor_dict["disk"])
630 # numa=None
631 numas = flavor_dict.get("extended", {}).get("numas")
tiernocf157a82017-01-30 14:07:06 +0100632 if numas:
633 #TODO
634 raise vimconn.vimconnNotFoundException("Flavor with EPA still not implemted")
635 # if len(numas) > 1:
636 # raise vimconn.vimconnNotFoundException("Cannot find any flavor with more than one numa")
637 # numa=numas[0]
638 # numas = extended.get("numas")
639 for flavor in self.nova.flavors.list():
640 epa = flavor.get_keys()
641 if epa:
642 continue
tiernoe26fc7a2017-05-30 14:43:03 +0200643 # TODO
644 flavor_data = (flavor.ram, flavor.vcpus, flavor.disk)
645 if flavor_data == flavor_target:
646 return flavor.id
647 elif not exact_match and flavor_target < flavor_data < flavor_candidate_data:
648 flavor_candidate_id = flavor.id
649 flavor_candidate_data = flavor_data
650 if not exact_match and flavor_candidate_id:
651 return flavor_candidate_id
tiernocf157a82017-01-30 14:07:06 +0100652 raise vimconn.vimconnNotFoundException("Cannot find any flavor matching '{}'".format(str(flavor_dict)))
653 except (nvExceptions.NotFound, nvExceptions.ClientException, ksExceptions.ClientException, ConnectionError) as e:
654 self._format_exception(e)
655
tiernoae4a8d12016-07-08 12:30:39 +0200656 def new_flavor(self, flavor_data, change_name_if_used=True):
tierno7edb6752016-03-21 17:37:52 +0100657 '''Adds a tenant flavor to openstack VIM
tiernoae4a8d12016-07-08 12:30:39 +0200658 if change_name_if_used is True, it will change name in case of conflict, because it is not supported name repetition
tierno7edb6752016-03-21 17:37:52 +0100659 Returns the flavor identifier
660 '''
tiernoae4a8d12016-07-08 12:30:39 +0200661 self.logger.debug("Adding flavor '%s'", str(flavor_data))
tierno7edb6752016-03-21 17:37:52 +0100662 retry=0
tiernoae4a8d12016-07-08 12:30:39 +0200663 max_retries=3
tierno7edb6752016-03-21 17:37:52 +0100664 name_suffix = 0
tiernoae4a8d12016-07-08 12:30:39 +0200665 name=flavor_data['name']
666 while retry<max_retries:
tierno7edb6752016-03-21 17:37:52 +0100667 retry+=1
668 try:
669 self._reload_connection()
670 if change_name_if_used:
671 #get used names
672 fl_names=[]
673 fl=self.nova.flavors.list()
674 for f in fl:
675 fl_names.append(f.name)
676 while name in fl_names:
677 name_suffix += 1
tiernoae4a8d12016-07-08 12:30:39 +0200678 name = flavor_data['name']+"-" + str(name_suffix)
kate721d79b2017-06-24 04:21:38 -0700679
tiernoae4a8d12016-07-08 12:30:39 +0200680 ram = flavor_data.get('ram',64)
681 vcpus = flavor_data.get('vcpus',1)
tierno7edb6752016-03-21 17:37:52 +0100682 numa_properties=None
683
tiernoae4a8d12016-07-08 12:30:39 +0200684 extended = flavor_data.get("extended")
tierno7edb6752016-03-21 17:37:52 +0100685 if extended:
686 numas=extended.get("numas")
687 if numas:
688 numa_nodes = len(numas)
689 if numa_nodes > 1:
690 return -1, "Can not add flavor with more than one numa"
691 numa_properties = {"hw:numa_nodes":str(numa_nodes)}
692 numa_properties["hw:mem_page_size"] = "large"
693 numa_properties["hw:cpu_policy"] = "dedicated"
694 numa_properties["hw:numa_mempolicy"] = "strict"
kate721d79b2017-06-24 04:21:38 -0700695 if self.vim_type == "VIO":
696 numa_properties["vmware:extra_config"] = '{"numa.nodeAffinity":"0"}'
697 numa_properties["vmware:latency_sensitivity_level"] = "high"
tierno7edb6752016-03-21 17:37:52 +0100698 for numa in numas:
699 #overwrite ram and vcpus
dhumalae3b28d2017-11-22 21:41:41 -0800700 #check if key 'memory' is present in numa else use ram value at flavor
701 if 'memory' in numa:
702 ram = numa['memory']*1024
Pablo Montes Morenoea1d6232017-05-24 11:33:24 +0200703 #See for reference: https://specs.openstack.org/openstack/nova-specs/specs/mitaka/implemented/virt-driver-cpu-thread-pinning.html
tierno7edb6752016-03-21 17:37:52 +0100704 if 'paired-threads' in numa:
705 vcpus = numa['paired-threads']*2
Pablo Montes Morenoea1d6232017-05-24 11:33:24 +0200706 #cpu_thread_policy "require" implies that the compute node must have an STM architecture
707 numa_properties["hw:cpu_thread_policy"] = "require"
708 numa_properties["hw:cpu_policy"] = "dedicated"
tierno7edb6752016-03-21 17:37:52 +0100709 elif 'cores' in numa:
710 vcpus = numa['cores']
Pablo Montes Morenoea1d6232017-05-24 11:33:24 +0200711 # cpu_thread_policy "prefer" implies that the host must not have an SMT architecture, or a non-SMT architecture will be emulated
712 numa_properties["hw:cpu_thread_policy"] = "isolate"
713 numa_properties["hw:cpu_policy"] = "dedicated"
tierno7edb6752016-03-21 17:37:52 +0100714 elif 'threads' in numa:
715 vcpus = numa['threads']
Pablo Montes Morenoea1d6232017-05-24 11:33:24 +0200716 # cpu_thread_policy "prefer" implies that the host may or may not have an SMT architecture
717 numa_properties["hw:cpu_thread_policy"] = "prefer"
718 numa_properties["hw:cpu_policy"] = "dedicated"
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +0200719 # for interface in numa.get("interfaces",() ):
720 # if interface["dedicated"]=="yes":
721 # raise vimconn.vimconnException("Passthrough interfaces are not supported for the openstack connector", http_code=vimconn.HTTP_Service_Unavailable)
722 # #TODO, add the key 'pci_passthrough:alias"="<label at config>:<number ifaces>"' when a way to connect it is available
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000723
tierno7edb6752016-03-21 17:37:52 +0100724 #create flavor
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000725 new_flavor=self.nova.flavors.create(name,
726 ram,
727 vcpus,
garciadeblas79d1a1a2017-12-11 16:07:07 +0100728 flavor_data.get('disk',0),
tiernoae4a8d12016-07-08 12:30:39 +0200729 is_public=flavor_data.get('is_public', True)
kate721d79b2017-06-24 04:21:38 -0700730 )
tierno7edb6752016-03-21 17:37:52 +0100731 #add metadata
732 if numa_properties:
733 new_flavor.set_keys(numa_properties)
tiernoae4a8d12016-07-08 12:30:39 +0200734 return new_flavor.id
tierno7edb6752016-03-21 17:37:52 +0100735 except nvExceptions.Conflict as e:
tiernoae4a8d12016-07-08 12:30:39 +0200736 if change_name_if_used and retry < max_retries:
tierno7edb6752016-03-21 17:37:52 +0100737 continue
tiernoae4a8d12016-07-08 12:30:39 +0200738 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100739 #except nvExceptions.BadRequest as e:
740 except (ksExceptions.ClientException, nvExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200741 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100742
tiernoae4a8d12016-07-08 12:30:39 +0200743 def delete_flavor(self,flavor_id):
744 '''Deletes a tenant flavor from openstack VIM. Returns the old flavor_id
tierno7edb6752016-03-21 17:37:52 +0100745 '''
tiernoae4a8d12016-07-08 12:30:39 +0200746 try:
747 self._reload_connection()
748 self.nova.flavors.delete(flavor_id)
749 return flavor_id
750 #except nvExceptions.BadRequest as e:
tierno8e995ce2016-09-22 08:13:00 +0000751 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200752 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100753
tiernoae4a8d12016-07-08 12:30:39 +0200754 def new_image(self,image_dict):
tierno7edb6752016-03-21 17:37:52 +0100755 '''
tiernoae4a8d12016-07-08 12:30:39 +0200756 Adds a tenant image to VIM. imge_dict is a dictionary with:
757 name: name
758 disk_format: qcow2, vhd, vmdk, raw (by default), ...
759 location: path or URI
760 public: "yes" or "no"
761 metadata: metadata of the image
762 Returns the image_id
tierno7edb6752016-03-21 17:37:52 +0100763 '''
tiernoae4a8d12016-07-08 12:30:39 +0200764 retry=0
765 max_retries=3
766 while retry<max_retries:
tierno7edb6752016-03-21 17:37:52 +0100767 retry+=1
768 try:
769 self._reload_connection()
770 #determine format http://docs.openstack.org/developer/glance/formats.html
771 if "disk_format" in image_dict:
772 disk_format=image_dict["disk_format"]
garciadeblas14480452017-01-10 13:08:07 +0100773 else: #autodiscover based on extension
tierno1beea862018-07-11 15:47:37 +0200774 if image_dict['location'].endswith(".qcow2"):
tierno7edb6752016-03-21 17:37:52 +0100775 disk_format="qcow2"
tierno1beea862018-07-11 15:47:37 +0200776 elif image_dict['location'].endswith(".vhd"):
tierno7edb6752016-03-21 17:37:52 +0100777 disk_format="vhd"
tierno1beea862018-07-11 15:47:37 +0200778 elif image_dict['location'].endswith(".vmdk"):
tierno7edb6752016-03-21 17:37:52 +0100779 disk_format="vmdk"
tierno1beea862018-07-11 15:47:37 +0200780 elif image_dict['location'].endswith(".vdi"):
tierno7edb6752016-03-21 17:37:52 +0100781 disk_format="vdi"
tierno1beea862018-07-11 15:47:37 +0200782 elif image_dict['location'].endswith(".iso"):
tierno7edb6752016-03-21 17:37:52 +0100783 disk_format="iso"
tierno1beea862018-07-11 15:47:37 +0200784 elif image_dict['location'].endswith(".aki"):
tierno7edb6752016-03-21 17:37:52 +0100785 disk_format="aki"
tierno1beea862018-07-11 15:47:37 +0200786 elif image_dict['location'].endswith(".ari"):
tierno7edb6752016-03-21 17:37:52 +0100787 disk_format="ari"
tierno1beea862018-07-11 15:47:37 +0200788 elif image_dict['location'].endswith(".ami"):
tierno7edb6752016-03-21 17:37:52 +0100789 disk_format="ami"
790 else:
791 disk_format="raw"
tiernoae4a8d12016-07-08 12:30:39 +0200792 self.logger.debug("new_image: '%s' loading from '%s'", image_dict['name'], image_dict['location'])
tierno1beea862018-07-11 15:47:37 +0200793 new_image = self.glance.images.create(name=image_dict['name'])
794 if image_dict['location'].startswith("http"):
795 # TODO there is not a method to direct download. It must be downloaded locally with requests
796 raise vimconn.vimconnNotImplemented("Cannot create image from URL")
tierno7edb6752016-03-21 17:37:52 +0100797 else: #local path
798 with open(image_dict['location']) as fimage:
tierno1beea862018-07-11 15:47:37 +0200799 self.glance.images.upload(new_image.id, fimage)
800 #new_image = self.glancev1.images.create(name=image_dict['name'], is_public=image_dict.get('public',"yes")=="yes",
801 # container_format="bare", data=fimage, disk_format=disk_format)
tierno7edb6752016-03-21 17:37:52 +0100802 metadata_to_load = image_dict.get('metadata')
tierno1beea862018-07-11 15:47:37 +0200803 #TODO location is a reserved word for current openstack versions. Use another word
804 metadata_to_load['location'] = image_dict['location']
805 self.glance.images.update(new_image.id, **metadata_to_load)
tiernoae4a8d12016-07-08 12:30:39 +0200806 return new_image.id
807 except (nvExceptions.Conflict, ksExceptions.ClientException, nvExceptions.ClientException) as e:
808 self._format_exception(e)
tierno8e995ce2016-09-22 08:13:00 +0000809 except (HTTPException, gl1Exceptions.HTTPException, gl1Exceptions.CommunicationError, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200810 if retry==max_retries:
811 continue
812 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100813 except IOError as e: #can not open the file
tiernoae4a8d12016-07-08 12:30:39 +0200814 raise vimconn.vimconnConnectionException(type(e).__name__ + ": " + str(e)+ " for " + image_dict['location'],
815 http_code=vimconn.HTTP_Bad_Request)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000816
tiernoae4a8d12016-07-08 12:30:39 +0200817 def delete_image(self, image_id):
818 '''Deletes a tenant image from openstack VIM. Returns the old id
tierno7edb6752016-03-21 17:37:52 +0100819 '''
tiernoae4a8d12016-07-08 12:30:39 +0200820 try:
821 self._reload_connection()
tierno1beea862018-07-11 15:47:37 +0200822 self.glance.images.delete(image_id)
tiernoae4a8d12016-07-08 12:30:39 +0200823 return image_id
tierno8e995ce2016-09-22 08:13:00 +0000824 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException, gl1Exceptions.CommunicationError, ConnectionError) as e: #TODO remove
tiernoae4a8d12016-07-08 12:30:39 +0200825 self._format_exception(e)
826
827 def get_image_id_from_path(self, path):
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000828 '''Get the image id from image path in the VIM database. Returns the image_id'''
tiernoae4a8d12016-07-08 12:30:39 +0200829 try:
830 self._reload_connection()
tierno1beea862018-07-11 15:47:37 +0200831 images = self.glance.images.list()
tiernoae4a8d12016-07-08 12:30:39 +0200832 for image in images:
833 if image.metadata.get("location")==path:
834 return image.id
835 raise vimconn.vimconnNotFoundException("image with location '{}' not found".format( path))
tierno8e995ce2016-09-22 08:13:00 +0000836 except (ksExceptions.ClientException, nvExceptions.ClientException, gl1Exceptions.CommunicationError, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200837 self._format_exception(e)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000838
garciadeblasb69fa9f2016-09-28 12:04:10 +0200839 def get_image_list(self, filter_dict={}):
840 '''Obtain tenant images from VIM
841 Filter_dict can be:
842 id: image id
843 name: image name
844 checksum: image checksum
845 Returns the image list of dictionaries:
846 [{<the fields at Filter_dict plus some VIM specific>}, ...]
847 List can be empty
848 '''
849 self.logger.debug("Getting image list from VIM filter: '%s'", str(filter_dict))
850 try:
851 self._reload_connection()
tierno69b590e2018-03-13 18:52:23 +0100852 filter_dict_os = filter_dict.copy()
garciadeblasb69fa9f2016-09-28 12:04:10 +0200853 #First we filter by the available filter fields: name, id. The others are removed.
tierno1beea862018-07-11 15:47:37 +0200854 image_list = self.glance.images.list()
garciadeblasb69fa9f2016-09-28 12:04:10 +0200855 filtered_list = []
856 for image in image_list:
tierno3cb8dc32017-10-24 18:13:19 +0200857 try:
tierno1beea862018-07-11 15:47:37 +0200858 if filter_dict.get("name") and image["name"] != filter_dict["name"]:
859 continue
860 if filter_dict.get("id") and image["id"] != filter_dict["id"]:
861 continue
862 if filter_dict.get("checksum") and image["checksum"] != filter_dict["checksum"]:
863 continue
864
865 filtered_list.append(image.copy())
tierno3cb8dc32017-10-24 18:13:19 +0200866 except gl1Exceptions.HTTPNotFound:
867 pass
garciadeblasb69fa9f2016-09-28 12:04:10 +0200868 return filtered_list
869 except (ksExceptions.ClientException, nvExceptions.ClientException, gl1Exceptions.CommunicationError, ConnectionError) as e:
870 self._format_exception(e)
871
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +0200872 def __wait_for_vm(self, vm_id, status):
873 """wait until vm is in the desired status and return True.
874 If the VM gets in ERROR status, return false.
875 If the timeout is reached generate an exception"""
876 elapsed_time = 0
877 while elapsed_time < server_timeout:
878 vm_status = self.nova.servers.get(vm_id).status
879 if vm_status == status:
880 return True
881 if vm_status == 'ERROR':
882 return False
tierno1df468d2018-07-06 14:25:16 +0200883 time.sleep(5)
884 elapsed_time += 5
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +0200885
886 # if we exceeded the timeout rollback
887 if elapsed_time >= server_timeout:
888 raise vimconn.vimconnException('Timeout waiting for instance ' + vm_id + ' to get ' + status,
889 http_code=vimconn.HTTP_Request_Timeout)
890
mirabal29356312017-07-27 12:21:22 +0200891 def _get_openstack_availablity_zones(self):
892 """
893 Get from openstack availability zones available
894 :return:
895 """
896 try:
897 openstack_availability_zone = self.nova.availability_zones.list()
898 openstack_availability_zone = [str(zone.zoneName) for zone in openstack_availability_zone
899 if zone.zoneName != 'internal']
900 return openstack_availability_zone
901 except Exception as e:
902 return None
903
904 def _set_availablity_zones(self):
905 """
906 Set vim availablity zone
907 :return:
908 """
909
910 if 'availability_zone' in self.config:
911 vim_availability_zones = self.config.get('availability_zone')
912 if isinstance(vim_availability_zones, str):
913 self.availability_zone = [vim_availability_zones]
914 elif isinstance(vim_availability_zones, list):
915 self.availability_zone = vim_availability_zones
916 else:
917 self.availability_zone = self._get_openstack_availablity_zones()
918
tierno5a3273c2017-08-29 11:43:46 +0200919 def _get_vm_availability_zone(self, availability_zone_index, availability_zone_list):
mirabal29356312017-07-27 12:21:22 +0200920 """
tierno5a3273c2017-08-29 11:43:46 +0200921 Return thge availability zone to be used by the created VM.
922 :return: The VIM availability zone to be used or None
mirabal29356312017-07-27 12:21:22 +0200923 """
tierno5a3273c2017-08-29 11:43:46 +0200924 if availability_zone_index is None:
925 if not self.config.get('availability_zone'):
926 return None
927 elif isinstance(self.config.get('availability_zone'), str):
928 return self.config['availability_zone']
929 else:
930 # TODO consider using a different parameter at config for default AV and AV list match
931 return self.config['availability_zone'][0]
mirabal29356312017-07-27 12:21:22 +0200932
tierno5a3273c2017-08-29 11:43:46 +0200933 vim_availability_zones = self.availability_zone
934 # check if VIM offer enough availability zones describe in the VNFD
935 if vim_availability_zones and len(availability_zone_list) <= len(vim_availability_zones):
936 # check if all the names of NFV AV match VIM AV names
937 match_by_index = False
938 for av in availability_zone_list:
939 if av not in vim_availability_zones:
940 match_by_index = True
941 break
942 if match_by_index:
943 return vim_availability_zones[availability_zone_index]
944 else:
945 return availability_zone_list[availability_zone_index]
mirabal29356312017-07-27 12:21:22 +0200946 else:
tierno5a3273c2017-08-29 11:43:46 +0200947 raise vimconn.vimconnConflictException("No enough availability zones at VIM for this deployment")
mirabal29356312017-07-27 12:21:22 +0200948
tierno5a3273c2017-08-29 11:43:46 +0200949 def new_vminstance(self, name, description, start, image_id, flavor_id, net_list, cloud_config=None, disk_list=None,
950 availability_zone_index=None, availability_zone_list=None):
tierno98e909c2017-10-14 13:27:03 +0200951 """Adds a VM instance to VIM
tierno7edb6752016-03-21 17:37:52 +0100952 Params:
953 start: indicates if VM must start or boot in pause mode. Ignored
954 image_id,flavor_id: iamge and flavor uuid
955 net_list: list of interfaces, each one is a dictionary with:
956 name:
957 net_id: network uuid to connect
958 vpci: virtual vcpi to assign, ignored because openstack lack #TODO
959 model: interface model, ignored #TODO
960 mac_address: used for SR-IOV ifaces #TODO for other types
961 use: 'data', 'bridge', 'mgmt'
tierno66eba6e2017-11-10 17:09:18 +0100962 type: 'virtual', 'PCI-PASSTHROUGH'('PF'), 'SR-IOV'('VF'), 'VFnotShared'
tierno7edb6752016-03-21 17:37:52 +0100963 vim_id: filled/added by this function
ahmadsaf853d452016-12-22 11:33:47 +0500964 floating_ip: True/False (or it can be None)
tierno41a69812018-02-16 14:34:33 +0100965 'cloud_config': (optional) dictionary with:
966 'key-pairs': (optional) list of strings with the public key to be inserted to the default user
967 'users': (optional) list of users to be inserted, each item is a dict with:
968 'name': (mandatory) user name,
969 'key-pairs': (optional) list of strings with the public key to be inserted to the user
970 'user-data': (optional) string is a text script to be passed directly to cloud-init
971 'config-files': (optional). List of files to be transferred. Each item is a dict with:
972 'dest': (mandatory) string with the destination absolute path
973 'encoding': (optional, by default text). Can be one of:
974 'b64', 'base64', 'gz', 'gz+b64', 'gz+base64', 'gzip+b64', 'gzip+base64'
975 'content' (mandatory): string with the content of the file
976 'permissions': (optional) string with file permissions, typically octal notation '0644'
977 'owner': (optional) file owner, string with the format 'owner:group'
978 'boot-data-drive': boolean to indicate if user-data must be passed using a boot drive (hard disk)
mirabal29356312017-07-27 12:21:22 +0200979 'disk_list': (optional) list with additional disks to the VM. Each item is a dict with:
980 'image_id': (optional). VIM id of an existing image. If not provided an empty disk must be mounted
981 'size': (mandatory) string with the size of the disk in GB
tierno1df468d2018-07-06 14:25:16 +0200982 'vim_id' (optional) should use this existing volume id
tierno5a3273c2017-08-29 11:43:46 +0200983 availability_zone_index: Index of availability_zone_list to use for this this VM. None if not AV required
984 availability_zone_list: list of availability zones given by user in the VNFD descriptor. Ignore if
985 availability_zone_index is None
tierno7edb6752016-03-21 17:37:52 +0100986 #TODO ip, security groups
tierno98e909c2017-10-14 13:27:03 +0200987 Returns a tuple with the instance identifier and created_items or raises an exception on error
988 created_items can be None or a dictionary where this method can include key-values that will be passed to
989 the method delete_vminstance and action_vminstance. Can be used to store created ports, volumes, etc.
990 Format is vimconnector dependent, but do not use nested dictionaries and a value of None should be the same
991 as not present.
992 """
tiernofa51c202017-01-27 14:58:17 +0100993 self.logger.debug("new_vminstance input: image='%s' flavor='%s' nics='%s'",image_id, flavor_id,str(net_list))
tierno7edb6752016-03-21 17:37:52 +0100994 try:
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +0200995 server = None
tierno98e909c2017-10-14 13:27:03 +0200996 created_items = {}
tiernob0b9dab2017-10-14 14:25:20 +0200997 # metadata = {}
tierno98e909c2017-10-14 13:27:03 +0200998 net_list_vim = []
999 external_network = [] # list of external networks to be connected to instance, later on used to create floating_ip
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001000 no_secured_ports = [] # List of port-is with port-security disabled
tierno7edb6752016-03-21 17:37:52 +01001001 self._reload_connection()
tiernob0b9dab2017-10-14 14:25:20 +02001002 # metadata_vpci = {} # For a specific neutron plugin
tiernob84cbdc2017-07-07 14:30:30 +02001003 block_device_mapping = None
tierno7edb6752016-03-21 17:37:52 +01001004 for net in net_list:
tierno98e909c2017-10-14 13:27:03 +02001005 if not net.get("net_id"): # skip non connected iface
tierno7edb6752016-03-21 17:37:52 +01001006 continue
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +02001007
1008 port_dict={
1009 "network_id": net["net_id"],
1010 "name": net.get("name"),
1011 "admin_state_up": True
1012 }
1013 if net["type"]=="virtual":
tiernob0b9dab2017-10-14 14:25:20 +02001014 pass
1015 # if "vpci" in net:
1016 # metadata_vpci[ net["net_id"] ] = [[ net["vpci"], "" ]]
tierno66eba6e2017-11-10 17:09:18 +01001017 elif net["type"] == "VF" or net["type"] == "SR-IOV": # for VF
tiernob0b9dab2017-10-14 14:25:20 +02001018 # if "vpci" in net:
1019 # if "VF" not in metadata_vpci:
1020 # metadata_vpci["VF"]=[]
1021 # metadata_vpci["VF"].append([ net["vpci"], "" ])
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +02001022 port_dict["binding:vnic_type"]="direct"
tiernob0b9dab2017-10-14 14:25:20 +02001023 # VIO specific Changes
kate721d79b2017-06-24 04:21:38 -07001024 if self.vim_type == "VIO":
tiernob0b9dab2017-10-14 14:25:20 +02001025 # Need to create port with port_security_enabled = False and no-security-groups
kate721d79b2017-06-24 04:21:38 -07001026 port_dict["port_security_enabled"]=False
1027 port_dict["provider_security_groups"]=[]
1028 port_dict["security_groups"]=[]
tierno66eba6e2017-11-10 17:09:18 +01001029 else: # For PT PCI-PASSTHROUGH
tiernob0b9dab2017-10-14 14:25:20 +02001030 # VIO specific Changes
1031 # Current VIO release does not support port with type 'direct-physical'
1032 # So no need to create virtual port in case of PCI-device.
1033 # Will update port_dict code when support gets added in next VIO release
kate721d79b2017-06-24 04:21:38 -07001034 if self.vim_type == "VIO":
tiernob0b9dab2017-10-14 14:25:20 +02001035 raise vimconn.vimconnNotSupportedException(
1036 "Current VIO release does not support full passthrough (PT)")
1037 # if "vpci" in net:
1038 # if "PF" not in metadata_vpci:
1039 # metadata_vpci["PF"]=[]
1040 # metadata_vpci["PF"].append([ net["vpci"], "" ])
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +02001041 port_dict["binding:vnic_type"]="direct-physical"
1042 if not port_dict["name"]:
1043 port_dict["name"]=name
1044 if net.get("mac_address"):
1045 port_dict["mac_address"]=net["mac_address"]
tierno41a69812018-02-16 14:34:33 +01001046 if net.get("ip_address"):
1047 port_dict["fixed_ips"] = [{'ip_address': net["ip_address"]}]
1048 # TODO add 'subnet_id': <subnet_id>
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +02001049 new_port = self.neutron.create_port({"port": port_dict })
tierno00e3df72017-11-29 17:20:13 +01001050 created_items["port:" + str(new_port["port"]["id"])] = True
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +02001051 net["mac_adress"] = new_port["port"]["mac_address"]
1052 net["vim_id"] = new_port["port"]["id"]
tiernob84cbdc2017-07-07 14:30:30 +02001053 # if try to use a network without subnetwork, it will return a emtpy list
1054 fixed_ips = new_port["port"].get("fixed_ips")
1055 if fixed_ips:
1056 net["ip"] = fixed_ips[0].get("ip_address")
1057 else:
1058 net["ip"] = None
montesmoreno994a29d2017-08-22 11:23:06 +02001059
1060 port = {"port-id": new_port["port"]["id"]}
1061 if float(self.nova.api_version.get_string()) >= 2.32:
1062 port["tag"] = new_port["port"]["name"]
1063 net_list_vim.append(port)
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +02001064
ahmadsaf853d452016-12-22 11:33:47 +05001065 if net.get('floating_ip', False):
tiernof8383b82017-01-18 15:49:48 +01001066 net['exit_on_floating_ip_error'] = True
ahmadsaf853d452016-12-22 11:33:47 +05001067 external_network.append(net)
tiernof8383b82017-01-18 15:49:48 +01001068 elif net['use'] == 'mgmt' and self.config.get('use_floating_ip'):
1069 net['exit_on_floating_ip_error'] = False
1070 external_network.append(net)
tierno326fd5e2018-02-22 11:58:59 +01001071 net['floating_ip'] = self.config.get('use_floating_ip')
tiernof8383b82017-01-18 15:49:48 +01001072
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001073 # If port security is disabled when the port has not yet been attached to the VM, then all vm traffic is dropped.
1074 # As a workaround we wait until the VM is active and then disable the port-security
tierno4d1ce222018-04-06 10:41:06 +02001075 if net.get("port_security") == False and not self.config.get("no_port_security_extension"):
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001076 no_secured_ports.append(new_port["port"]["id"])
1077
tiernob0b9dab2017-10-14 14:25:20 +02001078 # if metadata_vpci:
1079 # metadata = {"pci_assignement": json.dumps(metadata_vpci)}
1080 # if len(metadata["pci_assignement"]) >255:
1081 # #limit the metadata size
1082 # #metadata["pci_assignement"] = metadata["pci_assignement"][0:255]
1083 # self.logger.warn("Metadata deleted since it exceeds the expected length (255) ")
1084 # metadata = {}
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001085
tiernob0b9dab2017-10-14 14:25:20 +02001086 self.logger.debug("name '%s' image_id '%s'flavor_id '%s' net_list_vim '%s' description '%s'",
1087 name, image_id, flavor_id, str(net_list_vim), description)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001088
tiernob0b9dab2017-10-14 14:25:20 +02001089 security_groups = self.config.get('security_groups')
tierno7edb6752016-03-21 17:37:52 +01001090 if type(security_groups) is str:
1091 security_groups = ( security_groups, )
tierno98e909c2017-10-14 13:27:03 +02001092 # cloud config
tierno0a1437e2017-10-02 00:17:43 +02001093 config_drive, userdata = self._create_user_data(cloud_config)
montesmoreno0c8def02016-12-22 12:16:23 +00001094
tierno98e909c2017-10-14 13:27:03 +02001095 # Create additional volumes in case these are present in disk_list
montesmoreno0c8def02016-12-22 12:16:23 +00001096 base_disk_index = ord('b')
tierno1df468d2018-07-06 14:25:16 +02001097 if disk_list:
tiernob84cbdc2017-07-07 14:30:30 +02001098 block_device_mapping = {}
montesmoreno0c8def02016-12-22 12:16:23 +00001099 for disk in disk_list:
tierno1df468d2018-07-06 14:25:16 +02001100 if disk.get('vim_id'):
1101 block_device_mapping['_vd' + chr(base_disk_index)] = disk['vim_id']
montesmoreno0c8def02016-12-22 12:16:23 +00001102 else:
tierno1df468d2018-07-06 14:25:16 +02001103 if 'image_id' in disk:
1104 volume = self.cinder.volumes.create(size=disk['size'], name=name + '_vd' +
1105 chr(base_disk_index), imageRef=disk['image_id'])
1106 else:
1107 volume = self.cinder.volumes.create(size=disk['size'], name=name + '_vd' +
1108 chr(base_disk_index))
1109 created_items["volume:" + str(volume.id)] = True
1110 block_device_mapping['_vd' + chr(base_disk_index)] = volume.id
montesmoreno0c8def02016-12-22 12:16:23 +00001111 base_disk_index += 1
1112
tierno1df468d2018-07-06 14:25:16 +02001113 # Wait until created volumes are with status available
montesmoreno0c8def02016-12-22 12:16:23 +00001114 elapsed_time = 0
tierno1df468d2018-07-06 14:25:16 +02001115 while elapsed_time < volume_timeout:
1116 for created_item in created_items:
1117 v, _, volume_id = created_item.partition(":")
1118 if v == 'volume':
1119 if self.cinder.volumes.get(volume_id).status != 'available':
1120 break
1121 else: # all ready: break from while
1122 break
1123 time.sleep(5)
1124 elapsed_time += 5
tiernob0b9dab2017-10-14 14:25:20 +02001125 # If we exceeded the timeout rollback
montesmoreno0c8def02016-12-22 12:16:23 +00001126 if elapsed_time >= volume_timeout:
montesmoreno0c8def02016-12-22 12:16:23 +00001127 raise vimconn.vimconnException('Timeout creating volumes for instance ' + name,
1128 http_code=vimconn.HTTP_Request_Timeout)
mirabal29356312017-07-27 12:21:22 +02001129 # get availability Zone
tierno5a3273c2017-08-29 11:43:46 +02001130 vm_av_zone = self._get_vm_availability_zone(availability_zone_index, availability_zone_list)
montesmoreno0c8def02016-12-22 12:16:23 +00001131
tiernob0b9dab2017-10-14 14:25:20 +02001132 self.logger.debug("nova.servers.create({}, {}, {}, nics={}, security_groups={}, "
mirabal29356312017-07-27 12:21:22 +02001133 "availability_zone={}, key_name={}, userdata={}, config_drive={}, "
tiernob0b9dab2017-10-14 14:25:20 +02001134 "block_device_mapping={})".format(name, image_id, flavor_id, net_list_vim,
mirabal29356312017-07-27 12:21:22 +02001135 security_groups, vm_av_zone, self.config.get('keypair'),
tiernob0b9dab2017-10-14 14:25:20 +02001136 userdata, config_drive, block_device_mapping))
1137 server = self.nova.servers.create(name, image_id, flavor_id, nics=net_list_vim,
montesmoreno0c8def02016-12-22 12:16:23 +00001138 security_groups=security_groups,
mirabal29356312017-07-27 12:21:22 +02001139 availability_zone=vm_av_zone,
montesmoreno0c8def02016-12-22 12:16:23 +00001140 key_name=self.config.get('keypair'),
1141 userdata=userdata,
tiernob84cbdc2017-07-07 14:30:30 +02001142 config_drive=config_drive,
1143 block_device_mapping=block_device_mapping
montesmoreno0c8def02016-12-22 12:16:23 +00001144 ) # , description=description)
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001145
tierno326fd5e2018-02-22 11:58:59 +01001146 vm_start_time = time.time()
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001147 # Previously mentioned workaround to wait until the VM is active and then disable the port-security
1148 if no_secured_ports:
1149 self.__wait_for_vm(server.id, 'ACTIVE')
1150
1151 for port_id in no_secured_ports:
1152 try:
tierno4d1ce222018-04-06 10:41:06 +02001153 self.neutron.update_port(port_id,
1154 {"port": {"port_security_enabled": False, "security_groups": None}})
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001155 except Exception as e:
tierno4d1ce222018-04-06 10:41:06 +02001156 raise vimconn.vimconnException("It was not possible to disable port security for port {}".format(
1157 port_id))
tierno98e909c2017-10-14 13:27:03 +02001158 # print "DONE :-)", server
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001159
tierno4d1ce222018-04-06 10:41:06 +02001160 # pool_id = None
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001161 if external_network:
tierno98e909c2017-10-14 13:27:03 +02001162 floating_ips = self.neutron.list_floatingips().get("floatingips", ())
ahmadsaf853d452016-12-22 11:33:47 +05001163 for floating_network in external_network:
tiernof8383b82017-01-18 15:49:48 +01001164 try:
tiernof8383b82017-01-18 15:49:48 +01001165 assigned = False
tierno98e909c2017-10-14 13:27:03 +02001166 while not assigned:
tiernof8383b82017-01-18 15:49:48 +01001167 if floating_ips:
1168 ip = floating_ips.pop(0)
tierno326fd5e2018-02-22 11:58:59 +01001169 if ip.get("port_id", False) or ip.get('tenant_id') != server.tenant_id:
1170 continue
1171 if isinstance(floating_network['floating_ip'], str):
1172 if ip.get("floating_network_id") != floating_network['floating_ip']:
1173 continue
1174 free_floating_ip = ip.get("floating_ip_address")
tiernof8383b82017-01-18 15:49:48 +01001175 else:
tiernocb3cca22018-05-31 15:08:52 +02001176 if isinstance(floating_network['floating_ip'], str) and \
1177 floating_network['floating_ip'].lower() != "true":
tierno326fd5e2018-02-22 11:58:59 +01001178 pool_id = floating_network['floating_ip']
1179 else:
tierno4d1ce222018-04-06 10:41:06 +02001180 # Find the external network
tierno326fd5e2018-02-22 11:58:59 +01001181 external_nets = list()
1182 for net in self.neutron.list_networks()['networks']:
1183 if net['router:external']:
1184 external_nets.append(net)
tiernof8383b82017-01-18 15:49:48 +01001185
tierno326fd5e2018-02-22 11:58:59 +01001186 if len(external_nets) == 0:
1187 raise vimconn.vimconnException("Cannot create floating_ip automatically since no external "
1188 "network is present",
1189 http_code=vimconn.HTTP_Conflict)
1190 if len(external_nets) > 1:
1191 raise vimconn.vimconnException("Cannot create floating_ip automatically since multiple "
1192 "external networks are present",
1193 http_code=vimconn.HTTP_Conflict)
tiernof8383b82017-01-18 15:49:48 +01001194
tierno326fd5e2018-02-22 11:58:59 +01001195 pool_id = external_nets[0].get('id')
tiernof8383b82017-01-18 15:49:48 +01001196 param = {'floatingip': {'floating_network_id': pool_id, 'tenant_id': server.tenant_id}}
ahmadsaf853d452016-12-22 11:33:47 +05001197 try:
tierno4d1ce222018-04-06 10:41:06 +02001198 # self.logger.debug("Creating floating IP")
tiernof8383b82017-01-18 15:49:48 +01001199 new_floating_ip = self.neutron.create_floatingip(param)
1200 free_floating_ip = new_floating_ip['floatingip']['floating_ip_address']
ahmadsaf853d452016-12-22 11:33:47 +05001201 except Exception as e:
tierno326fd5e2018-02-22 11:58:59 +01001202 raise vimconn.vimconnException(type(e).__name__ + ": Cannot create new floating_ip " +
1203 str(e), http_code=vimconn.HTTP_Conflict)
1204
1205 fix_ip = floating_network.get('ip')
1206 while not assigned:
1207 try:
1208 server.add_floating_ip(free_floating_ip, fix_ip)
1209 assigned = True
1210 except Exception as e:
tierno4d1ce222018-04-06 10:41:06 +02001211 # openstack need some time after VM creation to asign an IP. So retry if fails
tierno326fd5e2018-02-22 11:58:59 +01001212 vm_status = self.nova.servers.get(server.id).status
1213 if vm_status != 'ACTIVE' and vm_status != 'ERROR':
1214 if time.time() - vm_start_time < server_timeout:
1215 time.sleep(5)
1216 continue
tierno4d1ce222018-04-06 10:41:06 +02001217 raise vimconn.vimconnException(
1218 "Cannot create floating_ip: {} {}".format(type(e).__name__, e),
1219 http_code=vimconn.HTTP_Conflict)
tierno326fd5e2018-02-22 11:58:59 +01001220
tiernof8383b82017-01-18 15:49:48 +01001221 except Exception as e:
1222 if not floating_network['exit_on_floating_ip_error']:
1223 self.logger.warn("Cannot create floating_ip. %s", str(e))
1224 continue
tiernof8383b82017-01-18 15:49:48 +01001225 raise
montesmoreno2a1fc4e2017-01-09 16:46:04 +00001226
tierno98e909c2017-10-14 13:27:03 +02001227 return server.id, created_items
tierno7edb6752016-03-21 17:37:52 +01001228# except nvExceptions.NotFound as e:
1229# error_value=-vimconn.HTTP_Not_Found
1230# error_text= "vm instance %s not found" % vm_id
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001231# except TypeError as e:
1232# raise vimconn.vimconnException(type(e).__name__ + ": "+ str(e), http_code=vimconn.HTTP_Bad_Request)
1233
1234 except Exception as e:
tierno98e909c2017-10-14 13:27:03 +02001235 server_id = None
1236 if server:
1237 server_id = server.id
1238 try:
1239 self.delete_vminstance(server_id, created_items)
1240 except Exception as e2:
1241 self.logger.error("new_vminstance rollback fail {}".format(e2))
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001242
tiernoae4a8d12016-07-08 12:30:39 +02001243 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +01001244
tiernoae4a8d12016-07-08 12:30:39 +02001245 def get_vminstance(self,vm_id):
tierno7edb6752016-03-21 17:37:52 +01001246 '''Returns the VM instance information from VIM'''
tiernoae4a8d12016-07-08 12:30:39 +02001247 #self.logger.debug("Getting VM from VIM")
tierno7edb6752016-03-21 17:37:52 +01001248 try:
1249 self._reload_connection()
1250 server = self.nova.servers.find(id=vm_id)
1251 #TODO parse input and translate to VIM format (openmano_schemas.new_vminstance_response_schema)
tiernoae4a8d12016-07-08 12:30:39 +02001252 return server.to_dict()
tierno8e995ce2016-09-22 08:13:00 +00001253 except (ksExceptions.ClientException, nvExceptions.ClientException, nvExceptions.NotFound, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001254 self._format_exception(e)
1255
1256 def get_vminstance_console(self,vm_id, console_type="vnc"):
tierno7edb6752016-03-21 17:37:52 +01001257 '''
1258 Get a console for the virtual machine
1259 Params:
1260 vm_id: uuid of the VM
1261 console_type, can be:
1262 "novnc" (by default), "xvpvnc" for VNC types,
1263 "rdp-html5" for RDP types, "spice-html5" for SPICE types
tiernoae4a8d12016-07-08 12:30:39 +02001264 Returns dict with the console parameters:
1265 protocol: ssh, ftp, http, https, ...
1266 server: usually ip address
1267 port: the http, ssh, ... port
1268 suffix: extra text, e.g. the http path and query string
tierno7edb6752016-03-21 17:37:52 +01001269 '''
tiernoae4a8d12016-07-08 12:30:39 +02001270 self.logger.debug("Getting VM CONSOLE from VIM")
tierno7edb6752016-03-21 17:37:52 +01001271 try:
1272 self._reload_connection()
1273 server = self.nova.servers.find(id=vm_id)
1274 if console_type == None or console_type == "novnc":
1275 console_dict = server.get_vnc_console("novnc")
1276 elif console_type == "xvpvnc":
1277 console_dict = server.get_vnc_console(console_type)
1278 elif console_type == "rdp-html5":
1279 console_dict = server.get_rdp_console(console_type)
1280 elif console_type == "spice-html5":
1281 console_dict = server.get_spice_console(console_type)
1282 else:
tiernoae4a8d12016-07-08 12:30:39 +02001283 raise vimconn.vimconnException("console type '{}' not allowed".format(console_type), http_code=vimconn.HTTP_Bad_Request)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001284
tierno7edb6752016-03-21 17:37:52 +01001285 console_dict1 = console_dict.get("console")
1286 if console_dict1:
1287 console_url = console_dict1.get("url")
1288 if console_url:
1289 #parse console_url
1290 protocol_index = console_url.find("//")
1291 suffix_index = console_url[protocol_index+2:].find("/") + protocol_index+2
1292 port_index = console_url[protocol_index+2:suffix_index].find(":") + protocol_index+2
1293 if protocol_index < 0 or port_index<0 or suffix_index<0:
1294 return -vimconn.HTTP_Internal_Server_Error, "Unexpected response from VIM"
1295 console_dict={"protocol": console_url[0:protocol_index],
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001296 "server": console_url[protocol_index+2:port_index],
1297 "port": console_url[port_index:suffix_index],
1298 "suffix": console_url[suffix_index+1:]
tierno7edb6752016-03-21 17:37:52 +01001299 }
1300 protocol_index += 2
tiernoae4a8d12016-07-08 12:30:39 +02001301 return console_dict
1302 raise vimconn.vimconnUnexpectedResponse("Unexpected response from VIM")
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001303
tierno8e995ce2016-09-22 08:13:00 +00001304 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException, nvExceptions.BadRequest, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001305 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +01001306
tierno98e909c2017-10-14 13:27:03 +02001307 def delete_vminstance(self, vm_id, created_items=None):
tiernoae4a8d12016-07-08 12:30:39 +02001308 '''Removes a VM instance from VIM. Returns the old identifier
tierno7edb6752016-03-21 17:37:52 +01001309 '''
tiernoae4a8d12016-07-08 12:30:39 +02001310 #print "osconnector: Getting VM from VIM"
tierno98e909c2017-10-14 13:27:03 +02001311 if created_items == None:
1312 created_items = {}
tierno7edb6752016-03-21 17:37:52 +01001313 try:
1314 self._reload_connection()
tierno98e909c2017-10-14 13:27:03 +02001315 # delete VM ports attached to this networks before the virtual machine
1316 for k, v in created_items.items():
1317 if not v: # skip already deleted
1318 continue
tierno7edb6752016-03-21 17:37:52 +01001319 try:
tiernoad6bdd42018-01-10 10:43:46 +01001320 k_item, _, k_id = k.partition(":")
1321 if k_item == "port":
1322 self.neutron.delete_port(k_id)
tierno7edb6752016-03-21 17:37:52 +01001323 except Exception as e:
tierno00e3df72017-11-29 17:20:13 +01001324 self.logger.error("Error deleting port: {}: {}".format(type(e).__name__, e))
montesmoreno0c8def02016-12-22 12:16:23 +00001325
tierno98e909c2017-10-14 13:27:03 +02001326 # #commented because detaching the volumes makes the servers.delete not work properly ?!?
1327 # #dettach volumes attached
1328 # server = self.nova.servers.get(vm_id)
1329 # volumes_attached_dict = server._info['os-extended-volumes:volumes_attached'] #volume['id']
1330 # #for volume in volumes_attached_dict:
1331 # # self.cinder.volumes.detach(volume['id'])
montesmoreno0c8def02016-12-22 12:16:23 +00001332
tierno98e909c2017-10-14 13:27:03 +02001333 if vm_id:
1334 self.nova.servers.delete(vm_id)
montesmoreno0c8def02016-12-22 12:16:23 +00001335
tierno98e909c2017-10-14 13:27:03 +02001336 # delete volumes. Although having detached, they should have in active status before deleting
1337 # we ensure in this loop
montesmoreno0c8def02016-12-22 12:16:23 +00001338 keep_waiting = True
1339 elapsed_time = 0
1340 while keep_waiting and elapsed_time < volume_timeout:
1341 keep_waiting = False
tierno98e909c2017-10-14 13:27:03 +02001342 for k, v in created_items.items():
1343 if not v: # skip already deleted
1344 continue
1345 try:
tiernoad6bdd42018-01-10 10:43:46 +01001346 k_item, _, k_id = k.partition(":")
1347 if k_item == "volume":
1348 if self.cinder.volumes.get(k_id).status != 'available':
tierno98e909c2017-10-14 13:27:03 +02001349 keep_waiting = True
1350 else:
tiernoad6bdd42018-01-10 10:43:46 +01001351 self.cinder.volumes.delete(k_id)
tierno98e909c2017-10-14 13:27:03 +02001352 except Exception as e:
tierno00e3df72017-11-29 17:20:13 +01001353 self.logger.error("Error deleting volume: {}: {}".format(type(e).__name__, e))
montesmoreno0c8def02016-12-22 12:16:23 +00001354 if keep_waiting:
1355 time.sleep(1)
1356 elapsed_time += 1
tierno98e909c2017-10-14 13:27:03 +02001357 return None
tierno8e995ce2016-09-22 08:13:00 +00001358 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001359 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +01001360
tiernoae4a8d12016-07-08 12:30:39 +02001361 def refresh_vms_status(self, vm_list):
1362 '''Get the status of the virtual machines and their interfaces/ports
1363 Params: the list of VM identifiers
1364 Returns a dictionary with:
1365 vm_id: #VIM id of this Virtual Machine
1366 status: #Mandatory. Text with one of:
1367 # DELETED (not found at vim)
1368 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
1369 # OTHER (Vim reported other status not understood)
1370 # ERROR (VIM indicates an ERROR status)
1371 # ACTIVE, PAUSED, SUSPENDED, INACTIVE (not running),
1372 # CREATING (on building process), ERROR
1373 # ACTIVE:NoMgmtIP (Active but any of its interface has an IP address
1374 #
1375 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
1376 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
1377 interfaces:
1378 - vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
1379 mac_address: #Text format XX:XX:XX:XX:XX:XX
1380 vim_net_id: #network id where this interface is connected
1381 vim_interface_id: #interface/port VIM id
1382 ip_address: #null, or text with IPv4, IPv6 address
tierno867ffe92017-03-27 12:50:34 +02001383 compute_node: #identification of compute node where PF,VF interface is allocated
1384 pci: #PCI address of the NIC that hosts the PF,VF
1385 vlan: #physical VLAN used for VF
tierno7edb6752016-03-21 17:37:52 +01001386 '''
tiernoae4a8d12016-07-08 12:30:39 +02001387 vm_dict={}
1388 self.logger.debug("refresh_vms status: Getting tenant VM instance information from VIM")
1389 for vm_id in vm_list:
1390 vm={}
1391 try:
1392 vm_vim = self.get_vminstance(vm_id)
1393 if vm_vim['status'] in vmStatus2manoFormat:
1394 vm['status'] = vmStatus2manoFormat[ vm_vim['status'] ]
tierno7edb6752016-03-21 17:37:52 +01001395 else:
tiernoae4a8d12016-07-08 12:30:39 +02001396 vm['status'] = "OTHER"
1397 vm['error_msg'] = "VIM status reported " + vm_vim['status']
tierno8e995ce2016-09-22 08:13:00 +00001398 try:
1399 vm['vim_info'] = yaml.safe_dump(vm_vim, default_flow_style=True, width=256)
1400 except yaml.representer.RepresenterError:
1401 vm['vim_info'] = str(vm_vim)
tiernoae4a8d12016-07-08 12:30:39 +02001402 vm["interfaces"] = []
1403 if vm_vim.get('fault'):
1404 vm['error_msg'] = str(vm_vim['fault'])
1405 #get interfaces
tierno7edb6752016-03-21 17:37:52 +01001406 try:
tiernoae4a8d12016-07-08 12:30:39 +02001407 self._reload_connection()
tiernob42fd9b2018-06-20 10:44:32 +02001408 port_dict = self.neutron.list_ports(device_id=vm_id)
tiernoae4a8d12016-07-08 12:30:39 +02001409 for port in port_dict["ports"]:
1410 interface={}
tierno8e995ce2016-09-22 08:13:00 +00001411 try:
1412 interface['vim_info'] = yaml.safe_dump(port, default_flow_style=True, width=256)
1413 except yaml.representer.RepresenterError:
1414 interface['vim_info'] = str(port)
tiernoae4a8d12016-07-08 12:30:39 +02001415 interface["mac_address"] = port.get("mac_address")
1416 interface["vim_net_id"] = port["network_id"]
1417 interface["vim_interface_id"] = port["id"]
Mike Marchetti5b9da422017-05-02 15:35:47 -04001418 # check if OS-EXT-SRV-ATTR:host is there,
1419 # in case of non-admin credentials, it will be missing
1420 if vm_vim.get('OS-EXT-SRV-ATTR:host'):
1421 interface["compute_node"] = vm_vim['OS-EXT-SRV-ATTR:host']
tierno867ffe92017-03-27 12:50:34 +02001422 interface["pci"] = None
Mike Marchetti5b9da422017-05-02 15:35:47 -04001423
1424 # check if binding:profile is there,
1425 # in case of non-admin credentials, it will be missing
1426 if port.get('binding:profile'):
1427 if port['binding:profile'].get('pci_slot'):
1428 # TODO: At the moment sr-iov pci addresses are converted to PF pci addresses by setting the slot to 0x00
1429 # TODO: This is just a workaround valid for niantinc. Find a better way to do so
1430 # CHANGE DDDD:BB:SS.F to DDDD:BB:00.(F%2) assuming there are 2 ports per nic
1431 pci = port['binding:profile']['pci_slot']
1432 # interface["pci"] = pci[:-4] + "00." + str(int(pci[-1]) % 2)
1433 interface["pci"] = pci
tierno867ffe92017-03-27 12:50:34 +02001434 interface["vlan"] = None
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +02001435 #if network is of type vlan and port is of type direct (sr-iov) then set vlan id
Pablo Montes Moreno51e553b2017-03-23 16:39:12 +01001436 network = self.neutron.show_network(port["network_id"])
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +02001437 if network['network'].get('provider:network_type') == 'vlan' and \
1438 port.get("binding:vnic_type") == "direct":
tierno867ffe92017-03-27 12:50:34 +02001439 interface["vlan"] = network['network'].get('provider:segmentation_id')
tiernoae4a8d12016-07-08 12:30:39 +02001440 ips=[]
1441 #look for floating ip address
tiernob42fd9b2018-06-20 10:44:32 +02001442 try:
1443 floating_ip_dict = self.neutron.list_floatingips(port_id=port["id"])
1444 if floating_ip_dict.get("floatingips"):
1445 ips.append(floating_ip_dict["floatingips"][0].get("floating_ip_address") )
1446 except Exception:
1447 pass
tierno7edb6752016-03-21 17:37:52 +01001448
tiernoae4a8d12016-07-08 12:30:39 +02001449 for subnet in port["fixed_ips"]:
1450 ips.append(subnet["ip_address"])
1451 interface["ip_address"] = ";".join(ips)
1452 vm["interfaces"].append(interface)
1453 except Exception as e:
tiernob42fd9b2018-06-20 10:44:32 +02001454 self.logger.error("Error getting vm interface information {}: {}".format(type(e).__name__, e),
1455 exc_info=True)
tiernoae4a8d12016-07-08 12:30:39 +02001456 except vimconn.vimconnNotFoundException as e:
1457 self.logger.error("Exception getting vm status: %s", str(e))
1458 vm['status'] = "DELETED"
1459 vm['error_msg'] = str(e)
1460 except vimconn.vimconnException as e:
1461 self.logger.error("Exception getting vm status: %s", str(e))
1462 vm['status'] = "VIM_ERROR"
1463 vm['error_msg'] = str(e)
1464 vm_dict[vm_id] = vm
1465 return vm_dict
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001466
tierno98e909c2017-10-14 13:27:03 +02001467 def action_vminstance(self, vm_id, action_dict, created_items={}):
tierno7edb6752016-03-21 17:37:52 +01001468 '''Send and action over a VM instance from VIM
tierno98e909c2017-10-14 13:27:03 +02001469 Returns None or the console dict if the action was successfully sent to the VIM'''
tiernoae4a8d12016-07-08 12:30:39 +02001470 self.logger.debug("Action over VM '%s': %s", vm_id, str(action_dict))
tierno7edb6752016-03-21 17:37:52 +01001471 try:
1472 self._reload_connection()
1473 server = self.nova.servers.find(id=vm_id)
1474 if "start" in action_dict:
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001475 if action_dict["start"]=="rebuild":
tierno7edb6752016-03-21 17:37:52 +01001476 server.rebuild()
1477 else:
1478 if server.status=="PAUSED":
1479 server.unpause()
1480 elif server.status=="SUSPENDED":
1481 server.resume()
1482 elif server.status=="SHUTOFF":
1483 server.start()
1484 elif "pause" in action_dict:
1485 server.pause()
1486 elif "resume" in action_dict:
1487 server.resume()
1488 elif "shutoff" in action_dict or "shutdown" in action_dict:
1489 server.stop()
1490 elif "forceOff" in action_dict:
1491 server.stop() #TODO
1492 elif "terminate" in action_dict:
1493 server.delete()
1494 elif "createImage" in action_dict:
1495 server.create_image()
1496 #"path":path_schema,
1497 #"description":description_schema,
1498 #"name":name_schema,
1499 #"metadata":metadata_schema,
1500 #"imageRef": id_schema,
1501 #"disk": {"oneOf":[{"type": "null"}, {"type":"string"}] },
1502 elif "rebuild" in action_dict:
1503 server.rebuild(server.image['id'])
1504 elif "reboot" in action_dict:
1505 server.reboot() #reboot_type='SOFT'
1506 elif "console" in action_dict:
1507 console_type = action_dict["console"]
1508 if console_type == None or console_type == "novnc":
1509 console_dict = server.get_vnc_console("novnc")
1510 elif console_type == "xvpvnc":
1511 console_dict = server.get_vnc_console(console_type)
1512 elif console_type == "rdp-html5":
1513 console_dict = server.get_rdp_console(console_type)
1514 elif console_type == "spice-html5":
1515 console_dict = server.get_spice_console(console_type)
1516 else:
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001517 raise vimconn.vimconnException("console type '{}' not allowed".format(console_type),
tiernoae4a8d12016-07-08 12:30:39 +02001518 http_code=vimconn.HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001519 try:
1520 console_url = console_dict["console"]["url"]
1521 #parse console_url
1522 protocol_index = console_url.find("//")
1523 suffix_index = console_url[protocol_index+2:].find("/") + protocol_index+2
1524 port_index = console_url[protocol_index+2:suffix_index].find(":") + protocol_index+2
1525 if protocol_index < 0 or port_index<0 or suffix_index<0:
tiernoae4a8d12016-07-08 12:30:39 +02001526 raise vimconn.vimconnException("Unexpected response from VIM " + str(console_dict))
tierno7edb6752016-03-21 17:37:52 +01001527 console_dict2={"protocol": console_url[0:protocol_index],
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001528 "server": console_url[protocol_index+2 : port_index],
1529 "port": int(console_url[port_index+1 : suffix_index]),
1530 "suffix": console_url[suffix_index+1:]
tierno7edb6752016-03-21 17:37:52 +01001531 }
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001532 return console_dict2
tiernoae4a8d12016-07-08 12:30:39 +02001533 except Exception as e:
1534 raise vimconn.vimconnException("Unexpected response from VIM " + str(console_dict))
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001535
tierno98e909c2017-10-14 13:27:03 +02001536 return None
tierno8e995ce2016-09-22 08:13:00 +00001537 except (ksExceptions.ClientException, nvExceptions.ClientException, nvExceptions.NotFound, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001538 self._format_exception(e)
1539 #TODO insert exception vimconn.HTTP_Unauthorized
1540
kate721d79b2017-06-24 04:21:38 -07001541 ####### VIO Specific Changes #########
1542 def _genrate_vlanID(self):
1543 """
1544 Method to get unused vlanID
1545 Args:
1546 None
1547 Returns:
1548 vlanID
1549 """
1550 #Get used VLAN IDs
1551 usedVlanIDs = []
1552 networks = self.get_network_list()
1553 for net in networks:
1554 if net.get('provider:segmentation_id'):
1555 usedVlanIDs.append(net.get('provider:segmentation_id'))
1556 used_vlanIDs = set(usedVlanIDs)
1557
1558 #find unused VLAN ID
1559 for vlanID_range in self.config.get('dataplane_net_vlan_range'):
1560 try:
1561 start_vlanid , end_vlanid = map(int, vlanID_range.replace(" ", "").split("-"))
1562 for vlanID in xrange(start_vlanid, end_vlanid + 1):
1563 if vlanID not in used_vlanIDs:
1564 return vlanID
1565 except Exception as exp:
1566 raise vimconn.vimconnException("Exception {} occurred while generating VLAN ID.".format(exp))
1567 else:
1568 raise vimconn.vimconnConflictException("Unable to create the SRIOV VLAN network."\
1569 " All given Vlan IDs {} are in use.".format(self.config.get('dataplane_net_vlan_range')))
1570
1571
1572 def _validate_vlan_ranges(self, dataplane_net_vlan_range):
1573 """
1574 Method to validate user given vlanID ranges
1575 Args: None
1576 Returns: None
1577 """
1578 for vlanID_range in dataplane_net_vlan_range:
1579 vlan_range = vlanID_range.replace(" ", "")
1580 #validate format
1581 vlanID_pattern = r'(\d)*-(\d)*$'
1582 match_obj = re.match(vlanID_pattern, vlan_range)
1583 if not match_obj:
1584 raise vimconn.vimconnConflictException("Invalid dataplane_net_vlan_range {}.You must provide "\
1585 "'dataplane_net_vlan_range' in format [start_ID - end_ID].".format(vlanID_range))
1586
1587 start_vlanid , end_vlanid = map(int,vlan_range.split("-"))
1588 if start_vlanid <= 0 :
1589 raise vimconn.vimconnConflictException("Invalid dataplane_net_vlan_range {}."\
1590 "Start ID can not be zero. For VLAN "\
1591 "networks valid IDs are 1 to 4094 ".format(vlanID_range))
1592 if end_vlanid > 4094 :
1593 raise vimconn.vimconnConflictException("Invalid dataplane_net_vlan_range {}."\
1594 "End VLAN ID can not be greater than 4094. For VLAN "\
1595 "networks valid IDs are 1 to 4094 ".format(vlanID_range))
1596
1597 if start_vlanid > end_vlanid:
1598 raise vimconn.vimconnConflictException("Invalid dataplane_net_vlan_range {}."\
1599 "You must provide a 'dataplane_net_vlan_range' in format start_ID - end_ID and "\
1600 "start_ID < end_ID ".format(vlanID_range))
1601
tiernoae4a8d12016-07-08 12:30:39 +02001602#NOT USED FUNCTIONS
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001603
tiernoae4a8d12016-07-08 12:30:39 +02001604 def new_external_port(self, port_data):
1605 #TODO openstack if needed
1606 '''Adds a external port to VIM'''
1607 '''Returns the port identifier'''
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001608 return -vimconn.HTTP_Internal_Server_Error, "osconnector.new_external_port() not implemented"
1609
tiernoae4a8d12016-07-08 12:30:39 +02001610 def connect_port_network(self, port_id, network_id, admin=False):
1611 #TODO openstack if needed
1612 '''Connects a external port to a network'''
1613 '''Returns status code of the VIM response'''
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001614 return -vimconn.HTTP_Internal_Server_Error, "osconnector.connect_port_network() not implemented"
1615
tiernoae4a8d12016-07-08 12:30:39 +02001616 def new_user(self, user_name, user_passwd, tenant_id=None):
1617 '''Adds a new user to openstack VIM'''
1618 '''Returns the user identifier'''
1619 self.logger.debug("osconnector: Adding a new user to VIM")
1620 try:
1621 self._reload_connection()
Eduardo Sousae3c0dbc2018-09-03 11:56:07 +01001622 user=self.keystone.users.create(user_name, password=user_passwd, default_project=tenant_id)
tiernoae4a8d12016-07-08 12:30:39 +02001623 #self.keystone.tenants.add_user(self.k_creds["username"], #role)
1624 return user.id
1625 except ksExceptions.ConnectionError as e:
1626 error_value=-vimconn.HTTP_Bad_Request
1627 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1628 except ksExceptions.ClientException as e: #TODO remove
tierno7edb6752016-03-21 17:37:52 +01001629 error_value=-vimconn.HTTP_Bad_Request
1630 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1631 #TODO insert exception vimconn.HTTP_Unauthorized
1632 #if reaching here is because an exception
tierno9c5c8322018-03-23 15:44:03 +01001633 self.logger.debug("new_user " + error_text)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001634 return error_value, error_text
tiernoae4a8d12016-07-08 12:30:39 +02001635
1636 def delete_user(self, user_id):
1637 '''Delete a user from openstack VIM'''
1638 '''Returns the user identifier'''
1639 if self.debug:
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001640 print("osconnector: Deleting a user from VIM")
tiernoae4a8d12016-07-08 12:30:39 +02001641 try:
1642 self._reload_connection()
1643 self.keystone.users.delete(user_id)
1644 return 1, user_id
1645 except ksExceptions.ConnectionError as e:
1646 error_value=-vimconn.HTTP_Bad_Request
1647 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1648 except ksExceptions.NotFound as e:
1649 error_value=-vimconn.HTTP_Not_Found
1650 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1651 except ksExceptions.ClientException as e: #TODO remove
1652 error_value=-vimconn.HTTP_Bad_Request
1653 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1654 #TODO insert exception vimconn.HTTP_Unauthorized
1655 #if reaching here is because an exception
tierno9c5c8322018-03-23 15:44:03 +01001656 self.logger.debug("delete_tenant " + error_text)
tiernoae4a8d12016-07-08 12:30:39 +02001657 return error_value, error_text
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001658
tierno7edb6752016-03-21 17:37:52 +01001659 def get_hosts_info(self):
1660 '''Get the information of deployed hosts
1661 Returns the hosts content'''
1662 if self.debug:
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001663 print("osconnector: Getting Host info from VIM")
tierno7edb6752016-03-21 17:37:52 +01001664 try:
1665 h_list=[]
1666 self._reload_connection()
1667 hypervisors = self.nova.hypervisors.list()
1668 for hype in hypervisors:
1669 h_list.append( hype.to_dict() )
1670 return 1, {"hosts":h_list}
1671 except nvExceptions.NotFound as e:
1672 error_value=-vimconn.HTTP_Not_Found
1673 error_text= (str(e) if len(e.args)==0 else str(e.args[0]))
1674 except (ksExceptions.ClientException, nvExceptions.ClientException) as e:
1675 error_value=-vimconn.HTTP_Bad_Request
1676 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1677 #TODO insert exception vimconn.HTTP_Unauthorized
1678 #if reaching here is because an exception
tierno9c5c8322018-03-23 15:44:03 +01001679 self.logger.debug("get_hosts_info " + error_text)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001680 return error_value, error_text
tierno7edb6752016-03-21 17:37:52 +01001681
1682 def get_hosts(self, vim_tenant):
1683 '''Get the hosts and deployed instances
1684 Returns the hosts content'''
1685 r, hype_dict = self.get_hosts_info()
1686 if r<0:
1687 return r, hype_dict
1688 hypervisors = hype_dict["hosts"]
1689 try:
1690 servers = self.nova.servers.list()
1691 for hype in hypervisors:
1692 for server in servers:
1693 if server.to_dict()['OS-EXT-SRV-ATTR:hypervisor_hostname']==hype['hypervisor_hostname']:
1694 if 'vm' in hype:
1695 hype['vm'].append(server.id)
1696 else:
1697 hype['vm'] = [server.id]
1698 return 1, hype_dict
1699 except nvExceptions.NotFound as e:
1700 error_value=-vimconn.HTTP_Not_Found
1701 error_text= (str(e) if len(e.args)==0 else str(e.args[0]))
1702 except (ksExceptions.ClientException, nvExceptions.ClientException) as e:
1703 error_value=-vimconn.HTTP_Bad_Request
1704 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1705 #TODO insert exception vimconn.HTTP_Unauthorized
1706 #if reaching here is because an exception
tierno9c5c8322018-03-23 15:44:03 +01001707 self.logger.debug("get_hosts " + error_text)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001708 return error_value, error_text
tierno7edb6752016-03-21 17:37:52 +01001709
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001710 def new_classification(self, name, ctype, definition):
1711 self.logger.debug(
1712 'Adding a new (Traffic) Classification to VIM, named %s', name)
1713 try:
1714 new_class = None
1715 self._reload_connection()
1716 if ctype not in supportedClassificationTypes:
1717 raise vimconn.vimconnNotSupportedException(
1718 'OpenStack VIM connector doesn\'t support provided '
1719 'Classification Type {}, supported ones are: '
1720 '{}'.format(ctype, supportedClassificationTypes))
1721 if not self._validate_classification(ctype, definition):
1722 raise vimconn.vimconnException(
1723 'Incorrect Classification definition '
1724 'for the type specified.')
1725 classification_dict = definition
1726 classification_dict['name'] = name
tierno7edb6752016-03-21 17:37:52 +01001727
Igor D.Ccaadc442017-11-06 12:48:48 +00001728 new_class = self.neutron.create_sfc_flow_classifier(
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001729 {'flow_classifier': classification_dict})
1730 return new_class['flow_classifier']['id']
1731 except (neExceptions.ConnectionFailed, ksExceptions.ClientException,
1732 neExceptions.NeutronException, ConnectionError) as e:
1733 self.logger.error(
1734 'Creation of Classification failed.')
1735 self._format_exception(e)
1736
1737 def get_classification(self, class_id):
1738 self.logger.debug(" Getting Classification %s from VIM", class_id)
1739 filter_dict = {"id": class_id}
1740 class_list = self.get_classification_list(filter_dict)
1741 if len(class_list) == 0:
1742 raise vimconn.vimconnNotFoundException(
1743 "Classification '{}' not found".format(class_id))
1744 elif len(class_list) > 1:
1745 raise vimconn.vimconnConflictException(
1746 "Found more than one Classification with this criteria")
1747 classification = class_list[0]
1748 return classification
1749
1750 def get_classification_list(self, filter_dict={}):
1751 self.logger.debug("Getting Classifications from VIM filter: '%s'",
1752 str(filter_dict))
1753 try:
tierno69b590e2018-03-13 18:52:23 +01001754 filter_dict_os = filter_dict.copy()
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001755 self._reload_connection()
tierno69b590e2018-03-13 18:52:23 +01001756 if self.api_version3 and "tenant_id" in filter_dict_os:
1757 filter_dict_os['project_id'] = filter_dict_os.pop('tenant_id')
Igor D.Ccaadc442017-11-06 12:48:48 +00001758 classification_dict = self.neutron.list_sfc_flow_classifiers(
tierno69b590e2018-03-13 18:52:23 +01001759 **filter_dict_os)
1760 classification_list = classification_dict["flow_classifiers"]
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001761 self.__classification_os2mano(classification_list)
1762 return classification_list
1763 except (neExceptions.ConnectionFailed, ksExceptions.ClientException,
1764 neExceptions.NeutronException, ConnectionError) as e:
1765 self._format_exception(e)
1766
1767 def delete_classification(self, class_id):
1768 self.logger.debug("Deleting Classification '%s' from VIM", class_id)
1769 try:
1770 self._reload_connection()
Igor D.Ccaadc442017-11-06 12:48:48 +00001771 self.neutron.delete_sfc_flow_classifier(class_id)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001772 return class_id
1773 except (neExceptions.ConnectionFailed, neExceptions.NeutronException,
1774 ksExceptions.ClientException, neExceptions.NeutronException,
1775 ConnectionError) as e:
1776 self._format_exception(e)
1777
1778 def new_sfi(self, name, ingress_ports, egress_ports, sfc_encap=True):
1779 self.logger.debug(
1780 "Adding a new Service Function Instance to VIM, named '%s'", name)
1781 try:
1782 new_sfi = None
1783 self._reload_connection()
1784 correlation = None
1785 if sfc_encap:
Igor D.Ccaadc442017-11-06 12:48:48 +00001786 correlation = 'nsh'
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001787 if len(ingress_ports) != 1:
1788 raise vimconn.vimconnNotSupportedException(
1789 "OpenStack VIM connector can only have "
1790 "1 ingress port per SFI")
1791 if len(egress_ports) != 1:
1792 raise vimconn.vimconnNotSupportedException(
1793 "OpenStack VIM connector can only have "
1794 "1 egress port per SFI")
1795 sfi_dict = {'name': name,
1796 'ingress': ingress_ports[0],
1797 'egress': egress_ports[0],
1798 'service_function_parameters': {
1799 'correlation': correlation}}
Igor D.Ccaadc442017-11-06 12:48:48 +00001800 new_sfi = self.neutron.create_sfc_port_pair({'port_pair': sfi_dict})
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001801 return new_sfi['port_pair']['id']
1802 except (neExceptions.ConnectionFailed, ksExceptions.ClientException,
1803 neExceptions.NeutronException, ConnectionError) as e:
1804 if new_sfi:
1805 try:
Igor D.Ccaadc442017-11-06 12:48:48 +00001806 self.neutron.delete_sfc_port_pair(
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001807 new_sfi['port_pair']['id'])
1808 except Exception:
1809 self.logger.error(
1810 'Creation of Service Function Instance failed, with '
1811 'subsequent deletion failure as well.')
1812 self._format_exception(e)
1813
1814 def get_sfi(self, sfi_id):
1815 self.logger.debug(
1816 'Getting Service Function Instance %s from VIM', sfi_id)
1817 filter_dict = {"id": sfi_id}
1818 sfi_list = self.get_sfi_list(filter_dict)
1819 if len(sfi_list) == 0:
1820 raise vimconn.vimconnNotFoundException(
1821 "Service Function Instance '{}' not found".format(sfi_id))
1822 elif len(sfi_list) > 1:
1823 raise vimconn.vimconnConflictException(
1824 'Found more than one Service Function Instance '
1825 'with this criteria')
1826 sfi = sfi_list[0]
1827 return sfi
1828
1829 def get_sfi_list(self, filter_dict={}):
1830 self.logger.debug("Getting Service Function Instances from "
1831 "VIM filter: '%s'", str(filter_dict))
1832 try:
1833 self._reload_connection()
tierno69b590e2018-03-13 18:52:23 +01001834 filter_dict_os = filter_dict.copy()
1835 if self.api_version3 and "tenant_id" in filter_dict_os:
1836 filter_dict_os['project_id'] = filter_dict_os.pop('tenant_id')
1837 sfi_dict = self.neutron.list_sfc_port_pairs(**filter_dict_os)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001838 sfi_list = sfi_dict["port_pairs"]
1839 self.__sfi_os2mano(sfi_list)
1840 return sfi_list
1841 except (neExceptions.ConnectionFailed, ksExceptions.ClientException,
1842 neExceptions.NeutronException, ConnectionError) as e:
1843 self._format_exception(e)
1844
1845 def delete_sfi(self, sfi_id):
1846 self.logger.debug("Deleting Service Function Instance '%s' "
1847 "from VIM", sfi_id)
1848 try:
1849 self._reload_connection()
Igor D.Ccaadc442017-11-06 12:48:48 +00001850 self.neutron.delete_sfc_port_pair(sfi_id)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001851 return sfi_id
1852 except (neExceptions.ConnectionFailed, neExceptions.NeutronException,
1853 ksExceptions.ClientException, neExceptions.NeutronException,
1854 ConnectionError) as e:
1855 self._format_exception(e)
1856
1857 def new_sf(self, name, sfis, sfc_encap=True):
1858 self.logger.debug("Adding a new Service Function to VIM, "
1859 "named '%s'", name)
1860 try:
1861 new_sf = None
1862 self._reload_connection()
tierno9c5c8322018-03-23 15:44:03 +01001863 # correlation = None
1864 # if sfc_encap:
1865 # correlation = 'nsh'
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001866 for instance in sfis:
1867 sfi = self.get_sfi(instance)
Igor D.Ccaadc442017-11-06 12:48:48 +00001868 if sfi.get('sfc_encap') != sfc_encap:
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001869 raise vimconn.vimconnNotSupportedException(
1870 "OpenStack VIM connector requires all SFIs of the "
1871 "same SF to share the same SFC Encapsulation")
1872 sf_dict = {'name': name,
1873 'port_pairs': sfis}
Igor D.Ccaadc442017-11-06 12:48:48 +00001874 new_sf = self.neutron.create_sfc_port_pair_group({
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001875 'port_pair_group': sf_dict})
1876 return new_sf['port_pair_group']['id']
1877 except (neExceptions.ConnectionFailed, ksExceptions.ClientException,
1878 neExceptions.NeutronException, ConnectionError) as e:
1879 if new_sf:
1880 try:
Igor D.Ccaadc442017-11-06 12:48:48 +00001881 self.neutron.delete_sfc_port_pair_group(
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001882 new_sf['port_pair_group']['id'])
1883 except Exception:
1884 self.logger.error(
1885 'Creation of Service Function failed, with '
1886 'subsequent deletion failure as well.')
1887 self._format_exception(e)
1888
1889 def get_sf(self, sf_id):
1890 self.logger.debug("Getting Service Function %s from VIM", sf_id)
1891 filter_dict = {"id": sf_id}
1892 sf_list = self.get_sf_list(filter_dict)
1893 if len(sf_list) == 0:
1894 raise vimconn.vimconnNotFoundException(
1895 "Service Function '{}' not found".format(sf_id))
1896 elif len(sf_list) > 1:
1897 raise vimconn.vimconnConflictException(
1898 "Found more than one Service Function with this criteria")
1899 sf = sf_list[0]
1900 return sf
1901
1902 def get_sf_list(self, filter_dict={}):
1903 self.logger.debug("Getting Service Function from VIM filter: '%s'",
1904 str(filter_dict))
1905 try:
1906 self._reload_connection()
tierno69b590e2018-03-13 18:52:23 +01001907 filter_dict_os = filter_dict.copy()
1908 if self.api_version3 and "tenant_id" in filter_dict_os:
1909 filter_dict_os['project_id'] = filter_dict_os.pop('tenant_id')
1910 sf_dict = self.neutron.list_sfc_port_pair_groups(**filter_dict_os)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001911 sf_list = sf_dict["port_pair_groups"]
1912 self.__sf_os2mano(sf_list)
1913 return sf_list
1914 except (neExceptions.ConnectionFailed, ksExceptions.ClientException,
1915 neExceptions.NeutronException, ConnectionError) as e:
1916 self._format_exception(e)
1917
1918 def delete_sf(self, sf_id):
1919 self.logger.debug("Deleting Service Function '%s' from VIM", sf_id)
1920 try:
1921 self._reload_connection()
Igor D.Ccaadc442017-11-06 12:48:48 +00001922 self.neutron.delete_sfc_port_pair_group(sf_id)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001923 return sf_id
1924 except (neExceptions.ConnectionFailed, neExceptions.NeutronException,
1925 ksExceptions.ClientException, neExceptions.NeutronException,
1926 ConnectionError) as e:
1927 self._format_exception(e)
1928
1929 def new_sfp(self, name, classifications, sfs, sfc_encap=True, spi=None):
1930 self.logger.debug("Adding a new Service Function Path to VIM, "
1931 "named '%s'", name)
1932 try:
1933 new_sfp = None
1934 self._reload_connection()
Igor D.Ccaadc442017-11-06 12:48:48 +00001935 # In networking-sfc the MPLS encapsulation is legacy
1936 # should be used when no full SFC Encapsulation is intended
1937 sfc_encap = 'mpls'
1938 if sfc_encap:
1939 correlation = 'nsh'
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001940 sfp_dict = {'name': name,
1941 'flow_classifiers': classifications,
1942 'port_pair_groups': sfs,
1943 'chain_parameters': {'correlation': correlation}}
1944 if spi:
1945 sfp_dict['chain_id'] = spi
Igor D.Ccaadc442017-11-06 12:48:48 +00001946 new_sfp = self.neutron.create_sfc_port_chain({'port_chain': sfp_dict})
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001947 return new_sfp["port_chain"]["id"]
1948 except (neExceptions.ConnectionFailed, ksExceptions.ClientException,
1949 neExceptions.NeutronException, ConnectionError) as e:
1950 if new_sfp:
1951 try:
Igor D.Ccaadc442017-11-06 12:48:48 +00001952 self.neutron.delete_sfc_port_chain(new_sfp['port_chain']['id'])
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001953 except Exception:
1954 self.logger.error(
1955 'Creation of Service Function Path failed, with '
1956 'subsequent deletion failure as well.')
1957 self._format_exception(e)
1958
1959 def get_sfp(self, sfp_id):
1960 self.logger.debug(" Getting Service Function Path %s from VIM", sfp_id)
1961 filter_dict = {"id": sfp_id}
1962 sfp_list = self.get_sfp_list(filter_dict)
1963 if len(sfp_list) == 0:
1964 raise vimconn.vimconnNotFoundException(
1965 "Service Function Path '{}' not found".format(sfp_id))
1966 elif len(sfp_list) > 1:
1967 raise vimconn.vimconnConflictException(
1968 "Found more than one Service Function Path with this criteria")
1969 sfp = sfp_list[0]
1970 return sfp
1971
1972 def get_sfp_list(self, filter_dict={}):
1973 self.logger.debug("Getting Service Function Paths from VIM filter: "
1974 "'%s'", str(filter_dict))
1975 try:
1976 self._reload_connection()
tierno69b590e2018-03-13 18:52:23 +01001977 filter_dict_os = filter_dict.copy()
1978 if self.api_version3 and "tenant_id" in filter_dict_os:
1979 filter_dict_os['project_id'] = filter_dict_os.pop('tenant_id')
1980 sfp_dict = self.neutron.list_sfc_port_chains(**filter_dict_os)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001981 sfp_list = sfp_dict["port_chains"]
1982 self.__sfp_os2mano(sfp_list)
1983 return sfp_list
1984 except (neExceptions.ConnectionFailed, ksExceptions.ClientException,
1985 neExceptions.NeutronException, ConnectionError) as e:
1986 self._format_exception(e)
1987
1988 def delete_sfp(self, sfp_id):
1989 self.logger.debug(
1990 "Deleting Service Function Path '%s' from VIM", sfp_id)
1991 try:
1992 self._reload_connection()
Igor D.Ccaadc442017-11-06 12:48:48 +00001993 self.neutron.delete_sfc_port_chain(sfp_id)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001994 return sfp_id
1995 except (neExceptions.ConnectionFailed, neExceptions.NeutronException,
1996 ksExceptions.ClientException, neExceptions.NeutronException,
1997 ConnectionError) as e:
1998 self._format_exception(e)