blob: 85ef2ca1443d21179c845d8a6c4fc1d4c88379e3 [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.
tierno7edb6752016-03-21 17:37:52 +010019##
20
tierno1ec592d2020-06-16 15:29:47 +000021"""
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +000022osconnector implements all the methods to interact with openstack using the python-neutronclient.
23
24For the VNF forwarding graph, The OpenStack VIM connector calls the
25networking-sfc Neutron extension methods, whose resources are mapped
26to the VIM connector's SFC resources as follows:
27- Classification (OSM) -> Flow Classifier (Neutron)
28- Service Function Instance (OSM) -> Port Pair (Neutron)
29- Service Function (OSM) -> Port Pair Group (Neutron)
30- Service Function Path (OSM) -> Port Chain (Neutron)
tierno1ec592d2020-06-16 15:29:47 +000031"""
tierno7edb6752016-03-21 17:37:52 +010032
sousaedu049cbb12022-01-05 11:39:35 +000033import copy
34from http.client import HTTPException
elumalai8658c2c2022-04-28 19:09:31 +053035import json
tiernoae4a8d12016-07-08 12:30:39 +020036import logging
sousaedu049cbb12022-01-05 11:39:35 +000037from pprint import pformat
garciadeblas2299e3b2017-01-26 14:35:55 +000038import random
kate721d79b2017-06-24 04:21:38 -070039import re
sousaedu049cbb12022-01-05 11:39:35 +000040import time
Gulsum Atici4415c4c2023-01-19 12:44:06 +030041from typing import Dict, List, Optional, Tuple
sousaedu049cbb12022-01-05 11:39:35 +000042
43from cinderclient import client as cClient
gatici335a06a2023-07-26 00:34:04 +030044import cinderclient.exceptions as cExceptions
tiernob5cef372017-06-19 15:52:22 +020045from glanceclient import client as glClient
tierno7edb6752016-03-21 17:37:52 +010046import glanceclient.exc as gl1Exceptions
sousaedu049cbb12022-01-05 11:39:35 +000047from keystoneauth1 import session
48from keystoneauth1.identity import v2, v3
49import keystoneclient.exceptions as ksExceptions
50import keystoneclient.v2_0.client as ksClient_v2
51import keystoneclient.v3.client as ksClient_v3
52import netaddr
tierno7edb6752016-03-21 17:37:52 +010053from neutronclient.common import exceptions as neExceptions
sousaedu049cbb12022-01-05 11:39:35 +000054from neutronclient.neutron import client as neClient
55from novaclient import client as nClient, exceptions as nvExceptions
56from osm_ro_plugin import vimconn
tierno7edb6752016-03-21 17:37:52 +010057from requests.exceptions import ConnectionError
sousaedu049cbb12022-01-05 11:39:35 +000058import yaml
tierno7edb6752016-03-21 17:37:52 +010059
tierno1ec592d2020-06-16 15:29:47 +000060__author__ = "Alfonso Tierno, Gerardo Garcia, Pablo Montes, xFlow Research, Igor D.C., Eduardo Sousa"
61__date__ = "$22-sep-2017 23:59:59$"
tierno40e1bce2017-08-09 09:12:04 +020062
63"""contain the openstack virtual machine status to openmano status"""
sousaedu80135b92021-02-17 15:05:18 +010064vmStatus2manoFormat = {
65 "ACTIVE": "ACTIVE",
66 "PAUSED": "PAUSED",
67 "SUSPENDED": "SUSPENDED",
68 "SHUTOFF": "INACTIVE",
69 "BUILD": "BUILD",
70 "ERROR": "ERROR",
71 "DELETED": "DELETED",
72}
73netStatus2manoFormat = {
74 "ACTIVE": "ACTIVE",
75 "PAUSED": "PAUSED",
76 "INACTIVE": "INACTIVE",
77 "BUILD": "BUILD",
78 "ERROR": "ERROR",
79 "DELETED": "DELETED",
80}
tierno7edb6752016-03-21 17:37:52 +010081
sousaedu80135b92021-02-17 15:05:18 +010082supportedClassificationTypes = ["legacy_flow_classifier"]
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +000083
tierno1ec592d2020-06-16 15:29:47 +000084# global var to have a timeout creating and deleting volumes
garciadeblas64b39c52020-05-21 08:07:25 +000085volume_timeout = 1800
86server_timeout = 1800
montesmoreno0c8def02016-12-22 12:16:23 +000087
Anderson Bravalheri0446cd52018-08-17 15:26:19 +010088
gatici335a06a2023-07-26 00:34:04 +030089def catch_any_exception(func):
90 def format_exception(*args, **kwargs):
91 try:
92 return func(*args, *kwargs)
93 except Exception as e:
94 vimconnector._format_exception(e)
95
96 return format_exception
97
98
Anderson Bravalheri0446cd52018-08-17 15:26:19 +010099class SafeDumper(yaml.SafeDumper):
100 def represent_data(self, data):
101 # Openstack APIs use custom subclasses of dict and YAML safe dumper
102 # is designed to not handle that (reference issue 142 of pyyaml)
103 if isinstance(data, dict) and data.__class__ != dict:
104 # A simple solution is to convert those items back to dicts
105 data = dict(data.items())
106
107 return super(SafeDumper, self).represent_data(data)
108
109
tierno72774862020-05-04 11:44:15 +0000110class vimconnector(vimconn.VimConnector):
sousaedu80135b92021-02-17 15:05:18 +0100111 def __init__(
112 self,
113 uuid,
114 name,
115 tenant_id,
116 tenant_name,
117 url,
118 url_admin=None,
119 user=None,
120 passwd=None,
121 log_level=None,
122 config={},
123 persistent_info={},
124 ):
tierno1ec592d2020-06-16 15:29:47 +0000125 """using common constructor parameters. In this case
tierno7edb6752016-03-21 17:37:52 +0100126 'url' is the keystone authorization url,
127 'url_admin' is not use
tierno1ec592d2020-06-16 15:29:47 +0000128 """
sousaedu80135b92021-02-17 15:05:18 +0100129 api_version = config.get("APIversion")
kate721d79b2017-06-24 04:21:38 -0700130
sousaedu80135b92021-02-17 15:05:18 +0100131 if api_version and api_version not in ("v3.3", "v2.0", "2", "3"):
132 raise vimconn.VimConnException(
133 "Invalid value '{}' for config:APIversion. "
134 "Allowed values are 'v3.3', 'v2.0', '2' or '3'".format(api_version)
135 )
136
137 vim_type = config.get("vim_type")
138
139 if vim_type and vim_type not in ("vio", "VIO"):
140 raise vimconn.VimConnException(
141 "Invalid value '{}' for config:vim_type."
142 "Allowed values are 'vio' or 'VIO'".format(vim_type)
143 )
144
145 if config.get("dataplane_net_vlan_range") is not None:
tierno1ec592d2020-06-16 15:29:47 +0000146 # validate vlan ranges provided by user
sousaedu80135b92021-02-17 15:05:18 +0100147 self._validate_vlan_ranges(
148 config.get("dataplane_net_vlan_range"), "dataplane_net_vlan_range"
149 )
garciadeblasebd66722019-01-31 16:01:31 +0000150
sousaedu80135b92021-02-17 15:05:18 +0100151 if config.get("multisegment_vlan_range") is not None:
tierno1ec592d2020-06-16 15:29:47 +0000152 # validate vlan ranges provided by user
sousaedu80135b92021-02-17 15:05:18 +0100153 self._validate_vlan_ranges(
154 config.get("multisegment_vlan_range"), "multisegment_vlan_range"
155 )
kate721d79b2017-06-24 04:21:38 -0700156
sousaedu80135b92021-02-17 15:05:18 +0100157 vimconn.VimConnector.__init__(
158 self,
159 uuid,
160 name,
161 tenant_id,
162 tenant_name,
163 url,
164 url_admin,
165 user,
166 passwd,
167 log_level,
168 config,
169 )
tiernob3d36742017-03-03 23:51:05 +0100170
tierno4d1ce222018-04-06 10:41:06 +0200171 if self.config.get("insecure") and self.config.get("ca_cert"):
sousaedu80135b92021-02-17 15:05:18 +0100172 raise vimconn.VimConnException(
173 "options insecure and ca_cert are mutually exclusive"
174 )
175
tierno4d1ce222018-04-06 10:41:06 +0200176 self.verify = True
sousaedu80135b92021-02-17 15:05:18 +0100177
tierno4d1ce222018-04-06 10:41:06 +0200178 if self.config.get("insecure"):
179 self.verify = False
sousaedu80135b92021-02-17 15:05:18 +0100180
tierno4d1ce222018-04-06 10:41:06 +0200181 if self.config.get("ca_cert"):
182 self.verify = self.config.get("ca_cert")
tierno4d1ce222018-04-06 10:41:06 +0200183
tierno7edb6752016-03-21 17:37:52 +0100184 if not url:
sousaedu80135b92021-02-17 15:05:18 +0100185 raise TypeError("url param can not be NoneType")
186
tiernob5cef372017-06-19 15:52:22 +0200187 self.persistent_info = persistent_info
sousaedu80135b92021-02-17 15:05:18 +0100188 self.availability_zone = persistent_info.get("availability_zone", None)
Luis Vega25bc6382023-10-05 23:22:04 +0000189 self.storage_availability_zone = None
Luis Vegaafe8df22023-12-01 01:02:12 +0000190 self.vm_av_zone = None
sousaedu80135b92021-02-17 15:05:18 +0100191 self.session = persistent_info.get("session", {"reload_client": True})
192 self.my_tenant_id = self.session.get("my_tenant_id")
193 self.nova = self.session.get("nova")
194 self.neutron = self.session.get("neutron")
195 self.cinder = self.session.get("cinder")
196 self.glance = self.session.get("glance")
197 # self.glancev1 = self.session.get("glancev1")
198 self.keystone = self.session.get("keystone")
199 self.api_version3 = self.session.get("api_version3")
kate721d79b2017-06-24 04:21:38 -0700200 self.vim_type = self.config.get("vim_type")
sousaedu80135b92021-02-17 15:05:18 +0100201
kate721d79b2017-06-24 04:21:38 -0700202 if self.vim_type:
203 self.vim_type = self.vim_type.upper()
sousaedu80135b92021-02-17 15:05:18 +0100204
kate721d79b2017-06-24 04:21:38 -0700205 if self.config.get("use_internal_endpoint"):
206 self.endpoint_type = "internalURL"
207 else:
208 self.endpoint_type = None
montesmoreno0c8def02016-12-22 12:16:23 +0000209
sousaedu80135b92021-02-17 15:05:18 +0100210 logging.getLogger("urllib3").setLevel(logging.WARNING)
211 logging.getLogger("keystoneauth").setLevel(logging.WARNING)
212 logging.getLogger("novaclient").setLevel(logging.WARNING)
213 self.logger = logging.getLogger("ro.vim.openstack")
kate721d79b2017-06-24 04:21:38 -0700214
tiernoa05b65a2019-02-01 12:30:27 +0000215 # allow security_groups to be a list or a single string
sousaedu80135b92021-02-17 15:05:18 +0100216 if isinstance(self.config.get("security_groups"), str):
217 self.config["security_groups"] = [self.config["security_groups"]]
218
tiernoa05b65a2019-02-01 12:30:27 +0000219 self.security_groups_id = None
220
tierno1ec592d2020-06-16 15:29:47 +0000221 # ###### VIO Specific Changes #########
kate721d79b2017-06-24 04:21:38 -0700222 if self.vim_type == "VIO":
sousaedu80135b92021-02-17 15:05:18 +0100223 self.logger = logging.getLogger("ro.vim.vio")
kate721d79b2017-06-24 04:21:38 -0700224
tiernofe789902016-09-29 14:20:44 +0000225 if log_level:
tierno1ec592d2020-06-16 15:29:47 +0000226 self.logger.setLevel(getattr(logging, log_level))
tiernof716aea2017-06-21 18:01:40 +0200227
228 def __getitem__(self, index):
229 """Get individuals parameters.
230 Throw KeyError"""
sousaedu80135b92021-02-17 15:05:18 +0100231 if index == "project_domain_id":
tiernof716aea2017-06-21 18:01:40 +0200232 return self.config.get("project_domain_id")
sousaedu80135b92021-02-17 15:05:18 +0100233 elif index == "user_domain_id":
tiernof716aea2017-06-21 18:01:40 +0200234 return self.config.get("user_domain_id")
235 else:
tierno72774862020-05-04 11:44:15 +0000236 return vimconn.VimConnector.__getitem__(self, index)
tiernof716aea2017-06-21 18:01:40 +0200237
238 def __setitem__(self, index, value):
239 """Set individuals parameters and it is marked as dirty so to force connection reload.
240 Throw KeyError"""
sousaedu80135b92021-02-17 15:05:18 +0100241 if index == "project_domain_id":
tiernof716aea2017-06-21 18:01:40 +0200242 self.config["project_domain_id"] = value
sousaedu80135b92021-02-17 15:05:18 +0100243 elif index == "user_domain_id":
tierno1ec592d2020-06-16 15:29:47 +0000244 self.config["user_domain_id"] = value
tiernof716aea2017-06-21 18:01:40 +0200245 else:
tierno72774862020-05-04 11:44:15 +0000246 vimconn.VimConnector.__setitem__(self, index, value)
sousaedu80135b92021-02-17 15:05:18 +0100247
248 self.session["reload_client"] = True
tiernof716aea2017-06-21 18:01:40 +0200249
Anderson Bravalheri0446cd52018-08-17 15:26:19 +0100250 def serialize(self, value):
251 """Serialization of python basic types.
252
253 In the case value is not serializable a message will be logged and a
254 simple representation of the data that cannot be converted back to
255 python is returned.
256 """
tierno7d782ef2019-10-04 12:56:31 +0000257 if isinstance(value, str):
Anderson Bravalheri0446cd52018-08-17 15:26:19 +0100258 return value
259
260 try:
sousaedu80135b92021-02-17 15:05:18 +0100261 return yaml.dump(
262 value, Dumper=SafeDumper, default_flow_style=True, width=256
263 )
Anderson Bravalheri0446cd52018-08-17 15:26:19 +0100264 except yaml.representer.RepresenterError:
sousaedu80135b92021-02-17 15:05:18 +0100265 self.logger.debug(
266 "The following entity cannot be serialized in YAML:\n\n%s\n\n",
267 pformat(value),
268 exc_info=True,
269 )
270
tierno1ec592d2020-06-16 15:29:47 +0000271 return str(value)
Anderson Bravalheri0446cd52018-08-17 15:26:19 +0100272
tierno7edb6752016-03-21 17:37:52 +0100273 def _reload_connection(self):
tierno1ec592d2020-06-16 15:29:47 +0000274 """Called before any operation, it check if credentials has changed
tierno7edb6752016-03-21 17:37:52 +0100275 Throw keystoneclient.apiclient.exceptions.AuthorizationFailure
tierno1ec592d2020-06-16 15:29:47 +0000276 """
277 # TODO control the timing and possible token timeout, but it seams that python client does this task for us :-)
sousaedu80135b92021-02-17 15:05:18 +0100278 if self.session["reload_client"]:
279 if self.config.get("APIversion"):
280 self.api_version3 = (
281 self.config["APIversion"] == "v3.3"
282 or self.config["APIversion"] == "3"
283 )
tiernof716aea2017-06-21 18:01:40 +0200284 else: # get from ending auth_url that end with v3 or with v2.0
sousaedu80135b92021-02-17 15:05:18 +0100285 self.api_version3 = self.url.endswith("/v3") or self.url.endswith(
286 "/v3/"
287 )
288
289 self.session["api_version3"] = self.api_version3
290
tiernof716aea2017-06-21 18:01:40 +0200291 if self.api_version3:
sousaedu80135b92021-02-17 15:05:18 +0100292 if self.config.get("project_domain_id") or self.config.get(
293 "project_domain_name"
294 ):
tierno3cb8dc32017-10-24 18:13:19 +0200295 project_domain_id_default = None
296 else:
sousaedu80135b92021-02-17 15:05:18 +0100297 project_domain_id_default = "default"
298
299 if self.config.get("user_domain_id") or self.config.get(
300 "user_domain_name"
301 ):
tierno3cb8dc32017-10-24 18:13:19 +0200302 user_domain_id_default = None
303 else:
sousaedu80135b92021-02-17 15:05:18 +0100304 user_domain_id_default = "default"
305 auth = v3.Password(
306 auth_url=self.url,
307 username=self.user,
308 password=self.passwd,
309 project_name=self.tenant_name,
310 project_id=self.tenant_id,
311 project_domain_id=self.config.get(
312 "project_domain_id", project_domain_id_default
313 ),
314 user_domain_id=self.config.get(
315 "user_domain_id", user_domain_id_default
316 ),
317 project_domain_name=self.config.get("project_domain_name"),
318 user_domain_name=self.config.get("user_domain_name"),
319 )
ahmadsa95baa272016-11-30 09:14:11 +0500320 else:
sousaedu80135b92021-02-17 15:05:18 +0100321 auth = v2.Password(
322 auth_url=self.url,
323 username=self.user,
324 password=self.passwd,
325 tenant_name=self.tenant_name,
326 tenant_id=self.tenant_id,
327 )
328
tierno4d1ce222018-04-06 10:41:06 +0200329 sess = session.Session(auth=auth, verify=self.verify)
tierno1ec592d2020-06-16 15:29:47 +0000330 # addedd region_name to keystone, nova, neutron and cinder to support distributed cloud for Wind River
331 # Titanium cloud and StarlingX
sousaedu80135b92021-02-17 15:05:18 +0100332 region_name = self.config.get("region_name")
333
tiernof716aea2017-06-21 18:01:40 +0200334 if self.api_version3:
sousaedu80135b92021-02-17 15:05:18 +0100335 self.keystone = ksClient_v3.Client(
336 session=sess,
337 endpoint_type=self.endpoint_type,
338 region_name=region_name,
339 )
tiernof716aea2017-06-21 18:01:40 +0200340 else:
sousaedu80135b92021-02-17 15:05:18 +0100341 self.keystone = ksClient_v2.Client(
342 session=sess, endpoint_type=self.endpoint_type
343 )
344
345 self.session["keystone"] = self.keystone
346 # In order to enable microversion functionality an explicit microversion must be specified in "config".
montesmoreno9317d302017-08-16 12:48:23 +0200347 # This implementation approach is due to the warning message in
348 # https://developer.openstack.org/api-guide/compute/microversions.html
349 # where it is stated that microversion backwards compatibility is not guaranteed and clients should
350 # always require an specific microversion.
sousaedu80135b92021-02-17 15:05:18 +0100351 # To be able to use "device role tagging" functionality define "microversion: 2.32" in datacenter config
montesmoreno9317d302017-08-16 12:48:23 +0200352 version = self.config.get("microversion")
sousaedu80135b92021-02-17 15:05:18 +0100353
montesmoreno9317d302017-08-16 12:48:23 +0200354 if not version:
vegallc53829d2023-06-01 00:47:44 -0500355 version = "2.60"
sousaedu80135b92021-02-17 15:05:18 +0100356
tierno1ec592d2020-06-16 15:29:47 +0000357 # addedd region_name to keystone, nova, neutron and cinder to support distributed cloud for Wind River
358 # Titanium cloud and StarlingX
sousaedu80135b92021-02-17 15:05:18 +0100359 self.nova = self.session["nova"] = nClient.Client(
360 str(version),
361 session=sess,
362 endpoint_type=self.endpoint_type,
363 region_name=region_name,
364 )
365 self.neutron = self.session["neutron"] = neClient.Client(
366 "2.0",
367 session=sess,
368 endpoint_type=self.endpoint_type,
369 region_name=region_name,
370 )
Lovejeet Singh778f3cc2023-02-13 16:15:40 +0530371
372 if sess.get_all_version_data(service_type="volumev2"):
373 self.cinder = self.session["cinder"] = cClient.Client(
374 2,
375 session=sess,
376 endpoint_type=self.endpoint_type,
377 region_name=region_name,
378 )
379 else:
380 self.cinder = self.session["cinder"] = cClient.Client(
381 3,
382 session=sess,
383 endpoint_type=self.endpoint_type,
384 region_name=region_name,
385 )
sousaedu80135b92021-02-17 15:05:18 +0100386
tiernoa05b65a2019-02-01 12:30:27 +0000387 try:
sousaedu80135b92021-02-17 15:05:18 +0100388 self.my_tenant_id = self.session["my_tenant_id"] = sess.get_project_id()
tierno1ec592d2020-06-16 15:29:47 +0000389 except Exception:
tiernoa05b65a2019-02-01 12:30:27 +0000390 self.logger.error("Cannot get project_id from session", exc_info=True)
sousaedu80135b92021-02-17 15:05:18 +0100391
kate721d79b2017-06-24 04:21:38 -0700392 if self.endpoint_type == "internalURL":
393 glance_service_id = self.keystone.services.list(name="glance")[0].id
sousaedu80135b92021-02-17 15:05:18 +0100394 glance_endpoint = self.keystone.endpoints.list(
395 glance_service_id, interface="internal"
396 )[0].url
kate721d79b2017-06-24 04:21:38 -0700397 else:
398 glance_endpoint = None
sousaedu80135b92021-02-17 15:05:18 +0100399
400 self.glance = self.session["glance"] = glClient.Client(
401 2, session=sess, endpoint=glance_endpoint
402 )
tiernoa05b65a2019-02-01 12:30:27 +0000403 # using version 1 of glance client in new_image()
sousaedu80135b92021-02-17 15:05:18 +0100404 # self.glancev1 = self.session["glancev1"] = glClient.Client("1", session=sess,
tierno1beea862018-07-11 15:47:37 +0200405 # endpoint=glance_endpoint)
sousaedu80135b92021-02-17 15:05:18 +0100406 self.session["reload_client"] = False
407 self.persistent_info["session"] = self.session
mirabal29356312017-07-27 12:21:22 +0200408 # add availablity zone info inside self.persistent_info
409 self._set_availablity_zones()
sousaedu80135b92021-02-17 15:05:18 +0100410 self.persistent_info["availability_zone"] = self.availability_zone
411 # force to get again security_groups_ids next time they are needed
412 self.security_groups_id = None
ahmadsa95baa272016-11-30 09:14:11 +0500413
tierno7edb6752016-03-21 17:37:52 +0100414 def __net_os2mano(self, net_list_dict):
tierno1ec592d2020-06-16 15:29:47 +0000415 """Transform the net openstack format to mano format
416 net_list_dict can be a list of dict or a single dict"""
tierno7edb6752016-03-21 17:37:52 +0100417 if type(net_list_dict) is dict:
tierno1ec592d2020-06-16 15:29:47 +0000418 net_list_ = (net_list_dict,)
tierno7edb6752016-03-21 17:37:52 +0100419 elif type(net_list_dict) is list:
tierno1ec592d2020-06-16 15:29:47 +0000420 net_list_ = net_list_dict
tierno7edb6752016-03-21 17:37:52 +0100421 else:
422 raise TypeError("param net_list_dict must be a list or a dictionary")
423 for net in net_list_:
sousaedu80135b92021-02-17 15:05:18 +0100424 if net.get("provider:network_type") == "vlan":
425 net["type"] = "data"
tierno7edb6752016-03-21 17:37:52 +0100426 else:
sousaedu80135b92021-02-17 15:05:18 +0100427 net["type"] = "bridge"
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +0200428
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000429 def __classification_os2mano(self, class_list_dict):
430 """Transform the openstack format (Flow Classifier) to mano format
431 (Classification) class_list_dict can be a list of dict or a single dict
432 """
433 if isinstance(class_list_dict, dict):
434 class_list_ = [class_list_dict]
435 elif isinstance(class_list_dict, list):
436 class_list_ = class_list_dict
437 else:
tierno1ec592d2020-06-16 15:29:47 +0000438 raise TypeError("param class_list_dict must be a list or a dictionary")
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000439 for classification in class_list_:
sousaedu80135b92021-02-17 15:05:18 +0100440 id = classification.pop("id")
441 name = classification.pop("name")
442 description = classification.pop("description")
443 project_id = classification.pop("project_id")
444 tenant_id = classification.pop("tenant_id")
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000445 original_classification = copy.deepcopy(classification)
446 classification.clear()
sousaedu80135b92021-02-17 15:05:18 +0100447 classification["ctype"] = "legacy_flow_classifier"
448 classification["definition"] = original_classification
449 classification["id"] = id
450 classification["name"] = name
451 classification["description"] = description
452 classification["project_id"] = project_id
453 classification["tenant_id"] = tenant_id
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000454
455 def __sfi_os2mano(self, sfi_list_dict):
456 """Transform the openstack format (Port Pair) to mano format (SFI)
457 sfi_list_dict can be a list of dict or a single dict
458 """
459 if isinstance(sfi_list_dict, dict):
460 sfi_list_ = [sfi_list_dict]
461 elif isinstance(sfi_list_dict, list):
462 sfi_list_ = sfi_list_dict
463 else:
sousaedu80135b92021-02-17 15:05:18 +0100464 raise TypeError("param sfi_list_dict must be a list or a dictionary")
465
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000466 for sfi in sfi_list_:
sousaedu80135b92021-02-17 15:05:18 +0100467 sfi["ingress_ports"] = []
468 sfi["egress_ports"] = []
469
470 if sfi.get("ingress"):
471 sfi["ingress_ports"].append(sfi["ingress"])
472
473 if sfi.get("egress"):
474 sfi["egress_ports"].append(sfi["egress"])
475
476 del sfi["ingress"]
477 del sfi["egress"]
478 params = sfi.get("service_function_parameters")
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000479 sfc_encap = False
sousaedu80135b92021-02-17 15:05:18 +0100480
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000481 if params:
sousaedu80135b92021-02-17 15:05:18 +0100482 correlation = params.get("correlation")
483
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000484 if correlation:
485 sfc_encap = True
sousaedu80135b92021-02-17 15:05:18 +0100486
487 sfi["sfc_encap"] = sfc_encap
488 del sfi["service_function_parameters"]
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000489
490 def __sf_os2mano(self, sf_list_dict):
491 """Transform the openstack format (Port Pair Group) to mano format (SF)
492 sf_list_dict can be a list of dict or a single dict
493 """
494 if isinstance(sf_list_dict, dict):
495 sf_list_ = [sf_list_dict]
496 elif isinstance(sf_list_dict, list):
497 sf_list_ = sf_list_dict
498 else:
sousaedu80135b92021-02-17 15:05:18 +0100499 raise TypeError("param sf_list_dict must be a list or a dictionary")
500
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000501 for sf in sf_list_:
sousaedu80135b92021-02-17 15:05:18 +0100502 del sf["port_pair_group_parameters"]
503 sf["sfis"] = sf["port_pairs"]
504 del sf["port_pairs"]
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000505
506 def __sfp_os2mano(self, sfp_list_dict):
507 """Transform the openstack format (Port Chain) to mano format (SFP)
508 sfp_list_dict can be a list of dict or a single dict
509 """
510 if isinstance(sfp_list_dict, dict):
511 sfp_list_ = [sfp_list_dict]
512 elif isinstance(sfp_list_dict, list):
513 sfp_list_ = sfp_list_dict
514 else:
sousaedu80135b92021-02-17 15:05:18 +0100515 raise TypeError("param sfp_list_dict must be a list or a dictionary")
516
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000517 for sfp in sfp_list_:
sousaedu80135b92021-02-17 15:05:18 +0100518 params = sfp.pop("chain_parameters")
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000519 sfc_encap = False
sousaedu80135b92021-02-17 15:05:18 +0100520
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000521 if params:
sousaedu80135b92021-02-17 15:05:18 +0100522 correlation = params.get("correlation")
523
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000524 if correlation:
525 sfc_encap = True
sousaedu80135b92021-02-17 15:05:18 +0100526
527 sfp["sfc_encap"] = sfc_encap
528 sfp["spi"] = sfp.pop("chain_id")
529 sfp["classifications"] = sfp.pop("flow_classifiers")
530 sfp["service_functions"] = sfp.pop("port_pair_groups")
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +0000531
532 # placeholder for now; read TODO note below
533 def _validate_classification(self, type, definition):
534 # only legacy_flow_classifier Type is supported at this point
535 return True
536 # TODO(igordcard): this method should be an abstract method of an
537 # abstract Classification class to be implemented by the specific
538 # Types. Also, abstract vimconnector should call the validation
539 # method before the implemented VIM connectors are called.
540
gatici335a06a2023-07-26 00:34:04 +0300541 @staticmethod
542 def _format_exception(exception):
tierno69647792020-03-05 16:45:48 +0000543 """Transform a keystone, nova, neutron exception into a vimconn exception discovering the cause"""
tierno69647792020-03-05 16:45:48 +0000544 message_error = str(exception)
tierno5ad826a2020-08-11 11:19:44 +0000545 tip = ""
tiernode12f782019-04-05 12:46:42 +0000546
sousaedu80135b92021-02-17 15:05:18 +0100547 if isinstance(
548 exception,
549 (
550 neExceptions.NetworkNotFoundClient,
551 nvExceptions.NotFound,
gatici335a06a2023-07-26 00:34:04 +0300552 nvExceptions.ResourceNotFound,
sousaedu80135b92021-02-17 15:05:18 +0100553 ksExceptions.NotFound,
554 gl1Exceptions.HTTPNotFound,
gatici335a06a2023-07-26 00:34:04 +0300555 cExceptions.NotFound,
sousaedu80135b92021-02-17 15:05:18 +0100556 ),
557 ):
558 raise vimconn.VimConnNotFoundException(
559 type(exception).__name__ + ": " + message_error
560 )
561 elif isinstance(
562 exception,
563 (
564 HTTPException,
565 gl1Exceptions.HTTPException,
566 gl1Exceptions.CommunicationError,
567 ConnectionError,
568 ksExceptions.ConnectionError,
569 neExceptions.ConnectionFailed,
gatici335a06a2023-07-26 00:34:04 +0300570 cExceptions.ConnectionError,
sousaedu80135b92021-02-17 15:05:18 +0100571 ),
572 ):
tierno5ad826a2020-08-11 11:19:44 +0000573 if type(exception).__name__ == "SSLError":
574 tip = " (maybe option 'insecure' must be added to the VIM)"
sousaedu80135b92021-02-17 15:05:18 +0100575
576 raise vimconn.VimConnConnectionException(
577 "Invalid URL or credentials{}: {}".format(tip, message_error)
578 )
579 elif isinstance(
580 exception,
581 (
582 KeyError,
583 nvExceptions.BadRequest,
584 ksExceptions.BadRequest,
gatici335a06a2023-07-26 00:34:04 +0300585 gl1Exceptions.BadRequest,
586 cExceptions.BadRequest,
sousaedu80135b92021-02-17 15:05:18 +0100587 ),
588 ):
Patricia Reinoso17852162023-06-15 07:33:04 +0000589 if message_error == "OS-EXT-SRV-ATTR:host":
590 tip = " (If the user does not have non-admin credentials, this attribute will be missing)"
591 raise vimconn.VimConnInsufficientCredentials(
592 type(exception).__name__ + ": " + message_error + tip
593 )
sousaedu80135b92021-02-17 15:05:18 +0100594 raise vimconn.VimConnException(
595 type(exception).__name__ + ": " + message_error
596 )
Patricia Reinoso17852162023-06-15 07:33:04 +0000597
sousaedu80135b92021-02-17 15:05:18 +0100598 elif isinstance(
599 exception,
600 (
601 nvExceptions.ClientException,
602 ksExceptions.ClientException,
603 neExceptions.NeutronException,
gatici335a06a2023-07-26 00:34:04 +0300604 cExceptions.ClientException,
sousaedu80135b92021-02-17 15:05:18 +0100605 ),
606 ):
607 raise vimconn.VimConnUnexpectedResponse(
608 type(exception).__name__ + ": " + message_error
609 )
tiernoae4a8d12016-07-08 12:30:39 +0200610 elif isinstance(exception, nvExceptions.Conflict):
sousaedu80135b92021-02-17 15:05:18 +0100611 raise vimconn.VimConnConflictException(
612 type(exception).__name__ + ": " + message_error
613 )
tierno72774862020-05-04 11:44:15 +0000614 elif isinstance(exception, vimconn.VimConnException):
tierno41a69812018-02-16 14:34:33 +0100615 raise exception
tiernof716aea2017-06-21 18:01:40 +0200616 else: # ()
gatici335a06a2023-07-26 00:34:04 +0300617 logger = logging.getLogger("ro.vim.openstack")
618 logger.error("General Exception " + message_error, exc_info=True)
sousaedu80135b92021-02-17 15:05:18 +0100619
gatici335a06a2023-07-26 00:34:04 +0300620 raise vimconn.VimConnException(
sousaedu80135b92021-02-17 15:05:18 +0100621 type(exception).__name__ + ": " + message_error
622 )
tiernoae4a8d12016-07-08 12:30:39 +0200623
tiernoa05b65a2019-02-01 12:30:27 +0000624 def _get_ids_from_name(self):
625 """
626 Obtain ids from name of tenant and security_groups. Store at self .security_groups_id"
627 :return: None
628 """
629 # get tenant_id if only tenant_name is supplied
630 self._reload_connection()
sousaedu80135b92021-02-17 15:05:18 +0100631
tiernoa05b65a2019-02-01 12:30:27 +0000632 if not self.my_tenant_id:
sousaedu80135b92021-02-17 15:05:18 +0100633 raise vimconn.VimConnConnectionException(
634 "Error getting tenant information from name={} id={}".format(
635 self.tenant_name, self.tenant_id
636 )
637 )
638
639 if self.config.get("security_groups") and not self.security_groups_id:
tiernoa05b65a2019-02-01 12:30:27 +0000640 # convert from name to id
sousaedu80135b92021-02-17 15:05:18 +0100641 neutron_sg_list = self.neutron.list_security_groups(
642 tenant_id=self.my_tenant_id
643 )["security_groups"]
tiernoa05b65a2019-02-01 12:30:27 +0000644
645 self.security_groups_id = []
sousaedu80135b92021-02-17 15:05:18 +0100646 for sg in self.config.get("security_groups"):
tiernoa05b65a2019-02-01 12:30:27 +0000647 for neutron_sg in neutron_sg_list:
648 if sg in (neutron_sg["id"], neutron_sg["name"]):
649 self.security_groups_id.append(neutron_sg["id"])
650 break
651 else:
652 self.security_groups_id = None
sousaedu80135b92021-02-17 15:05:18 +0100653
654 raise vimconn.VimConnConnectionException(
655 "Not found security group {} for this tenant".format(sg)
656 )
tiernoa05b65a2019-02-01 12:30:27 +0000657
vegallc53829d2023-06-01 00:47:44 -0500658 def _find_nova_server(self, vm_id):
659 """
660 Returns the VM instance from Openstack and completes it with flavor ID
661 Do not call nova.servers.find directly, as it does not return flavor ID with microversion>=2.47
662 """
663 try:
664 self._reload_connection()
665 server = self.nova.servers.find(id=vm_id)
666 # TODO parse input and translate to VIM format (openmano_schemas.new_vminstance_response_schema)
667 server_dict = server.to_dict()
668 try:
Luis Vegad6577d82023-07-26 20:49:12 +0000669 if server_dict["flavor"].get("original_name"):
670 server_dict["flavor"]["id"] = self.nova.flavors.find(
671 name=server_dict["flavor"]["original_name"]
672 ).id
vegallc53829d2023-06-01 00:47:44 -0500673 except nClient.exceptions.NotFound as e:
674 self.logger.warning(str(e.message))
675 return server_dict
676 except (
677 ksExceptions.ClientException,
678 nvExceptions.ClientException,
679 nvExceptions.NotFound,
680 ConnectionError,
681 ) as e:
682 self._format_exception(e)
683
tierno5509c2e2019-07-04 16:23:20 +0000684 def check_vim_connectivity(self):
685 # just get network list to check connectivity and credentials
686 self.get_network_list(filter_dict={})
687
tiernoae4a8d12016-07-08 12:30:39 +0200688 def get_tenant_list(self, filter_dict={}):
tierno1ec592d2020-06-16 15:29:47 +0000689 """Obtain tenants of VIM
tiernoae4a8d12016-07-08 12:30:39 +0200690 filter_dict can contain the following keys:
691 name: filter by tenant name
692 id: filter by tenant uuid/id
693 <other VIM specific>
694 Returns the tenant list of dictionaries: [{'name':'<name>, 'id':'<id>, ...}, ...]
tierno1ec592d2020-06-16 15:29:47 +0000695 """
ahmadsa95baa272016-11-30 09:14:11 +0500696 self.logger.debug("Getting tenants from VIM filter: '%s'", str(filter_dict))
tiernoae4a8d12016-07-08 12:30:39 +0200697 try:
698 self._reload_connection()
sousaedu80135b92021-02-17 15:05:18 +0100699
tiernof716aea2017-06-21 18:01:40 +0200700 if self.api_version3:
sousaedu80135b92021-02-17 15:05:18 +0100701 project_class_list = self.keystone.projects.list(
702 name=filter_dict.get("name")
703 )
ahmadsa95baa272016-11-30 09:14:11 +0500704 else:
tiernof716aea2017-06-21 18:01:40 +0200705 project_class_list = self.keystone.tenants.findall(**filter_dict)
sousaedu80135b92021-02-17 15:05:18 +0100706
tierno1ec592d2020-06-16 15:29:47 +0000707 project_list = []
sousaedu80135b92021-02-17 15:05:18 +0100708
ahmadsa95baa272016-11-30 09:14:11 +0500709 for project in project_class_list:
sousaedu80135b92021-02-17 15:05:18 +0100710 if filter_dict.get("id") and filter_dict["id"] != project.id:
tiernof716aea2017-06-21 18:01:40 +0200711 continue
sousaedu80135b92021-02-17 15:05:18 +0100712
ahmadsa95baa272016-11-30 09:14:11 +0500713 project_list.append(project.to_dict())
sousaedu80135b92021-02-17 15:05:18 +0100714
ahmadsa95baa272016-11-30 09:14:11 +0500715 return project_list
sousaedu80135b92021-02-17 15:05:18 +0100716 except (
717 ksExceptions.ConnectionError,
718 ksExceptions.ClientException,
719 ConnectionError,
720 ) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200721 self._format_exception(e)
722
723 def new_tenant(self, tenant_name, tenant_description):
tierno1ec592d2020-06-16 15:29:47 +0000724 """Adds a new tenant to openstack VIM. Returns the tenant identifier"""
tiernoae4a8d12016-07-08 12:30:39 +0200725 self.logger.debug("Adding a new tenant name: %s", tenant_name)
726 try:
727 self._reload_connection()
sousaedu80135b92021-02-17 15:05:18 +0100728
tiernof716aea2017-06-21 18:01:40 +0200729 if self.api_version3:
sousaedu80135b92021-02-17 15:05:18 +0100730 project = self.keystone.projects.create(
731 tenant_name,
732 self.config.get("project_domain_id", "default"),
733 description=tenant_description,
734 is_domain=False,
735 )
ahmadsa95baa272016-11-30 09:14:11 +0500736 else:
tiernof716aea2017-06-21 18:01:40 +0200737 project = self.keystone.tenants.create(tenant_name, tenant_description)
sousaedu80135b92021-02-17 15:05:18 +0100738
ahmadsa95baa272016-11-30 09:14:11 +0500739 return project.id
sousaedu80135b92021-02-17 15:05:18 +0100740 except (
741 ksExceptions.ConnectionError,
742 ksExceptions.ClientException,
743 ksExceptions.BadRequest,
744 ConnectionError,
745 ) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200746 self._format_exception(e)
747
748 def delete_tenant(self, tenant_id):
tierno1ec592d2020-06-16 15:29:47 +0000749 """Delete a tenant from openstack VIM. Returns the old tenant identifier"""
tiernoae4a8d12016-07-08 12:30:39 +0200750 self.logger.debug("Deleting tenant %s from VIM", tenant_id)
751 try:
752 self._reload_connection()
sousaedu80135b92021-02-17 15:05:18 +0100753
tiernof716aea2017-06-21 18:01:40 +0200754 if self.api_version3:
ahmadsa95baa272016-11-30 09:14:11 +0500755 self.keystone.projects.delete(tenant_id)
756 else:
757 self.keystone.tenants.delete(tenant_id)
sousaedu80135b92021-02-17 15:05:18 +0100758
tiernoae4a8d12016-07-08 12:30:39 +0200759 return tenant_id
gatici335a06a2023-07-26 00:34:04 +0300760
sousaedu80135b92021-02-17 15:05:18 +0100761 except (
762 ksExceptions.ConnectionError,
763 ksExceptions.ClientException,
764 ksExceptions.NotFound,
765 ConnectionError,
766 ) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200767 self._format_exception(e)
ahmadsa95baa272016-11-30 09:14:11 +0500768
sousaedu80135b92021-02-17 15:05:18 +0100769 def new_network(
770 self,
771 net_name,
772 net_type,
773 ip_profile=None,
774 shared=False,
775 provider_network_profile=None,
776 ):
garciadeblasebd66722019-01-31 16:01:31 +0000777 """Adds a tenant network to VIM
778 Params:
779 'net_name': name of the network
780 'net_type': one of:
781 'bridge': overlay isolated network
782 'data': underlay E-LAN network for Passthrough and SRIOV interfaces
783 'ptp': underlay E-LINE network for Passthrough and SRIOV interfaces.
784 'ip_profile': is a dict containing the IP parameters of the network
785 'ip_version': can be "IPv4" or "IPv6" (Currently only IPv4 is implemented)
786 'subnet_address': ip_prefix_schema, that is X.X.X.X/Y
787 'gateway_address': (Optional) ip_schema, that is X.X.X.X
788 'dns_address': (Optional) comma separated list of ip_schema, e.g. X.X.X.X[,X,X,X,X]
789 'dhcp_enabled': True or False
790 'dhcp_start_address': ip_schema, first IP to grant
791 'dhcp_count': number of IPs to grant.
792 'shared': if this network can be seen/use by other tenants/organization
garciadeblas4af0d542020-02-18 16:01:13 +0100793 'provider_network_profile': (optional) contains {segmentation-id: vlan, network-type: vlan|vxlan,
794 physical-network: physnet-label}
garciadeblasebd66722019-01-31 16:01:31 +0000795 Returns a tuple with the network identifier and created_items, or raises an exception on error
796 created_items can be None or a dictionary where this method can include key-values that will be passed to
797 the method delete_network. Can be used to store created segments, created l2gw connections, etc.
798 Format is vimconnector dependent, but do not use nested dictionaries and a value of None should be the same
799 as not present.
800 """
sousaedu80135b92021-02-17 15:05:18 +0100801 self.logger.debug(
802 "Adding a new network to VIM name '%s', type '%s'", net_name, net_type
803 )
garciadeblasebd66722019-01-31 16:01:31 +0000804 # self.logger.debug(">>>>>>>>>>>>>>>>>> IP profile %s", str(ip_profile))
kbsuba85c54d2019-10-17 16:30:32 +0000805
tierno7edb6752016-03-21 17:37:52 +0100806 try:
kbsuba85c54d2019-10-17 16:30:32 +0000807 vlan = None
sousaedu80135b92021-02-17 15:05:18 +0100808
kbsuba85c54d2019-10-17 16:30:32 +0000809 if provider_network_profile:
810 vlan = provider_network_profile.get("segmentation-id")
sousaedu80135b92021-02-17 15:05:18 +0100811
garciadeblasedca7b32016-09-29 14:01:52 +0000812 new_net = None
garciadeblasebd66722019-01-31 16:01:31 +0000813 created_items = {}
tierno7edb6752016-03-21 17:37:52 +0100814 self._reload_connection()
sousaedu80135b92021-02-17 15:05:18 +0100815 network_dict = {"name": net_name, "admin_state_up": True}
816
Gabriel Cuba0d8ce072022-12-14 18:33:50 -0500817 if net_type in ("data", "ptp") or provider_network_profile:
tierno6869ae72020-01-09 17:37:34 +0000818 provider_physical_network = None
sousaedu80135b92021-02-17 15:05:18 +0100819
820 if provider_network_profile and provider_network_profile.get(
821 "physical-network"
822 ):
823 provider_physical_network = provider_network_profile.get(
824 "physical-network"
825 )
826
tierno6869ae72020-01-09 17:37:34 +0000827 # provider-network must be one of the dataplane_physcial_netowrk if this is a list. If it is string
828 # or not declared, just ignore the checking
sousaedu80135b92021-02-17 15:05:18 +0100829 if (
830 isinstance(
831 self.config.get("dataplane_physical_net"), (tuple, list)
832 )
833 and provider_physical_network
834 not in self.config["dataplane_physical_net"]
835 ):
tierno72774862020-05-04 11:44:15 +0000836 raise vimconn.VimConnConflictException(
sousaedu80135b92021-02-17 15:05:18 +0100837 "Invalid parameter 'provider-network:physical-network' "
838 "for network creation. '{}' is not one of the declared "
839 "list at VIM_config:dataplane_physical_net".format(
840 provider_physical_network
841 )
842 )
843
844 # use the default dataplane_physical_net
845 if not provider_physical_network:
846 provider_physical_network = self.config.get(
847 "dataplane_physical_net"
848 )
849
gatici335a06a2023-07-26 00:34:04 +0300850 # if it is non-empty list, use the first value. If it is a string use the value directly
sousaedu80135b92021-02-17 15:05:18 +0100851 if (
852 isinstance(provider_physical_network, (tuple, list))
853 and provider_physical_network
854 ):
tierno6869ae72020-01-09 17:37:34 +0000855 provider_physical_network = provider_physical_network[0]
856
857 if not provider_physical_network:
tierno5ad826a2020-08-11 11:19:44 +0000858 raise vimconn.VimConnConflictException(
sousaedu80135b92021-02-17 15:05:18 +0100859 "missing information needed for underlay networks. Provide "
860 "'dataplane_physical_net' configuration at VIM or use the NS "
861 "instantiation parameter 'provider-network.physical-network'"
862 " for the VLD"
863 )
tierno6869ae72020-01-09 17:37:34 +0000864
sousaedu80135b92021-02-17 15:05:18 +0100865 if not self.config.get("multisegment_support"):
garciadeblasaca8cb52023-12-21 16:28:15 +0100866 network_dict["provider:physical_network"] = (
867 provider_physical_network
868 )
sousaedu80135b92021-02-17 15:05:18 +0100869
870 if (
871 provider_network_profile
872 and "network-type" in provider_network_profile
873 ):
garciadeblasaca8cb52023-12-21 16:28:15 +0100874 network_dict["provider:network_type"] = (
875 provider_network_profile["network-type"]
876 )
garciadeblas4af0d542020-02-18 16:01:13 +0100877 else:
sousaedu80135b92021-02-17 15:05:18 +0100878 network_dict["provider:network_type"] = self.config.get(
879 "dataplane_network_type", "vlan"
880 )
881
tierno6869ae72020-01-09 17:37:34 +0000882 if vlan:
883 network_dict["provider:segmentation_id"] = vlan
garciadeblasebd66722019-01-31 16:01:31 +0000884 else:
tierno6869ae72020-01-09 17:37:34 +0000885 # Multi-segment case
garciadeblasebd66722019-01-31 16:01:31 +0000886 segment_list = []
tierno6869ae72020-01-09 17:37:34 +0000887 segment1_dict = {
sousaedu80135b92021-02-17 15:05:18 +0100888 "provider:physical_network": "",
889 "provider:network_type": "vxlan",
tierno6869ae72020-01-09 17:37:34 +0000890 }
garciadeblasebd66722019-01-31 16:01:31 +0000891 segment_list.append(segment1_dict)
tierno6869ae72020-01-09 17:37:34 +0000892 segment2_dict = {
893 "provider:physical_network": provider_physical_network,
sousaedu80135b92021-02-17 15:05:18 +0100894 "provider:network_type": "vlan",
tierno6869ae72020-01-09 17:37:34 +0000895 }
sousaedu80135b92021-02-17 15:05:18 +0100896
tierno6869ae72020-01-09 17:37:34 +0000897 if vlan:
898 segment2_dict["provider:segmentation_id"] = vlan
sousaedu80135b92021-02-17 15:05:18 +0100899 elif self.config.get("multisegment_vlan_range"):
garciadeblasebd66722019-01-31 16:01:31 +0000900 vlanID = self._generate_multisegment_vlanID()
901 segment2_dict["provider:segmentation_id"] = vlanID
sousaedu80135b92021-02-17 15:05:18 +0100902
garciadeblasebd66722019-01-31 16:01:31 +0000903 # else
tierno72774862020-05-04 11:44:15 +0000904 # raise vimconn.VimConnConflictException(
sousaedu80135b92021-02-17 15:05:18 +0100905 # "You must provide "multisegment_vlan_range" at config dict before creating a multisegment
tierno1ec592d2020-06-16 15:29:47 +0000906 # network")
garciadeblasebd66722019-01-31 16:01:31 +0000907 segment_list.append(segment2_dict)
908 network_dict["segments"] = segment_list
kate721d79b2017-06-24 04:21:38 -0700909
tierno6869ae72020-01-09 17:37:34 +0000910 # VIO Specific Changes. It needs a concrete VLAN
911 if self.vim_type == "VIO" and vlan is None:
sousaedu80135b92021-02-17 15:05:18 +0100912 if self.config.get("dataplane_net_vlan_range") is None:
tierno72774862020-05-04 11:44:15 +0000913 raise vimconn.VimConnConflictException(
sousaedu80135b92021-02-17 15:05:18 +0100914 "You must provide 'dataplane_net_vlan_range' in format "
915 "[start_ID - end_ID] at VIM_config for creating underlay "
916 "networks"
917 )
918
tierno6869ae72020-01-09 17:37:34 +0000919 network_dict["provider:segmentation_id"] = self._generate_vlanID()
kate721d79b2017-06-24 04:21:38 -0700920
garciadeblasebd66722019-01-31 16:01:31 +0000921 network_dict["shared"] = shared
sousaedu80135b92021-02-17 15:05:18 +0100922
anwarsff168192019-05-06 11:23:07 +0530923 if self.config.get("disable_network_port_security"):
924 network_dict["port_security_enabled"] = False
sousaedu80135b92021-02-17 15:05:18 +0100925
sousaedu2aa5f802021-06-17 15:39:29 +0100926 if self.config.get("neutron_availability_zone_hints"):
927 hints = self.config.get("neutron_availability_zone_hints")
928
929 if isinstance(hints, str):
930 hints = [hints]
931
932 network_dict["availability_zone_hints"] = hints
933
sousaedu80135b92021-02-17 15:05:18 +0100934 new_net = self.neutron.create_network({"network": network_dict})
garciadeblasebd66722019-01-31 16:01:31 +0000935 # print new_net
936 # create subnetwork, even if there is no profile
sousaedu80135b92021-02-17 15:05:18 +0100937
garciadeblas9f8456e2016-09-05 05:02:59 +0200938 if not ip_profile:
939 ip_profile = {}
sousaedu80135b92021-02-17 15:05:18 +0100940
941 if not ip_profile.get("subnet_address"):
tierno1ec592d2020-06-16 15:29:47 +0000942 # Fake subnet is required
elumalai51e72a02023-04-28 19:41:49 +0530943 subnet_rand = random.SystemRandom().randint(0, 255)
sousaedu80135b92021-02-17 15:05:18 +0100944 ip_profile["subnet_address"] = "192.168.{}.0/24".format(subnet_rand)
945
946 if "ip_version" not in ip_profile:
947 ip_profile["ip_version"] = "IPv4"
948
949 subnet = {
950 "name": net_name + "-subnet",
951 "network_id": new_net["network"]["id"],
952 "ip_version": 4 if ip_profile["ip_version"] == "IPv4" else 6,
953 "cidr": ip_profile["subnet_address"],
954 }
955
tiernoa1fb4462017-06-30 12:25:50 +0200956 # Gateway should be set to None if not needed. Otherwise openstack assigns one by default
sousaedu80135b92021-02-17 15:05:18 +0100957 if ip_profile.get("gateway_address"):
958 subnet["gateway_ip"] = ip_profile["gateway_address"]
tierno55d234c2018-07-04 18:29:21 +0200959 else:
sousaedu80135b92021-02-17 15:05:18 +0100960 subnet["gateway_ip"] = None
961
962 if ip_profile.get("dns_address"):
963 subnet["dns_nameservers"] = ip_profile["dns_address"].split(";")
964
965 if "dhcp_enabled" in ip_profile:
966 subnet["enable_dhcp"] = (
967 False
968 if ip_profile["dhcp_enabled"] == "false"
969 or ip_profile["dhcp_enabled"] is False
970 else True
971 )
972
973 if ip_profile.get("dhcp_start_address"):
974 subnet["allocation_pools"] = []
975 subnet["allocation_pools"].append(dict())
976 subnet["allocation_pools"][0]["start"] = ip_profile[
977 "dhcp_start_address"
978 ]
979
980 if ip_profile.get("dhcp_count"):
981 # parts = ip_profile["dhcp_start_address"].split(".")
tierno1ec592d2020-06-16 15:29:47 +0000982 # ip_int = (int(parts[0]) << 24) + (int(parts[1]) << 16) + (int(parts[2]) << 8) + int(parts[3])
sousaedu80135b92021-02-17 15:05:18 +0100983 ip_int = int(netaddr.IPAddress(ip_profile["dhcp_start_address"]))
984 ip_int += ip_profile["dhcp_count"] - 1
garciadeblas9f8456e2016-09-05 05:02:59 +0200985 ip_str = str(netaddr.IPAddress(ip_int))
sousaedu80135b92021-02-17 15:05:18 +0100986 subnet["allocation_pools"][0]["end"] = ip_str
987
Gabriel Cubab3dbfca2023-03-14 10:58:39 -0500988 if (
989 ip_profile.get("ipv6_address_mode")
990 and ip_profile["ip_version"] != "IPv4"
991 ):
992 subnet["ipv6_address_mode"] = ip_profile["ipv6_address_mode"]
993 # ipv6_ra_mode can be set to the same value for most use cases, see documentation:
994 # https://docs.openstack.org/neutron/latest/admin/config-ipv6.html#ipv6-ra-mode-and-ipv6-address-mode-combinations
995 subnet["ipv6_ra_mode"] = ip_profile["ipv6_address_mode"]
996
tierno1ec592d2020-06-16 15:29:47 +0000997 # self.logger.debug(">>>>>>>>>>>>>>>>>> Subnet: %s", str(subnet))
998 self.neutron.create_subnet({"subnet": subnet})
garciadeblasebd66722019-01-31 16:01:31 +0000999
sousaedu80135b92021-02-17 15:05:18 +01001000 if net_type == "data" and self.config.get("multisegment_support"):
1001 if self.config.get("l2gw_support"):
garciadeblasebd66722019-01-31 16:01:31 +00001002 l2gw_list = self.neutron.list_l2_gateways().get("l2_gateways", ())
1003 for l2gw in l2gw_list:
tierno1ec592d2020-06-16 15:29:47 +00001004 l2gw_conn = {
1005 "l2_gateway_id": l2gw["id"],
1006 "network_id": new_net["network"]["id"],
1007 "segmentation_id": str(vlanID),
1008 }
sousaedu80135b92021-02-17 15:05:18 +01001009 new_l2gw_conn = self.neutron.create_l2_gateway_connection(
1010 {"l2_gateway_connection": l2gw_conn}
1011 )
1012 created_items[
1013 "l2gwconn:"
1014 + str(new_l2gw_conn["l2_gateway_connection"]["id"])
1015 ] = True
1016
garciadeblasebd66722019-01-31 16:01:31 +00001017 return new_net["network"]["id"], created_items
tierno41a69812018-02-16 14:34:33 +01001018 except Exception as e:
tierno1ec592d2020-06-16 15:29:47 +00001019 # delete l2gw connections (if any) before deleting the network
garciadeblasebd66722019-01-31 16:01:31 +00001020 for k, v in created_items.items():
1021 if not v: # skip already deleted
1022 continue
sousaedu80135b92021-02-17 15:05:18 +01001023
garciadeblasebd66722019-01-31 16:01:31 +00001024 try:
1025 k_item, _, k_id = k.partition(":")
sousaedu80135b92021-02-17 15:05:18 +01001026
garciadeblasebd66722019-01-31 16:01:31 +00001027 if k_item == "l2gwconn":
1028 self.neutron.delete_l2_gateway_connection(k_id)
gatici335a06a2023-07-26 00:34:04 +03001029
1030 except (neExceptions.ConnectionFailed, ConnectionError) as e2:
1031 self.logger.error(
1032 "Error deleting l2 gateway connection: {}: {}".format(
1033 type(e2).__name__, e2
1034 )
1035 )
1036 self._format_exception(e2)
garciadeblasebd66722019-01-31 16:01:31 +00001037 except Exception as e2:
sousaedu80135b92021-02-17 15:05:18 +01001038 self.logger.error(
1039 "Error deleting l2 gateway connection: {}: {}".format(
1040 type(e2).__name__, e2
1041 )
1042 )
1043
garciadeblasedca7b32016-09-29 14:01:52 +00001044 if new_net:
sousaedu80135b92021-02-17 15:05:18 +01001045 self.neutron.delete_network(new_net["network"]["id"])
1046
tiernoae4a8d12016-07-08 12:30:39 +02001047 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +01001048
1049 def get_network_list(self, filter_dict={}):
tierno1ec592d2020-06-16 15:29:47 +00001050 """Obtain tenant networks of VIM
tierno7edb6752016-03-21 17:37:52 +01001051 Filter_dict can be:
1052 name: network name
1053 id: network uuid
1054 shared: boolean
1055 tenant_id: tenant
1056 admin_state_up: boolean
1057 status: 'ACTIVE'
1058 Returns the network list of dictionaries
tierno1ec592d2020-06-16 15:29:47 +00001059 """
tiernoae4a8d12016-07-08 12:30:39 +02001060 self.logger.debug("Getting network from VIM filter: '%s'", str(filter_dict))
tierno7edb6752016-03-21 17:37:52 +01001061 try:
1062 self._reload_connection()
tierno69b590e2018-03-13 18:52:23 +01001063 filter_dict_os = filter_dict.copy()
sousaedu80135b92021-02-17 15:05:18 +01001064
tierno69b590e2018-03-13 18:52:23 +01001065 if self.api_version3 and "tenant_id" in filter_dict_os:
sousaedu80135b92021-02-17 15:05:18 +01001066 # TODO check
1067 filter_dict_os["project_id"] = filter_dict_os.pop("tenant_id")
1068
tierno69b590e2018-03-13 18:52:23 +01001069 net_dict = self.neutron.list_networks(**filter_dict_os)
tierno00e3df72017-11-29 17:20:13 +01001070 net_list = net_dict["networks"]
tierno7edb6752016-03-21 17:37:52 +01001071 self.__net_os2mano(net_list)
sousaedu80135b92021-02-17 15:05:18 +01001072
tiernoae4a8d12016-07-08 12:30:39 +02001073 return net_list
sousaedu80135b92021-02-17 15:05:18 +01001074 except (
1075 neExceptions.ConnectionFailed,
1076 ksExceptions.ClientException,
1077 neExceptions.NeutronException,
1078 ConnectionError,
1079 ) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001080 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +01001081
tiernoae4a8d12016-07-08 12:30:39 +02001082 def get_network(self, net_id):
tierno1ec592d2020-06-16 15:29:47 +00001083 """Obtain details of network from VIM
1084 Returns the network information from a network id"""
tiernoae4a8d12016-07-08 12:30:39 +02001085 self.logger.debug(" Getting tenant network %s from VIM", net_id)
tierno1ec592d2020-06-16 15:29:47 +00001086 filter_dict = {"id": net_id}
tiernoae4a8d12016-07-08 12:30:39 +02001087 net_list = self.get_network_list(filter_dict)
sousaedu80135b92021-02-17 15:05:18 +01001088
tierno1ec592d2020-06-16 15:29:47 +00001089 if len(net_list) == 0:
sousaedu80135b92021-02-17 15:05:18 +01001090 raise vimconn.VimConnNotFoundException(
1091 "Network '{}' not found".format(net_id)
1092 )
tierno1ec592d2020-06-16 15:29:47 +00001093 elif len(net_list) > 1:
sousaedu80135b92021-02-17 15:05:18 +01001094 raise vimconn.VimConnConflictException(
1095 "Found more than one network with this criteria"
1096 )
1097
tierno7edb6752016-03-21 17:37:52 +01001098 net = net_list[0]
tierno1ec592d2020-06-16 15:29:47 +00001099 subnets = []
1100 for subnet_id in net.get("subnets", ()):
tierno7edb6752016-03-21 17:37:52 +01001101 try:
1102 subnet = self.neutron.show_subnet(subnet_id)
1103 except Exception as e:
sousaedu80135b92021-02-17 15:05:18 +01001104 self.logger.error(
1105 "osconnector.get_network(): Error getting subnet %s %s"
1106 % (net_id, str(e))
1107 )
tiernoae4a8d12016-07-08 12:30:39 +02001108 subnet = {"id": subnet_id, "fault": str(e)}
sousaedu80135b92021-02-17 15:05:18 +01001109
tierno7edb6752016-03-21 17:37:52 +01001110 subnets.append(subnet)
sousaedu80135b92021-02-17 15:05:18 +01001111
tierno7edb6752016-03-21 17:37:52 +01001112 net["subnets"] = subnets
sousaedu80135b92021-02-17 15:05:18 +01001113 net["encapsulation"] = net.get("provider:network_type")
1114 net["encapsulation_type"] = net.get("provider:network_type")
1115 net["segmentation_id"] = net.get("provider:segmentation_id")
1116 net["encapsulation_id"] = net.get("provider:segmentation_id")
1117
tiernoae4a8d12016-07-08 12:30:39 +02001118 return net
tierno7edb6752016-03-21 17:37:52 +01001119
gatici335a06a2023-07-26 00:34:04 +03001120 @catch_any_exception
garciadeblasebd66722019-01-31 16:01:31 +00001121 def delete_network(self, net_id, created_items=None):
1122 """
1123 Removes a tenant network from VIM and its associated elements
1124 :param net_id: VIM identifier of the network, provided by method new_network
1125 :param created_items: dictionary with extra items to be deleted. provided by method new_network
1126 Returns the network identifier or raises an exception upon error or when network is not found
1127 """
tiernoae4a8d12016-07-08 12:30:39 +02001128 self.logger.debug("Deleting network '%s' from VIM", net_id)
sousaedu80135b92021-02-17 15:05:18 +01001129
tierno1ec592d2020-06-16 15:29:47 +00001130 if created_items is None:
garciadeblasebd66722019-01-31 16:01:31 +00001131 created_items = {}
sousaedu80135b92021-02-17 15:05:18 +01001132
tierno7edb6752016-03-21 17:37:52 +01001133 try:
1134 self._reload_connection()
tierno1ec592d2020-06-16 15:29:47 +00001135 # delete l2gw connections (if any) before deleting the network
garciadeblasebd66722019-01-31 16:01:31 +00001136 for k, v in created_items.items():
1137 if not v: # skip already deleted
1138 continue
sousaedu80135b92021-02-17 15:05:18 +01001139
garciadeblasebd66722019-01-31 16:01:31 +00001140 try:
1141 k_item, _, k_id = k.partition(":")
1142 if k_item == "l2gwconn":
1143 self.neutron.delete_l2_gateway_connection(k_id)
gatici335a06a2023-07-26 00:34:04 +03001144
1145 except (neExceptions.ConnectionFailed, ConnectionError) as e:
1146 self.logger.error(
1147 "Error deleting l2 gateway connection: {}: {}".format(
1148 type(e).__name__, e
1149 )
1150 )
1151 self._format_exception(e)
garciadeblasebd66722019-01-31 16:01:31 +00001152 except Exception as e:
sousaedu80135b92021-02-17 15:05:18 +01001153 self.logger.error(
1154 "Error deleting l2 gateway connection: {}: {}".format(
1155 type(e).__name__, e
1156 )
1157 )
1158
tierno1ec592d2020-06-16 15:29:47 +00001159 # delete VM ports attached to this networks before the network
tierno7edb6752016-03-21 17:37:52 +01001160 ports = self.neutron.list_ports(network_id=net_id)
sousaedu80135b92021-02-17 15:05:18 +01001161 for p in ports["ports"]:
tierno7edb6752016-03-21 17:37:52 +01001162 try:
1163 self.neutron.delete_port(p["id"])
gatici335a06a2023-07-26 00:34:04 +03001164
1165 except (neExceptions.ConnectionFailed, ConnectionError) as e:
1166 self.logger.error("Error deleting port %s: %s", p["id"], str(e))
1167 # If there is connection error, it raises.
1168 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +01001169 except Exception as e:
tiernoae4a8d12016-07-08 12:30:39 +02001170 self.logger.error("Error deleting port %s: %s", p["id"], str(e))
sousaedu80135b92021-02-17 15:05:18 +01001171
tierno7edb6752016-03-21 17:37:52 +01001172 self.neutron.delete_network(net_id)
sousaedu80135b92021-02-17 15:05:18 +01001173
tiernoae4a8d12016-07-08 12:30:39 +02001174 return net_id
gatici335a06a2023-07-26 00:34:04 +03001175 except (neExceptions.NetworkNotFoundClient, neExceptions.NotFound) as e:
1176 # If network to be deleted is not found, it does not raise.
1177 self.logger.warning(
1178 f"Error deleting network: {net_id} is not found, {str(e)}"
1179 )
tierno7edb6752016-03-21 17:37:52 +01001180
tiernoae4a8d12016-07-08 12:30:39 +02001181 def refresh_nets_status(self, net_list):
tierno1ec592d2020-06-16 15:29:47 +00001182 """Get the status of the networks
sousaedu80135b92021-02-17 15:05:18 +01001183 Params: the list of network identifiers
1184 Returns a dictionary with:
1185 net_id: #VIM id of this network
1186 status: #Mandatory. Text with one of:
1187 # DELETED (not found at vim)
1188 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
1189 # OTHER (Vim reported other status not understood)
1190 # ERROR (VIM indicates an ERROR status)
1191 # ACTIVE, INACTIVE, DOWN (admin down),
1192 # BUILD (on building process)
1193 #
1194 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
1195 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
tierno1ec592d2020-06-16 15:29:47 +00001196 """
1197 net_dict = {}
sousaedu80135b92021-02-17 15:05:18 +01001198
tiernoae4a8d12016-07-08 12:30:39 +02001199 for net_id in net_list:
1200 net = {}
sousaedu80135b92021-02-17 15:05:18 +01001201
tiernoae4a8d12016-07-08 12:30:39 +02001202 try:
1203 net_vim = self.get_network(net_id)
sousaedu80135b92021-02-17 15:05:18 +01001204
1205 if net_vim["status"] in netStatus2manoFormat:
1206 net["status"] = netStatus2manoFormat[net_vim["status"]]
tiernoae4a8d12016-07-08 12:30:39 +02001207 else:
1208 net["status"] = "OTHER"
sousaedu80135b92021-02-17 15:05:18 +01001209 net["error_msg"] = "VIM status reported " + net_vim["status"]
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001210
sousaedu80135b92021-02-17 15:05:18 +01001211 if net["status"] == "ACTIVE" and not net_vim["admin_state_up"]:
1212 net["status"] = "DOWN"
Anderson Bravalheri0446cd52018-08-17 15:26:19 +01001213
sousaedu80135b92021-02-17 15:05:18 +01001214 net["vim_info"] = self.serialize(net_vim)
Anderson Bravalheri0446cd52018-08-17 15:26:19 +01001215
sousaedu80135b92021-02-17 15:05:18 +01001216 if net_vim.get("fault"): # TODO
1217 net["error_msg"] = str(net_vim["fault"])
tierno72774862020-05-04 11:44:15 +00001218 except vimconn.VimConnNotFoundException as e:
tiernoae4a8d12016-07-08 12:30:39 +02001219 self.logger.error("Exception getting net status: %s", str(e))
sousaedu80135b92021-02-17 15:05:18 +01001220 net["status"] = "DELETED"
1221 net["error_msg"] = str(e)
tierno72774862020-05-04 11:44:15 +00001222 except vimconn.VimConnException as e:
tiernoae4a8d12016-07-08 12:30:39 +02001223 self.logger.error("Exception getting net status: %s", str(e))
sousaedu80135b92021-02-17 15:05:18 +01001224 net["status"] = "VIM_ERROR"
1225 net["error_msg"] = str(e)
tiernoae4a8d12016-07-08 12:30:39 +02001226 net_dict[net_id] = net
1227 return net_dict
1228
1229 def get_flavor(self, flavor_id):
tierno1ec592d2020-06-16 15:29:47 +00001230 """Obtain flavor details from the VIM. Returns the flavor dict details"""
tiernoae4a8d12016-07-08 12:30:39 +02001231 self.logger.debug("Getting flavor '%s'", flavor_id)
tierno7edb6752016-03-21 17:37:52 +01001232 try:
1233 self._reload_connection()
1234 flavor = self.nova.flavors.find(id=flavor_id)
tiernoae4a8d12016-07-08 12:30:39 +02001235 return flavor.to_dict()
gatici335a06a2023-07-26 00:34:04 +03001236
sousaedu80135b92021-02-17 15:05:18 +01001237 except (
1238 nvExceptions.NotFound,
1239 nvExceptions.ClientException,
1240 ksExceptions.ClientException,
1241 ConnectionError,
1242 ) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001243 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +01001244
tiernocf157a82017-01-30 14:07:06 +01001245 def get_flavor_id_from_data(self, flavor_dict):
1246 """Obtain flavor id that match the flavor description
sousaedu80135b92021-02-17 15:05:18 +01001247 Returns the flavor_id or raises a vimconnNotFoundException
1248 flavor_dict: contains the required ram, vcpus, disk
1249 If 'use_existing_flavors' is set to True at config, the closer flavor that provides same or more ram, vcpus
1250 and disk is returned. Otherwise a flavor with exactly same ram, vcpus and disk is returned or a
1251 vimconnNotFoundException is raised
tiernocf157a82017-01-30 14:07:06 +01001252 """
sousaedu80135b92021-02-17 15:05:18 +01001253 exact_match = False if self.config.get("use_existing_flavors") else True
1254
tiernocf157a82017-01-30 14:07:06 +01001255 try:
1256 self._reload_connection()
tiernoe26fc7a2017-05-30 14:43:03 +02001257 flavor_candidate_id = None
1258 flavor_candidate_data = (10000, 10000, 10000)
sousaedu80135b92021-02-17 15:05:18 +01001259 flavor_target = (
1260 flavor_dict["ram"],
1261 flavor_dict["vcpus"],
1262 flavor_dict["disk"],
sousaedu648ee3d2021-11-22 14:09:15 +00001263 flavor_dict.get("ephemeral", 0),
1264 flavor_dict.get("swap", 0),
sousaedu80135b92021-02-17 15:05:18 +01001265 )
tiernoe26fc7a2017-05-30 14:43:03 +02001266 # numa=None
anwarsae5f52c2019-04-22 10:35:27 +05301267 extended = flavor_dict.get("extended", {})
1268 if extended:
tierno1ec592d2020-06-16 15:29:47 +00001269 # TODO
sousaedu80135b92021-02-17 15:05:18 +01001270 raise vimconn.VimConnNotFoundException(
1271 "Flavor with EPA still not implemented"
1272 )
tiernocf157a82017-01-30 14:07:06 +01001273 # if len(numas) > 1:
tierno72774862020-05-04 11:44:15 +00001274 # raise vimconn.VimConnNotFoundException("Cannot find any flavor with more than one numa")
tiernocf157a82017-01-30 14:07:06 +01001275 # numa=numas[0]
1276 # numas = extended.get("numas")
1277 for flavor in self.nova.flavors.list():
1278 epa = flavor.get_keys()
sousaedu80135b92021-02-17 15:05:18 +01001279
tiernocf157a82017-01-30 14:07:06 +01001280 if epa:
1281 continue
tiernoe26fc7a2017-05-30 14:43:03 +02001282 # TODO
sousaedu80135b92021-02-17 15:05:18 +01001283
sousaedu648ee3d2021-11-22 14:09:15 +00001284 flavor_data = (
1285 flavor.ram,
1286 flavor.vcpus,
1287 flavor.disk,
1288 flavor.ephemeral,
preethika.pebaba1f2022-01-20 07:24:18 +00001289 flavor.swap if isinstance(flavor.swap, int) else 0,
sousaedu648ee3d2021-11-22 14:09:15 +00001290 )
tiernoe26fc7a2017-05-30 14:43:03 +02001291 if flavor_data == flavor_target:
1292 return flavor.id
sousaedu80135b92021-02-17 15:05:18 +01001293 elif (
1294 not exact_match
1295 and flavor_target < flavor_data < flavor_candidate_data
1296 ):
tiernoe26fc7a2017-05-30 14:43:03 +02001297 flavor_candidate_id = flavor.id
1298 flavor_candidate_data = flavor_data
sousaedu80135b92021-02-17 15:05:18 +01001299
tiernoe26fc7a2017-05-30 14:43:03 +02001300 if not exact_match and flavor_candidate_id:
1301 return flavor_candidate_id
sousaedu80135b92021-02-17 15:05:18 +01001302
1303 raise vimconn.VimConnNotFoundException(
1304 "Cannot find any flavor matching '{}'".format(flavor_dict)
1305 )
1306 except (
1307 nvExceptions.NotFound,
gatici335a06a2023-07-26 00:34:04 +03001308 nvExceptions.BadRequest,
sousaedu80135b92021-02-17 15:05:18 +01001309 nvExceptions.ClientException,
1310 ksExceptions.ClientException,
1311 ConnectionError,
1312 ) as e:
tiernocf157a82017-01-30 14:07:06 +01001313 self._format_exception(e)
1314
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001315 @staticmethod
1316 def process_resource_quota(quota: dict, prefix: str, extra_specs: dict) -> None:
1317 """Process resource quota and fill up extra_specs.
1318 Args:
1319 quota (dict): Keeping the quota of resurces
1320 prefix (str) Prefix
1321 extra_specs (dict) Dict to be filled to be used during flavor creation
1322
anwarsae5f52c2019-04-22 10:35:27 +05301323 """
sousaedu80135b92021-02-17 15:05:18 +01001324 if "limit" in quota:
1325 extra_specs["quota:" + prefix + "_limit"] = quota["limit"]
1326
1327 if "reserve" in quota:
1328 extra_specs["quota:" + prefix + "_reservation"] = quota["reserve"]
1329
1330 if "shares" in quota:
anwarsae5f52c2019-04-22 10:35:27 +05301331 extra_specs["quota:" + prefix + "_shares_level"] = "custom"
sousaedu80135b92021-02-17 15:05:18 +01001332 extra_specs["quota:" + prefix + "_shares_share"] = quota["shares"]
anwarsae5f52c2019-04-22 10:35:27 +05301333
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001334 @staticmethod
1335 def process_numa_memory(
1336 numa: dict, node_id: Optional[int], extra_specs: dict
1337 ) -> None:
1338 """Set the memory in extra_specs.
1339 Args:
1340 numa (dict): A dictionary which includes numa information
1341 node_id (int): ID of numa node
1342 extra_specs (dict): To be filled.
1343
1344 """
1345 if not numa.get("memory"):
1346 return
1347 memory_mb = numa["memory"] * 1024
1348 memory = "hw:numa_mem.{}".format(node_id)
1349 extra_specs[memory] = int(memory_mb)
1350
1351 @staticmethod
1352 def process_numa_vcpu(numa: dict, node_id: int, extra_specs: dict) -> None:
1353 """Set the cpu in extra_specs.
1354 Args:
1355 numa (dict): A dictionary which includes numa information
1356 node_id (int): ID of numa node
1357 extra_specs (dict): To be filled.
1358
1359 """
1360 if not numa.get("vcpu"):
1361 return
1362 vcpu = numa["vcpu"]
1363 cpu = "hw:numa_cpus.{}".format(node_id)
1364 vcpu = ",".join(map(str, vcpu))
1365 extra_specs[cpu] = vcpu
1366
1367 @staticmethod
1368 def process_numa_paired_threads(numa: dict, extra_specs: dict) -> Optional[int]:
1369 """Fill up extra_specs if numa has paired-threads.
1370 Args:
1371 numa (dict): A dictionary which includes numa information
1372 extra_specs (dict): To be filled.
1373
1374 Returns:
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001375 threads (int) Number of virtual cpus
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001376
1377 """
1378 if not numa.get("paired-threads"):
1379 return
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001380
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001381 # cpu_thread_policy "require" implies that compute node must have an STM architecture
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001382 threads = numa["paired-threads"] * 2
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001383 extra_specs["hw:cpu_thread_policy"] = "require"
1384 extra_specs["hw:cpu_policy"] = "dedicated"
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001385 return threads
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001386
1387 @staticmethod
1388 def process_numa_cores(numa: dict, extra_specs: dict) -> Optional[int]:
1389 """Fill up extra_specs if numa has cores.
1390 Args:
1391 numa (dict): A dictionary which includes numa information
1392 extra_specs (dict): To be filled.
1393
1394 Returns:
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001395 cores (int) Number of virtual cpus
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001396
1397 """
1398 # cpu_thread_policy "isolate" implies that the host must not have an SMT
1399 # architecture, or a non-SMT architecture will be emulated
1400 if not numa.get("cores"):
1401 return
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001402 cores = numa["cores"]
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001403 extra_specs["hw:cpu_thread_policy"] = "isolate"
1404 extra_specs["hw:cpu_policy"] = "dedicated"
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001405 return cores
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001406
1407 @staticmethod
1408 def process_numa_threads(numa: dict, extra_specs: dict) -> Optional[int]:
1409 """Fill up extra_specs if numa has threads.
1410 Args:
1411 numa (dict): A dictionary which includes numa information
1412 extra_specs (dict): To be filled.
1413
1414 Returns:
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001415 threads (int) Number of virtual cpus
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001416
1417 """
1418 # cpu_thread_policy "prefer" implies that the host may or may not have an SMT architecture
1419 if not numa.get("threads"):
1420 return
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001421 threads = numa["threads"]
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001422 extra_specs["hw:cpu_thread_policy"] = "prefer"
1423 extra_specs["hw:cpu_policy"] = "dedicated"
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001424 return threads
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001425
1426 def _process_numa_parameters_of_flavor(
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001427 self, numas: List, extra_specs: Dict
1428 ) -> None:
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001429 """Process numa parameters and fill up extra_specs.
1430
1431 Args:
1432 numas (list): List of dictionary which includes numa information
1433 extra_specs (dict): To be filled.
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001434
1435 """
1436 numa_nodes = len(numas)
1437 extra_specs["hw:numa_nodes"] = str(numa_nodes)
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001438 cpu_cores, cpu_threads = 0, 0
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001439
1440 if self.vim_type == "VIO":
Gulsum Aticid0571fe2022-11-14 13:06:06 +03001441 self.process_vio_numa_nodes(numa_nodes, extra_specs)
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001442
1443 for numa in numas:
1444 if "id" in numa:
1445 node_id = numa["id"]
1446 # overwrite ram and vcpus
1447 # check if key "memory" is present in numa else use ram value at flavor
1448 self.process_numa_memory(numa, node_id, extra_specs)
1449 self.process_numa_vcpu(numa, node_id, extra_specs)
1450
1451 # See for reference: https://specs.openstack.org/openstack/nova-specs/specs/mitaka/implemented/virt-driver-cpu-thread-pinning.html
1452 extra_specs["hw:cpu_sockets"] = str(numa_nodes)
1453
1454 if "paired-threads" in numa:
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001455 threads = self.process_numa_paired_threads(numa, extra_specs)
1456 cpu_threads += threads
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001457
1458 elif "cores" in numa:
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001459 cores = self.process_numa_cores(numa, extra_specs)
1460 cpu_cores += cores
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001461
1462 elif "threads" in numa:
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001463 threads = self.process_numa_threads(numa, extra_specs)
1464 cpu_threads += threads
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001465
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001466 if cpu_cores:
1467 extra_specs["hw:cpu_cores"] = str(cpu_cores)
1468 if cpu_threads:
1469 extra_specs["hw:cpu_threads"] = str(cpu_threads)
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001470
Gulsum Aticid0571fe2022-11-14 13:06:06 +03001471 @staticmethod
1472 def process_vio_numa_nodes(numa_nodes: int, extra_specs: Dict) -> None:
1473 """According to number of numa nodes, updates the extra_specs for VIO.
1474
1475 Args:
1476
1477 numa_nodes (int): List keeps the numa node numbers
1478 extra_specs (dict): Extra specs dict to be updated
1479
1480 """
Gulsum Aticid0571fe2022-11-14 13:06:06 +03001481 # If there are several numas, we do not define specific affinity.
1482 extra_specs["vmware:latency_sensitivity_level"] = "high"
1483
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001484 def _change_flavor_name(
1485 self, name: str, name_suffix: int, flavor_data: dict
1486 ) -> str:
1487 """Change the flavor name if the name already exists.
1488
1489 Args:
1490 name (str): Flavor name to be checked
1491 name_suffix (int): Suffix to be appended to name
1492 flavor_data (dict): Flavor dict
1493
1494 Returns:
1495 name (str): New flavor name to be used
1496
1497 """
1498 # Get used names
1499 fl = self.nova.flavors.list()
1500 fl_names = [f.name for f in fl]
1501
1502 while name in fl_names:
1503 name_suffix += 1
1504 name = flavor_data["name"] + "-" + str(name_suffix)
1505
1506 return name
1507
1508 def _process_extended_config_of_flavor(
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001509 self, extended: dict, extra_specs: dict
1510 ) -> None:
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001511 """Process the extended dict to fill up extra_specs.
1512 Args:
1513
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001514 extended (dict): Keeping the extra specification of flavor
1515 extra_specs (dict) Dict to be filled to be used during flavor creation
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001516
1517 """
1518 quotas = {
1519 "cpu-quota": "cpu",
1520 "mem-quota": "memory",
1521 "vif-quota": "vif",
1522 "disk-io-quota": "disk_io",
1523 }
1524
1525 page_sizes = {
1526 "LARGE": "large",
1527 "SMALL": "small",
1528 "SIZE_2MB": "2MB",
1529 "SIZE_1GB": "1GB",
1530 "PREFER_LARGE": "any",
1531 }
1532
1533 policies = {
1534 "cpu-pinning-policy": "hw:cpu_policy",
1535 "cpu-thread-pinning-policy": "hw:cpu_thread_policy",
1536 "mem-policy": "hw:numa_mempolicy",
1537 }
1538
1539 numas = extended.get("numas")
1540 if numas:
Gulsum Atici6a6e3342023-01-23 16:22:59 +03001541 self._process_numa_parameters_of_flavor(numas, extra_specs)
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001542
1543 for quota, item in quotas.items():
1544 if quota in extended.keys():
1545 self.process_resource_quota(extended.get(quota), item, extra_specs)
1546
1547 # Set the mempage size as specified in the descriptor
1548 if extended.get("mempage-size"):
1549 if extended["mempage-size"] in page_sizes.keys():
1550 extra_specs["hw:mem_page_size"] = page_sizes[extended["mempage-size"]]
1551 else:
1552 # Normally, validations in NBI should not allow to this condition.
1553 self.logger.debug(
1554 "Invalid mempage-size %s. Will be ignored",
1555 extended.get("mempage-size"),
1556 )
1557
1558 for policy, hw_policy in policies.items():
1559 if extended.get(policy):
1560 extra_specs[hw_policy] = extended[policy].lower()
1561
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001562 @staticmethod
1563 def _get_flavor_details(flavor_data: dict) -> Tuple:
1564 """Returns the details of flavor
1565 Args:
1566 flavor_data (dict): Dictionary that includes required flavor details
1567
1568 Returns:
1569 ram, vcpus, extra_specs, extended (tuple): Main items of required flavor
1570
1571 """
1572 return (
1573 flavor_data.get("ram", 64),
1574 flavor_data.get("vcpus", 1),
1575 {},
1576 flavor_data.get("extended"),
1577 )
1578
gatici335a06a2023-07-26 00:34:04 +03001579 @catch_any_exception
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001580 def new_flavor(self, flavor_data: dict, change_name_if_used: bool = True) -> str:
1581 """Adds a tenant flavor to openstack VIM.
1582 if change_name_if_used is True, it will change name in case of conflict,
1583 because it is not supported name repetition.
1584
1585 Args:
1586 flavor_data (dict): Flavor details to be processed
1587 change_name_if_used (bool): Change name in case of conflict
1588
1589 Returns:
1590 flavor_id (str): flavor identifier
1591
tierno1ec592d2020-06-16 15:29:47 +00001592 """
tiernoae4a8d12016-07-08 12:30:39 +02001593 self.logger.debug("Adding flavor '%s'", str(flavor_data))
tierno1ec592d2020-06-16 15:29:47 +00001594 retry = 0
1595 max_retries = 3
tierno7edb6752016-03-21 17:37:52 +01001596 name_suffix = 0
gatici335a06a2023-07-26 00:34:04 +03001597 name = flavor_data["name"]
1598 while retry < max_retries:
1599 retry += 1
1600 try:
1601 self._reload_connection()
sousaedu80135b92021-02-17 15:05:18 +01001602
gatici335a06a2023-07-26 00:34:04 +03001603 if change_name_if_used:
1604 name = self._change_flavor_name(name, name_suffix, flavor_data)
sousaedu80135b92021-02-17 15:05:18 +01001605
gatici335a06a2023-07-26 00:34:04 +03001606 ram, vcpus, extra_specs, extended = self._get_flavor_details(
1607 flavor_data
1608 )
1609 if extended:
1610 self._process_extended_config_of_flavor(extended, extra_specs)
sousaedu80135b92021-02-17 15:05:18 +01001611
gatici335a06a2023-07-26 00:34:04 +03001612 # Create flavor
sousaedu80135b92021-02-17 15:05:18 +01001613
gatici335a06a2023-07-26 00:34:04 +03001614 new_flavor = self.nova.flavors.create(
1615 name=name,
1616 ram=ram,
1617 vcpus=vcpus,
1618 disk=flavor_data.get("disk", 0),
1619 ephemeral=flavor_data.get("ephemeral", 0),
1620 swap=flavor_data.get("swap", 0),
1621 is_public=flavor_data.get("is_public", True),
1622 )
sousaedu80135b92021-02-17 15:05:18 +01001623
gatici335a06a2023-07-26 00:34:04 +03001624 # Add metadata
1625 if extra_specs:
1626 new_flavor.set_keys(extra_specs)
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001627
gatici335a06a2023-07-26 00:34:04 +03001628 return new_flavor.id
sousaedu80135b92021-02-17 15:05:18 +01001629
gatici335a06a2023-07-26 00:34:04 +03001630 except nvExceptions.Conflict as e:
1631 if change_name_if_used and retry < max_retries:
1632 continue
Gulsum Atici4415c4c2023-01-19 12:44:06 +03001633
gatici335a06a2023-07-26 00:34:04 +03001634 self._format_exception(e)
sousaedu80135b92021-02-17 15:05:18 +01001635
gatici335a06a2023-07-26 00:34:04 +03001636 @catch_any_exception
tierno1ec592d2020-06-16 15:29:47 +00001637 def delete_flavor(self, flavor_id):
sousaedu80135b92021-02-17 15:05:18 +01001638 """Deletes a tenant flavor from openstack VIM. Returns the old flavor_id"""
tiernoae4a8d12016-07-08 12:30:39 +02001639 try:
1640 self._reload_connection()
1641 self.nova.flavors.delete(flavor_id)
1642 return flavor_id
gatici335a06a2023-07-26 00:34:04 +03001643
1644 except (nvExceptions.NotFound, nvExceptions.ResourceNotFound) as e:
1645 # If flavor is not found, it does not raise.
1646 self.logger.warning(
1647 f"Error deleting flavor: {flavor_id} is not found, {str(e.message)}"
1648 )
tierno7edb6752016-03-21 17:37:52 +01001649
tierno1ec592d2020-06-16 15:29:47 +00001650 def new_image(self, image_dict):
1651 """
tiernoae4a8d12016-07-08 12:30:39 +02001652 Adds a tenant image to VIM. imge_dict is a dictionary with:
1653 name: name
1654 disk_format: qcow2, vhd, vmdk, raw (by default), ...
1655 location: path or URI
1656 public: "yes" or "no"
1657 metadata: metadata of the image
1658 Returns the image_id
tierno1ec592d2020-06-16 15:29:47 +00001659 """
1660 retry = 0
1661 max_retries = 3
sousaedu80135b92021-02-17 15:05:18 +01001662
tierno1ec592d2020-06-16 15:29:47 +00001663 while retry < max_retries:
1664 retry += 1
tierno7edb6752016-03-21 17:37:52 +01001665 try:
1666 self._reload_connection()
sousaedu80135b92021-02-17 15:05:18 +01001667
tierno1ec592d2020-06-16 15:29:47 +00001668 # determine format http://docs.openstack.org/developer/glance/formats.html
tierno7edb6752016-03-21 17:37:52 +01001669 if "disk_format" in image_dict:
tierno1ec592d2020-06-16 15:29:47 +00001670 disk_format = image_dict["disk_format"]
1671 else: # autodiscover based on extension
sousaedu80135b92021-02-17 15:05:18 +01001672 if image_dict["location"].endswith(".qcow2"):
tierno1ec592d2020-06-16 15:29:47 +00001673 disk_format = "qcow2"
sousaedu80135b92021-02-17 15:05:18 +01001674 elif image_dict["location"].endswith(".vhd"):
tierno1ec592d2020-06-16 15:29:47 +00001675 disk_format = "vhd"
sousaedu80135b92021-02-17 15:05:18 +01001676 elif image_dict["location"].endswith(".vmdk"):
tierno1ec592d2020-06-16 15:29:47 +00001677 disk_format = "vmdk"
sousaedu80135b92021-02-17 15:05:18 +01001678 elif image_dict["location"].endswith(".vdi"):
tierno1ec592d2020-06-16 15:29:47 +00001679 disk_format = "vdi"
sousaedu80135b92021-02-17 15:05:18 +01001680 elif image_dict["location"].endswith(".iso"):
tierno1ec592d2020-06-16 15:29:47 +00001681 disk_format = "iso"
sousaedu80135b92021-02-17 15:05:18 +01001682 elif image_dict["location"].endswith(".aki"):
tierno1ec592d2020-06-16 15:29:47 +00001683 disk_format = "aki"
sousaedu80135b92021-02-17 15:05:18 +01001684 elif image_dict["location"].endswith(".ari"):
tierno1ec592d2020-06-16 15:29:47 +00001685 disk_format = "ari"
sousaedu80135b92021-02-17 15:05:18 +01001686 elif image_dict["location"].endswith(".ami"):
tierno1ec592d2020-06-16 15:29:47 +00001687 disk_format = "ami"
tierno7edb6752016-03-21 17:37:52 +01001688 else:
tierno1ec592d2020-06-16 15:29:47 +00001689 disk_format = "raw"
sousaedu80135b92021-02-17 15:05:18 +01001690
1691 self.logger.debug(
1692 "new_image: '%s' loading from '%s'",
1693 image_dict["name"],
1694 image_dict["location"],
1695 )
shashankjain3c83a212018-10-04 13:05:46 +05301696 if self.vim_type == "VIO":
1697 container_format = "bare"
sousaedu80135b92021-02-17 15:05:18 +01001698 if "container_format" in image_dict:
1699 container_format = image_dict["container_format"]
1700
1701 new_image = self.glance.images.create(
1702 name=image_dict["name"],
1703 container_format=container_format,
1704 disk_format=disk_format,
1705 )
shashankjain3c83a212018-10-04 13:05:46 +05301706 else:
sousaedu80135b92021-02-17 15:05:18 +01001707 new_image = self.glance.images.create(name=image_dict["name"])
1708
1709 if image_dict["location"].startswith("http"):
tierno1beea862018-07-11 15:47:37 +02001710 # TODO there is not a method to direct download. It must be downloaded locally with requests
tierno72774862020-05-04 11:44:15 +00001711 raise vimconn.VimConnNotImplemented("Cannot create image from URL")
tierno1ec592d2020-06-16 15:29:47 +00001712 else: # local path
sousaedu80135b92021-02-17 15:05:18 +01001713 with open(image_dict["location"]) as fimage:
tierno1beea862018-07-11 15:47:37 +02001714 self.glance.images.upload(new_image.id, fimage)
sousaedu80135b92021-02-17 15:05:18 +01001715 # new_image = self.glancev1.images.create(name=image_dict["name"], is_public=
1716 # image_dict.get("public","yes")=="yes",
tierno1beea862018-07-11 15:47:37 +02001717 # container_format="bare", data=fimage, disk_format=disk_format)
sousaedu80135b92021-02-17 15:05:18 +01001718
1719 metadata_to_load = image_dict.get("metadata")
1720
1721 # TODO location is a reserved word for current openstack versions. fixed for VIO please check
tierno1ec592d2020-06-16 15:29:47 +00001722 # for openstack
shashankjain3c83a212018-10-04 13:05:46 +05301723 if self.vim_type == "VIO":
sousaedu80135b92021-02-17 15:05:18 +01001724 metadata_to_load["upload_location"] = image_dict["location"]
shashankjain3c83a212018-10-04 13:05:46 +05301725 else:
sousaedu80135b92021-02-17 15:05:18 +01001726 metadata_to_load["location"] = image_dict["location"]
1727
tierno1beea862018-07-11 15:47:37 +02001728 self.glance.images.update(new_image.id, **metadata_to_load)
sousaedu80135b92021-02-17 15:05:18 +01001729
tiernoae4a8d12016-07-08 12:30:39 +02001730 return new_image.id
sousaedu80135b92021-02-17 15:05:18 +01001731 except (
sousaedu80135b92021-02-17 15:05:18 +01001732 HTTPException,
1733 gl1Exceptions.HTTPException,
1734 gl1Exceptions.CommunicationError,
1735 ConnectionError,
1736 ) as e:
tierno1ec592d2020-06-16 15:29:47 +00001737 if retry == max_retries:
tiernoae4a8d12016-07-08 12:30:39 +02001738 continue
sousaedu80135b92021-02-17 15:05:18 +01001739
tiernoae4a8d12016-07-08 12:30:39 +02001740 self._format_exception(e)
tierno1ec592d2020-06-16 15:29:47 +00001741 except IOError as e: # can not open the file
sousaedu80135b92021-02-17 15:05:18 +01001742 raise vimconn.VimConnConnectionException(
1743 "{}: {} for {}".format(type(e).__name__, e, image_dict["location"]),
1744 http_code=vimconn.HTTP_Bad_Request,
1745 )
gatici335a06a2023-07-26 00:34:04 +03001746 except Exception as e:
1747 self._format_exception(e)
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001748
gatici335a06a2023-07-26 00:34:04 +03001749 @catch_any_exception
tiernoae4a8d12016-07-08 12:30:39 +02001750 def delete_image(self, image_id):
sousaedu80135b92021-02-17 15:05:18 +01001751 """Deletes a tenant image from openstack VIM. Returns the old id"""
tiernoae4a8d12016-07-08 12:30:39 +02001752 try:
1753 self._reload_connection()
tierno1beea862018-07-11 15:47:37 +02001754 self.glance.images.delete(image_id)
sousaedu80135b92021-02-17 15:05:18 +01001755
tiernoae4a8d12016-07-08 12:30:39 +02001756 return image_id
gatici335a06a2023-07-26 00:34:04 +03001757 except gl1Exceptions.NotFound as e:
1758 # If image is not found, it does not raise.
1759 self.logger.warning(
1760 f"Error deleting image: {image_id} is not found, {str(e)}"
1761 )
tiernoae4a8d12016-07-08 12:30:39 +02001762
gatici335a06a2023-07-26 00:34:04 +03001763 @catch_any_exception
tiernoae4a8d12016-07-08 12:30:39 +02001764 def get_image_id_from_path(self, path):
tierno1ec592d2020-06-16 15:29:47 +00001765 """Get the image id from image path in the VIM database. Returns the image_id"""
gatici335a06a2023-07-26 00:34:04 +03001766 self._reload_connection()
1767 images = self.glance.images.list()
sousaedu80135b92021-02-17 15:05:18 +01001768
gatici335a06a2023-07-26 00:34:04 +03001769 for image in images:
1770 if image.metadata.get("location") == path:
1771 return image.id
sousaedu80135b92021-02-17 15:05:18 +01001772
gatici335a06a2023-07-26 00:34:04 +03001773 raise vimconn.VimConnNotFoundException(
1774 "image with location '{}' not found".format(path)
1775 )
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00001776
garciadeblasb69fa9f2016-09-28 12:04:10 +02001777 def get_image_list(self, filter_dict={}):
tierno1ec592d2020-06-16 15:29:47 +00001778 """Obtain tenant images from VIM
garciadeblasb69fa9f2016-09-28 12:04:10 +02001779 Filter_dict can be:
1780 id: image id
1781 name: image name
1782 checksum: image checksum
1783 Returns the image list of dictionaries:
1784 [{<the fields at Filter_dict plus some VIM specific>}, ...]
1785 List can be empty
tierno1ec592d2020-06-16 15:29:47 +00001786 """
garciadeblasb69fa9f2016-09-28 12:04:10 +02001787 self.logger.debug("Getting image list from VIM filter: '%s'", str(filter_dict))
1788 try:
1789 self._reload_connection()
tierno1ec592d2020-06-16 15:29:47 +00001790 # filter_dict_os = filter_dict.copy()
1791 # First we filter by the available filter fields: name, id. The others are removed.
tierno1beea862018-07-11 15:47:37 +02001792 image_list = self.glance.images.list()
garciadeblasb69fa9f2016-09-28 12:04:10 +02001793 filtered_list = []
sousaedu80135b92021-02-17 15:05:18 +01001794
garciadeblasb69fa9f2016-09-28 12:04:10 +02001795 for image in image_list:
tierno3cb8dc32017-10-24 18:13:19 +02001796 try:
tierno1beea862018-07-11 15:47:37 +02001797 if filter_dict.get("name") and image["name"] != filter_dict["name"]:
1798 continue
sousaedu80135b92021-02-17 15:05:18 +01001799
tierno1beea862018-07-11 15:47:37 +02001800 if filter_dict.get("id") and image["id"] != filter_dict["id"]:
1801 continue
sousaedu80135b92021-02-17 15:05:18 +01001802
1803 if (
1804 filter_dict.get("checksum")
1805 and image["checksum"] != filter_dict["checksum"]
1806 ):
tierno1beea862018-07-11 15:47:37 +02001807 continue
1808
1809 filtered_list.append(image.copy())
tierno3cb8dc32017-10-24 18:13:19 +02001810 except gl1Exceptions.HTTPNotFound:
1811 pass
sousaedu80135b92021-02-17 15:05:18 +01001812
garciadeblasb69fa9f2016-09-28 12:04:10 +02001813 return filtered_list
gatici335a06a2023-07-26 00:34:04 +03001814
sousaedu80135b92021-02-17 15:05:18 +01001815 except (
1816 ksExceptions.ClientException,
1817 nvExceptions.ClientException,
1818 gl1Exceptions.CommunicationError,
1819 ConnectionError,
1820 ) as e:
garciadeblasb69fa9f2016-09-28 12:04:10 +02001821 self._format_exception(e)
1822
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001823 def __wait_for_vm(self, vm_id, status):
1824 """wait until vm is in the desired status and return True.
1825 If the VM gets in ERROR status, return false.
1826 If the timeout is reached generate an exception"""
1827 elapsed_time = 0
1828 while elapsed_time < server_timeout:
1829 vm_status = self.nova.servers.get(vm_id).status
sousaedu80135b92021-02-17 15:05:18 +01001830
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001831 if vm_status == status:
1832 return True
sousaedu80135b92021-02-17 15:05:18 +01001833
1834 if vm_status == "ERROR":
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001835 return False
sousaedu80135b92021-02-17 15:05:18 +01001836
tierno1df468d2018-07-06 14:25:16 +02001837 time.sleep(5)
1838 elapsed_time += 5
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001839
1840 # if we exceeded the timeout rollback
1841 if elapsed_time >= server_timeout:
sousaedu80135b92021-02-17 15:05:18 +01001842 raise vimconn.VimConnException(
1843 "Timeout waiting for instance " + vm_id + " to get " + status,
1844 http_code=vimconn.HTTP_Request_Timeout,
1845 )
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02001846
mirabal29356312017-07-27 12:21:22 +02001847 def _get_openstack_availablity_zones(self):
1848 """
1849 Get from openstack availability zones available
1850 :return:
1851 """
1852 try:
1853 openstack_availability_zone = self.nova.availability_zones.list()
sousaedu80135b92021-02-17 15:05:18 +01001854 openstack_availability_zone = [
1855 str(zone.zoneName)
1856 for zone in openstack_availability_zone
1857 if zone.zoneName != "internal"
1858 ]
1859
mirabal29356312017-07-27 12:21:22 +02001860 return openstack_availability_zone
tierno1ec592d2020-06-16 15:29:47 +00001861 except Exception:
mirabal29356312017-07-27 12:21:22 +02001862 return None
1863
1864 def _set_availablity_zones(self):
1865 """
1866 Set vim availablity zone
1867 :return:
1868 """
sousaedu80135b92021-02-17 15:05:18 +01001869 if "availability_zone" in self.config:
1870 vim_availability_zones = self.config.get("availability_zone")
mirabal29356312017-07-27 12:21:22 +02001871
mirabal29356312017-07-27 12:21:22 +02001872 if isinstance(vim_availability_zones, str):
1873 self.availability_zone = [vim_availability_zones]
1874 elif isinstance(vim_availability_zones, list):
1875 self.availability_zone = vim_availability_zones
1876 else:
1877 self.availability_zone = self._get_openstack_availablity_zones()
Luis Vega25bc6382023-10-05 23:22:04 +00001878 if "storage_availability_zone" in self.config:
1879 self.storage_availability_zone = self.config.get(
1880 "storage_availability_zone"
1881 )
mirabal29356312017-07-27 12:21:22 +02001882
sousaedu80135b92021-02-17 15:05:18 +01001883 def _get_vm_availability_zone(
1884 self, availability_zone_index, availability_zone_list
1885 ):
mirabal29356312017-07-27 12:21:22 +02001886 """
tierno5a3273c2017-08-29 11:43:46 +02001887 Return thge availability zone to be used by the created VM.
1888 :return: The VIM availability zone to be used or None
mirabal29356312017-07-27 12:21:22 +02001889 """
tierno5a3273c2017-08-29 11:43:46 +02001890 if availability_zone_index is None:
sousaedu80135b92021-02-17 15:05:18 +01001891 if not self.config.get("availability_zone"):
tierno5a3273c2017-08-29 11:43:46 +02001892 return None
sousaedu80135b92021-02-17 15:05:18 +01001893 elif isinstance(self.config.get("availability_zone"), str):
1894 return self.config["availability_zone"]
tierno5a3273c2017-08-29 11:43:46 +02001895 else:
1896 # TODO consider using a different parameter at config for default AV and AV list match
sousaedu80135b92021-02-17 15:05:18 +01001897 return self.config["availability_zone"][0]
mirabal29356312017-07-27 12:21:22 +02001898
tierno5a3273c2017-08-29 11:43:46 +02001899 vim_availability_zones = self.availability_zone
1900 # check if VIM offer enough availability zones describe in the VNFD
sousaedu80135b92021-02-17 15:05:18 +01001901 if vim_availability_zones and len(availability_zone_list) <= len(
1902 vim_availability_zones
1903 ):
tierno5a3273c2017-08-29 11:43:46 +02001904 # check if all the names of NFV AV match VIM AV names
1905 match_by_index = False
1906 for av in availability_zone_list:
1907 if av not in vim_availability_zones:
1908 match_by_index = True
1909 break
sousaedu80135b92021-02-17 15:05:18 +01001910
tierno5a3273c2017-08-29 11:43:46 +02001911 if match_by_index:
1912 return vim_availability_zones[availability_zone_index]
1913 else:
1914 return availability_zone_list[availability_zone_index]
mirabal29356312017-07-27 12:21:22 +02001915 else:
sousaedu80135b92021-02-17 15:05:18 +01001916 raise vimconn.VimConnConflictException(
1917 "No enough availability zones at VIM for this deployment"
1918 )
mirabal29356312017-07-27 12:21:22 +02001919
Gulsum Atici26f73662022-10-27 15:18:27 +03001920 def _prepare_port_dict_security_groups(self, net: dict, port_dict: dict) -> None:
1921 """Fill up the security_groups in the port_dict.
1922
1923 Args:
1924 net (dict): Network details
1925 port_dict (dict): Port details
1926
1927 """
1928 if (
1929 self.config.get("security_groups")
1930 and net.get("port_security") is not False
1931 and not self.config.get("no_port_security_extension")
1932 ):
1933 if not self.security_groups_id:
1934 self._get_ids_from_name()
1935
1936 port_dict["security_groups"] = self.security_groups_id
1937
1938 def _prepare_port_dict_binding(self, net: dict, port_dict: dict) -> None:
1939 """Fill up the network binding depending on network type in the port_dict.
1940
1941 Args:
1942 net (dict): Network details
1943 port_dict (dict): Port details
1944
1945 """
1946 if not net.get("type"):
1947 raise vimconn.VimConnException("Type is missing in the network details.")
1948
1949 if net["type"] == "virtual":
1950 pass
1951
1952 # For VF
1953 elif net["type"] == "VF" or net["type"] == "SR-IOV":
Gulsum Atici26f73662022-10-27 15:18:27 +03001954 port_dict["binding:vnic_type"] = "direct"
1955
1956 # VIO specific Changes
1957 if self.vim_type == "VIO":
1958 # Need to create port with port_security_enabled = False and no-security-groups
1959 port_dict["port_security_enabled"] = False
1960 port_dict["provider_security_groups"] = []
1961 port_dict["security_groups"] = []
1962
1963 else:
1964 # For PT PCI-PASSTHROUGH
1965 port_dict["binding:vnic_type"] = "direct-physical"
1966
1967 @staticmethod
1968 def _set_fixed_ip(new_port: dict, net: dict) -> None:
1969 """Set the "ip" parameter in net dictionary.
1970
1971 Args:
1972 new_port (dict): New created port
1973 net (dict): Network details
1974
1975 """
1976 fixed_ips = new_port["port"].get("fixed_ips")
1977
1978 if fixed_ips:
1979 net["ip"] = fixed_ips[0].get("ip_address")
1980 else:
1981 net["ip"] = None
1982
1983 @staticmethod
1984 def _prepare_port_dict_mac_ip_addr(net: dict, port_dict: dict) -> None:
1985 """Fill up the mac_address and fixed_ips in port_dict.
1986
1987 Args:
1988 net (dict): Network details
1989 port_dict (dict): Port details
1990
1991 """
1992 if net.get("mac_address"):
1993 port_dict["mac_address"] = net["mac_address"]
1994
elumalai370e36b2023-04-25 16:22:56 +05301995 ip_dual_list = []
1996 if ip_list := net.get("ip_address"):
1997 if not isinstance(ip_list, list):
1998 ip_list = [ip_list]
1999 for ip in ip_list:
2000 ip_dict = {"ip_address": ip}
2001 ip_dual_list.append(ip_dict)
2002 port_dict["fixed_ips"] = ip_dual_list
Gulsum Atici26f73662022-10-27 15:18:27 +03002003 # TODO add "subnet_id": <subnet_id>
2004
2005 def _create_new_port(self, port_dict: dict, created_items: dict, net: dict) -> Dict:
2006 """Create new port using neutron.
2007
2008 Args:
2009 port_dict (dict): Port details
2010 created_items (dict): All created items
2011 net (dict): Network details
2012
2013 Returns:
2014 new_port (dict): New created port
2015
2016 """
2017 new_port = self.neutron.create_port({"port": port_dict})
2018 created_items["port:" + str(new_port["port"]["id"])] = True
elumalaie17cd942023-04-28 18:04:24 +05302019 net["mac_address"] = new_port["port"]["mac_address"]
Gulsum Atici26f73662022-10-27 15:18:27 +03002020 net["vim_id"] = new_port["port"]["id"]
2021
2022 return new_port
2023
2024 def _create_port(
2025 self, net: dict, name: str, created_items: dict
2026 ) -> Tuple[dict, dict]:
2027 """Create port using net details.
2028
2029 Args:
2030 net (dict): Network details
2031 name (str): Name to be used as network name if net dict does not include name
2032 created_items (dict): All created items
2033
2034 Returns:
2035 new_port, port New created port, port dictionary
2036
2037 """
2038
2039 port_dict = {
2040 "network_id": net["net_id"],
2041 "name": net.get("name"),
2042 "admin_state_up": True,
2043 }
2044
2045 if not port_dict["name"]:
2046 port_dict["name"] = name
2047
2048 self._prepare_port_dict_security_groups(net, port_dict)
2049
2050 self._prepare_port_dict_binding(net, port_dict)
2051
2052 vimconnector._prepare_port_dict_mac_ip_addr(net, port_dict)
2053
2054 new_port = self._create_new_port(port_dict, created_items, net)
2055
2056 vimconnector._set_fixed_ip(new_port, net)
2057
2058 port = {"port-id": new_port["port"]["id"]}
2059
2060 if float(self.nova.api_version.get_string()) >= 2.32:
2061 port["tag"] = new_port["port"]["name"]
2062
2063 return new_port, port
2064
2065 def _prepare_network_for_vminstance(
2066 self,
2067 name: str,
2068 net_list: list,
2069 created_items: dict,
2070 net_list_vim: list,
2071 external_network: list,
2072 no_secured_ports: list,
2073 ) -> None:
2074 """Create port and fill up net dictionary for new VM instance creation.
2075
2076 Args:
2077 name (str): Name of network
2078 net_list (list): List of networks
2079 created_items (dict): All created items belongs to a VM
2080 net_list_vim (list): List of ports
2081 external_network (list): List of external-networks
2082 no_secured_ports (list): Port security disabled ports
2083 """
2084
2085 self._reload_connection()
2086
2087 for net in net_list:
2088 # Skip non-connected iface
2089 if not net.get("net_id"):
2090 continue
2091
2092 new_port, port = self._create_port(net, name, created_items)
2093
2094 net_list_vim.append(port)
2095
2096 if net.get("floating_ip", False):
2097 net["exit_on_floating_ip_error"] = True
2098 external_network.append(net)
2099
2100 elif net["use"] == "mgmt" and self.config.get("use_floating_ip"):
2101 net["exit_on_floating_ip_error"] = False
2102 external_network.append(net)
2103 net["floating_ip"] = self.config.get("use_floating_ip")
2104
2105 # If port security is disabled when the port has not yet been attached to the VM, then all vm traffic
2106 # is dropped. As a workaround we wait until the VM is active and then disable the port-security
2107 if net.get("port_security") is False and not self.config.get(
2108 "no_port_security_extension"
2109 ):
2110 no_secured_ports.append(
2111 (
2112 new_port["port"]["id"],
2113 net.get("port_security_disable_strategy"),
2114 )
2115 )
2116
2117 def _prepare_persistent_root_volumes(
2118 self,
2119 name: str,
Luis Vega25bc6382023-10-05 23:22:04 +00002120 storage_av_zone: list,
Gulsum Atici26f73662022-10-27 15:18:27 +03002121 disk: dict,
2122 base_disk_index: int,
2123 block_device_mapping: dict,
2124 existing_vim_volumes: list,
2125 created_items: dict,
2126 ) -> Optional[str]:
2127 """Prepare persistent root volumes for new VM instance.
2128
2129 Args:
2130 name (str): Name of VM instance
Luis Vega25bc6382023-10-05 23:22:04 +00002131 storage_av_zone (list): Storage of availability zones
Gulsum Atici26f73662022-10-27 15:18:27 +03002132 disk (dict): Disk details
2133 base_disk_index (int): Disk index
2134 block_device_mapping (dict): Block device details
2135 existing_vim_volumes (list): Existing disk details
2136 created_items (dict): All created items belongs to VM
2137
2138 Returns:
2139 boot_volume_id (str): ID of boot volume
2140
2141 """
2142 # Disk may include only vim_volume_id or only vim_id."
2143 # Use existing persistent root volume finding with volume_id or vim_id
2144 key_id = "vim_volume_id" if "vim_volume_id" in disk.keys() else "vim_id"
Gulsum Atici26f73662022-10-27 15:18:27 +03002145 if disk.get(key_id):
Gulsum Atici26f73662022-10-27 15:18:27 +03002146 block_device_mapping["vd" + chr(base_disk_index)] = disk[key_id]
2147 existing_vim_volumes.append({"id": disk[key_id]})
Gulsum Atici26f73662022-10-27 15:18:27 +03002148 else:
2149 # Create persistent root volume
2150 volume = self.cinder.volumes.create(
2151 size=disk["size"],
2152 name=name + "vd" + chr(base_disk_index),
2153 imageRef=disk["image_id"],
2154 # Make sure volume is in the same AZ as the VM to be attached to
Luis Vega25bc6382023-10-05 23:22:04 +00002155 availability_zone=storage_av_zone,
Gulsum Atici26f73662022-10-27 15:18:27 +03002156 )
2157 boot_volume_id = volume.id
aticig2f4ab6c2022-09-03 18:15:20 +03002158 self.update_block_device_mapping(
2159 volume=volume,
2160 block_device_mapping=block_device_mapping,
2161 base_disk_index=base_disk_index,
2162 disk=disk,
2163 created_items=created_items,
2164 )
Gulsum Atici26f73662022-10-27 15:18:27 +03002165
2166 return boot_volume_id
2167
aticig2f4ab6c2022-09-03 18:15:20 +03002168 @staticmethod
2169 def update_block_device_mapping(
2170 volume: object,
2171 block_device_mapping: dict,
2172 base_disk_index: int,
2173 disk: dict,
2174 created_items: dict,
2175 ) -> None:
2176 """Add volume information to block device mapping dict.
2177 Args:
2178 volume (object): Created volume object
2179 block_device_mapping (dict): Block device details
2180 base_disk_index (int): Disk index
2181 disk (dict): Disk details
2182 created_items (dict): All created items belongs to VM
2183 """
2184 if not volume:
2185 raise vimconn.VimConnException("Volume is empty.")
2186
2187 if not hasattr(volume, "id"):
2188 raise vimconn.VimConnException(
2189 "Created volume is not valid, does not have id attribute."
2190 )
2191
Gabriel Cuba1fd411b2023-06-14 00:50:57 -05002192 block_device_mapping["vd" + chr(base_disk_index)] = volume.id
2193 if disk.get("multiattach"): # multiattach volumes do not belong to VDUs
2194 return
aticig2f4ab6c2022-09-03 18:15:20 +03002195 volume_txt = "volume:" + str(volume.id)
2196 if disk.get("keep"):
2197 volume_txt += ":keep"
2198 created_items[volume_txt] = True
aticig2f4ab6c2022-09-03 18:15:20 +03002199
gatici335a06a2023-07-26 00:34:04 +03002200 @catch_any_exception
vegall364627c2023-03-17 15:09:50 +00002201 def new_shared_volumes(self, shared_volume_data) -> (str, str):
Luis Vega25bc6382023-10-05 23:22:04 +00002202 availability_zone = (
2203 self.storage_availability_zone
2204 if self.storage_availability_zone
Luis Vegaafe8df22023-12-01 01:02:12 +00002205 else self.vm_av_zone
Luis Vega25bc6382023-10-05 23:22:04 +00002206 )
gatici335a06a2023-07-26 00:34:04 +03002207 volume = self.cinder.volumes.create(
2208 size=shared_volume_data["size"],
2209 name=shared_volume_data["name"],
2210 volume_type="multiattach",
Luis Vega25bc6382023-10-05 23:22:04 +00002211 availability_zone=availability_zone,
gatici335a06a2023-07-26 00:34:04 +03002212 )
2213 return volume.name, volume.id
vegall364627c2023-03-17 15:09:50 +00002214
2215 def _prepare_shared_volumes(
2216 self,
2217 name: str,
2218 disk: dict,
2219 base_disk_index: int,
2220 block_device_mapping: dict,
2221 existing_vim_volumes: list,
2222 created_items: dict,
2223 ):
2224 volumes = {volume.name: volume.id for volume in self.cinder.volumes.list()}
2225 if volumes.get(disk["name"]):
2226 sv_id = volumes[disk["name"]]
Gabriel Cuba1fd411b2023-06-14 00:50:57 -05002227 max_retries = 3
2228 vol_status = ""
2229 # If this is not the first VM to attach the volume, volume status may be "reserved" for a short time
2230 while max_retries:
2231 max_retries -= 1
2232 volume = self.cinder.volumes.get(sv_id)
2233 vol_status = volume.status
2234 if volume.status not in ("in-use", "available"):
2235 time.sleep(5)
2236 continue
2237 self.update_block_device_mapping(
2238 volume=volume,
2239 block_device_mapping=block_device_mapping,
2240 base_disk_index=base_disk_index,
2241 disk=disk,
2242 created_items=created_items,
2243 )
2244 return
2245 raise vimconn.VimConnException(
2246 "Shared volume is not prepared, status is: {}".format(vol_status),
2247 http_code=vimconn.HTTP_Internal_Server_Error,
vegall364627c2023-03-17 15:09:50 +00002248 )
2249
Gulsum Atici26f73662022-10-27 15:18:27 +03002250 def _prepare_non_root_persistent_volumes(
2251 self,
2252 name: str,
2253 disk: dict,
Luis Vega25bc6382023-10-05 23:22:04 +00002254 storage_av_zone: list,
Gulsum Atici26f73662022-10-27 15:18:27 +03002255 block_device_mapping: dict,
2256 base_disk_index: int,
2257 existing_vim_volumes: list,
2258 created_items: dict,
2259 ) -> None:
2260 """Prepare persistent volumes for new VM instance.
2261
2262 Args:
2263 name (str): Name of VM instance
2264 disk (dict): Disk details
Luis Vega25bc6382023-10-05 23:22:04 +00002265 storage_av_zone (list): Storage of availability zones
Gulsum Atici26f73662022-10-27 15:18:27 +03002266 block_device_mapping (dict): Block device details
2267 base_disk_index (int): Disk index
2268 existing_vim_volumes (list): Existing disk details
2269 created_items (dict): All created items belongs to VM
2270 """
2271 # Non-root persistent volumes
2272 # Disk may include only vim_volume_id or only vim_id."
2273 key_id = "vim_volume_id" if "vim_volume_id" in disk.keys() else "vim_id"
Gulsum Atici26f73662022-10-27 15:18:27 +03002274 if disk.get(key_id):
Gulsum Atici26f73662022-10-27 15:18:27 +03002275 # Use existing persistent volume
2276 block_device_mapping["vd" + chr(base_disk_index)] = disk[key_id]
2277 existing_vim_volumes.append({"id": disk[key_id]})
Gulsum Atici26f73662022-10-27 15:18:27 +03002278 else:
vegall364627c2023-03-17 15:09:50 +00002279 volume_name = f"{name}vd{chr(base_disk_index)}"
Gulsum Atici26f73662022-10-27 15:18:27 +03002280 volume = self.cinder.volumes.create(
2281 size=disk["size"],
vegall364627c2023-03-17 15:09:50 +00002282 name=volume_name,
Gulsum Atici26f73662022-10-27 15:18:27 +03002283 # Make sure volume is in the same AZ as the VM to be attached to
Luis Vega25bc6382023-10-05 23:22:04 +00002284 availability_zone=storage_av_zone,
Gulsum Atici26f73662022-10-27 15:18:27 +03002285 )
aticig2f4ab6c2022-09-03 18:15:20 +03002286 self.update_block_device_mapping(
2287 volume=volume,
2288 block_device_mapping=block_device_mapping,
2289 base_disk_index=base_disk_index,
2290 disk=disk,
2291 created_items=created_items,
2292 )
Gulsum Atici26f73662022-10-27 15:18:27 +03002293
2294 def _wait_for_created_volumes_availability(
2295 self, elapsed_time: int, created_items: dict
2296 ) -> Optional[int]:
2297 """Wait till created volumes become available.
2298
2299 Args:
2300 elapsed_time (int): Passed time while waiting
2301 created_items (dict): All created items belongs to VM
2302
2303 Returns:
2304 elapsed_time (int): Time spent while waiting
2305
2306 """
Gulsum Atici26f73662022-10-27 15:18:27 +03002307 while elapsed_time < volume_timeout:
2308 for created_item in created_items:
aticig2f4ab6c2022-09-03 18:15:20 +03002309 v, volume_id = (
2310 created_item.split(":")[0],
2311 created_item.split(":")[1],
2312 )
Gulsum Atici26f73662022-10-27 15:18:27 +03002313 if v == "volume":
vegall364627c2023-03-17 15:09:50 +00002314 volume = self.cinder.volumes.get(volume_id)
2315 if (
2316 volume.volume_type == "multiattach"
2317 and volume.status == "in-use"
2318 ):
2319 return elapsed_time
2320 elif volume.status != "available":
Gulsum Atici26f73662022-10-27 15:18:27 +03002321 break
2322 else:
2323 # All ready: break from while
2324 break
2325
2326 time.sleep(5)
2327 elapsed_time += 5
2328
2329 return elapsed_time
2330
2331 def _wait_for_existing_volumes_availability(
2332 self, elapsed_time: int, existing_vim_volumes: list
2333 ) -> Optional[int]:
2334 """Wait till existing volumes become available.
2335
2336 Args:
2337 elapsed_time (int): Passed time while waiting
2338 existing_vim_volumes (list): Existing volume details
2339
2340 Returns:
2341 elapsed_time (int): Time spent while waiting
2342
2343 """
2344
2345 while elapsed_time < volume_timeout:
2346 for volume in existing_vim_volumes:
vegall364627c2023-03-17 15:09:50 +00002347 v = self.cinder.volumes.get(volume["id"])
2348 if v.volume_type == "multiattach" and v.status == "in-use":
2349 return elapsed_time
2350 elif v.status != "available":
Gulsum Atici26f73662022-10-27 15:18:27 +03002351 break
2352 else: # all ready: break from while
2353 break
2354
2355 time.sleep(5)
2356 elapsed_time += 5
2357
2358 return elapsed_time
2359
2360 def _prepare_disk_for_vminstance(
2361 self,
2362 name: str,
2363 existing_vim_volumes: list,
2364 created_items: dict,
Luis Vega25bc6382023-10-05 23:22:04 +00002365 storage_av_zone: list,
Gulsum Atici13d02322022-11-18 00:10:15 +03002366 block_device_mapping: dict,
Gulsum Atici26f73662022-10-27 15:18:27 +03002367 disk_list: list = None,
2368 ) -> None:
2369 """Prepare all volumes for new VM instance.
2370
2371 Args:
2372 name (str): Name of Instance
2373 existing_vim_volumes (list): List of existing volumes
2374 created_items (dict): All created items belongs to VM
Luis Vega25bc6382023-10-05 23:22:04 +00002375 storage_av_zone (list): Storage availability zone
Gulsum Atici13d02322022-11-18 00:10:15 +03002376 block_device_mapping (dict): Block devices to be attached to VM
Gulsum Atici26f73662022-10-27 15:18:27 +03002377 disk_list (list): List of disks
2378
2379 """
2380 # Create additional volumes in case these are present in disk_list
2381 base_disk_index = ord("b")
2382 boot_volume_id = None
2383 elapsed_time = 0
Gulsum Atici26f73662022-10-27 15:18:27 +03002384 for disk in disk_list:
2385 if "image_id" in disk:
2386 # Root persistent volume
2387 base_disk_index = ord("a")
2388 boot_volume_id = self._prepare_persistent_root_volumes(
2389 name=name,
Luis Vega25bc6382023-10-05 23:22:04 +00002390 storage_av_zone=storage_av_zone,
Gulsum Atici26f73662022-10-27 15:18:27 +03002391 disk=disk,
2392 base_disk_index=base_disk_index,
2393 block_device_mapping=block_device_mapping,
2394 existing_vim_volumes=existing_vim_volumes,
2395 created_items=created_items,
2396 )
vegall364627c2023-03-17 15:09:50 +00002397 elif disk.get("multiattach"):
2398 self._prepare_shared_volumes(
2399 name=name,
2400 disk=disk,
2401 base_disk_index=base_disk_index,
2402 block_device_mapping=block_device_mapping,
2403 existing_vim_volumes=existing_vim_volumes,
2404 created_items=created_items,
2405 )
Gulsum Atici26f73662022-10-27 15:18:27 +03002406 else:
2407 # Non-root persistent volume
2408 self._prepare_non_root_persistent_volumes(
2409 name=name,
2410 disk=disk,
Luis Vega25bc6382023-10-05 23:22:04 +00002411 storage_av_zone=storage_av_zone,
Gulsum Atici26f73662022-10-27 15:18:27 +03002412 block_device_mapping=block_device_mapping,
2413 base_disk_index=base_disk_index,
2414 existing_vim_volumes=existing_vim_volumes,
2415 created_items=created_items,
2416 )
2417 base_disk_index += 1
2418
2419 # Wait until created volumes are with status available
2420 elapsed_time = self._wait_for_created_volumes_availability(
2421 elapsed_time, created_items
2422 )
2423 # Wait until existing volumes in vim are with status available
2424 elapsed_time = self._wait_for_existing_volumes_availability(
2425 elapsed_time, existing_vim_volumes
2426 )
2427 # If we exceeded the timeout rollback
2428 if elapsed_time >= volume_timeout:
2429 raise vimconn.VimConnException(
2430 "Timeout creating volumes for instance " + name,
2431 http_code=vimconn.HTTP_Request_Timeout,
2432 )
2433 if boot_volume_id:
2434 self.cinder.volumes.set_bootable(boot_volume_id, True)
2435
2436 def _find_the_external_network_for_floating_ip(self):
2437 """Get the external network ip in order to create floating IP.
2438
2439 Returns:
2440 pool_id (str): External network pool ID
2441
2442 """
2443
2444 # Find the external network
2445 external_nets = list()
2446
2447 for net in self.neutron.list_networks()["networks"]:
2448 if net["router:external"]:
2449 external_nets.append(net)
2450
2451 if len(external_nets) == 0:
2452 raise vimconn.VimConnException(
2453 "Cannot create floating_ip automatically since "
2454 "no external network is present",
2455 http_code=vimconn.HTTP_Conflict,
2456 )
2457
2458 if len(external_nets) > 1:
2459 raise vimconn.VimConnException(
2460 "Cannot create floating_ip automatically since "
2461 "multiple external networks are present",
2462 http_code=vimconn.HTTP_Conflict,
2463 )
2464
2465 # Pool ID
2466 return external_nets[0].get("id")
2467
2468 def _neutron_create_float_ip(self, param: dict, created_items: dict) -> None:
2469 """Trigger neutron to create a new floating IP using external network ID.
2470
2471 Args:
2472 param (dict): Input parameters to create a floating IP
2473 created_items (dict): All created items belongs to new VM instance
2474
2475 Raises:
2476
2477 VimConnException
2478 """
2479 try:
2480 self.logger.debug("Creating floating IP")
2481 new_floating_ip = self.neutron.create_floatingip(param)
2482 free_floating_ip = new_floating_ip["floatingip"]["id"]
2483 created_items["floating_ip:" + str(free_floating_ip)] = True
2484
2485 except Exception as e:
2486 raise vimconn.VimConnException(
2487 type(e).__name__ + ": Cannot create new floating_ip " + str(e),
2488 http_code=vimconn.HTTP_Conflict,
2489 )
2490
2491 def _create_floating_ip(
2492 self, floating_network: dict, server: object, created_items: dict
2493 ) -> None:
2494 """Get the available Pool ID and create a new floating IP.
2495
2496 Args:
2497 floating_network (dict): Dict including external network ID
2498 server (object): Server object
2499 created_items (dict): All created items belongs to new VM instance
2500
2501 """
2502
2503 # Pool_id is available
2504 if (
2505 isinstance(floating_network["floating_ip"], str)
2506 and floating_network["floating_ip"].lower() != "true"
2507 ):
2508 pool_id = floating_network["floating_ip"]
2509
2510 # Find the Pool_id
2511 else:
2512 pool_id = self._find_the_external_network_for_floating_ip()
2513
2514 param = {
2515 "floatingip": {
2516 "floating_network_id": pool_id,
2517 "tenant_id": server.tenant_id,
2518 }
2519 }
2520
2521 self._neutron_create_float_ip(param, created_items)
2522
2523 def _find_floating_ip(
2524 self,
2525 server: object,
2526 floating_ips: list,
2527 floating_network: dict,
2528 ) -> Optional[str]:
2529 """Find the available free floating IPs if there are.
2530
2531 Args:
2532 server (object): Server object
2533 floating_ips (list): List of floating IPs
2534 floating_network (dict): Details of floating network such as ID
2535
2536 Returns:
2537 free_floating_ip (str): Free floating ip address
2538
2539 """
2540 for fip in floating_ips:
2541 if fip.get("port_id") or fip.get("tenant_id") != server.tenant_id:
2542 continue
2543
2544 if isinstance(floating_network["floating_ip"], str):
2545 if fip.get("floating_network_id") != floating_network["floating_ip"]:
2546 continue
2547
2548 return fip["id"]
2549
2550 def _assign_floating_ip(
2551 self, free_floating_ip: str, floating_network: dict
2552 ) -> Dict:
2553 """Assign the free floating ip address to port.
2554
2555 Args:
2556 free_floating_ip (str): Floating IP to be assigned
2557 floating_network (dict): ID of floating network
2558
2559 Returns:
2560 fip (dict) (dict): Floating ip details
2561
2562 """
2563 # The vim_id key contains the neutron.port_id
2564 self.neutron.update_floatingip(
2565 free_floating_ip,
2566 {"floatingip": {"port_id": floating_network["vim_id"]}},
2567 )
2568 # For race condition ensure not re-assigned to other VM after 5 seconds
2569 time.sleep(5)
2570
2571 return self.neutron.show_floatingip(free_floating_ip)
2572
2573 def _get_free_floating_ip(
Gulsum Atici9e76ebb2022-12-12 19:21:25 +03002574 self, server: object, floating_network: dict
Gulsum Atici26f73662022-10-27 15:18:27 +03002575 ) -> Optional[str]:
2576 """Get the free floating IP address.
2577
2578 Args:
2579 server (object): Server Object
2580 floating_network (dict): Floating network details
Gulsum Atici26f73662022-10-27 15:18:27 +03002581
2582 Returns:
2583 free_floating_ip (str): Free floating ip addr
2584
2585 """
2586
2587 floating_ips = self.neutron.list_floatingips().get("floatingips", ())
2588
2589 # Randomize
2590 random.shuffle(floating_ips)
2591
Gulsum Atici9e76ebb2022-12-12 19:21:25 +03002592 return self._find_floating_ip(server, floating_ips, floating_network)
Gulsum Atici26f73662022-10-27 15:18:27 +03002593
2594 def _prepare_external_network_for_vminstance(
2595 self,
2596 external_network: list,
2597 server: object,
2598 created_items: dict,
2599 vm_start_time: float,
2600 ) -> None:
2601 """Assign floating IP address for VM instance.
2602
2603 Args:
2604 external_network (list): ID of External network
2605 server (object): Server Object
2606 created_items (dict): All created items belongs to new VM instance
2607 vm_start_time (float): Time as a floating point number expressed in seconds since the epoch, in UTC
2608
2609 Raises:
2610 VimConnException
2611
2612 """
2613 for floating_network in external_network:
2614 try:
2615 assigned = False
2616 floating_ip_retries = 3
2617 # In case of RO in HA there can be conflicts, two RO trying to assign same floating IP, so retry
2618 # several times
2619 while not assigned:
Gulsum Atici26f73662022-10-27 15:18:27 +03002620 free_floating_ip = self._get_free_floating_ip(
Gulsum Atici9e76ebb2022-12-12 19:21:25 +03002621 server, floating_network
Gulsum Atici26f73662022-10-27 15:18:27 +03002622 )
2623
2624 if not free_floating_ip:
2625 self._create_floating_ip(
2626 floating_network, server, created_items
2627 )
2628
2629 try:
2630 # For race condition ensure not already assigned
2631 fip = self.neutron.show_floatingip(free_floating_ip)
2632
2633 if fip["floatingip"].get("port_id"):
2634 continue
2635
2636 # Assign floating ip
2637 fip = self._assign_floating_ip(
2638 free_floating_ip, floating_network
2639 )
2640
2641 if fip["floatingip"]["port_id"] != floating_network["vim_id"]:
2642 self.logger.warning(
2643 "floating_ip {} re-assigned to other port".format(
2644 free_floating_ip
2645 )
2646 )
2647 continue
2648
2649 self.logger.debug(
2650 "Assigned floating_ip {} to VM {}".format(
2651 free_floating_ip, server.id
2652 )
2653 )
2654
2655 assigned = True
2656
2657 except Exception as e:
2658 # Openstack need some time after VM creation to assign an IP. So retry if fails
2659 vm_status = self.nova.servers.get(server.id).status
2660
2661 if vm_status not in ("ACTIVE", "ERROR"):
2662 if time.time() - vm_start_time < server_timeout:
2663 time.sleep(5)
2664 continue
2665 elif floating_ip_retries > 0:
2666 floating_ip_retries -= 1
2667 continue
2668
2669 raise vimconn.VimConnException(
2670 "Cannot create floating_ip: {} {}".format(
2671 type(e).__name__, e
2672 ),
2673 http_code=vimconn.HTTP_Conflict,
2674 )
2675
2676 except Exception as e:
2677 if not floating_network["exit_on_floating_ip_error"]:
2678 self.logger.error("Cannot create floating_ip. %s", str(e))
2679 continue
2680
2681 raise
2682
2683 def _update_port_security_for_vminstance(
2684 self,
2685 no_secured_ports: list,
2686 server: object,
2687 ) -> None:
2688 """Updates the port security according to no_secured_ports list.
2689
2690 Args:
2691 no_secured_ports (list): List of ports that security will be disabled
2692 server (object): Server Object
2693
2694 Raises:
2695 VimConnException
2696
2697 """
2698 # Wait until the VM is active and then disable the port-security
2699 if no_secured_ports:
2700 self.__wait_for_vm(server.id, "ACTIVE")
2701
2702 for port in no_secured_ports:
2703 port_update = {
2704 "port": {"port_security_enabled": False, "security_groups": None}
2705 }
2706
2707 if port[1] == "allow-address-pairs":
2708 port_update = {
2709 "port": {"allowed_address_pairs": [{"ip_address": "0.0.0.0/0"}]}
2710 }
2711
2712 try:
2713 self.neutron.update_port(port[0], port_update)
2714
2715 except Exception:
Gulsum Atici26f73662022-10-27 15:18:27 +03002716 raise vimconn.VimConnException(
2717 "It was not possible to disable port security for port {}".format(
2718 port[0]
2719 )
2720 )
2721
sousaedu80135b92021-02-17 15:05:18 +01002722 def new_vminstance(
2723 self,
Gulsum Atici26f73662022-10-27 15:18:27 +03002724 name: str,
2725 description: str,
2726 start: bool,
2727 image_id: str,
2728 flavor_id: str,
2729 affinity_group_list: list,
2730 net_list: list,
sousaedu80135b92021-02-17 15:05:18 +01002731 cloud_config=None,
2732 disk_list=None,
2733 availability_zone_index=None,
2734 availability_zone_list=None,
Gulsum Atici26f73662022-10-27 15:18:27 +03002735 ) -> tuple:
2736 """Adds a VM instance to VIM.
2737
2738 Args:
2739 name (str): name of VM
2740 description (str): description
2741 start (bool): indicates if VM must start or boot in pause mode. Ignored
2742 image_id (str) image uuid
2743 flavor_id (str) flavor uuid
2744 affinity_group_list (list): list of affinity groups, each one is a dictionary.Ignore if empty.
2745 net_list (list): list of interfaces, each one is a dictionary with:
2746 name: name of network
2747 net_id: network uuid to connect
2748 vpci: virtual vcpi to assign, ignored because openstack lack #TODO
2749 model: interface model, ignored #TODO
2750 mac_address: used for SR-IOV ifaces #TODO for other types
2751 use: 'data', 'bridge', 'mgmt'
2752 type: 'virtual', 'PCI-PASSTHROUGH'('PF'), 'SR-IOV'('VF'), 'VFnotShared'
2753 vim_id: filled/added by this function
2754 floating_ip: True/False (or it can be None)
2755 port_security: True/False
2756 cloud_config (dict): (optional) dictionary with:
2757 key-pairs: (optional) list of strings with the public key to be inserted to the default user
2758 users: (optional) list of users to be inserted, each item is a dict with:
2759 name: (mandatory) user name,
2760 key-pairs: (optional) list of strings with the public key to be inserted to the user
2761 user-data: (optional) string is a text script to be passed directly to cloud-init
2762 config-files: (optional). List of files to be transferred. Each item is a dict with:
2763 dest: (mandatory) string with the destination absolute path
2764 encoding: (optional, by default text). Can be one of:
tierno1d213f42020-04-24 14:02:51 +00002765 'b64', 'base64', 'gz', 'gz+b64', 'gz+base64', 'gzip+b64', 'gzip+base64'
Gulsum Atici26f73662022-10-27 15:18:27 +03002766 content : (mandatory) string with the content of the file
2767 permissions: (optional) string with file permissions, typically octal notation '0644'
2768 owner: (optional) file owner, string with the format 'owner:group'
2769 boot-data-drive: boolean to indicate if user-data must be passed using a boot drive (hard disk)
2770 disk_list: (optional) list with additional disks to the VM. Each item is a dict with:
2771 image_id: (optional). VIM id of an existing image. If not provided an empty disk must be mounted
2772 size: (mandatory) string with the size of the disk in GB
2773 vim_id: (optional) should use this existing volume id
2774 availability_zone_index: Index of availability_zone_list to use for this this VM. None if not AV required
2775 availability_zone_list: list of availability zones given by user in the VNFD descriptor. Ignore if
tierno5a3273c2017-08-29 11:43:46 +02002776 availability_zone_index is None
tierno7edb6752016-03-21 17:37:52 +01002777 #TODO ip, security groups
Gulsum Atici26f73662022-10-27 15:18:27 +03002778
2779 Returns:
2780 A tuple with the instance identifier and created_items or raises an exception on error
tierno98e909c2017-10-14 13:27:03 +02002781 created_items can be None or a dictionary where this method can include key-values that will be passed to
2782 the method delete_vminstance and action_vminstance. Can be used to store created ports, volumes, etc.
2783 Format is vimconnector dependent, but do not use nested dictionaries and a value of None should be the same
2784 as not present.
aticig2f4ab6c2022-09-03 18:15:20 +03002785
tierno98e909c2017-10-14 13:27:03 +02002786 """
sousaedu80135b92021-02-17 15:05:18 +01002787 self.logger.debug(
2788 "new_vminstance input: image='%s' flavor='%s' nics='%s'",
2789 image_id,
2790 flavor_id,
2791 str(net_list),
2792 )
gatici335a06a2023-07-26 00:34:04 +03002793 server = None
2794 created_items = {}
2795 net_list_vim = []
2796 # list of external networks to be connected to instance, later on used to create floating_ip
2797 external_network = []
2798 # List of ports with port-security disabled
2799 no_secured_ports = []
2800 block_device_mapping = {}
2801 existing_vim_volumes = []
2802 server_group_id = None
2803 scheduller_hints = {}
sousaedu80135b92021-02-17 15:05:18 +01002804
tierno7edb6752016-03-21 17:37:52 +01002805 try:
Gulsum Atici26f73662022-10-27 15:18:27 +03002806 # Check the Openstack Connection
2807 self._reload_connection()
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +02002808
Gulsum Atici26f73662022-10-27 15:18:27 +03002809 # Prepare network list
2810 self._prepare_network_for_vminstance(
2811 name=name,
2812 net_list=net_list,
2813 created_items=created_items,
2814 net_list_vim=net_list_vim,
2815 external_network=external_network,
2816 no_secured_ports=no_secured_ports,
sousaedu80135b92021-02-17 15:05:18 +01002817 )
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00002818
Gulsum Atici26f73662022-10-27 15:18:27 +03002819 # Cloud config
tierno0a1437e2017-10-02 00:17:43 +02002820 config_drive, userdata = self._create_user_data(cloud_config)
montesmoreno0c8def02016-12-22 12:16:23 +00002821
Gulsum Atici26f73662022-10-27 15:18:27 +03002822 # Get availability Zone
Luis Vegaafe8df22023-12-01 01:02:12 +00002823 self.vm_av_zone = self._get_vm_availability_zone(
Alexis Romero247cc432022-05-12 13:23:25 +02002824 availability_zone_index, availability_zone_list
2825 )
2826
Luis Vega25bc6382023-10-05 23:22:04 +00002827 storage_av_zone = (
2828 self.storage_availability_zone
2829 if self.storage_availability_zone
Luis Vegaafe8df22023-12-01 01:02:12 +00002830 else self.vm_av_zone
Luis Vega25bc6382023-10-05 23:22:04 +00002831 )
2832
tierno1df468d2018-07-06 14:25:16 +02002833 if disk_list:
Gulsum Atici26f73662022-10-27 15:18:27 +03002834 # Prepare disks
2835 self._prepare_disk_for_vminstance(
2836 name=name,
2837 existing_vim_volumes=existing_vim_volumes,
2838 created_items=created_items,
Luis Vega25bc6382023-10-05 23:22:04 +00002839 storage_av_zone=storage_av_zone,
Gulsum Atici13d02322022-11-18 00:10:15 +03002840 block_device_mapping=block_device_mapping,
Gulsum Atici26f73662022-10-27 15:18:27 +03002841 disk_list=disk_list,
2842 )
Alexis Romerob70f4ed2022-03-11 18:00:49 +01002843
2844 if affinity_group_list:
2845 # Only first id on the list will be used. Openstack restriction
2846 server_group_id = affinity_group_list[0]["affinity_group_id"]
2847 scheduller_hints["group"] = server_group_id
2848
sousaedu80135b92021-02-17 15:05:18 +01002849 self.logger.debug(
2850 "nova.servers.create({}, {}, {}, nics={}, security_groups={}, "
2851 "availability_zone={}, key_name={}, userdata={}, config_drive={}, "
Alexis Romerob70f4ed2022-03-11 18:00:49 +01002852 "block_device_mapping={}, server_group={})".format(
sousaedu80135b92021-02-17 15:05:18 +01002853 name,
2854 image_id,
2855 flavor_id,
2856 net_list_vim,
2857 self.config.get("security_groups"),
Luis Vegaafe8df22023-12-01 01:02:12 +00002858 self.vm_av_zone,
sousaedu80135b92021-02-17 15:05:18 +01002859 self.config.get("keypair"),
2860 userdata,
2861 config_drive,
2862 block_device_mapping,
Alexis Romerob70f4ed2022-03-11 18:00:49 +01002863 server_group_id,
sousaedu80135b92021-02-17 15:05:18 +01002864 )
2865 )
Gulsum Atici26f73662022-10-27 15:18:27 +03002866 # Create VM
sousaedu80135b92021-02-17 15:05:18 +01002867 server = self.nova.servers.create(
aticigcf14bb12022-05-19 13:03:17 +03002868 name=name,
2869 image=image_id,
2870 flavor=flavor_id,
sousaedu80135b92021-02-17 15:05:18 +01002871 nics=net_list_vim,
2872 security_groups=self.config.get("security_groups"),
2873 # TODO remove security_groups in future versions. Already at neutron port
Luis Vegaafe8df22023-12-01 01:02:12 +00002874 availability_zone=self.vm_av_zone,
sousaedu80135b92021-02-17 15:05:18 +01002875 key_name=self.config.get("keypair"),
2876 userdata=userdata,
2877 config_drive=config_drive,
2878 block_device_mapping=block_device_mapping,
Alexis Romerob70f4ed2022-03-11 18:00:49 +01002879 scheduler_hints=scheduller_hints,
Gulsum Atici26f73662022-10-27 15:18:27 +03002880 )
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02002881
tierno326fd5e2018-02-22 11:58:59 +01002882 vm_start_time = time.time()
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02002883
Gulsum Atici26f73662022-10-27 15:18:27 +03002884 self._update_port_security_for_vminstance(no_secured_ports, server)
bravof7a1f5252020-10-20 10:27:42 -03002885
Gulsum Atici26f73662022-10-27 15:18:27 +03002886 self._prepare_external_network_for_vminstance(
2887 external_network=external_network,
2888 server=server,
2889 created_items=created_items,
2890 vm_start_time=vm_start_time,
2891 )
montesmoreno2a1fc4e2017-01-09 16:46:04 +00002892
tierno98e909c2017-10-14 13:27:03 +02002893 return server.id, created_items
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02002894
2895 except Exception as e:
tierno98e909c2017-10-14 13:27:03 +02002896 server_id = None
2897 if server:
2898 server_id = server.id
sousaedu80135b92021-02-17 15:05:18 +01002899
tierno98e909c2017-10-14 13:27:03 +02002900 try:
aticig2f4ab6c2022-09-03 18:15:20 +03002901 created_items = self.remove_keep_tag_from_persistent_volumes(
2902 created_items
2903 )
2904
tierno98e909c2017-10-14 13:27:03 +02002905 self.delete_vminstance(server_id, created_items)
Gulsum Atici26f73662022-10-27 15:18:27 +03002906
tierno98e909c2017-10-14 13:27:03 +02002907 except Exception as e2:
2908 self.logger.error("new_vminstance rollback fail {}".format(e2))
Pablo Montes Moreno6a7785b2017-07-03 10:44:30 +02002909
tiernoae4a8d12016-07-08 12:30:39 +02002910 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +01002911
aticig2f4ab6c2022-09-03 18:15:20 +03002912 @staticmethod
2913 def remove_keep_tag_from_persistent_volumes(created_items: Dict) -> Dict:
2914 """Removes the keep flag from persistent volumes. So, those volumes could be removed.
2915
2916 Args:
2917 created_items (dict): All created items belongs to VM
2918
2919 Returns:
2920 updated_created_items (dict): Dict which does not include keep flag for volumes.
2921
2922 """
2923 return {
2924 key.replace(":keep", ""): value for (key, value) in created_items.items()
2925 }
2926
tierno1ec592d2020-06-16 15:29:47 +00002927 def get_vminstance(self, vm_id):
2928 """Returns the VM instance information from VIM"""
vegallc53829d2023-06-01 00:47:44 -05002929 return self._find_nova_server(vm_id)
tiernoae4a8d12016-07-08 12:30:39 +02002930
gatici335a06a2023-07-26 00:34:04 +03002931 @catch_any_exception
tierno1ec592d2020-06-16 15:29:47 +00002932 def get_vminstance_console(self, vm_id, console_type="vnc"):
2933 """
tierno7edb6752016-03-21 17:37:52 +01002934 Get a console for the virtual machine
2935 Params:
2936 vm_id: uuid of the VM
2937 console_type, can be:
Anderson Bravalheri0446cd52018-08-17 15:26:19 +01002938 "novnc" (by default), "xvpvnc" for VNC types,
tierno7edb6752016-03-21 17:37:52 +01002939 "rdp-html5" for RDP types, "spice-html5" for SPICE types
tiernoae4a8d12016-07-08 12:30:39 +02002940 Returns dict with the console parameters:
2941 protocol: ssh, ftp, http, https, ...
Anderson Bravalheri0446cd52018-08-17 15:26:19 +01002942 server: usually ip address
2943 port: the http, ssh, ... port
2944 suffix: extra text, e.g. the http path and query string
tierno1ec592d2020-06-16 15:29:47 +00002945 """
tiernoae4a8d12016-07-08 12:30:39 +02002946 self.logger.debug("Getting VM CONSOLE from VIM")
gatici335a06a2023-07-26 00:34:04 +03002947 self._reload_connection()
2948 server = self.nova.servers.find(id=vm_id)
sousaedu80135b92021-02-17 15:05:18 +01002949
gatici335a06a2023-07-26 00:34:04 +03002950 if console_type is None or console_type == "novnc":
2951 console_dict = server.get_vnc_console("novnc")
2952 elif console_type == "xvpvnc":
2953 console_dict = server.get_vnc_console(console_type)
2954 elif console_type == "rdp-html5":
2955 console_dict = server.get_rdp_console(console_type)
2956 elif console_type == "spice-html5":
2957 console_dict = server.get_spice_console(console_type)
2958 else:
2959 raise vimconn.VimConnException(
2960 "console type '{}' not allowed".format(console_type),
2961 http_code=vimconn.HTTP_Bad_Request,
2962 )
sousaedu80135b92021-02-17 15:05:18 +01002963
gatici335a06a2023-07-26 00:34:04 +03002964 console_dict1 = console_dict.get("console")
2965
2966 if console_dict1:
2967 console_url = console_dict1.get("url")
2968
2969 if console_url:
2970 # parse console_url
2971 protocol_index = console_url.find("//")
2972 suffix_index = (
2973 console_url[protocol_index + 2 :].find("/") + protocol_index + 2
2974 )
2975 port_index = (
2976 console_url[protocol_index + 2 : suffix_index].find(":")
2977 + protocol_index
2978 + 2
sousaedu80135b92021-02-17 15:05:18 +01002979 )
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00002980
gatici335a06a2023-07-26 00:34:04 +03002981 if protocol_index < 0 or port_index < 0 or suffix_index < 0:
2982 return (
2983 -vimconn.HTTP_Internal_Server_Error,
2984 "Unexpected response from VIM",
sousaedu80135b92021-02-17 15:05:18 +01002985 )
2986
gatici335a06a2023-07-26 00:34:04 +03002987 console_dict = {
2988 "protocol": console_url[0:protocol_index],
2989 "server": console_url[protocol_index + 2 : port_index],
2990 "port": console_url[port_index:suffix_index],
2991 "suffix": console_url[suffix_index + 1 :],
2992 }
2993 protocol_index += 2
sousaedu80135b92021-02-17 15:05:18 +01002994
gatici335a06a2023-07-26 00:34:04 +03002995 return console_dict
2996 raise vimconn.VimConnUnexpectedResponse("Unexpected response from VIM")
tierno7edb6752016-03-21 17:37:52 +01002997
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03002998 def _delete_ports_by_id_wth_neutron(self, k_id: str) -> None:
2999 """Neutron delete ports by id.
3000 Args:
3001 k_id (str): Port id in the VIM
3002 """
3003 try:
limon878f8692023-07-24 15:53:41 +02003004 self.neutron.delete_port(k_id)
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003005
gatici335a06a2023-07-26 00:34:04 +03003006 except (neExceptions.ConnectionFailed, ConnectionError) as e:
3007 self.logger.error("Error deleting port: {}: {}".format(type(e).__name__, e))
3008 # If there is connection error, raise.
3009 self._format_exception(e)
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003010 except Exception as e:
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003011 self.logger.error("Error deleting port: {}: {}".format(type(e).__name__, e))
3012
vegall364627c2023-03-17 15:09:50 +00003013 def delete_shared_volumes(self, shared_volume_vim_id: str) -> bool:
3014 """Cinder delete volume by id.
3015 Args:
3016 shared_volume_vim_id (str): ID of shared volume in VIM
3017 """
Gabriel Cuba1fd411b2023-06-14 00:50:57 -05003018 elapsed_time = 0
vegall364627c2023-03-17 15:09:50 +00003019 try:
Gabriel Cuba1fd411b2023-06-14 00:50:57 -05003020 while elapsed_time < server_timeout:
3021 vol_status = self.cinder.volumes.get(shared_volume_vim_id).status
3022 if vol_status == "available":
3023 self.cinder.volumes.delete(shared_volume_vim_id)
3024 return True
vegall364627c2023-03-17 15:09:50 +00003025
Gabriel Cuba1fd411b2023-06-14 00:50:57 -05003026 time.sleep(5)
3027 elapsed_time += 5
3028
3029 if elapsed_time >= server_timeout:
3030 raise vimconn.VimConnException(
3031 "Timeout waiting for volume "
3032 + shared_volume_vim_id
3033 + " to be available",
3034 http_code=vimconn.HTTP_Request_Timeout,
3035 )
vegall364627c2023-03-17 15:09:50 +00003036
3037 except Exception as e:
3038 self.logger.error(
3039 "Error deleting volume: {}: {}".format(type(e).__name__, e)
3040 )
Gabriel Cuba1fd411b2023-06-14 00:50:57 -05003041 self._format_exception(e)
vegall364627c2023-03-17 15:09:50 +00003042
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003043 def _delete_volumes_by_id_wth_cinder(
3044 self, k: str, k_id: str, volumes_to_hold: list, created_items: dict
3045 ) -> bool:
3046 """Cinder delete volume by id.
3047 Args:
3048 k (str): Full item name in created_items
3049 k_id (str): ID of floating ip in VIM
3050 volumes_to_hold (list): Volumes not to delete
3051 created_items (dict): All created items belongs to VM
3052 """
3053 try:
3054 if k_id in volumes_to_hold:
gatici335a06a2023-07-26 00:34:04 +03003055 return False
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003056
3057 if self.cinder.volumes.get(k_id).status != "available":
3058 return True
3059
3060 else:
3061 self.cinder.volumes.delete(k_id)
3062 created_items[k] = None
3063
gatici335a06a2023-07-26 00:34:04 +03003064 except (cExceptions.ConnectionError, ConnectionError) as e:
3065 self.logger.error(
3066 "Error deleting volume: {}: {}".format(type(e).__name__, e)
3067 )
3068 self._format_exception(e)
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003069 except Exception as e:
3070 self.logger.error(
3071 "Error deleting volume: {}: {}".format(type(e).__name__, e)
3072 )
3073
3074 def _delete_floating_ip_by_id(self, k: str, k_id: str, created_items: dict) -> None:
3075 """Neutron delete floating ip by id.
3076 Args:
3077 k (str): Full item name in created_items
3078 k_id (str): ID of floating ip in VIM
3079 created_items (dict): All created items belongs to VM
3080 """
3081 try:
3082 self.neutron.delete_floatingip(k_id)
3083 created_items[k] = None
3084
gatici335a06a2023-07-26 00:34:04 +03003085 except (neExceptions.ConnectionFailed, ConnectionError) as e:
3086 self.logger.error(
3087 "Error deleting floating ip: {}: {}".format(type(e).__name__, e)
3088 )
3089 self._format_exception(e)
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003090 except Exception as e:
3091 self.logger.error(
3092 "Error deleting floating ip: {}: {}".format(type(e).__name__, e)
3093 )
3094
3095 @staticmethod
3096 def _get_item_name_id(k: str) -> Tuple[str, str]:
3097 k_item, _, k_id = k.partition(":")
3098 return k_item, k_id
3099
3100 def _delete_vm_ports_attached_to_network(self, created_items: dict) -> None:
3101 """Delete VM ports attached to the networks before deleting virtual machine.
3102 Args:
3103 created_items (dict): All created items belongs to VM
3104 """
3105
3106 for k, v in created_items.items():
3107 if not v: # skip already deleted
3108 continue
3109
3110 try:
3111 k_item, k_id = self._get_item_name_id(k)
3112 if k_item == "port":
3113 self._delete_ports_by_id_wth_neutron(k_id)
3114
gatici335a06a2023-07-26 00:34:04 +03003115 except (neExceptions.ConnectionFailed, ConnectionError) as e:
3116 self.logger.error(
3117 "Error deleting port: {}: {}".format(type(e).__name__, e)
3118 )
3119 self._format_exception(e)
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003120 except Exception as e:
3121 self.logger.error(
3122 "Error deleting port: {}: {}".format(type(e).__name__, e)
3123 )
3124
3125 def _delete_created_items(
3126 self, created_items: dict, volumes_to_hold: list, keep_waiting: bool
3127 ) -> bool:
3128 """Delete Volumes and floating ip if they exist in created_items."""
3129 for k, v in created_items.items():
3130 if not v: # skip already deleted
3131 continue
3132
3133 try:
3134 k_item, k_id = self._get_item_name_id(k)
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003135 if k_item == "volume":
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003136 unavailable_vol = self._delete_volumes_by_id_wth_cinder(
3137 k, k_id, volumes_to_hold, created_items
3138 )
3139
3140 if unavailable_vol:
3141 keep_waiting = True
3142
3143 elif k_item == "floating_ip":
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003144 self._delete_floating_ip_by_id(k, k_id, created_items)
3145
gatici335a06a2023-07-26 00:34:04 +03003146 except (
3147 cExceptions.ConnectionError,
3148 neExceptions.ConnectionFailed,
3149 ConnectionError,
3150 AttributeError,
3151 TypeError,
3152 ) as e:
3153 self.logger.error("Error deleting {}: {}".format(k, e))
3154 self._format_exception(e)
3155
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003156 except Exception as e:
3157 self.logger.error("Error deleting {}: {}".format(k, e))
3158
3159 return keep_waiting
3160
aticig2f4ab6c2022-09-03 18:15:20 +03003161 @staticmethod
3162 def _extract_items_wth_keep_flag_from_created_items(created_items: dict) -> dict:
3163 """Remove the volumes which has key flag from created_items
3164
3165 Args:
3166 created_items (dict): All created items belongs to VM
3167
3168 Returns:
3169 created_items (dict): Persistent volumes eliminated created_items
3170 """
3171 return {
3172 key: value
3173 for (key, value) in created_items.items()
3174 if len(key.split(":")) == 2
3175 }
3176
gatici335a06a2023-07-26 00:34:04 +03003177 @catch_any_exception
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003178 def delete_vminstance(
3179 self, vm_id: str, created_items: dict = None, volumes_to_hold: list = None
3180 ) -> None:
3181 """Removes a VM instance from VIM. Returns the old identifier.
3182 Args:
3183 vm_id (str): Identifier of VM instance
3184 created_items (dict): All created items belongs to VM
3185 volumes_to_hold (list): Volumes_to_hold
3186 """
tierno1ec592d2020-06-16 15:29:47 +00003187 if created_items is None:
tierno98e909c2017-10-14 13:27:03 +02003188 created_items = {}
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003189 if volumes_to_hold is None:
3190 volumes_to_hold = []
sousaedu80135b92021-02-17 15:05:18 +01003191
tierno7edb6752016-03-21 17:37:52 +01003192 try:
aticig2f4ab6c2022-09-03 18:15:20 +03003193 created_items = self._extract_items_wth_keep_flag_from_created_items(
3194 created_items
3195 )
3196
tierno7edb6752016-03-21 17:37:52 +01003197 self._reload_connection()
sousaedu80135b92021-02-17 15:05:18 +01003198
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003199 # Delete VM ports attached to the networks before the virtual machine
3200 if created_items:
3201 self._delete_vm_ports_attached_to_network(created_items)
montesmoreno0c8def02016-12-22 12:16:23 +00003202
tierno98e909c2017-10-14 13:27:03 +02003203 if vm_id:
3204 self.nova.servers.delete(vm_id)
montesmoreno0c8def02016-12-22 12:16:23 +00003205
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003206 # Although having detached, volumes should have in active status before deleting.
3207 # We ensure in this loop
montesmoreno0c8def02016-12-22 12:16:23 +00003208 keep_waiting = True
3209 elapsed_time = 0
sousaedu80135b92021-02-17 15:05:18 +01003210
montesmoreno0c8def02016-12-22 12:16:23 +00003211 while keep_waiting and elapsed_time < volume_timeout:
3212 keep_waiting = False
sousaedu80135b92021-02-17 15:05:18 +01003213
Gulsum Atici4bc8eb92022-11-21 14:11:02 +03003214 # Delete volumes and floating IP.
3215 keep_waiting = self._delete_created_items(
3216 created_items, volumes_to_hold, keep_waiting
3217 )
sousaedu80135b92021-02-17 15:05:18 +01003218
montesmoreno0c8def02016-12-22 12:16:23 +00003219 if keep_waiting:
3220 time.sleep(1)
3221 elapsed_time += 1
gatici335a06a2023-07-26 00:34:04 +03003222 except (nvExceptions.NotFound, nvExceptions.ResourceNotFound) as e:
3223 # If VM does not exist, it does not raise
3224 self.logger.warning(f"Error deleting VM: {vm_id} is not found, {str(e)}")
tierno7edb6752016-03-21 17:37:52 +01003225
tiernoae4a8d12016-07-08 12:30:39 +02003226 def refresh_vms_status(self, vm_list):
tierno1ec592d2020-06-16 15:29:47 +00003227 """Get the status of the virtual machines and their interfaces/ports
sousaedu80135b92021-02-17 15:05:18 +01003228 Params: the list of VM identifiers
3229 Returns a dictionary with:
3230 vm_id: #VIM id of this Virtual Machine
3231 status: #Mandatory. Text with one of:
3232 # DELETED (not found at vim)
3233 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
3234 # OTHER (Vim reported other status not understood)
3235 # ERROR (VIM indicates an ERROR status)
3236 # ACTIVE, PAUSED, SUSPENDED, INACTIVE (not running),
3237 # CREATING (on building process), ERROR
3238 # ACTIVE:NoMgmtIP (Active but any of its interface has an IP address
3239 #
3240 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
3241 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
3242 interfaces:
3243 - vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
3244 mac_address: #Text format XX:XX:XX:XX:XX:XX
3245 vim_net_id: #network id where this interface is connected
3246 vim_interface_id: #interface/port VIM id
3247 ip_address: #null, or text with IPv4, IPv6 address
3248 compute_node: #identification of compute node where PF,VF interface is allocated
3249 pci: #PCI address of the NIC that hosts the PF,VF
3250 vlan: #physical VLAN used for VF
tierno1ec592d2020-06-16 15:29:47 +00003251 """
3252 vm_dict = {}
sousaedu80135b92021-02-17 15:05:18 +01003253 self.logger.debug(
3254 "refresh_vms status: Getting tenant VM instance information from VIM"
3255 )
tiernoae4a8d12016-07-08 12:30:39 +02003256 for vm_id in vm_list:
tierno1ec592d2020-06-16 15:29:47 +00003257 vm = {}
sousaedu80135b92021-02-17 15:05:18 +01003258
tiernoae4a8d12016-07-08 12:30:39 +02003259 try:
3260 vm_vim = self.get_vminstance(vm_id)
sousaedu80135b92021-02-17 15:05:18 +01003261
3262 if vm_vim["status"] in vmStatus2manoFormat:
3263 vm["status"] = vmStatus2manoFormat[vm_vim["status"]]
tierno7edb6752016-03-21 17:37:52 +01003264 else:
sousaedu80135b92021-02-17 15:05:18 +01003265 vm["status"] = "OTHER"
3266 vm["error_msg"] = "VIM status reported " + vm_vim["status"]
3267
tierno70eeb182020-10-19 16:38:00 +00003268 vm_vim.pop("OS-EXT-SRV-ATTR:user_data", None)
3269 vm_vim.pop("user_data", None)
sousaedu80135b92021-02-17 15:05:18 +01003270 vm["vim_info"] = self.serialize(vm_vim)
Anderson Bravalheri0446cd52018-08-17 15:26:19 +01003271
tiernoae4a8d12016-07-08 12:30:39 +02003272 vm["interfaces"] = []
sousaedu80135b92021-02-17 15:05:18 +01003273 if vm_vim.get("fault"):
3274 vm["error_msg"] = str(vm_vim["fault"])
3275
tierno1ec592d2020-06-16 15:29:47 +00003276 # get interfaces
tierno7edb6752016-03-21 17:37:52 +01003277 try:
tiernoae4a8d12016-07-08 12:30:39 +02003278 self._reload_connection()
tiernob42fd9b2018-06-20 10:44:32 +02003279 port_dict = self.neutron.list_ports(device_id=vm_id)
sousaedu80135b92021-02-17 15:05:18 +01003280
tiernoae4a8d12016-07-08 12:30:39 +02003281 for port in port_dict["ports"]:
tierno1ec592d2020-06-16 15:29:47 +00003282 interface = {}
sousaedu80135b92021-02-17 15:05:18 +01003283 interface["vim_info"] = self.serialize(port)
tiernoae4a8d12016-07-08 12:30:39 +02003284 interface["mac_address"] = port.get("mac_address")
3285 interface["vim_net_id"] = port["network_id"]
3286 interface["vim_interface_id"] = port["id"]
Anderson Bravalheri0446cd52018-08-17 15:26:19 +01003287 # check if OS-EXT-SRV-ATTR:host is there,
Mike Marchetti5b9da422017-05-02 15:35:47 -04003288 # in case of non-admin credentials, it will be missing
sousaedu80135b92021-02-17 15:05:18 +01003289
3290 if vm_vim.get("OS-EXT-SRV-ATTR:host"):
3291 interface["compute_node"] = vm_vim["OS-EXT-SRV-ATTR:host"]
3292
tierno867ffe92017-03-27 12:50:34 +02003293 interface["pci"] = None
Mike Marchetti5b9da422017-05-02 15:35:47 -04003294
Anderson Bravalheri0446cd52018-08-17 15:26:19 +01003295 # check if binding:profile is there,
Mike Marchetti5b9da422017-05-02 15:35:47 -04003296 # in case of non-admin credentials, it will be missing
sousaedu80135b92021-02-17 15:05:18 +01003297 if port.get("binding:profile"):
3298 if port["binding:profile"].get("pci_slot"):
tierno1ec592d2020-06-16 15:29:47 +00003299 # TODO: At the moment sr-iov pci addresses are converted to PF pci addresses by setting
3300 # the slot to 0x00
Mike Marchetti5b9da422017-05-02 15:35:47 -04003301 # TODO: This is just a workaround valid for niantinc. Find a better way to do so
3302 # CHANGE DDDD:BB:SS.F to DDDD:BB:00.(F%2) assuming there are 2 ports per nic
sousaedu80135b92021-02-17 15:05:18 +01003303 pci = port["binding:profile"]["pci_slot"]
Mike Marchetti5b9da422017-05-02 15:35:47 -04003304 # interface["pci"] = pci[:-4] + "00." + str(int(pci[-1]) % 2)
3305 interface["pci"] = pci
sousaedu80135b92021-02-17 15:05:18 +01003306
tierno867ffe92017-03-27 12:50:34 +02003307 interface["vlan"] = None
sousaedu80135b92021-02-17 15:05:18 +01003308
3309 if port.get("binding:vif_details"):
3310 interface["vlan"] = port["binding:vif_details"].get("vlan")
3311
tierno1dfe9932020-06-18 08:50:10 +00003312 # Get vlan from network in case not present in port for those old openstacks and cases where
3313 # it is needed vlan at PT
3314 if not interface["vlan"]:
3315 # if network is of type vlan and port is of type direct (sr-iov) then set vlan id
3316 network = self.neutron.show_network(port["network_id"])
sousaedu80135b92021-02-17 15:05:18 +01003317
3318 if (
3319 network["network"].get("provider:network_type")
3320 == "vlan"
3321 ):
tierno1dfe9932020-06-18 08:50:10 +00003322 # and port.get("binding:vnic_type") in ("direct", "direct-physical"):
sousaedu80135b92021-02-17 15:05:18 +01003323 interface["vlan"] = network["network"].get(
3324 "provider:segmentation_id"
3325 )
3326
tierno1ec592d2020-06-16 15:29:47 +00003327 ips = []
3328 # look for floating ip address
tiernob42fd9b2018-06-20 10:44:32 +02003329 try:
sousaedu80135b92021-02-17 15:05:18 +01003330 floating_ip_dict = self.neutron.list_floatingips(
3331 port_id=port["id"]
3332 )
3333
tiernob42fd9b2018-06-20 10:44:32 +02003334 if floating_ip_dict.get("floatingips"):
sousaedu80135b92021-02-17 15:05:18 +01003335 ips.append(
3336 floating_ip_dict["floatingips"][0].get(
3337 "floating_ip_address"
3338 )
3339 )
tiernob42fd9b2018-06-20 10:44:32 +02003340 except Exception:
3341 pass
tierno7edb6752016-03-21 17:37:52 +01003342
tiernoae4a8d12016-07-08 12:30:39 +02003343 for subnet in port["fixed_ips"]:
3344 ips.append(subnet["ip_address"])
sousaedu80135b92021-02-17 15:05:18 +01003345
tiernoae4a8d12016-07-08 12:30:39 +02003346 interface["ip_address"] = ";".join(ips)
3347 vm["interfaces"].append(interface)
3348 except Exception as e:
sousaedu80135b92021-02-17 15:05:18 +01003349 self.logger.error(
3350 "Error getting vm interface information {}: {}".format(
3351 type(e).__name__, e
3352 ),
3353 exc_info=True,
3354 )
tierno72774862020-05-04 11:44:15 +00003355 except vimconn.VimConnNotFoundException as e:
tiernoae4a8d12016-07-08 12:30:39 +02003356 self.logger.error("Exception getting vm status: %s", str(e))
sousaedu80135b92021-02-17 15:05:18 +01003357 vm["status"] = "DELETED"
3358 vm["error_msg"] = str(e)
tierno72774862020-05-04 11:44:15 +00003359 except vimconn.VimConnException as e:
tiernoae4a8d12016-07-08 12:30:39 +02003360 self.logger.error("Exception getting vm status: %s", str(e))
sousaedu80135b92021-02-17 15:05:18 +01003361 vm["status"] = "VIM_ERROR"
3362 vm["error_msg"] = str(e)
3363
tiernoae4a8d12016-07-08 12:30:39 +02003364 vm_dict[vm_id] = vm
sousaedu80135b92021-02-17 15:05:18 +01003365
tiernoae4a8d12016-07-08 12:30:39 +02003366 return vm_dict
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00003367
gatici335a06a2023-07-26 00:34:04 +03003368 @catch_any_exception
tierno98e909c2017-10-14 13:27:03 +02003369 def action_vminstance(self, vm_id, action_dict, created_items={}):
tierno1ec592d2020-06-16 15:29:47 +00003370 """Send and action over a VM instance from VIM
Gulsum Atici21c55d62023-02-02 20:41:00 +03003371 Returns None or the console dict if the action was successfully sent to the VIM
3372 """
tiernoae4a8d12016-07-08 12:30:39 +02003373 self.logger.debug("Action over VM '%s': %s", vm_id, str(action_dict))
gatici335a06a2023-07-26 00:34:04 +03003374 self._reload_connection()
3375 server = self.nova.servers.find(id=vm_id)
3376 if "start" in action_dict:
3377 if action_dict["start"] == "rebuild":
3378 server.rebuild()
Rahul Kumar8875f912023-11-08 06:48:12 +00003379 vm_state = self.__wait_for_vm(vm_id, "ACTIVE")
3380 if not vm_state:
3381 raise nvExceptions.BadRequest(
3382 409,
3383 message="Cannot 'REBUILD' vm_state is in ERROR",
3384 )
gatici335a06a2023-07-26 00:34:04 +03003385 else:
3386 if server.status == "PAUSED":
3387 server.unpause()
3388 elif server.status == "SUSPENDED":
3389 server.resume()
3390 elif server.status == "SHUTOFF":
3391 server.start()
Rahul Kumar8875f912023-11-08 06:48:12 +00003392 vm_state = self.__wait_for_vm(vm_id, "ACTIVE")
3393 if not vm_state:
3394 raise nvExceptions.BadRequest(
3395 409,
3396 message="Cannot 'START' vm_state is in ERROR",
3397 )
tierno7edb6752016-03-21 17:37:52 +01003398 else:
gatici335a06a2023-07-26 00:34:04 +03003399 self.logger.debug(
3400 "ERROR : Instance is not in SHUTOFF/PAUSE/SUSPEND state"
3401 )
k4.rahul78f474e2022-05-02 15:47:57 +00003402 raise vimconn.VimConnException(
gatici335a06a2023-07-26 00:34:04 +03003403 "Cannot 'start' instance while it is in active state",
k4.rahul78f474e2022-05-02 15:47:57 +00003404 http_code=vimconn.HTTP_Bad_Request,
3405 )
gatici335a06a2023-07-26 00:34:04 +03003406 elif "pause" in action_dict:
3407 server.pause()
3408 elif "resume" in action_dict:
3409 server.resume()
3410 elif "shutoff" in action_dict or "shutdown" in action_dict:
3411 self.logger.debug("server status %s", server.status)
3412 if server.status == "ACTIVE":
3413 server.stop()
Rahul Kumar8875f912023-11-08 06:48:12 +00003414 vm_state = self.__wait_for_vm(vm_id, "SHUTOFF")
3415 if not vm_state:
3416 raise nvExceptions.BadRequest(
3417 409,
3418 message="Cannot 'STOP' vm_state is in ERROR",
3419 )
gatici335a06a2023-07-26 00:34:04 +03003420 else:
3421 self.logger.debug("ERROR: VM is not in Active state")
3422 raise vimconn.VimConnException(
3423 "VM is not in active state, stop operation is not allowed",
3424 http_code=vimconn.HTTP_Bad_Request,
3425 )
3426 elif "forceOff" in action_dict:
3427 server.stop() # TODO
3428 elif "terminate" in action_dict:
3429 server.delete()
3430 elif "createImage" in action_dict:
3431 server.create_image()
3432 # "path":path_schema,
3433 # "description":description_schema,
3434 # "name":name_schema,
3435 # "metadata":metadata_schema,
3436 # "imageRef": id_schema,
3437 # "disk": {"oneOf":[{"type": "null"}, {"type":"string"}] },
3438 elif "rebuild" in action_dict:
3439 server.rebuild(server.image["id"])
3440 elif "reboot" in action_dict:
3441 server.reboot() # reboot_type="SOFT"
3442 elif "console" in action_dict:
3443 console_type = action_dict["console"]
sousaedu80135b92021-02-17 15:05:18 +01003444
gatici335a06a2023-07-26 00:34:04 +03003445 if console_type is None or console_type == "novnc":
3446 console_dict = server.get_vnc_console("novnc")
3447 elif console_type == "xvpvnc":
3448 console_dict = server.get_vnc_console(console_type)
3449 elif console_type == "rdp-html5":
3450 console_dict = server.get_rdp_console(console_type)
3451 elif console_type == "spice-html5":
3452 console_dict = server.get_spice_console(console_type)
3453 else:
3454 raise vimconn.VimConnException(
3455 "console type '{}' not allowed".format(console_type),
3456 http_code=vimconn.HTTP_Bad_Request,
3457 )
sousaedu80135b92021-02-17 15:05:18 +01003458
gatici335a06a2023-07-26 00:34:04 +03003459 try:
3460 console_url = console_dict["console"]["url"]
3461 # parse console_url
3462 protocol_index = console_url.find("//")
3463 suffix_index = (
3464 console_url[protocol_index + 2 :].find("/") + protocol_index + 2
3465 )
3466 port_index = (
3467 console_url[protocol_index + 2 : suffix_index].find(":")
3468 + protocol_index
3469 + 2
3470 )
sousaedu80135b92021-02-17 15:05:18 +01003471
gatici335a06a2023-07-26 00:34:04 +03003472 if protocol_index < 0 or port_index < 0 or suffix_index < 0:
sousaedu80135b92021-02-17 15:05:18 +01003473 raise vimconn.VimConnException(
3474 "Unexpected response from VIM " + str(console_dict)
3475 )
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00003476
gatici335a06a2023-07-26 00:34:04 +03003477 console_dict2 = {
3478 "protocol": console_url[0:protocol_index],
3479 "server": console_url[protocol_index + 2 : port_index],
3480 "port": int(console_url[port_index + 1 : suffix_index]),
3481 "suffix": console_url[suffix_index + 1 :],
3482 }
3483
3484 return console_dict2
3485 except Exception:
3486 raise vimconn.VimConnException(
3487 "Unexpected response from VIM " + str(console_dict)
3488 )
3489
3490 return None
tiernoae4a8d12016-07-08 12:30:39 +02003491
tierno1ec592d2020-06-16 15:29:47 +00003492 # ###### VIO Specific Changes #########
garciadeblasebd66722019-01-31 16:01:31 +00003493 def _generate_vlanID(self):
kate721d79b2017-06-24 04:21:38 -07003494 """
sousaedu80135b92021-02-17 15:05:18 +01003495 Method to get unused vlanID
kate721d79b2017-06-24 04:21:38 -07003496 Args:
3497 None
3498 Returns:
3499 vlanID
3500 """
tierno1ec592d2020-06-16 15:29:47 +00003501 # Get used VLAN IDs
kate721d79b2017-06-24 04:21:38 -07003502 usedVlanIDs = []
3503 networks = self.get_network_list()
sousaedu80135b92021-02-17 15:05:18 +01003504
kate721d79b2017-06-24 04:21:38 -07003505 for net in networks:
sousaedu80135b92021-02-17 15:05:18 +01003506 if net.get("provider:segmentation_id"):
3507 usedVlanIDs.append(net.get("provider:segmentation_id"))
3508
kate721d79b2017-06-24 04:21:38 -07003509 used_vlanIDs = set(usedVlanIDs)
3510
tierno1ec592d2020-06-16 15:29:47 +00003511 # find unused VLAN ID
sousaedu80135b92021-02-17 15:05:18 +01003512 for vlanID_range in self.config.get("dataplane_net_vlan_range"):
kate721d79b2017-06-24 04:21:38 -07003513 try:
sousaedu80135b92021-02-17 15:05:18 +01003514 start_vlanid, end_vlanid = map(
3515 int, vlanID_range.replace(" ", "").split("-")
3516 )
3517
tierno7d782ef2019-10-04 12:56:31 +00003518 for vlanID in range(start_vlanid, end_vlanid + 1):
kate721d79b2017-06-24 04:21:38 -07003519 if vlanID not in used_vlanIDs:
3520 return vlanID
3521 except Exception as exp:
sousaedu80135b92021-02-17 15:05:18 +01003522 raise vimconn.VimConnException(
3523 "Exception {} occurred while generating VLAN ID.".format(exp)
3524 )
kate721d79b2017-06-24 04:21:38 -07003525 else:
tierno1ec592d2020-06-16 15:29:47 +00003526 raise vimconn.VimConnConflictException(
3527 "Unable to create the SRIOV VLAN network. All given Vlan IDs {} are in use.".format(
sousaedu80135b92021-02-17 15:05:18 +01003528 self.config.get("dataplane_net_vlan_range")
3529 )
3530 )
kate721d79b2017-06-24 04:21:38 -07003531
garciadeblasebd66722019-01-31 16:01:31 +00003532 def _generate_multisegment_vlanID(self):
3533 """
sousaedu80135b92021-02-17 15:05:18 +01003534 Method to get unused vlanID
3535 Args:
3536 None
3537 Returns:
3538 vlanID
garciadeblasebd66722019-01-31 16:01:31 +00003539 """
tierno6869ae72020-01-09 17:37:34 +00003540 # Get used VLAN IDs
garciadeblasebd66722019-01-31 16:01:31 +00003541 usedVlanIDs = []
3542 networks = self.get_network_list()
3543 for net in networks:
sousaedu80135b92021-02-17 15:05:18 +01003544 if net.get("provider:network_type") == "vlan" and net.get(
3545 "provider:segmentation_id"
3546 ):
3547 usedVlanIDs.append(net.get("provider:segmentation_id"))
3548 elif net.get("segments"):
3549 for segment in net.get("segments"):
3550 if segment.get("provider:network_type") == "vlan" and segment.get(
3551 "provider:segmentation_id"
3552 ):
3553 usedVlanIDs.append(segment.get("provider:segmentation_id"))
3554
garciadeblasebd66722019-01-31 16:01:31 +00003555 used_vlanIDs = set(usedVlanIDs)
3556
tierno6869ae72020-01-09 17:37:34 +00003557 # find unused VLAN ID
sousaedu80135b92021-02-17 15:05:18 +01003558 for vlanID_range in self.config.get("multisegment_vlan_range"):
garciadeblasebd66722019-01-31 16:01:31 +00003559 try:
sousaedu80135b92021-02-17 15:05:18 +01003560 start_vlanid, end_vlanid = map(
3561 int, vlanID_range.replace(" ", "").split("-")
3562 )
3563
tierno7d782ef2019-10-04 12:56:31 +00003564 for vlanID in range(start_vlanid, end_vlanid + 1):
garciadeblasebd66722019-01-31 16:01:31 +00003565 if vlanID not in used_vlanIDs:
3566 return vlanID
3567 except Exception as exp:
sousaedu80135b92021-02-17 15:05:18 +01003568 raise vimconn.VimConnException(
3569 "Exception {} occurred while generating VLAN ID.".format(exp)
3570 )
garciadeblasebd66722019-01-31 16:01:31 +00003571 else:
tierno1ec592d2020-06-16 15:29:47 +00003572 raise vimconn.VimConnConflictException(
3573 "Unable to create the VLAN segment. All VLAN IDs {} are in use.".format(
sousaedu80135b92021-02-17 15:05:18 +01003574 self.config.get("multisegment_vlan_range")
3575 )
3576 )
garciadeblasebd66722019-01-31 16:01:31 +00003577
3578 def _validate_vlan_ranges(self, input_vlan_range, text_vlan_range):
kate721d79b2017-06-24 04:21:38 -07003579 """
3580 Method to validate user given vlanID ranges
3581 Args: None
3582 Returns: None
3583 """
garciadeblasebd66722019-01-31 16:01:31 +00003584 for vlanID_range in input_vlan_range:
kate721d79b2017-06-24 04:21:38 -07003585 vlan_range = vlanID_range.replace(" ", "")
tierno1ec592d2020-06-16 15:29:47 +00003586 # validate format
sousaedu80135b92021-02-17 15:05:18 +01003587 vlanID_pattern = r"(\d)*-(\d)*$"
kate721d79b2017-06-24 04:21:38 -07003588 match_obj = re.match(vlanID_pattern, vlan_range)
3589 if not match_obj:
tierno1ec592d2020-06-16 15:29:47 +00003590 raise vimconn.VimConnConflictException(
sousaedu80135b92021-02-17 15:05:18 +01003591 "Invalid VLAN range for {}: {}.You must provide "
3592 "'{}' in format [start_ID - end_ID].".format(
3593 text_vlan_range, vlanID_range, text_vlan_range
3594 )
3595 )
kate721d79b2017-06-24 04:21:38 -07003596
tierno1ec592d2020-06-16 15:29:47 +00003597 start_vlanid, end_vlanid = map(int, vlan_range.split("-"))
3598 if start_vlanid <= 0:
3599 raise vimconn.VimConnConflictException(
3600 "Invalid VLAN range for {}: {}. Start ID can not be zero. For VLAN "
sousaedu80135b92021-02-17 15:05:18 +01003601 "networks valid IDs are 1 to 4094 ".format(
3602 text_vlan_range, vlanID_range
3603 )
3604 )
3605
tierno1ec592d2020-06-16 15:29:47 +00003606 if end_vlanid > 4094:
3607 raise vimconn.VimConnConflictException(
sousaedu80135b92021-02-17 15:05:18 +01003608 "Invalid VLAN range for {}: {}. End VLAN ID can not be "
3609 "greater than 4094. For VLAN networks valid IDs are 1 to 4094 ".format(
3610 text_vlan_range, vlanID_range
3611 )
3612 )
kate721d79b2017-06-24 04:21:38 -07003613
3614 if start_vlanid > end_vlanid:
tierno1ec592d2020-06-16 15:29:47 +00003615 raise vimconn.VimConnConflictException(
sousaedu80135b92021-02-17 15:05:18 +01003616 "Invalid VLAN range for {}: {}. You must provide '{}'"
3617 " in format start_ID - end_ID and start_ID < end_ID ".format(
3618 text_vlan_range, vlanID_range, text_vlan_range
3619 )
3620 )
kate721d79b2017-06-24 04:21:38 -07003621
tierno7edb6752016-03-21 17:37:52 +01003622 def get_hosts_info(self):
tierno1ec592d2020-06-16 15:29:47 +00003623 """Get the information of deployed hosts
3624 Returns the hosts content"""
tierno7edb6752016-03-21 17:37:52 +01003625 if self.debug:
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00003626 print("osconnector: Getting Host info from VIM")
sousaedu80135b92021-02-17 15:05:18 +01003627
tierno7edb6752016-03-21 17:37:52 +01003628 try:
tierno1ec592d2020-06-16 15:29:47 +00003629 h_list = []
tierno7edb6752016-03-21 17:37:52 +01003630 self._reload_connection()
3631 hypervisors = self.nova.hypervisors.list()
sousaedu80135b92021-02-17 15:05:18 +01003632
tierno7edb6752016-03-21 17:37:52 +01003633 for hype in hypervisors:
tierno1ec592d2020-06-16 15:29:47 +00003634 h_list.append(hype.to_dict())
sousaedu80135b92021-02-17 15:05:18 +01003635
tierno1ec592d2020-06-16 15:29:47 +00003636 return 1, {"hosts": h_list}
tierno7edb6752016-03-21 17:37:52 +01003637 except nvExceptions.NotFound as e:
tierno1ec592d2020-06-16 15:29:47 +00003638 error_value = -vimconn.HTTP_Not_Found
sousaedu80135b92021-02-17 15:05:18 +01003639 error_text = str(e) if len(e.args) == 0 else str(e.args[0])
tierno7edb6752016-03-21 17:37:52 +01003640 except (ksExceptions.ClientException, nvExceptions.ClientException) as e:
tierno1ec592d2020-06-16 15:29:47 +00003641 error_value = -vimconn.HTTP_Bad_Request
sousaedu80135b92021-02-17 15:05:18 +01003642 error_text = (
3643 type(e).__name__
3644 + ": "
3645 + (str(e) if len(e.args) == 0 else str(e.args[0]))
3646 )
3647
tierno1ec592d2020-06-16 15:29:47 +00003648 # TODO insert exception vimconn.HTTP_Unauthorized
3649 # if reaching here is because an exception
tierno9c5c8322018-03-23 15:44:03 +01003650 self.logger.debug("get_hosts_info " + error_text)
sousaedu80135b92021-02-17 15:05:18 +01003651
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00003652 return error_value, error_text
tierno7edb6752016-03-21 17:37:52 +01003653
3654 def get_hosts(self, vim_tenant):
tierno1ec592d2020-06-16 15:29:47 +00003655 """Get the hosts and deployed instances
3656 Returns the hosts content"""
tierno7edb6752016-03-21 17:37:52 +01003657 r, hype_dict = self.get_hosts_info()
sousaedu80135b92021-02-17 15:05:18 +01003658
tierno1ec592d2020-06-16 15:29:47 +00003659 if r < 0:
tierno7edb6752016-03-21 17:37:52 +01003660 return r, hype_dict
sousaedu80135b92021-02-17 15:05:18 +01003661
tierno7edb6752016-03-21 17:37:52 +01003662 hypervisors = hype_dict["hosts"]
sousaedu80135b92021-02-17 15:05:18 +01003663
tierno7edb6752016-03-21 17:37:52 +01003664 try:
3665 servers = self.nova.servers.list()
3666 for hype in hypervisors:
3667 for server in servers:
sousaedu80135b92021-02-17 15:05:18 +01003668 if (
3669 server.to_dict()["OS-EXT-SRV-ATTR:hypervisor_hostname"]
3670 == hype["hypervisor_hostname"]
3671 ):
3672 if "vm" in hype:
3673 hype["vm"].append(server.id)
tierno7edb6752016-03-21 17:37:52 +01003674 else:
sousaedu80135b92021-02-17 15:05:18 +01003675 hype["vm"] = [server.id]
3676
tierno7edb6752016-03-21 17:37:52 +01003677 return 1, hype_dict
3678 except nvExceptions.NotFound as e:
tierno1ec592d2020-06-16 15:29:47 +00003679 error_value = -vimconn.HTTP_Not_Found
sousaedu80135b92021-02-17 15:05:18 +01003680 error_text = str(e) if len(e.args) == 0 else str(e.args[0])
tierno7edb6752016-03-21 17:37:52 +01003681 except (ksExceptions.ClientException, nvExceptions.ClientException) as e:
tierno1ec592d2020-06-16 15:29:47 +00003682 error_value = -vimconn.HTTP_Bad_Request
sousaedu80135b92021-02-17 15:05:18 +01003683 error_text = (
3684 type(e).__name__
3685 + ": "
3686 + (str(e) if len(e.args) == 0 else str(e.args[0]))
3687 )
3688
tierno1ec592d2020-06-16 15:29:47 +00003689 # TODO insert exception vimconn.HTTP_Unauthorized
3690 # if reaching here is because an exception
tierno9c5c8322018-03-23 15:44:03 +01003691 self.logger.debug("get_hosts " + error_text)
sousaedu80135b92021-02-17 15:05:18 +01003692
Igor Duarte Cardoso3cf9bcd2017-08-14 16:39:34 +00003693 return error_value, error_text
tierno7edb6752016-03-21 17:37:52 +01003694
Lovejeet Singhdf486552023-05-09 22:41:09 +05303695 def new_classification(self, name, ctype, definition):
3696 self.logger.debug(
3697 "Adding a new (Traffic) Classification to VIM, named %s", name
3698 )
3699
3700 try:
3701 new_class = None
3702 self._reload_connection()
3703
3704 if ctype not in supportedClassificationTypes:
3705 raise vimconn.VimConnNotSupportedException(
3706 "OpenStack VIM connector does not support provided "
3707 "Classification Type {}, supported ones are: {}".format(
3708 ctype, supportedClassificationTypes
3709 )
3710 )
3711
3712 if not self._validate_classification(ctype, definition):
3713 raise vimconn.VimConnException(
3714 "Incorrect Classification definition for the type specified."
3715 )
3716
3717 classification_dict = definition
3718 classification_dict["name"] = name
3719
3720 self.logger.info(
3721 "Adding a new (Traffic) Classification to VIM, named {} and {}.".format(
3722 name, classification_dict
3723 )
3724 )
3725 new_class = self.neutron.create_sfc_flow_classifier(
3726 {"flow_classifier": classification_dict}
3727 )
3728
3729 return new_class["flow_classifier"]["id"]
3730 except (
3731 neExceptions.ConnectionFailed,
3732 ksExceptions.ClientException,
3733 neExceptions.NeutronException,
3734 ConnectionError,
3735 ) as e:
3736 self.logger.error("Creation of Classification failed.")
3737 self._format_exception(e)
3738
3739 def get_classification(self, class_id):
3740 self.logger.debug(" Getting Classification %s from VIM", class_id)
3741 filter_dict = {"id": class_id}
3742 class_list = self.get_classification_list(filter_dict)
3743
3744 if len(class_list) == 0:
3745 raise vimconn.VimConnNotFoundException(
3746 "Classification '{}' not found".format(class_id)
3747 )
3748 elif len(class_list) > 1:
3749 raise vimconn.VimConnConflictException(
3750 "Found more than one Classification with this criteria"
3751 )
3752
3753 classification = class_list[0]
3754
3755 return classification
3756
3757 def get_classification_list(self, filter_dict={}):
3758 self.logger.debug(
3759 "Getting Classifications from VIM filter: '%s'", str(filter_dict)
3760 )
3761
3762 try:
3763 filter_dict_os = filter_dict.copy()
3764 self._reload_connection()
3765
3766 if self.api_version3 and "tenant_id" in filter_dict_os:
3767 filter_dict_os["project_id"] = filter_dict_os.pop("tenant_id")
3768
3769 classification_dict = self.neutron.list_sfc_flow_classifiers(
3770 **filter_dict_os
3771 )
3772 classification_list = classification_dict["flow_classifiers"]
3773 self.__classification_os2mano(classification_list)
3774
3775 return classification_list
3776 except (
3777 neExceptions.ConnectionFailed,
3778 ksExceptions.ClientException,
3779 neExceptions.NeutronException,
3780 ConnectionError,
3781 ) as e:
3782 self._format_exception(e)
3783
3784 def delete_classification(self, class_id):
3785 self.logger.debug("Deleting Classification '%s' from VIM", class_id)
3786
3787 try:
3788 self._reload_connection()
3789 self.neutron.delete_sfc_flow_classifier(class_id)
3790
3791 return class_id
3792 except (
3793 neExceptions.ConnectionFailed,
3794 neExceptions.NeutronException,
3795 ksExceptions.ClientException,
3796 neExceptions.NeutronException,
3797 ConnectionError,
3798 ) as e:
3799 self._format_exception(e)
3800
3801 def new_sfi(self, name, ingress_ports, egress_ports, sfc_encap=True):
3802 self.logger.debug(
3803 "Adding a new Service Function Instance to VIM, named '%s'", name
3804 )
3805
3806 try:
3807 new_sfi = None
3808 self._reload_connection()
3809 correlation = None
3810
3811 if sfc_encap:
3812 correlation = "nsh"
3813
3814 if len(ingress_ports) != 1:
3815 raise vimconn.VimConnNotSupportedException(
3816 "OpenStack VIM connector can only have 1 ingress port per SFI"
3817 )
3818
3819 if len(egress_ports) != 1:
3820 raise vimconn.VimConnNotSupportedException(
3821 "OpenStack VIM connector can only have 1 egress port per SFI"
3822 )
3823
3824 sfi_dict = {
3825 "name": name,
3826 "ingress": ingress_ports[0],
3827 "egress": egress_ports[0],
3828 "service_function_parameters": {"correlation": correlation},
3829 }
3830 self.logger.info("Adding a new SFI to VIM, {}.".format(sfi_dict))
3831 new_sfi = self.neutron.create_sfc_port_pair({"port_pair": sfi_dict})
3832
3833 return new_sfi["port_pair"]["id"]
3834 except (
3835 neExceptions.ConnectionFailed,
3836 ksExceptions.ClientException,
3837 neExceptions.NeutronException,
3838 ConnectionError,
3839 ) as e:
3840 if new_sfi:
3841 try:
3842 self.neutron.delete_sfc_port_pair(new_sfi["port_pair"]["id"])
3843 except Exception:
3844 self.logger.error(
3845 "Creation of Service Function Instance failed, with "
3846 "subsequent deletion failure as well."
3847 )
3848
3849 self._format_exception(e)
3850
3851 def get_sfi(self, sfi_id):
3852 self.logger.debug("Getting Service Function Instance %s from VIM", sfi_id)
3853 filter_dict = {"id": sfi_id}
3854 sfi_list = self.get_sfi_list(filter_dict)
3855
3856 if len(sfi_list) == 0:
3857 raise vimconn.VimConnNotFoundException(
3858 "Service Function Instance '{}' not found".format(sfi_id)
3859 )
3860 elif len(sfi_list) > 1:
3861 raise vimconn.VimConnConflictException(
3862 "Found more than one Service Function Instance with this criteria"
3863 )
3864
3865 sfi = sfi_list[0]
3866
3867 return sfi
3868
3869 def get_sfi_list(self, filter_dict={}):
3870 self.logger.debug(
3871 "Getting Service Function Instances from VIM filter: '%s'", str(filter_dict)
3872 )
3873
3874 try:
3875 self._reload_connection()
3876 filter_dict_os = filter_dict.copy()
3877
3878 if self.api_version3 and "tenant_id" in filter_dict_os:
3879 filter_dict_os["project_id"] = filter_dict_os.pop("tenant_id")
3880
3881 sfi_dict = self.neutron.list_sfc_port_pairs(**filter_dict_os)
3882 sfi_list = sfi_dict["port_pairs"]
3883 self.__sfi_os2mano(sfi_list)
3884
3885 return sfi_list
3886 except (
3887 neExceptions.ConnectionFailed,
3888 ksExceptions.ClientException,
3889 neExceptions.NeutronException,
3890 ConnectionError,
3891 ) as e:
3892 self._format_exception(e)
3893
3894 def delete_sfi(self, sfi_id):
3895 self.logger.debug("Deleting Service Function Instance '%s' from VIM", sfi_id)
3896
3897 try:
3898 self._reload_connection()
3899 self.neutron.delete_sfc_port_pair(sfi_id)
3900
3901 return sfi_id
3902 except (
3903 neExceptions.ConnectionFailed,
3904 neExceptions.NeutronException,
3905 ksExceptions.ClientException,
3906 neExceptions.NeutronException,
3907 ConnectionError,
3908 ) as e:
3909 self._format_exception(e)
3910
3911 def new_sf(self, name, sfis, sfc_encap=True):
3912 self.logger.debug("Adding a new Service Function to VIM, named '%s'", name)
3913
3914 new_sf = None
3915
3916 try:
3917 self._reload_connection()
3918
3919 for instance in sfis:
3920 sfi = self.get_sfi(instance)
3921
3922 if sfi.get("sfc_encap") != sfc_encap:
3923 raise vimconn.VimConnNotSupportedException(
3924 "OpenStack VIM connector requires all SFIs of the "
3925 "same SF to share the same SFC Encapsulation"
3926 )
3927
3928 sf_dict = {"name": name, "port_pairs": sfis}
3929
3930 self.logger.info("Adding a new SF to VIM, {}.".format(sf_dict))
3931 new_sf = self.neutron.create_sfc_port_pair_group(
3932 {"port_pair_group": sf_dict}
3933 )
3934
3935 return new_sf["port_pair_group"]["id"]
3936 except (
3937 neExceptions.ConnectionFailed,
3938 ksExceptions.ClientException,
3939 neExceptions.NeutronException,
3940 ConnectionError,
3941 ) as e:
3942 if new_sf:
3943 try:
3944 new_sf_id = new_sf.get("port_pair_group").get("id")
3945 self.neutron.delete_sfc_port_pair_group(new_sf_id)
3946 except Exception:
3947 self.logger.error(
3948 "Creation of Service Function failed, with "
3949 "subsequent deletion failure as well."
3950 )
3951
3952 self._format_exception(e)
3953
3954 def get_sf(self, sf_id):
3955 self.logger.debug("Getting Service Function %s from VIM", sf_id)
3956 filter_dict = {"id": sf_id}
3957 sf_list = self.get_sf_list(filter_dict)
3958
3959 if len(sf_list) == 0:
3960 raise vimconn.VimConnNotFoundException(
3961 "Service Function '{}' not found".format(sf_id)
3962 )
3963 elif len(sf_list) > 1:
3964 raise vimconn.VimConnConflictException(
3965 "Found more than one Service Function with this criteria"
3966 )
3967
3968 sf = sf_list[0]
3969
3970 return sf
3971
3972 def get_sf_list(self, filter_dict={}):
3973 self.logger.debug(
3974 "Getting Service Function from VIM filter: '%s'", str(filter_dict)
3975 )
3976
3977 try:
3978 self._reload_connection()
3979 filter_dict_os = filter_dict.copy()
3980
3981 if self.api_version3 and "tenant_id" in filter_dict_os:
3982 filter_dict_os["project_id"] = filter_dict_os.pop("tenant_id")
3983
3984 sf_dict = self.neutron.list_sfc_port_pair_groups(**filter_dict_os)
3985 sf_list = sf_dict["port_pair_groups"]
3986 self.__sf_os2mano(sf_list)
3987
3988 return sf_list
3989 except (
3990 neExceptions.ConnectionFailed,
3991 ksExceptions.ClientException,
3992 neExceptions.NeutronException,
3993 ConnectionError,
3994 ) as e:
3995 self._format_exception(e)
3996
3997 def delete_sf(self, sf_id):
3998 self.logger.debug("Deleting Service Function '%s' from VIM", sf_id)
3999
4000 try:
4001 self._reload_connection()
4002 self.neutron.delete_sfc_port_pair_group(sf_id)
4003
4004 return sf_id
4005 except (
4006 neExceptions.ConnectionFailed,
4007 neExceptions.NeutronException,
4008 ksExceptions.ClientException,
4009 neExceptions.NeutronException,
4010 ConnectionError,
4011 ) as e:
4012 self._format_exception(e)
4013
4014 def new_sfp(self, name, classifications, sfs, sfc_encap=True, spi=None):
4015 self.logger.debug("Adding a new Service Function Path to VIM, named '%s'", name)
4016
4017 new_sfp = None
4018
4019 try:
4020 self._reload_connection()
4021 # In networking-sfc the MPLS encapsulation is legacy
4022 # should be used when no full SFC Encapsulation is intended
4023 correlation = "mpls"
4024
4025 if sfc_encap:
4026 correlation = "nsh"
4027
4028 sfp_dict = {
4029 "name": name,
4030 "flow_classifiers": classifications,
4031 "port_pair_groups": sfs,
4032 "chain_parameters": {"correlation": correlation},
4033 }
4034
4035 if spi:
4036 sfp_dict["chain_id"] = spi
4037
4038 self.logger.info("Adding a new SFP to VIM, {}.".format(sfp_dict))
4039 new_sfp = self.neutron.create_sfc_port_chain({"port_chain": sfp_dict})
4040
4041 return new_sfp["port_chain"]["id"]
4042 except (
4043 neExceptions.ConnectionFailed,
4044 ksExceptions.ClientException,
4045 neExceptions.NeutronException,
4046 ConnectionError,
4047 ) as e:
4048 if new_sfp:
4049 try:
4050 new_sfp_id = new_sfp.get("port_chain").get("id")
4051 self.neutron.delete_sfc_port_chain(new_sfp_id)
4052 except Exception:
4053 self.logger.error(
4054 "Creation of Service Function Path failed, with "
4055 "subsequent deletion failure as well."
4056 )
4057
4058 self._format_exception(e)
4059
4060 def get_sfp(self, sfp_id):
4061 self.logger.debug(" Getting Service Function Path %s from VIM", sfp_id)
4062
4063 filter_dict = {"id": sfp_id}
4064 sfp_list = self.get_sfp_list(filter_dict)
4065
4066 if len(sfp_list) == 0:
4067 raise vimconn.VimConnNotFoundException(
4068 "Service Function Path '{}' not found".format(sfp_id)
4069 )
4070 elif len(sfp_list) > 1:
4071 raise vimconn.VimConnConflictException(
4072 "Found more than one Service Function Path with this criteria"
4073 )
4074
4075 sfp = sfp_list[0]
4076
4077 return sfp
4078
4079 def get_sfp_list(self, filter_dict={}):
4080 self.logger.debug(
4081 "Getting Service Function Paths from VIM filter: '%s'", str(filter_dict)
4082 )
4083
4084 try:
4085 self._reload_connection()
4086 filter_dict_os = filter_dict.copy()
4087
4088 if self.api_version3 and "tenant_id" in filter_dict_os:
4089 filter_dict_os["project_id"] = filter_dict_os.pop("tenant_id")
4090
4091 sfp_dict = self.neutron.list_sfc_port_chains(**filter_dict_os)
4092 sfp_list = sfp_dict["port_chains"]
4093 self.__sfp_os2mano(sfp_list)
4094
4095 return sfp_list
4096 except (
4097 neExceptions.ConnectionFailed,
4098 ksExceptions.ClientException,
4099 neExceptions.NeutronException,
4100 ConnectionError,
4101 ) as e:
4102 self._format_exception(e)
4103
4104 def delete_sfp(self, sfp_id):
4105 self.logger.debug("Deleting Service Function Path '%s' from VIM", sfp_id)
4106
4107 try:
4108 self._reload_connection()
4109 self.neutron.delete_sfc_port_chain(sfp_id)
4110
4111 return sfp_id
4112 except (
4113 neExceptions.ConnectionFailed,
4114 neExceptions.NeutronException,
4115 ksExceptions.ClientException,
4116 neExceptions.NeutronException,
4117 ConnectionError,
4118 ) as e:
4119 self._format_exception(e)
4120
4121 def refresh_sfps_status(self, sfp_list):
4122 """Get the status of the service function path
4123 Params: the list of sfp identifiers
4124 Returns a dictionary with:
4125 vm_id: #VIM id of this service function path
4126 status: #Mandatory. Text with one of:
4127 # DELETED (not found at vim)
4128 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
4129 # OTHER (Vim reported other status not understood)
4130 # ERROR (VIM indicates an ERROR status)
4131 # ACTIVE,
4132 # CREATING (on building process)
4133 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
4134 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)F
4135 """
4136 sfp_dict = {}
4137 self.logger.debug(
4138 "refresh_sfps status: Getting tenant SFP information from VIM"
4139 )
4140
4141 for sfp_id in sfp_list:
4142 sfp = {}
4143
4144 try:
4145 sfp_vim = self.get_sfp(sfp_id)
4146
4147 if sfp_vim["spi"]:
4148 sfp["status"] = vmStatus2manoFormat["ACTIVE"]
4149 else:
4150 sfp["status"] = "OTHER"
4151 sfp["error_msg"] = "VIM status reported " + sfp["status"]
4152
4153 sfp["vim_info"] = self.serialize(sfp_vim)
4154
4155 if sfp_vim.get("fault"):
4156 sfp["error_msg"] = str(sfp_vim["fault"])
4157 except vimconn.VimConnNotFoundException as e:
4158 self.logger.error("Exception getting sfp status: %s", str(e))
4159 sfp["status"] = "DELETED"
4160 sfp["error_msg"] = str(e)
4161 except vimconn.VimConnException as e:
4162 self.logger.error("Exception getting sfp status: %s", str(e))
4163 sfp["status"] = "VIM_ERROR"
4164 sfp["error_msg"] = str(e)
4165
4166 sfp_dict[sfp_id] = sfp
4167
4168 return sfp_dict
4169
4170 def refresh_sfis_status(self, sfi_list):
4171 """Get the status of the service function instances
4172 Params: the list of sfi identifiers
4173 Returns a dictionary with:
4174 vm_id: #VIM id of this service function instance
4175 status: #Mandatory. Text with one of:
4176 # DELETED (not found at vim)
4177 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
4178 # OTHER (Vim reported other status not understood)
4179 # ERROR (VIM indicates an ERROR status)
4180 # ACTIVE,
4181 # CREATING (on building process)
4182 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
4183 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
4184 """
4185 sfi_dict = {}
4186 self.logger.debug(
4187 "refresh_sfis status: Getting tenant sfi information from VIM"
4188 )
4189
4190 for sfi_id in sfi_list:
4191 sfi = {}
4192
4193 try:
4194 sfi_vim = self.get_sfi(sfi_id)
4195
4196 if sfi_vim:
4197 sfi["status"] = vmStatus2manoFormat["ACTIVE"]
4198 else:
4199 sfi["status"] = "OTHER"
4200 sfi["error_msg"] = "VIM status reported " + sfi["status"]
4201
4202 sfi["vim_info"] = self.serialize(sfi_vim)
4203
4204 if sfi_vim.get("fault"):
4205 sfi["error_msg"] = str(sfi_vim["fault"])
4206 except vimconn.VimConnNotFoundException as e:
4207 self.logger.error("Exception getting sfi status: %s", str(e))
4208 sfi["status"] = "DELETED"
4209 sfi["error_msg"] = str(e)
4210 except vimconn.VimConnException as e:
4211 self.logger.error("Exception getting sfi status: %s", str(e))
4212 sfi["status"] = "VIM_ERROR"
4213 sfi["error_msg"] = str(e)
4214
4215 sfi_dict[sfi_id] = sfi
4216
4217 return sfi_dict
4218
4219 def refresh_sfs_status(self, sf_list):
4220 """Get the status of the service functions
4221 Params: the list of sf identifiers
4222 Returns a dictionary with:
4223 vm_id: #VIM id of this service function
4224 status: #Mandatory. Text with one of:
4225 # DELETED (not found at vim)
4226 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
4227 # OTHER (Vim reported other status not understood)
4228 # ERROR (VIM indicates an ERROR status)
4229 # ACTIVE,
4230 # CREATING (on building process)
4231 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
4232 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
4233 """
4234 sf_dict = {}
4235 self.logger.debug("refresh_sfs status: Getting tenant sf information from VIM")
4236
4237 for sf_id in sf_list:
4238 sf = {}
4239
4240 try:
4241 sf_vim = self.get_sf(sf_id)
4242
4243 if sf_vim:
4244 sf["status"] = vmStatus2manoFormat["ACTIVE"]
4245 else:
4246 sf["status"] = "OTHER"
4247 sf["error_msg"] = "VIM status reported " + sf_vim["status"]
4248
4249 sf["vim_info"] = self.serialize(sf_vim)
4250
4251 if sf_vim.get("fault"):
4252 sf["error_msg"] = str(sf_vim["fault"])
4253 except vimconn.VimConnNotFoundException as e:
4254 self.logger.error("Exception getting sf status: %s", str(e))
4255 sf["status"] = "DELETED"
4256 sf["error_msg"] = str(e)
4257 except vimconn.VimConnException as e:
4258 self.logger.error("Exception getting sf status: %s", str(e))
4259 sf["status"] = "VIM_ERROR"
4260 sf["error_msg"] = str(e)
4261
4262 sf_dict[sf_id] = sf
4263
4264 return sf_dict
4265
4266 def refresh_classifications_status(self, classification_list):
4267 """Get the status of the classifications
4268 Params: the list of classification identifiers
4269 Returns a dictionary with:
4270 vm_id: #VIM id of this classifier
4271 status: #Mandatory. Text with one of:
4272 # DELETED (not found at vim)
4273 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
4274 # OTHER (Vim reported other status not understood)
4275 # ERROR (VIM indicates an ERROR status)
4276 # ACTIVE,
4277 # CREATING (on building process)
4278 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
4279 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
4280 """
4281 classification_dict = {}
4282 self.logger.debug(
4283 "refresh_classifications status: Getting tenant classification information from VIM"
4284 )
4285
4286 for classification_id in classification_list:
4287 classification = {}
4288
4289 try:
4290 classification_vim = self.get_classification(classification_id)
4291
4292 if classification_vim:
4293 classification["status"] = vmStatus2manoFormat["ACTIVE"]
4294 else:
4295 classification["status"] = "OTHER"
4296 classification["error_msg"] = (
4297 "VIM status reported " + classification["status"]
4298 )
4299
4300 classification["vim_info"] = self.serialize(classification_vim)
4301
4302 if classification_vim.get("fault"):
4303 classification["error_msg"] = str(classification_vim["fault"])
4304 except vimconn.VimConnNotFoundException as e:
4305 self.logger.error("Exception getting classification status: %s", str(e))
4306 classification["status"] = "DELETED"
4307 classification["error_msg"] = str(e)
4308 except vimconn.VimConnException as e:
4309 self.logger.error("Exception getting classification status: %s", str(e))
4310 classification["status"] = "VIM_ERROR"
4311 classification["error_msg"] = str(e)
4312
4313 classification_dict[classification_id] = classification
4314
4315 return classification_dict
4316
gatici335a06a2023-07-26 00:34:04 +03004317 @catch_any_exception
Alexis Romerob70f4ed2022-03-11 18:00:49 +01004318 def new_affinity_group(self, affinity_group_data):
4319 """Adds a server group to VIM
4320 affinity_group_data contains a dictionary with information, keys:
4321 name: name in VIM for the server group
4322 type: affinity or anti-affinity
4323 scope: Only nfvi-node allowed
4324 Returns the server group identifier"""
4325 self.logger.debug("Adding Server Group '%s'", str(affinity_group_data))
gatici335a06a2023-07-26 00:34:04 +03004326 name = affinity_group_data["name"]
4327 policy = affinity_group_data["type"]
4328 self._reload_connection()
4329 new_server_group = self.nova.server_groups.create(name, policy)
4330 return new_server_group.id
Alexis Romerob70f4ed2022-03-11 18:00:49 +01004331
gatici335a06a2023-07-26 00:34:04 +03004332 @catch_any_exception
Alexis Romerob70f4ed2022-03-11 18:00:49 +01004333 def get_affinity_group(self, affinity_group_id):
4334 """Obtain server group details from the VIM. Returns the server group detais as a dict"""
4335 self.logger.debug("Getting flavor '%s'", affinity_group_id)
gatici335a06a2023-07-26 00:34:04 +03004336 self._reload_connection()
4337 server_group = self.nova.server_groups.find(id=affinity_group_id)
4338 return server_group.to_dict()
Alexis Romerob70f4ed2022-03-11 18:00:49 +01004339
gatici335a06a2023-07-26 00:34:04 +03004340 @catch_any_exception
Alexis Romerob70f4ed2022-03-11 18:00:49 +01004341 def delete_affinity_group(self, affinity_group_id):
4342 """Deletes a server group from the VIM. Returns the old affinity_group_id"""
4343 self.logger.debug("Getting server group '%s'", affinity_group_id)
gatici335a06a2023-07-26 00:34:04 +03004344 self._reload_connection()
4345 self.nova.server_groups.delete(affinity_group_id)
4346 return affinity_group_id
Alexis Romerob70f4ed2022-03-11 18:00:49 +01004347
gatici335a06a2023-07-26 00:34:04 +03004348 @catch_any_exception
Patricia Reinoso17852162023-06-15 07:33:04 +00004349 def get_vdu_state(self, vm_id, host_is_required=False) -> list:
4350 """Getting the state of a VDU.
4351 Args:
4352 vm_id (str): ID of an instance
4353 host_is_required (Boolean): If the VIM account is non-admin, host info does not appear in server_dict
4354 and if this is set to True, it raises KeyError.
4355 Returns:
4356 vdu_data (list): VDU details including state, flavor, host_info, AZ
elumalai8658c2c2022-04-28 19:09:31 +05304357 """
4358 self.logger.debug("Getting the status of VM")
4359 self.logger.debug("VIM VM ID %s", vm_id)
gatici335a06a2023-07-26 00:34:04 +03004360 self._reload_connection()
4361 server_dict = self._find_nova_server(vm_id)
4362 srv_attr = "OS-EXT-SRV-ATTR:host"
4363 host_info = (
4364 server_dict[srv_attr] if host_is_required else server_dict.get(srv_attr)
4365 )
4366 vdu_data = [
4367 server_dict["status"],
4368 server_dict["flavor"]["id"],
4369 host_info,
4370 server_dict["OS-EXT-AZ:availability_zone"],
4371 ]
4372 self.logger.debug("vdu_data %s", vdu_data)
4373 return vdu_data
elumalai8658c2c2022-04-28 19:09:31 +05304374
4375 def check_compute_availability(self, host, server_flavor_details):
4376 self._reload_connection()
4377 hypervisor_search = self.nova.hypervisors.search(
4378 hypervisor_match=host, servers=True
4379 )
4380 for hypervisor in hypervisor_search:
4381 hypervisor_id = hypervisor.to_dict()["id"]
4382 hypervisor_details = self.nova.hypervisors.get(hypervisor=hypervisor_id)
4383 hypervisor_dict = hypervisor_details.to_dict()
4384 hypervisor_temp = json.dumps(hypervisor_dict)
4385 hypervisor_json = json.loads(hypervisor_temp)
4386 resources_available = [
4387 hypervisor_json["free_ram_mb"],
4388 hypervisor_json["disk_available_least"],
4389 hypervisor_json["vcpus"] - hypervisor_json["vcpus_used"],
4390 ]
4391 compute_available = all(
4392 x > y for x, y in zip(resources_available, server_flavor_details)
4393 )
4394 if compute_available:
4395 return host
4396
4397 def check_availability_zone(
4398 self, old_az, server_flavor_details, old_host, host=None
4399 ):
4400 self._reload_connection()
4401 az_check = {"zone_check": False, "compute_availability": None}
4402 aggregates_list = self.nova.aggregates.list()
4403 for aggregate in aggregates_list:
4404 aggregate_details = aggregate.to_dict()
4405 aggregate_temp = json.dumps(aggregate_details)
4406 aggregate_json = json.loads(aggregate_temp)
4407 if aggregate_json["availability_zone"] == old_az:
4408 hosts_list = aggregate_json["hosts"]
4409 if host is not None:
4410 if host in hosts_list:
4411 az_check["zone_check"] = True
4412 available_compute_id = self.check_compute_availability(
4413 host, server_flavor_details
4414 )
4415 if available_compute_id is not None:
4416 az_check["compute_availability"] = available_compute_id
4417 else:
4418 for check_host in hosts_list:
4419 if check_host != old_host:
4420 available_compute_id = self.check_compute_availability(
4421 check_host, server_flavor_details
4422 )
4423 if available_compute_id is not None:
4424 az_check["zone_check"] = True
4425 az_check["compute_availability"] = available_compute_id
4426 break
4427 else:
4428 az_check["zone_check"] = True
4429 return az_check
4430
gatici335a06a2023-07-26 00:34:04 +03004431 @catch_any_exception
elumalai8658c2c2022-04-28 19:09:31 +05304432 def migrate_instance(self, vm_id, compute_host=None):
4433 """
4434 Migrate a vdu
4435 param:
4436 vm_id: ID of an instance
4437 compute_host: Host to migrate the vdu to
4438 """
4439 self._reload_connection()
4440 vm_state = False
Patricia Reinoso17852162023-06-15 07:33:04 +00004441 instance_state = self.get_vdu_state(vm_id, host_is_required=True)
elumalai8658c2c2022-04-28 19:09:31 +05304442 server_flavor_id = instance_state[1]
4443 server_hypervisor_name = instance_state[2]
4444 server_availability_zone = instance_state[3]
gatici335a06a2023-07-26 00:34:04 +03004445 server_flavor = self.nova.flavors.find(id=server_flavor_id).to_dict()
4446 server_flavor_details = [
4447 server_flavor["ram"],
4448 server_flavor["disk"],
4449 server_flavor["vcpus"],
4450 ]
4451 if compute_host == server_hypervisor_name:
4452 raise vimconn.VimConnException(
4453 "Unable to migrate instance '{}' to the same host '{}'".format(
4454 vm_id, compute_host
4455 ),
4456 http_code=vimconn.HTTP_Bad_Request,
elumalai8658c2c2022-04-28 19:09:31 +05304457 )
gatici335a06a2023-07-26 00:34:04 +03004458 az_status = self.check_availability_zone(
4459 server_availability_zone,
4460 server_flavor_details,
4461 server_hypervisor_name,
4462 compute_host,
4463 )
4464 availability_zone_check = az_status["zone_check"]
4465 available_compute_id = az_status.get("compute_availability")
elumalai8658c2c2022-04-28 19:09:31 +05304466
gatici335a06a2023-07-26 00:34:04 +03004467 if availability_zone_check is False:
4468 raise vimconn.VimConnException(
4469 "Unable to migrate instance '{}' to a different availability zone".format(
4470 vm_id
4471 ),
4472 http_code=vimconn.HTTP_Bad_Request,
4473 )
4474 if available_compute_id is not None:
4475 # disk_over_commit parameter for live_migrate method is not valid for Nova API version >= 2.25
4476 self.nova.servers.live_migrate(
4477 server=vm_id,
4478 host=available_compute_id,
4479 block_migration=True,
4480 )
4481 state = "MIGRATING"
4482 changed_compute_host = ""
4483 if state == "MIGRATING":
4484 vm_state = self.__wait_for_vm(vm_id, "ACTIVE")
4485 changed_compute_host = self.get_vdu_state(vm_id, host_is_required=True)[
4486 2
4487 ]
4488 if vm_state and changed_compute_host == available_compute_id:
4489 self.logger.debug(
4490 "Instance '{}' migrated to the new compute host '{}'".format(
4491 vm_id, changed_compute_host
elumalai8658c2c2022-04-28 19:09:31 +05304492 )
gatici335a06a2023-07-26 00:34:04 +03004493 )
4494 return state, available_compute_id
elumalai8658c2c2022-04-28 19:09:31 +05304495 else:
4496 raise vimconn.VimConnException(
gatici335a06a2023-07-26 00:34:04 +03004497 "Migration Failed. Instance '{}' not moved to the new host {}".format(
4498 vm_id, available_compute_id
elumalai8658c2c2022-04-28 19:09:31 +05304499 ),
4500 http_code=vimconn.HTTP_Bad_Request,
4501 )
gatici335a06a2023-07-26 00:34:04 +03004502 else:
4503 raise vimconn.VimConnException(
4504 "Compute '{}' not available or does not have enough resources to migrate the instance".format(
4505 available_compute_id
4506 ),
4507 http_code=vimconn.HTTP_Bad_Request,
4508 )
sritharan29a4c1a2022-05-05 12:15:04 +00004509
gatici335a06a2023-07-26 00:34:04 +03004510 @catch_any_exception
sritharan29a4c1a2022-05-05 12:15:04 +00004511 def resize_instance(self, vm_id, new_flavor_id):
4512 """
4513 For resizing the vm based on the given
4514 flavor details
4515 param:
4516 vm_id : ID of an instance
4517 new_flavor_id : Flavor id to be resized
4518 Return the status of a resized instance
4519 """
4520 self._reload_connection()
4521 self.logger.debug("resize the flavor of an instance")
4522 instance_status, old_flavor_id, compute_host, az = self.get_vdu_state(vm_id)
4523 old_flavor_disk = self.nova.flavors.find(id=old_flavor_id).to_dict()["disk"]
4524 new_flavor_disk = self.nova.flavors.find(id=new_flavor_id).to_dict()["disk"]
gatici335a06a2023-07-26 00:34:04 +03004525 if instance_status == "ACTIVE" or instance_status == "SHUTOFF":
4526 if old_flavor_disk > new_flavor_disk:
sritharan29a4c1a2022-05-05 12:15:04 +00004527 raise nvExceptions.BadRequest(
gatici335a06a2023-07-26 00:34:04 +03004528 400,
4529 message="Server disk resize failed. Resize to lower disk flavor is not allowed",
sritharan29a4c1a2022-05-05 12:15:04 +00004530 )
gatici335a06a2023-07-26 00:34:04 +03004531 else:
4532 self.nova.servers.resize(server=vm_id, flavor=new_flavor_id)
4533 vm_state = self.__wait_for_vm(vm_id, "VERIFY_RESIZE")
4534 if vm_state:
deepika.e970f5552024-06-03 14:12:50 +05304535 instance_resized_status = self.confirm_resize(
4536 vm_id, instance_status
4537 )
gatici335a06a2023-07-26 00:34:04 +03004538 return instance_resized_status
4539 else:
4540 raise nvExceptions.BadRequest(
4541 409,
4542 message="Cannot 'resize' vm_state is in ERROR",
4543 )
4544
4545 else:
4546 self.logger.debug("ERROR : Instance is not in ACTIVE or SHUTOFF state")
4547 raise nvExceptions.BadRequest(
4548 409,
4549 message="Cannot 'resize' instance while it is in vm_state resized",
4550 )
sritharan29a4c1a2022-05-05 12:15:04 +00004551
deepika.e970f5552024-06-03 14:12:50 +05304552 def confirm_resize(self, vm_id, instance_state):
sritharan29a4c1a2022-05-05 12:15:04 +00004553 """
4554 Confirm the resize of an instance
4555 param:
4556 vm_id: ID of an instance
4557 """
4558 self._reload_connection()
4559 self.nova.servers.confirm_resize(server=vm_id)
4560 if self.get_vdu_state(vm_id)[0] == "VERIFY_RESIZE":
deepika.e970f5552024-06-03 14:12:50 +05304561 self.__wait_for_vm(vm_id, instance_state)
sritharan29a4c1a2022-05-05 12:15:04 +00004562 instance_status = self.get_vdu_state(vm_id)[0]
4563 return instance_status
Gulsum Aticid586d892023-02-13 18:40:03 +03004564
4565 def get_monitoring_data(self):
4566 try:
4567 self.logger.debug("Getting servers and ports data from Openstack VIMs.")
4568 self._reload_connection()
4569 all_servers = self.nova.servers.list(detailed=True)
vegallc53829d2023-06-01 00:47:44 -05004570 try:
4571 for server in all_servers:
Luis Vegad6577d82023-07-26 20:49:12 +00004572 if server.flavor.get("original_name"):
4573 server.flavor["id"] = self.nova.flavors.find(
4574 name=server.flavor["original_name"]
4575 ).id
vegallc53829d2023-06-01 00:47:44 -05004576 except nClient.exceptions.NotFound as e:
4577 self.logger.warning(str(e.message))
Gulsum Aticid586d892023-02-13 18:40:03 +03004578 all_ports = self.neutron.list_ports()
4579 return all_servers, all_ports
gatici335a06a2023-07-26 00:34:04 +03004580 except Exception as e:
Gulsum Aticid586d892023-02-13 18:40:03 +03004581 raise vimconn.VimConnException(
4582 f"Exception in monitoring while getting VMs and ports status: {str(e)}"
4583 )