blob: 43450d6b75af3142757840993e6df2162baf0465 [file] [log] [blame]
tiernob24258a2018-10-04 18:39:49 +02001# -*- coding: utf-8 -*-
2
tiernod125caf2018-11-22 16:05:54 +00003# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12# implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
tiernob24258a2018-10-04 18:39:49 +020016# import logging
Guillermo Calvino7fcbd4f2022-01-26 17:37:56 +010017import json
tiernob24258a2018-10-04 18:39:49 +020018from uuid import uuid4
19from http import HTTPStatus
20from time import time
tiernocc103432018-10-19 14:10:35 +020021from copy import copy, deepcopy
garciadeblas4568a372021-03-24 09:19:48 +010022from osm_nbi.validation import (
23 validate_input,
24 ValidationError,
25 ns_instantiate,
26 ns_terminate,
27 ns_action,
28 ns_scale,
aticig544a2ae2022-04-05 09:00:17 +030029 ns_update,
garciadeblas0964edf2022-02-11 00:43:44 +010030 ns_heal,
garciadeblas4568a372021-03-24 09:19:48 +010031 nsi_instantiate,
elumalai8e3806c2022-04-28 17:26:24 +053032 ns_migrate,
govindarajul519da482022-04-29 19:05:22 +053033 ns_verticalscale,
garciadeblas4568a372021-03-24 09:19:48 +010034)
35from osm_nbi.base_topic import (
36 BaseTopic,
37 EngineException,
38 get_iterable,
39 deep_get,
40 increment_ip_mac,
41)
tiernobee085c2018-12-12 17:03:04 +000042from yaml import safe_dump
Felipe Vicens09e65422019-01-22 15:06:46 +010043from osm_common.dbbase import DbException
tierno1bfe4e22019-09-02 16:03:25 +000044from osm_common.msgbase import MsgException
45from osm_common.fsbase import FsException
garciaale7cbd03c2020-11-27 10:38:35 -030046from osm_nbi import utils
garciadeblas4568a372021-03-24 09:19:48 +010047from re import (
48 match,
49) # For checking that additional parameter names are valid Jinja2 identifiers
tiernob24258a2018-10-04 18:39:49 +020050
51__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
52
53
54class NsrTopic(BaseTopic):
55 topic = "nsrs"
56 topic_msg = "ns"
tierno6b02b052020-06-02 10:07:41 +000057 quota_name = "ns_instances"
tiernod77ba6f2019-06-27 14:31:10 +000058 schema_new = ns_instantiate
tiernob24258a2018-10-04 18:39:49 +020059
delacruzramo32bab472019-09-13 12:24:22 +020060 def __init__(self, db, fs, msg, auth):
61 BaseTopic.__init__(self, db, fs, msg, auth)
tiernob24258a2018-10-04 18:39:49 +020062
63 def _check_descriptor_dependencies(self, session, descriptor):
64 """
65 Check that the dependent descriptors exist on a new descriptor or edition
66 :param session: client session information
67 :param descriptor: descriptor to be inserted or edit
68 :return: None or raises exception
69 """
70 if not descriptor.get("nsdId"):
71 return
72 nsd_id = descriptor["nsdId"]
73 if not self.get_item_list(session, "nsds", {"id": nsd_id}):
garciadeblas4568a372021-03-24 09:19:48 +010074 raise EngineException(
75 "Descriptor error at nsdId='{}' references a non exist nsd".format(
76 nsd_id
77 ),
78 http_code=HTTPStatus.CONFLICT,
79 )
tiernob24258a2018-10-04 18:39:49 +020080
81 @staticmethod
82 def format_on_new(content, project_id=None, make_public=False):
83 BaseTopic.format_on_new(content, project_id=project_id, make_public=make_public)
84 content["_admin"]["nsState"] = "NOT_INSTANTIATED"
tiernobdebce92019-07-01 15:36:49 +000085 return None
tiernob24258a2018-10-04 18:39:49 +020086
tiernob4844ab2019-05-23 08:42:12 +000087 def check_conflict_on_del(self, session, _id, db_content):
88 """
89 Check that NSR is not instantiated
90 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
91 :param _id: nsr internal id
92 :param db_content: The database content of the nsr
93 :return: None or raises EngineException with the conflict
94 """
tierno65ca36d2019-02-12 19:27:52 +010095 if session["force"]:
tiernob24258a2018-10-04 18:39:49 +020096 return
tiernob4844ab2019-05-23 08:42:12 +000097 nsr = db_content
tiernob24258a2018-10-04 18:39:49 +020098 if nsr["_admin"].get("nsState") == "INSTANTIATED":
garciadeblas4568a372021-03-24 09:19:48 +010099 raise EngineException(
100 "nsr '{}' cannot be deleted because it is in 'INSTANTIATED' state. "
101 "Launch 'terminate' operation first; or force deletion".format(_id),
102 http_code=HTTPStatus.CONFLICT,
103 )
tiernob24258a2018-10-04 18:39:49 +0200104
tiernobee3bad2019-12-05 12:26:01 +0000105 def delete_extra(self, session, _id, db_content, not_send_msg=None):
tiernob4844ab2019-05-23 08:42:12 +0000106 """
107 Deletes associated nslcmops and vnfrs from database. Deletes associated filesystem.
108 Set usageState of pdu, vnfd, nsd
109 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
110 :param _id: server internal id
111 :param db_content: The database content of the descriptor
tiernobee3bad2019-12-05 12:26:01 +0000112 :param not_send_msg: To not send message (False) or store content (list) instead
tiernob4844ab2019-05-23 08:42:12 +0000113 :return: None if ok or raises EngineException with the problem
114 """
tiernobee085c2018-12-12 17:03:04 +0000115 self.fs.file_delete(_id, ignore_non_exist=True)
tiernob24258a2018-10-04 18:39:49 +0200116 self.db.del_list("nslcmops", {"nsInstanceId": _id})
117 self.db.del_list("vnfrs", {"nsr-id-ref": _id})
tiernob4844ab2019-05-23 08:42:12 +0000118
tiernob24258a2018-10-04 18:39:49 +0200119 # set all used pdus as free
garciadeblas4568a372021-03-24 09:19:48 +0100120 self.db.set_list(
121 "pdus",
122 {"_admin.usage.nsr_id": _id},
123 {"_admin.usageState": "NOT_IN_USE", "_admin.usage": None},
124 )
tiernob24258a2018-10-04 18:39:49 +0200125
tiernob4844ab2019-05-23 08:42:12 +0000126 # Set NSD usageState
127 nsr = db_content
128 used_nsd_id = nsr.get("nsd-id")
129 if used_nsd_id:
130 # check if used by another NSR
garciadeblas4568a372021-03-24 09:19:48 +0100131 nsrs_list = self.db.get_one(
132 "nsrs", {"nsd-id": used_nsd_id}, fail_on_empty=False, fail_on_more=False
133 )
tiernob4844ab2019-05-23 08:42:12 +0000134 if not nsrs_list:
garciadeblas4568a372021-03-24 09:19:48 +0100135 self.db.set_one(
136 "nsds", {"_id": used_nsd_id}, {"_admin.usageState": "NOT_IN_USE"}
137 )
tiernob4844ab2019-05-23 08:42:12 +0000138
139 # Set VNFD usageState
140 used_vnfd_id_list = nsr.get("vnfd-id")
141 if used_vnfd_id_list:
142 for used_vnfd_id in used_vnfd_id_list:
143 # check if used by another NSR
garciadeblas4568a372021-03-24 09:19:48 +0100144 nsrs_list = self.db.get_one(
145 "nsrs",
146 {"vnfd-id": used_vnfd_id},
147 fail_on_empty=False,
148 fail_on_more=False,
149 )
tiernob4844ab2019-05-23 08:42:12 +0000150 if not nsrs_list:
garciadeblas4568a372021-03-24 09:19:48 +0100151 self.db.set_one(
152 "vnfds",
153 {"_id": used_vnfd_id},
154 {"_admin.usageState": "NOT_IN_USE"},
155 )
tiernob4844ab2019-05-23 08:42:12 +0000156
tiernof0441ea2020-05-26 15:39:18 +0000157 # delete extra ro_nsrs used for internal RO module
158 self.db.del_one("ro_nsrs", q_filter={"_id": _id}, fail_on_empty=False)
159
tiernobee085c2018-12-12 17:03:04 +0000160 @staticmethod
161 def _format_ns_request(ns_request):
162 formated_request = copy(ns_request)
163 formated_request.pop("additionalParamsForNs", None)
164 formated_request.pop("additionalParamsForVnf", None)
165 return formated_request
166
167 @staticmethod
garciadeblas4568a372021-03-24 09:19:48 +0100168 def _format_additional_params(
169 ns_request, member_vnf_index=None, vdu_id=None, kdu_name=None, descriptor=None
170 ):
tiernobee085c2018-12-12 17:03:04 +0000171 """
Pedro Escaleira9c81dce2022-05-20 15:29:20 +0100172 Get and format user additional params for NS or VNF.
173 The vdu_id and kdu_name params are mutually exclusive! If none of them are given, then the method will
174 exclusively search for the VNF/NS LCM additional params.
175
tiernobee085c2018-12-12 17:03:04 +0000176 :param ns_request: User instantiation additional parameters
177 :param member_vnf_index: None for extract NS params, or member_vnf_index to extract VNF params
Pedro Escaleira9c81dce2022-05-20 15:29:20 +0100178 :vdu_id: VDU's ID against which we want to format the additional params
179 :kdu_name: KDU's name against which we want to format the additional params
tiernobee085c2018-12-12 17:03:04 +0000180 :param descriptor: If not None it check that needed parameters of descriptor are supplied
tierno54db2e42020-04-06 15:29:42 +0000181 :return: tuple with a formatted copy of additional params or None if not supplied, plus other parameters
tiernobee085c2018-12-12 17:03:04 +0000182 """
183 additional_params = None
tierno54db2e42020-04-06 15:29:42 +0000184 other_params = None
tiernobee085c2018-12-12 17:03:04 +0000185 if not member_vnf_index:
186 additional_params = copy(ns_request.get("additionalParamsForNs"))
187 where_ = "additionalParamsForNs"
188 elif ns_request.get("additionalParamsForVnf"):
garciadeblas4568a372021-03-24 09:19:48 +0100189 where_ = "additionalParamsForVnf[member-vnf-index={}]".format(
190 member_vnf_index
191 )
192 item = next(
193 (
194 x
195 for x in ns_request["additionalParamsForVnf"]
196 if x["member-vnf-index"] == member_vnf_index
197 ),
198 None,
199 )
tierno714954e2019-11-29 13:43:26 +0000200 if item:
tierno54db2e42020-04-06 15:29:42 +0000201 if not vdu_id and not kdu_name:
202 other_params = item
tierno714954e2019-11-29 13:43:26 +0000203 additional_params = copy(item.get("additionalParams")) or {}
204 if vdu_id and item.get("additionalParamsForVdu"):
garciadeblas4568a372021-03-24 09:19:48 +0100205 item_vdu = next(
206 (
207 x
208 for x in item["additionalParamsForVdu"]
209 if x["vdu_id"] == vdu_id
210 ),
211 None,
212 )
tiernobce98f02020-04-17 11:27:47 +0000213 other_params = item_vdu
tierno714954e2019-11-29 13:43:26 +0000214 if item_vdu and item_vdu.get("additionalParams"):
215 where_ += ".additionalParamsForVdu[vdu_id={}]".format(vdu_id)
tiernob091dc12019-12-02 15:53:25 +0000216 additional_params = item_vdu["additionalParams"]
217 if kdu_name:
218 additional_params = {}
219 if item.get("additionalParamsForKdu"):
garciadeblas4568a372021-03-24 09:19:48 +0100220 item_kdu = next(
221 (
222 x
223 for x in item["additionalParamsForKdu"]
224 if x["kdu_name"] == kdu_name
225 ),
226 None,
227 )
tiernobce98f02020-04-17 11:27:47 +0000228 other_params = item_kdu
tiernob091dc12019-12-02 15:53:25 +0000229 if item_kdu and item_kdu.get("additionalParams"):
garciadeblas4568a372021-03-24 09:19:48 +0100230 where_ += ".additionalParamsForKdu[kdu_name={}]".format(
231 kdu_name
232 )
tiernob091dc12019-12-02 15:53:25 +0000233 additional_params = item_kdu["additionalParams"]
tierno714954e2019-11-29 13:43:26 +0000234
tiernobee085c2018-12-12 17:03:04 +0000235 if additional_params:
236 for k, v in additional_params.items():
tierno714954e2019-11-29 13:43:26 +0000237 # BEGIN Check that additional parameter names are valid Jinja2 identifiers if target is not Kdu
garciadeblas4568a372021-03-24 09:19:48 +0100238 if not kdu_name and not match("^[a-zA-Z_][a-zA-Z0-9_]*$", k):
239 raise EngineException(
240 "Invalid param name at {}:{}. Must contain only alphanumeric characters "
241 "and underscores, and cannot start with a digit".format(
242 where_, k
243 )
244 )
delacruzramo36ffe552019-05-03 14:52:37 +0200245 # END Check that additional parameter names are valid Jinja2 identifiers
tiernobee085c2018-12-12 17:03:04 +0000246 if not isinstance(k, str):
garciadeblas4568a372021-03-24 09:19:48 +0100247 raise EngineException(
248 "Invalid param at {}:{}. Only string keys are allowed".format(
249 where_, k
250 )
251 )
Guillermo Calvino7fcbd4f2022-01-26 17:37:56 +0100252 if "$" in k:
garciadeblas4568a372021-03-24 09:19:48 +0100253 raise EngineException(
Guillermo Calvino7fcbd4f2022-01-26 17:37:56 +0100254 "Invalid param at {}:{}. Keys must not contain $ symbol".format(
garciadeblas4568a372021-03-24 09:19:48 +0100255 where_, k
256 )
257 )
tiernobee085c2018-12-12 17:03:04 +0000258 if isinstance(v, (dict, tuple, list)):
259 additional_params[k] = "!!yaml " + safe_dump(v)
Guillermo Calvino7fcbd4f2022-01-26 17:37:56 +0100260 if kdu_name:
261 additional_params = json.dumps(additional_params)
tiernobee085c2018-12-12 17:03:04 +0000262
Pedro Escaleira9c81dce2022-05-20 15:29:20 +0100263 # Select the VDU ID, KDU name or NS/VNF ID, depending on the method's call intent
264 selector = vdu_id if vdu_id else kdu_name if kdu_name else descriptor.get("id")
265
tiernobee085c2018-12-12 17:03:04 +0000266 if descriptor:
bravof41a52052021-02-17 18:08:01 -0300267 for df in descriptor.get("df", []):
268 # check that enough parameters are supplied for the initial-config-primitive
269 # TODO: check for cloud-init
270 if member_vnf_index:
garciaale7cbd03c2020-11-27 10:38:35 -0300271 initial_primitives = []
garciadeblas4568a372021-03-24 09:19:48 +0100272 if (
273 "lcm-operations-configuration" in df
274 and "operate-vnf-op-config"
275 in df["lcm-operations-configuration"]
276 ):
277 for config in df["lcm-operations-configuration"][
278 "operate-vnf-op-config"
279 ].get("day1-2", []):
Pedro Escaleira9c81dce2022-05-20 15:29:20 +0100280 # Verify the target object (VNF|NS|VDU|KDU) where we need to populate
281 # the params with the additional ones given by the user
282 if config.get("id") == selector:
283 for primitive in get_iterable(
284 config.get("initial-config-primitive")
285 ):
286 initial_primitives.append(primitive)
bravof41a52052021-02-17 18:08:01 -0300287 else:
garciadeblas4568a372021-03-24 09:19:48 +0100288 initial_primitives = deep_get(
289 descriptor, ("ns-configuration", "initial-config-primitive")
290 )
tiernobee085c2018-12-12 17:03:04 +0000291
bravof41a52052021-02-17 18:08:01 -0300292 for initial_primitive in get_iterable(initial_primitives):
293 for param in get_iterable(initial_primitive.get("parameter")):
garciadeblas4568a372021-03-24 09:19:48 +0100294 if param["value"].startswith("<") and param["value"].endswith(
295 ">"
296 ):
297 if param["value"] in (
298 "<rw_mgmt_ip>",
299 "<VDU_SCALE_INFO>",
300 "<ns_config_info>",
301 ):
bravof41a52052021-02-17 18:08:01 -0300302 continue
garciadeblas4568a372021-03-24 09:19:48 +0100303 if (
304 not additional_params
305 or param["value"][1:-1] not in additional_params
306 ):
307 raise EngineException(
308 "Parameter '{}' needed for vnfd[id={}]:day1-2 configuration:"
309 "initial-config-primitive[name={}] not supplied".format(
310 param["value"],
311 descriptor["id"],
312 initial_primitive["name"],
313 )
314 )
tierno714954e2019-11-29 13:43:26 +0000315
tierno54db2e42020-04-06 15:29:42 +0000316 return additional_params or None, other_params or None
tiernobee085c2018-12-12 17:03:04 +0000317
tierno65ca36d2019-02-12 19:27:52 +0100318 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
tiernob24258a2018-10-04 18:39:49 +0200319 """
320 Creates a new nsr into database. It also creates needed vnfrs
321 :param rollback: list to append the created items at database in case a rollback must be done
tierno65ca36d2019-02-12 19:27:52 +0100322 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
tiernob24258a2018-10-04 18:39:49 +0200323 :param indata: params to be used for the nsr
324 :param kwargs: used to override the indata descriptor
325 :param headers: http request headers
tierno1bfe4e22019-09-02 16:03:25 +0000326 :return: the _id of nsr descriptor created at database. Or an exception of type
327 EngineException, ValidationError, DbException, FsException, MsgException.
328 Note: Exceptions are not captured on purpose. They should be captured at called
tiernob24258a2018-10-04 18:39:49 +0200329 """
tiernob24258a2018-10-04 18:39:49 +0200330 try:
delacruzramo32bab472019-09-13 12:24:22 +0200331 step = "checking quotas"
332 self.check_quota(session)
333
tierno99d4b172019-07-02 09:28:40 +0000334 step = "validating input parameters"
tiernob24258a2018-10-04 18:39:49 +0200335 ns_request = self._remove_envelop(indata)
tiernob24258a2018-10-04 18:39:49 +0200336 self._update_input_with_kwargs(ns_request, kwargs)
bravofb995ea22021-02-10 10:57:52 -0300337 ns_request = self._validate_input_new(ns_request, session["force"])
tiernob24258a2018-10-04 18:39:49 +0200338
tiernob24258a2018-10-04 18:39:49 +0200339 step = "getting nsd id='{}' from database".format(ns_request.get("nsdId"))
garciaale7cbd03c2020-11-27 10:38:35 -0300340 nsd = self._get_nsd_from_db(ns_request["nsdId"], session)
341 ns_k8s_namespace = self._get_ns_k8s_namespace(nsd, ns_request, session)
tiernob24258a2018-10-04 18:39:49 +0200342
Frank Bryden3c64ab62020-07-21 14:25:32 +0000343 step = "checking nsdOperationalState"
garciaale7cbd03c2020-11-27 10:38:35 -0300344 self._check_nsd_operational_state(nsd, ns_request)
Frank Bryden3c64ab62020-07-21 14:25:32 +0000345
tiernob24258a2018-10-04 18:39:49 +0200346 step = "filling nsr from input data"
garciaale7cbd03c2020-11-27 10:38:35 -0300347 nsr_id = str(uuid4())
garciadeblas4568a372021-03-24 09:19:48 +0100348 nsr_descriptor = self._create_nsr_descriptor_from_nsd(
349 nsd, ns_request, nsr_id, session
350 )
tierno54db2e42020-04-06 15:29:42 +0000351
garciaale7cbd03c2020-11-27 10:38:35 -0300352 # Create VNFRs
tiernob24258a2018-10-04 18:39:49 +0200353 needed_vnfds = {}
garciaale7cbd03c2020-11-27 10:38:35 -0300354 # TODO: Change for multiple df support
K Sai Kiranbb006022021-05-20 11:09:49 +0530355 vnf_profiles = nsd.get("df", [{}])[0].get("vnf-profile", ())
garciaale7cbd03c2020-11-27 10:38:35 -0300356 for vnfp in vnf_profiles:
357 vnfd_id = vnfp.get("vnfd-id")
358 vnf_index = vnfp.get("id")
garciadeblas4568a372021-03-24 09:19:48 +0100359 step = (
360 "getting vnfd id='{}' constituent-vnfd='{}' from database".format(
361 vnfd_id, vnf_index
362 )
363 )
tiernob24258a2018-10-04 18:39:49 +0200364 if vnfd_id not in needed_vnfds:
garciaale7cbd03c2020-11-27 10:38:35 -0300365 vnfd = self._get_vnfd_from_db(vnfd_id, session)
beierlmcee2ebf2022-03-29 17:42:48 -0400366 if "revision" in vnfd["_admin"]:
367 vnfd["revision"] = vnfd["_admin"]["revision"]
368 vnfd.pop("_admin")
tiernob24258a2018-10-04 18:39:49 +0200369 needed_vnfds[vnfd_id] = vnfd
tiernob4844ab2019-05-23 08:42:12 +0000370 nsr_descriptor["vnfd-id"].append(vnfd["_id"])
tiernob24258a2018-10-04 18:39:49 +0200371 else:
372 vnfd = needed_vnfds[vnfd_id]
tierno36ec8602018-11-02 17:27:11 +0100373
garciadeblas4568a372021-03-24 09:19:48 +0100374 step = "filling vnfr vnfd-id='{}' constituent-vnfd='{}'".format(
375 vnfd_id, vnf_index
376 )
377 vnfr_descriptor = self._create_vnfr_descriptor_from_vnfd(
378 nsd,
379 vnfd,
380 vnfd_id,
381 vnf_index,
382 nsr_descriptor,
383 ns_request,
384 ns_k8s_namespace,
385 )
tierno36ec8602018-11-02 17:27:11 +0100386
garciadeblas4568a372021-03-24 09:19:48 +0100387 step = "creating vnfr vnfd-id='{}' constituent-vnfd='{}' at database".format(
388 vnfd_id, vnf_index
389 )
garciaale7cbd03c2020-11-27 10:38:35 -0300390 self._add_vnfr_to_db(vnfr_descriptor, rollback, session)
391 nsr_descriptor["constituent-vnfr-ref"].append(vnfr_descriptor["id"])
tiernob24258a2018-10-04 18:39:49 +0200392
393 step = "creating nsr at database"
garciaale7cbd03c2020-11-27 10:38:35 -0300394 self._add_nsr_to_db(nsr_descriptor, rollback, session)
tiernobee085c2018-12-12 17:03:04 +0000395
396 step = "creating nsr temporal folder"
397 self.fs.mkdir(nsr_id)
398
tiernobdebce92019-07-01 15:36:49 +0000399 return nsr_id, None
garciadeblas4568a372021-03-24 09:19:48 +0100400 except (
401 ValidationError,
402 EngineException,
403 DbException,
404 MsgException,
405 FsException,
406 ) as e:
Frank Bryden3c64ab62020-07-21 14:25:32 +0000407 raise type(e)("{} while '{}'".format(e, step), http_code=e.http_code)
tiernob24258a2018-10-04 18:39:49 +0200408
garciaale7cbd03c2020-11-27 10:38:35 -0300409 def _get_nsd_from_db(self, nsd_id, session):
410 _filter = self._get_project_filter(session)
411 _filter["_id"] = nsd_id
412 return self.db.get_one("nsds", _filter)
413
414 def _get_vnfd_from_db(self, vnfd_id, session):
415 _filter = self._get_project_filter(session)
416 _filter["id"] = vnfd_id
417 vnfd = self.db.get_one("vnfds", _filter, fail_on_empty=True, fail_on_more=True)
garciaale7cbd03c2020-11-27 10:38:35 -0300418 return vnfd
419
420 def _add_nsr_to_db(self, nsr_descriptor, rollback, session):
garciadeblas4568a372021-03-24 09:19:48 +0100421 self.format_on_new(
422 nsr_descriptor, session["project_id"], make_public=session["public"]
423 )
garciaale7cbd03c2020-11-27 10:38:35 -0300424 self.db.create("nsrs", nsr_descriptor)
425 rollback.append({"topic": "nsrs", "_id": nsr_descriptor["id"]})
426
427 def _add_vnfr_to_db(self, vnfr_descriptor, rollback, session):
garciadeblas4568a372021-03-24 09:19:48 +0100428 self.format_on_new(
429 vnfr_descriptor, session["project_id"], make_public=session["public"]
430 )
garciaale7cbd03c2020-11-27 10:38:35 -0300431 self.db.create("vnfrs", vnfr_descriptor)
432 rollback.append({"topic": "vnfrs", "_id": vnfr_descriptor["id"]})
433
434 def _check_nsd_operational_state(self, nsd, ns_request):
435 if nsd["_admin"]["operationalState"] == "DISABLED":
garciadeblas4568a372021-03-24 09:19:48 +0100436 raise EngineException(
437 "nsd with id '{}' is DISABLED, and thus cannot be used to create "
438 "a network service".format(ns_request["nsdId"]),
439 http_code=HTTPStatus.CONFLICT,
440 )
garciaale7cbd03c2020-11-27 10:38:35 -0300441
442 def _get_ns_k8s_namespace(self, nsd, ns_request, session):
garciadeblas4568a372021-03-24 09:19:48 +0100443 additional_params, _ = self._format_additional_params(
444 ns_request, descriptor=nsd
445 )
garciaale7cbd03c2020-11-27 10:38:35 -0300446 # use for k8s-namespace from ns_request or additionalParamsForNs. By default, the project_id
447 ns_k8s_namespace = session["project_id"][0] if session["project_id"] else None
448 if ns_request and ns_request.get("k8s-namespace"):
449 ns_k8s_namespace = ns_request["k8s-namespace"]
450 if additional_params and additional_params.get("k8s-namespace"):
451 ns_k8s_namespace = additional_params["k8s-namespace"]
452
453 return ns_k8s_namespace
454
elumalai0f6994c2022-07-05 17:53:59 +0530455 def _add_flavor_to_nsr(self, vdu, vnfd, nsr_descriptor, member_vnf_index, revision=None):
elumalai6c5ea6b2022-04-25 22:27:59 +0530456 flavor_data = {}
457 guest_epa = {}
458 # Find this vdu compute and storage descriptors
459 vdu_virtual_compute = {}
460 vdu_virtual_storage = {}
461 for vcd in vnfd.get("virtual-compute-desc", ()):
462 if vcd.get("id") == vdu.get("virtual-compute-desc"):
463 vdu_virtual_compute = vcd
464 for vsd in vnfd.get("virtual-storage-desc", ()):
465 if vsd.get("id") == vdu.get("virtual-storage-desc", [[]])[0]:
466 vdu_virtual_storage = vsd
467 # Get this vdu vcpus, memory and storage info for flavor_data
468 if vdu_virtual_compute.get("virtual-cpu", {}).get(
469 "num-virtual-cpu"
470 ):
471 flavor_data["vcpu-count"] = vdu_virtual_compute["virtual-cpu"][
472 "num-virtual-cpu"
473 ]
474 if vdu_virtual_compute.get("virtual-memory", {}).get("size"):
475 flavor_data["memory-mb"] = (
476 float(vdu_virtual_compute["virtual-memory"]["size"])
477 * 1024.0
478 )
479 if vdu_virtual_storage.get("size-of-storage"):
480 flavor_data["storage-gb"] = vdu_virtual_storage[
481 "size-of-storage"
482 ]
483 # Get this vdu EPA info for guest_epa
484 if vdu_virtual_compute.get("virtual-cpu", {}).get("cpu-quota"):
485 guest_epa["cpu-quota"] = vdu_virtual_compute["virtual-cpu"][
486 "cpu-quota"
487 ]
488 if vdu_virtual_compute.get("virtual-cpu", {}).get("pinning"):
489 vcpu_pinning = vdu_virtual_compute["virtual-cpu"]["pinning"]
490 if vcpu_pinning.get("thread-policy"):
491 guest_epa["cpu-thread-pinning-policy"] = vcpu_pinning[
492 "thread-policy"
493 ]
494 if vcpu_pinning.get("policy"):
495 cpu_policy = (
496 "SHARED"
497 if vcpu_pinning["policy"] == "dynamic"
498 else "DEDICATED"
499 )
500 guest_epa["cpu-pinning-policy"] = cpu_policy
501 if vdu_virtual_compute.get("virtual-memory", {}).get("mem-quota"):
502 guest_epa["mem-quota"] = vdu_virtual_compute["virtual-memory"][
503 "mem-quota"
504 ]
505 if vdu_virtual_compute.get("virtual-memory", {}).get(
506 "mempage-size"
507 ):
508 guest_epa["mempage-size"] = vdu_virtual_compute[
509 "virtual-memory"
510 ]["mempage-size"]
511 if vdu_virtual_compute.get("virtual-memory", {}).get(
512 "numa-node-policy"
513 ):
514 guest_epa["numa-node-policy"] = vdu_virtual_compute[
515 "virtual-memory"
516 ]["numa-node-policy"]
517 if vdu_virtual_storage.get("disk-io-quota"):
518 guest_epa["disk-io-quota"] = vdu_virtual_storage[
519 "disk-io-quota"
520 ]
521
522 if guest_epa:
523 flavor_data["guest-epa"] = guest_epa
524
elumalai0f6994c2022-07-05 17:53:59 +0530525 revision = revision if revision is not None else 1
526 flavor_data["name"] = vdu["id"][:56] + "-" + member_vnf_index + "-" + str(revision) + "-flv"
elumalai6c5ea6b2022-04-25 22:27:59 +0530527 flavor_data["id"] = str(len(nsr_descriptor["flavor"]))
528 nsr_descriptor["flavor"].append(flavor_data)
529
bravofe76b8822021-02-26 16:57:52 -0300530 def _create_nsr_descriptor_from_nsd(self, nsd, ns_request, nsr_id, session):
garciaale7cbd03c2020-11-27 10:38:35 -0300531 now = time()
garciadeblas4568a372021-03-24 09:19:48 +0100532 additional_params, _ = self._format_additional_params(
533 ns_request, descriptor=nsd
534 )
garciaale7cbd03c2020-11-27 10:38:35 -0300535
536 nsr_descriptor = {
537 "name": ns_request["nsName"],
538 "name-ref": ns_request["nsName"],
539 "short-name": ns_request["nsName"],
540 "admin-status": "ENABLED",
541 "nsState": "NOT_INSTANTIATED",
542 "currentOperation": "IDLE",
543 "currentOperationID": None,
544 "errorDescription": None,
545 "errorDetail": None,
546 "deploymentStatus": None,
547 "configurationStatus": None,
548 "vcaStatus": None,
549 "nsd": {k: v for k, v in nsd.items()},
550 "datacenter": ns_request["vimAccountId"],
551 "resource-orchestrator": "osmopenmano",
552 "description": ns_request.get("nsDescription", ""),
553 "constituent-vnfr-ref": [],
554 "operational-status": "init", # typedef ns-operational-
555 "config-status": "init", # typedef config-states
556 "detailed-status": "scheduled",
557 "orchestration-progress": {},
558 "create-time": now,
559 "nsd-name-ref": nsd["name"],
560 "operational-events": [], # "id", "timestamp", "description", "event",
561 "nsd-ref": nsd["id"],
562 "nsd-id": nsd["_id"],
563 "vnfd-id": [],
564 "instantiate_params": self._format_ns_request(ns_request),
565 "additionalParamsForNs": additional_params,
566 "ns-instance-config-ref": nsr_id,
567 "id": nsr_id,
568 "_id": nsr_id,
569 "ssh-authorized-key": ns_request.get("ssh_keys"), # TODO remove
570 "flavor": [],
571 "image": [],
Alexis Romero03fb5842022-03-11 15:53:40 +0100572 "affinity-or-anti-affinity-group": [],
garciaale7cbd03c2020-11-27 10:38:35 -0300573 }
beierlmbc5a5242022-05-17 21:25:29 -0400574 if "revision" in nsd["_admin"]:
575 nsr_descriptor["revision"] = nsd["_admin"]["revision"]
576
garciaale7cbd03c2020-11-27 10:38:35 -0300577 ns_request["nsr_id"] = nsr_id
578 if ns_request and ns_request.get("config-units"):
579 nsr_descriptor["config-units"] = ns_request["config-units"]
garciaale7cbd03c2020-11-27 10:38:35 -0300580 # Create vld
581 if nsd.get("virtual-link-desc"):
582 nsr_vld = deepcopy(nsd.get("virtual-link-desc", []))
583 # Fill each vld with vnfd-connection-point-ref data
584 # TODO: Change for multiple df support
585 all_vld_connection_point_data = {vld.get("id"): [] for vld in nsr_vld}
586 vnf_profiles = nsd.get("df", [[]])[0].get("vnf-profile", ())
587 for vnf_profile in vnf_profiles:
588 for vlc in vnf_profile.get("virtual-link-connectivity", ()):
589 for cpd in vlc.get("constituent-cpd-id", ()):
garciadeblas4568a372021-03-24 09:19:48 +0100590 all_vld_connection_point_data[
591 vlc.get("virtual-link-profile-id")
592 ].append(
593 {
594 "member-vnf-index-ref": cpd.get(
595 "constituent-base-element-id"
596 ),
597 "vnfd-connection-point-ref": cpd.get(
598 "constituent-cpd-id"
599 ),
600 "vnfd-id-ref": vnf_profile.get("vnfd-id"),
601 }
602 )
garciaale7cbd03c2020-11-27 10:38:35 -0300603
bravofe76b8822021-02-26 16:57:52 -0300604 vnfd = self._get_vnfd_from_db(vnf_profile.get("vnfd-id"), session)
beierlmcee2ebf2022-03-29 17:42:48 -0400605 vnfd.pop("_admin")
garciaale7cbd03c2020-11-27 10:38:35 -0300606
607 for vdu in vnfd.get("vdu", ()):
elumalai0f6994c2022-07-05 17:53:59 +0530608 member_vnf_index = vnf_profile.get("id")
609 self._add_flavor_to_nsr(vdu, vnfd, nsr_descriptor, member_vnf_index)
garciaale7cbd03c2020-11-27 10:38:35 -0300610 sw_image_id = vdu.get("sw-image-desc")
611 if sw_image_id:
lloretgalleg28c13b62021-02-08 11:48:48 +0000612 image_data = self._get_image_data_from_vnfd(vnfd, sw_image_id)
613 self._add_image_to_nsr(nsr_descriptor, image_data)
614
615 # also add alternative images to the list of images
616 for alt_image in vdu.get("alternative-sw-image-desc", ()):
617 image_data = self._get_image_data_from_vnfd(vnfd, alt_image)
618 self._add_image_to_nsr(nsr_descriptor, image_data)
garciaale7cbd03c2020-11-27 10:38:35 -0300619
Alexis Romero03fb5842022-03-11 15:53:40 +0100620 # Add Affinity or Anti-affinity group information to NSR
621 vdu_profiles = vnfd.get("df", [[]])[0].get("vdu-profile", ())
Alexis Romeroee31f532022-04-26 19:10:21 +0200622 affinity_group_prefix_name = "{}-{}".format(
623 nsr_descriptor["name"][:16], vnf_profile.get("id")[:16]
624 )
Alexis Romero03fb5842022-03-11 15:53:40 +0100625
626 for vdu_profile in vdu_profiles:
Alexis Romeroee31f532022-04-26 19:10:21 +0200627 affinity_group_data = {}
628 for affinity_group in vdu_profile.get(
629 "affinity-or-anti-affinity-group", ()
630 ):
631 affinity_group_data = (
632 self._get_affinity_or_anti_affinity_group_data_from_vnfd(
633 vnfd, affinity_group["id"]
634 )
635 )
636 affinity_group_data["member-vnf-index"] = vnf_profile.get("id")
637 self._add_affinity_or_anti_affinity_group_to_nsr(
638 nsr_descriptor,
639 affinity_group_data,
640 affinity_group_prefix_name,
641 )
Alexis Romero03fb5842022-03-11 15:53:40 +0100642
garciaale7cbd03c2020-11-27 10:38:35 -0300643 for vld in nsr_vld:
garciadeblas4568a372021-03-24 09:19:48 +0100644 vld["vnfd-connection-point-ref"] = all_vld_connection_point_data.get(
645 vld.get("id"), []
646 )
garciaale7cbd03c2020-11-27 10:38:35 -0300647 vld["name"] = vld["id"]
648 nsr_descriptor["vld"] = nsr_vld
649
650 return nsr_descriptor
651
Alexis Romeroee31f532022-04-26 19:10:21 +0200652 def _get_affinity_or_anti_affinity_group_data_from_vnfd(
653 self, vnfd, affinity_group_id
654 ):
Alexis Romero03fb5842022-03-11 15:53:40 +0100655 """
656 Gets affinity-or-anti-affinity-group info from df and returns the desired affinity group
657 """
Alexis Romeroee31f532022-04-26 19:10:21 +0200658 affinity_group = utils.find_in_list(
659 vnfd.get("df", [[]])[0].get("affinity-or-anti-affinity-group", ()),
660 lambda ag: ag["id"] == affinity_group_id,
Alexis Romero03fb5842022-03-11 15:53:40 +0100661 )
Alexis Romeroee31f532022-04-26 19:10:21 +0200662 affinity_group_data = {}
663 if affinity_group:
664 if affinity_group.get("id"):
665 affinity_group_data["ag-id"] = affinity_group["id"]
666 if affinity_group.get("type"):
667 affinity_group_data["type"] = affinity_group["type"]
668 if affinity_group.get("scope"):
669 affinity_group_data["scope"] = affinity_group["scope"]
670 return affinity_group_data
Alexis Romero03fb5842022-03-11 15:53:40 +0100671
Alexis Romeroee31f532022-04-26 19:10:21 +0200672 def _add_affinity_or_anti_affinity_group_to_nsr(
673 self, nsr_descriptor, affinity_group_data, affinity_group_prefix_name
674 ):
Alexis Romero03fb5842022-03-11 15:53:40 +0100675 """
676 Adds affinity-or-anti-affinity-group to nsr checking first it is not already added
677 """
Alexis Romeroee31f532022-04-26 19:10:21 +0200678 affinity_group = next(
Alexis Romero03fb5842022-03-11 15:53:40 +0100679 (
680 f
681 for f in nsr_descriptor["affinity-or-anti-affinity-group"]
Alexis Romeroee31f532022-04-26 19:10:21 +0200682 if all(f.get(k) == affinity_group_data[k] for k in affinity_group_data)
Alexis Romero03fb5842022-03-11 15:53:40 +0100683 ),
684 None,
685 )
Alexis Romeroee31f532022-04-26 19:10:21 +0200686 if not affinity_group:
687 affinity_group_data["id"] = str(
688 len(nsr_descriptor["affinity-or-anti-affinity-group"])
689 )
690 affinity_group_data["name"] = "{}-{}".format(
691 affinity_group_prefix_name, affinity_group_data["ag-id"][:32]
692 )
693 nsr_descriptor["affinity-or-anti-affinity-group"].append(
694 affinity_group_data
695 )
Alexis Romero03fb5842022-03-11 15:53:40 +0100696
lloretgalleg28c13b62021-02-08 11:48:48 +0000697 def _get_image_data_from_vnfd(self, vnfd, sw_image_id):
garciadeblas4568a372021-03-24 09:19:48 +0100698 sw_image_desc = utils.find_in_list(
699 vnfd.get("sw-image-desc", ()), lambda sw: sw["id"] == sw_image_id
700 )
lloretgalleg28c13b62021-02-08 11:48:48 +0000701 image_data = {}
702 if sw_image_desc.get("image"):
703 image_data["image"] = sw_image_desc["image"]
704 if sw_image_desc.get("checksum"):
705 image_data["image_checksum"] = sw_image_desc["checksum"]["hash"]
706 if sw_image_desc.get("vim-type"):
707 image_data["vim-type"] = sw_image_desc["vim-type"]
708 return image_data
709
710 def _add_image_to_nsr(self, nsr_descriptor, image_data):
711 """
712 Adds image to nsr checking first it is not already added
713 """
garciadeblas4568a372021-03-24 09:19:48 +0100714 img = next(
715 (
716 f
717 for f in nsr_descriptor["image"]
718 if all(f.get(k) == image_data[k] for k in image_data)
719 ),
720 None,
721 )
lloretgalleg28c13b62021-02-08 11:48:48 +0000722 if not img:
723 image_data["id"] = str(len(nsr_descriptor["image"]))
724 nsr_descriptor["image"].append(image_data)
725
garciadeblas4568a372021-03-24 09:19:48 +0100726 def _create_vnfr_descriptor_from_vnfd(
727 self,
728 nsd,
729 vnfd,
730 vnfd_id,
731 vnf_index,
732 nsr_descriptor,
733 ns_request,
734 ns_k8s_namespace,
elumalai0f6994c2022-07-05 17:53:59 +0530735 revision=None,
garciadeblas4568a372021-03-24 09:19:48 +0100736 ):
garciaale7cbd03c2020-11-27 10:38:35 -0300737 vnfr_id = str(uuid4())
738 nsr_id = nsr_descriptor["id"]
739 now = time()
garciadeblas4568a372021-03-24 09:19:48 +0100740 additional_params, vnf_params = self._format_additional_params(
741 ns_request, vnf_index, descriptor=vnfd
742 )
garciaale7cbd03c2020-11-27 10:38:35 -0300743
744 vnfr_descriptor = {
745 "id": vnfr_id,
746 "_id": vnfr_id,
747 "nsr-id-ref": nsr_id,
748 "member-vnf-index-ref": vnf_index,
749 "additionalParamsForVnf": additional_params,
750 "created-time": now,
751 # "vnfd": vnfd, # at OSM model.but removed to avoid data duplication TODO: revise
752 "vnfd-ref": vnfd_id,
753 "vnfd-id": vnfd["_id"], # not at OSM model, but useful
754 "vim-account-id": None,
David Garciaecb41322021-03-31 19:10:46 +0200755 "vca-id": None,
garciaale7cbd03c2020-11-27 10:38:35 -0300756 "vdur": [],
757 "connection-point": [],
758 "ip-address": None, # mgmt-interface filled by LCM
759 }
beierlmcee2ebf2022-03-29 17:42:48 -0400760
761 # Revision backwards compatility. Only specify the revision in the record if
762 # the original VNFD has a revision.
763 if "revision" in vnfd:
764 vnfr_descriptor["revision"] = vnfd["revision"]
765
766
garciaale7cbd03c2020-11-27 10:38:35 -0300767 vnf_k8s_namespace = ns_k8s_namespace
768 if vnf_params:
769 if vnf_params.get("k8s-namespace"):
770 vnf_k8s_namespace = vnf_params["k8s-namespace"]
771 if vnf_params.get("config-units"):
772 vnfr_descriptor["config-units"] = vnf_params["config-units"]
773
774 # Create vld
775 if vnfd.get("int-virtual-link-desc"):
776 vnfr_descriptor["vld"] = []
777 for vnfd_vld in vnfd.get("int-virtual-link-desc"):
778 vnfr_descriptor["vld"].append({key: vnfd_vld[key] for key in vnfd_vld})
779
780 for cp in vnfd.get("ext-cpd", ()):
781 vnf_cp = {
782 "name": cp.get("id"),
David Garcia1409c272020-12-02 15:47:46 +0100783 "connection-point-id": cp.get("int-cpd", {}).get("cpd"),
784 "connection-point-vdu-id": cp.get("int-cpd", {}).get("vdu-id"),
garciaale7cbd03c2020-11-27 10:38:35 -0300785 "id": cp.get("id"),
786 # "ip-address", "mac-address" # filled by LCM
787 # vim-id # TODO it would be nice having a vim port id
788 }
789 vnfr_descriptor["connection-point"].append(vnf_cp)
790
791 # Create k8s-cluster information
792 # TODO: Validate if a k8s-cluster net can have more than one ext-cpd ?
793 if vnfd.get("k8s-cluster"):
794 vnfr_descriptor["k8s-cluster"] = vnfd["k8s-cluster"]
795 all_k8s_cluster_nets_cpds = {}
796 for cpd in get_iterable(vnfd.get("ext-cpd")):
797 if cpd.get("k8s-cluster-net"):
garciadeblas4568a372021-03-24 09:19:48 +0100798 all_k8s_cluster_nets_cpds[cpd.get("k8s-cluster-net")] = cpd.get(
799 "id"
800 )
garciaale7cbd03c2020-11-27 10:38:35 -0300801 for net in get_iterable(vnfr_descriptor["k8s-cluster"].get("nets")):
802 if net.get("id") in all_k8s_cluster_nets_cpds:
garciadeblas4568a372021-03-24 09:19:48 +0100803 net["external-connection-point-ref"] = all_k8s_cluster_nets_cpds[
804 net.get("id")
805 ]
garciaale7cbd03c2020-11-27 10:38:35 -0300806
807 # update kdus
garciaale7cbd03c2020-11-27 10:38:35 -0300808 for kdu in get_iterable(vnfd.get("kdu")):
garciadeblas4568a372021-03-24 09:19:48 +0100809 additional_params, kdu_params = self._format_additional_params(
810 ns_request, vnf_index, kdu_name=kdu["name"], descriptor=vnfd
811 )
garciaale7cbd03c2020-11-27 10:38:35 -0300812 kdu_k8s_namespace = vnf_k8s_namespace
813 kdu_model = kdu_params.get("kdu_model") if kdu_params else None
814 if kdu_params and kdu_params.get("k8s-namespace"):
815 kdu_k8s_namespace = kdu_params["k8s-namespace"]
816
romeromonserbfebfc02021-05-28 10:51:35 +0200817 kdu_deployment_name = ""
818 if kdu_params and kdu_params.get("kdu-deployment-name"):
819 kdu_deployment_name = kdu_params.get("kdu-deployment-name")
820
garciaale7cbd03c2020-11-27 10:38:35 -0300821 kdur = {
822 "additionalParams": additional_params,
823 "k8s-namespace": kdu_k8s_namespace,
romeromonserbfebfc02021-05-28 10:51:35 +0200824 "kdu-deployment-name": kdu_deployment_name,
garciadeblas61e0c522020-12-15 10:33:40 +0000825 "kdu-name": kdu["name"],
garciaale7cbd03c2020-11-27 10:38:35 -0300826 # TODO "name": "" Name of the VDU in the VIM
827 "ip-address": None, # mgmt-interface filled by LCM
828 "k8s-cluster": {},
829 }
830 if kdu_params and kdu_params.get("config-units"):
831 kdur["config-units"] = kdu_params["config-units"]
garciadeblas61e0c522020-12-15 10:33:40 +0000832 if kdu.get("helm-version"):
833 kdur["helm-version"] = kdu["helm-version"]
834 for k8s_type in ("helm-chart", "juju-bundle"):
835 if kdu.get(k8s_type):
836 kdur[k8s_type] = kdu_model or kdu[k8s_type]
garciaale7cbd03c2020-11-27 10:38:35 -0300837 if not vnfr_descriptor.get("kdur"):
838 vnfr_descriptor["kdur"] = []
839 vnfr_descriptor["kdur"].append(kdur)
840
841 vnfd_mgmt_cp = vnfd.get("mgmt-cp")
bravof41a52052021-02-17 18:08:01 -0300842
garciaale7cbd03c2020-11-27 10:38:35 -0300843 for vdu in vnfd.get("vdu", ()):
bravoff3c39552021-02-24 17:22:24 -0300844 vdu_mgmt_cp = []
845 try:
garciadeblas4568a372021-03-24 09:19:48 +0100846 configs = vnfd.get("df")[0]["lcm-operations-configuration"][
847 "operate-vnf-op-config"
848 ]["day1-2"]
849 vdu_config = utils.find_in_list(
850 configs, lambda config: config["id"] == vdu["id"]
851 )
bravoff3c39552021-02-24 17:22:24 -0300852 except Exception:
853 vdu_config = None
bravof4ca51522021-04-22 10:03:02 -0400854
855 try:
856 vdu_instantiation_level = utils.find_in_list(
857 vnfd.get("df")[0]["instantiation-level"][0]["vdu-level"],
garciadeblas4568a372021-03-24 09:19:48 +0100858 lambda a_vdu_profile: a_vdu_profile["vdu-id"] == vdu["id"],
bravof4ca51522021-04-22 10:03:02 -0400859 )
860 except Exception:
861 vdu_instantiation_level = None
862
bravoff3c39552021-02-24 17:22:24 -0300863 if vdu_config:
864 external_connection_ee = utils.filter_in_list(
865 vdu_config.get("execution-environment-list", []),
garciadeblas4568a372021-03-24 09:19:48 +0100866 lambda ee: "external-connection-point-ref" in ee,
bravoff3c39552021-02-24 17:22:24 -0300867 )
868 for ee in external_connection_ee:
869 vdu_mgmt_cp.append(ee["external-connection-point-ref"])
870
garciaale7cbd03c2020-11-27 10:38:35 -0300871 additional_params, vdu_params = self._format_additional_params(
garciadeblas4568a372021-03-24 09:19:48 +0100872 ns_request, vnf_index, vdu_id=vdu["id"], descriptor=vnfd
873 )
bravof65e22e52021-11-10 17:58:58 -0300874
875 try:
876 vdu_virtual_storage_descriptors = utils.filter_in_list(
877 vnfd.get("virtual-storage-desc", []),
878 lambda stg_desc: stg_desc["id"] in vdu["virtual-storage-desc"]
879 )
880 except Exception:
881 vdu_virtual_storage_descriptors = []
garciaale7cbd03c2020-11-27 10:38:35 -0300882 vdur = {
883 "vdu-id-ref": vdu["id"],
884 # TODO "name": "" Name of the VDU in the VIM
885 "ip-address": None, # mgmt-interface filled by LCM
886 # "vim-id", "flavor-id", "image-id", "management-ip" # filled by LCM
887 "internal-connection-point": [],
888 "interfaces": [],
889 "additionalParams": additional_params,
garciadeblas4568a372021-03-24 09:19:48 +0100890 "vdu-name": vdu["name"],
bravof65e22e52021-11-10 17:58:58 -0300891 "virtual-storages": vdu_virtual_storage_descriptors
garciaale7cbd03c2020-11-27 10:38:35 -0300892 }
893 if vdu_params and vdu_params.get("config-units"):
894 vdur["config-units"] = vdu_params["config-units"]
895 if deep_get(vdu, ("supplemental-boot-data", "boot-data-drive")):
garciadeblas4568a372021-03-24 09:19:48 +0100896 vdur["boot-data-drive"] = vdu["supplemental-boot-data"][
897 "boot-data-drive"
898 ]
garciaale7cbd03c2020-11-27 10:38:35 -0300899 if vdu.get("pdu-type"):
900 vdur["pdu-type"] = vdu["pdu-type"]
901 vdur["name"] = vdu["pdu-type"]
902 # TODO volumes: name, volume-id
903 for icp in vdu.get("int-cpd", ()):
904 vdu_icp = {
905 "id": icp["id"],
906 "connection-point-id": icp["id"],
907 "name": icp.get("id"),
908 }
bravof35766442021-02-04 14:58:04 -0300909
garciaale7cbd03c2020-11-27 10:38:35 -0300910 vdur["internal-connection-point"].append(vdu_icp)
911
912 for iface in icp.get("virtual-network-interface-requirement", ()):
aticigc9c03392022-06-16 01:39:44 +0300913 # Name, mac-address and interface position is taken from VNFD
914 # and included into VNFR. By this way RO can process this information
915 # while creating the VDU.
Gulsum Aticid1014ca2023-03-28 17:50:48 +0300916 iface_fields = ("name", "mac-address", "position", "ip-address")
garciadeblas4568a372021-03-24 09:19:48 +0100917 vdu_iface = {
918 x: iface[x] for x in iface_fields if iface.get(x) is not None
919 }
garciaale7cbd03c2020-11-27 10:38:35 -0300920
921 vdu_iface["internal-connection-point-ref"] = vdu_icp["id"]
sousaedu003844e2021-03-02 00:19:15 +0100922 if "port-security-enabled" in icp:
garciadeblas4568a372021-03-24 09:19:48 +0100923 vdu_iface["port-security-enabled"] = icp[
924 "port-security-enabled"
925 ]
sousaedu003844e2021-03-02 00:19:15 +0100926
927 if "port-security-disable-strategy" in icp:
garciadeblas4568a372021-03-24 09:19:48 +0100928 vdu_iface["port-security-disable-strategy"] = icp[
929 "port-security-disable-strategy"
930 ]
sousaedu003844e2021-03-02 00:19:15 +0100931
garciaale7cbd03c2020-11-27 10:38:35 -0300932 for ext_cp in vnfd.get("ext-cpd", ()):
933 if not ext_cp.get("int-cpd"):
934 continue
935 if ext_cp["int-cpd"].get("vdu-id") != vdu["id"]:
936 continue
937 if icp["id"] == ext_cp["int-cpd"].get("cpd"):
garciadeblas4568a372021-03-24 09:19:48 +0100938 vdu_iface["external-connection-point-ref"] = ext_cp.get(
939 "id"
940 )
sousaedu003844e2021-03-02 00:19:15 +0100941
942 if "port-security-enabled" in ext_cp:
garciadeblas4568a372021-03-24 09:19:48 +0100943 vdu_iface["port-security-enabled"] = ext_cp[
944 "port-security-enabled"
945 ]
sousaedu003844e2021-03-02 00:19:15 +0100946
947 if "port-security-disable-strategy" in ext_cp:
garciadeblas4568a372021-03-24 09:19:48 +0100948 vdu_iface["port-security-disable-strategy"] = ext_cp[
949 "port-security-disable-strategy"
950 ]
sousaedu003844e2021-03-02 00:19:15 +0100951
garciaale7cbd03c2020-11-27 10:38:35 -0300952 break
953
garciadeblas4568a372021-03-24 09:19:48 +0100954 if (
955 vnfd_mgmt_cp
956 and vdu_iface.get("external-connection-point-ref")
957 == vnfd_mgmt_cp
958 ):
garciaale7cbd03c2020-11-27 10:38:35 -0300959 vdu_iface["mgmt-vnf"] = True
bravoff3c39552021-02-24 17:22:24 -0300960 vdu_iface["mgmt-interface"] = True
961
962 for ecp in vdu_mgmt_cp:
963 if vdu_iface.get("external-connection-point-ref") == ecp:
964 vdu_iface["mgmt-interface"] = True
garciaale7cbd03c2020-11-27 10:38:35 -0300965
966 if iface.get("virtual-interface"):
967 vdu_iface.update(deepcopy(iface["virtual-interface"]))
968
969 # look for network where this interface is connected
970 iface_ext_cp = vdu_iface.get("external-connection-point-ref")
971 if iface_ext_cp:
972 # TODO: Change for multiple df support
973 for df in get_iterable(nsd.get("df")):
974 for vnf_profile in get_iterable(df.get("vnf-profile")):
garciadeblas4568a372021-03-24 09:19:48 +0100975 for vlc_index, vlc in enumerate(
976 get_iterable(
977 vnf_profile.get("virtual-link-connectivity")
978 )
979 ):
980 for cpd in get_iterable(
981 vlc.get("constituent-cpd-id")
982 ):
983 if (
984 cpd.get("constituent-cpd-id")
985 == iface_ext_cp
986 ):
987 vdu_iface["ns-vld-id"] = vlc.get(
988 "virtual-link-profile-id"
989 )
garciadeblas61c95912021-02-12 11:23:50 +0000990 # if iface type is SRIOV or PASSTHROUGH, set pci-interfaces flag to True
garciadeblas4568a372021-03-24 09:19:48 +0100991 if vdu_iface.get("type") in (
992 "SR-IOV",
993 "PCI-PASSTHROUGH",
994 ):
995 nsr_descriptor["vld"][vlc_index][
996 "pci-interfaces"
997 ] = True
garciaale7cbd03c2020-11-27 10:38:35 -0300998 break
999 elif vdu_iface.get("internal-connection-point-ref"):
1000 vdu_iface["vnf-vld-id"] = icp.get("int-virtual-link-desc")
garciadeblas61c95912021-02-12 11:23:50 +00001001 # TODO: store fixed IP address in the record (if it exists in the ICP)
1002 # if iface type is SRIOV or PASSTHROUGH, set pci-interfaces flag to True
1003 if vdu_iface.get("type") in ("SR-IOV", "PCI-PASSTHROUGH"):
garciadeblas4568a372021-03-24 09:19:48 +01001004 ivld_index = utils.find_index_in_list(
1005 vnfd.get("int-virtual-link-desc", ()),
1006 lambda ivld: ivld["id"]
1007 == icp.get("int-virtual-link-desc"),
1008 )
garciadeblas61c95912021-02-12 11:23:50 +00001009 vnfr_descriptor["vld"][ivld_index]["pci-interfaces"] = True
garciaale7cbd03c2020-11-27 10:38:35 -03001010
1011 vdur["interfaces"].append(vdu_iface)
1012
1013 if vdu.get("sw-image-desc"):
1014 sw_image = utils.find_in_list(
1015 vnfd.get("sw-image-desc", ()),
garciadeblas4568a372021-03-24 09:19:48 +01001016 lambda image: image["id"] == vdu.get("sw-image-desc"),
1017 )
garciaale7cbd03c2020-11-27 10:38:35 -03001018 nsr_sw_image_data = utils.find_in_list(
1019 nsr_descriptor["image"],
garciadeblas4568a372021-03-24 09:19:48 +01001020 lambda nsr_image: (nsr_image.get("image") == sw_image.get("image")),
garciaale7cbd03c2020-11-27 10:38:35 -03001021 )
1022 vdur["ns-image-id"] = nsr_sw_image_data["id"]
1023
lloretgalleg28c13b62021-02-08 11:48:48 +00001024 if vdu.get("alternative-sw-image-desc"):
1025 alt_image_ids = []
1026 for alt_image_id in vdu.get("alternative-sw-image-desc", ()):
1027 sw_image = utils.find_in_list(
1028 vnfd.get("sw-image-desc", ()),
garciadeblas4568a372021-03-24 09:19:48 +01001029 lambda image: image["id"] == alt_image_id,
1030 )
lloretgalleg28c13b62021-02-08 11:48:48 +00001031 nsr_sw_image_data = utils.find_in_list(
1032 nsr_descriptor["image"],
garciadeblas4568a372021-03-24 09:19:48 +01001033 lambda nsr_image: (
1034 nsr_image.get("image") == sw_image.get("image")
1035 ),
lloretgalleg28c13b62021-02-08 11:48:48 +00001036 )
1037 alt_image_ids.append(nsr_sw_image_data["id"])
1038 vdur["alt-image-ids"] = alt_image_ids
1039
elumalai0f6994c2022-07-05 17:53:59 +05301040 revision = revision if revision is not None else 1
1041 flavor_data_name = vdu["id"][:56] + "-" + vnf_index + "-" + str(revision) + "-flv"
garciaale7cbd03c2020-11-27 10:38:35 -03001042 nsr_flavor_desc = utils.find_in_list(
1043 nsr_descriptor["flavor"],
garciadeblas4568a372021-03-24 09:19:48 +01001044 lambda flavor: flavor["name"] == flavor_data_name,
1045 )
garciaale7cbd03c2020-11-27 10:38:35 -03001046
1047 if nsr_flavor_desc:
1048 vdur["ns-flavor-id"] = nsr_flavor_desc["id"]
1049
Alexis Romero03fb5842022-03-11 15:53:40 +01001050 # Adding Affinity groups information to vdur
1051 try:
Alexis Romeroee31f532022-04-26 19:10:21 +02001052 vdu_profile_affinity_group = utils.find_in_list(
Alexis Romero03fb5842022-03-11 15:53:40 +01001053 vnfd.get("df")[0]["vdu-profile"],
1054 lambda a_vdu: a_vdu["id"] == vdu["id"],
1055 )
1056 except Exception:
Alexis Romeroee31f532022-04-26 19:10:21 +02001057 vdu_profile_affinity_group = None
Alexis Romero03fb5842022-03-11 15:53:40 +01001058
Alexis Romeroee31f532022-04-26 19:10:21 +02001059 if vdu_profile_affinity_group:
1060 affinity_group_ids = []
1061 for affinity_group in vdu_profile_affinity_group.get(
1062 "affinity-or-anti-affinity-group", ()
1063 ):
1064 vdu_affinity_group = utils.find_in_list(
1065 vdu_profile_affinity_group.get(
1066 "affinity-or-anti-affinity-group", ()
1067 ),
1068 lambda ag_fp: ag_fp["id"] == affinity_group["id"],
Alexis Romero03fb5842022-03-11 15:53:40 +01001069 )
Alexis Romeroee31f532022-04-26 19:10:21 +02001070 nsr_affinity_group = utils.find_in_list(
Alexis Romero03fb5842022-03-11 15:53:40 +01001071 nsr_descriptor["affinity-or-anti-affinity-group"],
1072 lambda nsr_ag: (
Alexis Romeroee31f532022-04-26 19:10:21 +02001073 nsr_ag.get("ag-id") == vdu_affinity_group.get("id")
1074 and nsr_ag.get("member-vnf-index")
1075 == vnfr_descriptor.get("member-vnf-index-ref")
Alexis Romero03fb5842022-03-11 15:53:40 +01001076 ),
1077 )
Alexis Romeroee31f532022-04-26 19:10:21 +02001078 # Update Affinity Group VIM name if VDU instantiation parameter is present
1079 if vnf_params and vnf_params.get("affinity-or-anti-affinity-group"):
1080 vnf_params_affinity_group = utils.find_in_list(
1081 vnf_params["affinity-or-anti-affinity-group"],
1082 lambda vnfp_ag: (
1083 vnfp_ag.get("id") == vdu_affinity_group.get("id")
1084 ),
1085 )
1086 if vnf_params_affinity_group.get("vim-affinity-group-id"):
1087 nsr_affinity_group[
1088 "vim-affinity-group-id"
1089 ] = vnf_params_affinity_group["vim-affinity-group-id"]
1090 affinity_group_ids.append(nsr_affinity_group["id"])
1091 vdur["affinity-or-anti-affinity-group-id"] = affinity_group_ids
Alexis Romero03fb5842022-03-11 15:53:40 +01001092
bravof4ca51522021-04-22 10:03:02 -04001093 if vdu_instantiation_level:
1094 count = vdu_instantiation_level.get("number-of-instances")
1095 else:
1096 count = 1
1097
garciaale7cbd03c2020-11-27 10:38:35 -03001098 for index in range(0, count):
1099 vdur = deepcopy(vdur)
1100 for iface in vdur["interfaces"]:
bravofb7cdee12021-07-01 09:32:30 -04001101 if iface.get("ip-address") and index != 0:
garciaale7cbd03c2020-11-27 10:38:35 -03001102 iface["ip-address"] = increment_ip_mac(iface["ip-address"])
bravofb7cdee12021-07-01 09:32:30 -04001103 if iface.get("mac-address") and index != 0:
garciaale7cbd03c2020-11-27 10:38:35 -03001104 iface["mac-address"] = increment_ip_mac(iface["mac-address"])
1105
1106 vdur["_id"] = str(uuid4())
1107 vdur["id"] = vdur["_id"]
1108 vdur["count-index"] = index
1109 vnfr_descriptor["vdur"].append(vdur)
1110
1111 return vnfr_descriptor
1112
K Sai Kiran57589552021-01-27 21:38:34 +05301113 def vca_status_refresh(self, session, ns_instance_content, filter_q):
1114 """
1115 vcaStatus in ns_instance_content maybe stale, check if it is stale and create lcm op
1116 to refresh vca status by sending message to LCM when it is stale. Ignore otherwise.
1117 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
1118 :param ns_instance_content: ns instance content
1119 :param filter_q: dict: query parameter containing vcaStatus-refresh as true or false
1120 :return: None
1121 """
1122 time_now, time_delta = time(), time() - ns_instance_content["_admin"]["modified"]
1123 force_refresh = isinstance(filter_q, dict) and filter_q.get('vcaStatusRefresh') == 'true'
1124 threshold_reached = time_delta > 120
1125 if force_refresh or threshold_reached:
1126 operation, _id = "vca_status_refresh", ns_instance_content["_id"]
1127 ns_instance_content["_admin"]["modified"] = time_now
1128 self.db.set_one(self.topic, {"_id": _id}, ns_instance_content)
1129 nslcmop_desc = NsLcmOpTopic._create_nslcmop(_id, operation, None)
1130 self.format_on_new(nslcmop_desc, session["project_id"], make_public=session["public"])
1131 nslcmop_desc["_admin"].pop("nsState")
1132 self.msg.write("ns", operation, nslcmop_desc)
1133 return
1134
1135 def show(self, session, _id, filter_q=None, api_req=False):
1136 """
1137 Get complete information on an ns instance.
1138 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
1139 :param _id: string, ns instance id
1140 :param filter_q: dict: query parameter containing vcaStatusRefresh as true or false
1141 :param api_req: True if this call is serving an external API request. False if serving internal request.
1142 :return: dictionary, raise exception if not found.
1143 """
1144 ns_instance_content = super().show(session, _id, api_req)
1145 self.vca_status_refresh(session, ns_instance_content, filter_q)
1146 return ns_instance_content
1147
tierno65ca36d2019-02-12 19:27:52 +01001148 def edit(self, session, _id, indata=None, kwargs=None, content=None):
garciadeblas4568a372021-03-24 09:19:48 +01001149 raise EngineException(
1150 "Method edit called directly", HTTPStatus.INTERNAL_SERVER_ERROR
1151 )
tiernob24258a2018-10-04 18:39:49 +02001152
1153
1154class VnfrTopic(BaseTopic):
1155 topic = "vnfrs"
1156 topic_msg = None
1157
delacruzramo32bab472019-09-13 12:24:22 +02001158 def __init__(self, db, fs, msg, auth):
1159 BaseTopic.__init__(self, db, fs, msg, auth)
tiernob24258a2018-10-04 18:39:49 +02001160
tiernobee3bad2019-12-05 12:26:01 +00001161 def delete(self, session, _id, dry_run=False, not_send_msg=None):
garciadeblas4568a372021-03-24 09:19:48 +01001162 raise EngineException(
1163 "Method delete called directly", HTTPStatus.INTERNAL_SERVER_ERROR
1164 )
tiernob24258a2018-10-04 18:39:49 +02001165
tierno65ca36d2019-02-12 19:27:52 +01001166 def edit(self, session, _id, indata=None, kwargs=None, content=None):
garciadeblas4568a372021-03-24 09:19:48 +01001167 raise EngineException(
1168 "Method edit called directly", HTTPStatus.INTERNAL_SERVER_ERROR
1169 )
tiernob24258a2018-10-04 18:39:49 +02001170
tierno65ca36d2019-02-12 19:27:52 +01001171 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
tiernob24258a2018-10-04 18:39:49 +02001172 # Not used because vnfrs are created and deleted by NsrTopic class directly
garciadeblas4568a372021-03-24 09:19:48 +01001173 raise EngineException(
1174 "Method new called directly", HTTPStatus.INTERNAL_SERVER_ERROR
1175 )
tiernob24258a2018-10-04 18:39:49 +02001176
1177
1178class NsLcmOpTopic(BaseTopic):
1179 topic = "nslcmops"
1180 topic_msg = "ns"
garciadeblas4568a372021-03-24 09:19:48 +01001181 operation_schema = { # mapping between operation and jsonschema to validate
tiernob24258a2018-10-04 18:39:49 +02001182 "instantiate": ns_instantiate,
1183 "action": ns_action,
aticig544a2ae2022-04-05 09:00:17 +03001184 "update": ns_update,
tiernob24258a2018-10-04 18:39:49 +02001185 "scale": ns_scale,
garciadeblas0964edf2022-02-11 00:43:44 +01001186 "heal": ns_heal,
tierno1c38f2f2020-03-24 11:51:39 +00001187 "terminate": ns_terminate,
elumalai8e3806c2022-04-28 17:26:24 +05301188 "migrate": ns_migrate,
govindarajul519da482022-04-29 19:05:22 +05301189 "verticalscale": ns_verticalscale,
tiernob24258a2018-10-04 18:39:49 +02001190 }
1191
delacruzramo32bab472019-09-13 12:24:22 +02001192 def __init__(self, db, fs, msg, auth):
1193 BaseTopic.__init__(self, db, fs, msg, auth)
elumalai6c5ea6b2022-04-25 22:27:59 +05301194 self.nsrtopic = NsrTopic(db, fs, msg, auth)
tiernob24258a2018-10-04 18:39:49 +02001195
tiernob24258a2018-10-04 18:39:49 +02001196 def _check_ns_operation(self, session, nsr, operation, indata):
1197 """
1198 Check that user has enter right parameters for the operation
tierno65ca36d2019-02-12 19:27:52 +01001199 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
garciadeblas0964edf2022-02-11 00:43:44 +01001200 :param operation: it can be: instantiate, terminate, action, update, heal
tiernob24258a2018-10-04 18:39:49 +02001201 :param indata: descriptor with the parameters of the operation
1202 :return: None
1203 """
garciaale7cbd03c2020-11-27 10:38:35 -03001204 if operation == "action":
1205 self._check_action_ns_operation(indata, nsr)
1206 elif operation == "scale":
1207 self._check_scale_ns_operation(indata, nsr)
aticig544a2ae2022-04-05 09:00:17 +03001208 elif operation == "update":
1209 self._check_update_ns_operation(indata, nsr)
garciadeblas0964edf2022-02-11 00:43:44 +01001210 elif operation == "heal":
1211 self._check_heal_ns_operation(indata, nsr)
garciaale7cbd03c2020-11-27 10:38:35 -03001212 elif operation == "instantiate":
1213 self._check_instantiate_ns_operation(indata, nsr, session)
1214
1215 def _check_action_ns_operation(self, indata, nsr):
1216 nsd = nsr["nsd"]
1217 # check vnf_member_index
1218 if indata.get("vnf_member_index"):
garciadeblas4568a372021-03-24 09:19:48 +01001219 indata["member_vnf_index"] = indata.pop(
1220 "vnf_member_index"
1221 ) # for backward compatibility
garciaale7cbd03c2020-11-27 10:38:35 -03001222 if indata.get("member_vnf_index"):
garciadeblas4568a372021-03-24 09:19:48 +01001223 vnfd = self._get_vnfd_from_vnf_member_index(
1224 indata["member_vnf_index"], nsr["_id"]
1225 )
bravof41a52052021-02-17 18:08:01 -03001226 try:
garciadeblas4568a372021-03-24 09:19:48 +01001227 configs = vnfd.get("df")[0]["lcm-operations-configuration"][
1228 "operate-vnf-op-config"
1229 ]["day1-2"]
bravof41a52052021-02-17 18:08:01 -03001230 except Exception:
1231 configs = []
1232
garciaale7cbd03c2020-11-27 10:38:35 -03001233 if indata.get("vdu_id"):
1234 self._check_valid_vdu(vnfd, indata["vdu_id"])
bravof41a52052021-02-17 18:08:01 -03001235 descriptor_configuration = utils.find_in_list(
garciadeblas4568a372021-03-24 09:19:48 +01001236 configs, lambda config: config["id"] == indata["vdu_id"]
limon9b33fa82021-03-17 13:24:00 +01001237 )
garciaale7cbd03c2020-11-27 10:38:35 -03001238 elif indata.get("kdu_name"):
1239 self._check_valid_kdu(vnfd, indata["kdu_name"])
bravof41a52052021-02-17 18:08:01 -03001240 descriptor_configuration = utils.find_in_list(
garciadeblas4568a372021-03-24 09:19:48 +01001241 configs, lambda config: config["id"] == indata.get("kdu_name")
limon9b33fa82021-03-17 13:24:00 +01001242 )
garciaale7cbd03c2020-11-27 10:38:35 -03001243 else:
bravof41a52052021-02-17 18:08:01 -03001244 descriptor_configuration = utils.find_in_list(
garciadeblas4568a372021-03-24 09:19:48 +01001245 configs, lambda config: config["id"] == vnfd["id"]
limon9b33fa82021-03-17 13:24:00 +01001246 )
1247 if descriptor_configuration is not None:
garciadeblas4568a372021-03-24 09:19:48 +01001248 descriptor_configuration = descriptor_configuration.get(
1249 "config-primitive"
1250 )
garciaale7cbd03c2020-11-27 10:38:35 -03001251 else: # use a NSD
garciadeblas4568a372021-03-24 09:19:48 +01001252 descriptor_configuration = nsd.get("ns-configuration", {}).get(
1253 "config-primitive"
1254 )
garciaale7cbd03c2020-11-27 10:38:35 -03001255
1256 # For k8s allows default primitives without validating the parameters
garciadeblas4568a372021-03-24 09:19:48 +01001257 if indata.get("kdu_name") and indata["primitive"] in (
1258 "upgrade",
1259 "rollback",
1260 "status",
1261 "inspect",
1262 "readme",
1263 ):
garciaale7cbd03c2020-11-27 10:38:35 -03001264 # TODO should be checked that rollback only can contains revsision_numbe????
1265 if not indata.get("member_vnf_index"):
garciadeblas4568a372021-03-24 09:19:48 +01001266 raise EngineException(
1267 "Missing action parameter 'member_vnf_index' for default KDU primitive '{}'".format(
1268 indata["primitive"]
1269 )
1270 )
garciaale7cbd03c2020-11-27 10:38:35 -03001271 return
1272 # if not, check primitive
1273 for config_primitive in get_iterable(descriptor_configuration):
1274 if indata["primitive"] == config_primitive["name"]:
1275 # check needed primitive_params are provided
1276 if indata.get("primitive_params"):
1277 in_primitive_params_copy = copy(indata["primitive_params"])
1278 else:
1279 in_primitive_params_copy = {}
1280 for paramd in get_iterable(config_primitive.get("parameter")):
1281 if paramd["name"] in in_primitive_params_copy:
1282 del in_primitive_params_copy[paramd["name"]]
1283 elif not paramd.get("default-value"):
garciadeblas4568a372021-03-24 09:19:48 +01001284 raise EngineException(
1285 "Needed parameter {} not provided for primitive '{}'".format(
1286 paramd["name"], indata["primitive"]
1287 )
1288 )
garciaale7cbd03c2020-11-27 10:38:35 -03001289 # check no extra primitive params are provided
1290 if in_primitive_params_copy:
garciadeblas4568a372021-03-24 09:19:48 +01001291 raise EngineException(
1292 "parameter/s '{}' not present at vnfd /nsd for primitive '{}'".format(
1293 list(in_primitive_params_copy.keys()), indata["primitive"]
1294 )
1295 )
garciaale7cbd03c2020-11-27 10:38:35 -03001296 break
1297 else:
garciadeblas4568a372021-03-24 09:19:48 +01001298 raise EngineException(
1299 "Invalid primitive '{}' is not present at vnfd/nsd".format(
1300 indata["primitive"]
1301 )
1302 )
garciaale7cbd03c2020-11-27 10:38:35 -03001303
aticig544a2ae2022-04-05 09:00:17 +03001304 def _check_update_ns_operation(self, indata, nsr) -> None:
1305 """Validates the ns-update request according to updateType
1306
1307 If updateType is CHANGE_VNFPKG:
1308 - it checks the vnfInstanceId, whether it's available under ns instance
1309 - it checks the vnfdId whether it matches with the vnfd-id in the vnf-record of specified VNF.
1310 Otherwise exception will be raised.
elumalai6380e7c2022-04-28 00:15:59 +05301311 If updateType is REMOVE_VNF:
1312 - it checks if the vnfInstanceId is available in the ns instance
1313 - Otherwise exception will be raised.
aticig544a2ae2022-04-05 09:00:17 +03001314
1315 Args:
1316 indata: includes updateType such as CHANGE_VNFPKG,
1317 nsr: network service record
1318
1319 Raises:
1320 EngineException:
1321 a meaningful error if given update parameters are not proper such as
1322 "Error in validating ns-update request: <ID> does not match
1323 with the vnfd-id of vnfinstance
1324 http_code=HTTPStatus.UNPROCESSABLE_ENTITY"
1325
1326 """
1327 try:
1328 if indata["updateType"] == "CHANGE_VNFPKG":
1329 # vnfInstanceId, nsInstanceId, vnfdId are mandatory
1330 vnf_instance_id = indata["changeVnfPackageData"]["vnfInstanceId"]
1331 ns_instance_id = indata["nsInstanceId"]
1332 vnfd_id_2update = indata["changeVnfPackageData"]["vnfdId"]
1333
1334 if vnf_instance_id not in nsr["constituent-vnfr-ref"]:
1335
1336 raise EngineException(
1337 f"Error in validating ns-update request: vnf {vnf_instance_id} does not "
1338 f"belong to NS {ns_instance_id}",
1339 http_code=HTTPStatus.UNPROCESSABLE_ENTITY,
1340 )
1341
1342 # Getting vnfrs through the ns_instance_id
1343 vnfrs = self.db.get_list("vnfrs", {"nsr-id-ref": ns_instance_id})
1344 constituent_vnfd_id = next(
1345 (
1346 vnfr["vnfd-id"]
1347 for vnfr in vnfrs
1348 if vnfr["id"] == vnf_instance_id
1349 ),
1350 None,
1351 )
1352
1353 # Check the given vnfd-id belongs to given vnf instance
1354 if constituent_vnfd_id and (vnfd_id_2update != constituent_vnfd_id):
1355
1356 raise EngineException(
1357 f"Error in validating ns-update request: vnfd-id {vnfd_id_2update} does not "
1358 f"match with the vnfd-id: {constituent_vnfd_id} of VNF instance: {vnf_instance_id}",
1359 http_code=HTTPStatus.UNPROCESSABLE_ENTITY,
1360 )
1361
1362 # Validating the ns update timeout
1363 if (
1364 indata.get("timeout_ns_update")
1365 and indata["timeout_ns_update"] < 300
1366 ):
1367 raise EngineException(
1368 "Error in validating ns-update request: {} second is not enough "
1369 "to upgrade the VNF instance: {}".format(
1370 indata["timeout_ns_update"], vnf_instance_id
1371 ),
1372 http_code=HTTPStatus.UNPROCESSABLE_ENTITY,
1373 )
elumalai6380e7c2022-04-28 00:15:59 +05301374 elif indata["updateType"] == "REMOVE_VNF":
1375 vnf_instance_id = indata["removeVnfInstanceId"]
1376 ns_instance_id = indata["nsInstanceId"]
1377 if vnf_instance_id not in nsr["constituent-vnfr-ref"]:
1378 raise EngineException(
1379 "Invalid VNF Instance Id. '{}' is not "
1380 "present in the NS '{}'".format(vnf_instance_id, ns_instance_id)
1381 )
aticig544a2ae2022-04-05 09:00:17 +03001382
1383 except (
1384 DbException,
1385 AttributeError,
1386 IndexError,
1387 KeyError,
1388 ValueError,
1389 ) as e:
1390 raise type(e)(
1391 "Ns update request could not be processed with error: {}.".format(e)
1392 )
1393
garciaale7cbd03c2020-11-27 10:38:35 -03001394 def _check_scale_ns_operation(self, indata, nsr):
garciadeblas4568a372021-03-24 09:19:48 +01001395 vnfd = self._get_vnfd_from_vnf_member_index(
1396 indata["scaleVnfData"]["scaleByStepData"]["member-vnf-index"], nsr["_id"]
1397 )
lloretgallegdf9fd612020-12-01 12:51:52 +00001398 for scaling_aspect in get_iterable(vnfd.get("df", ())[0]["scaling-aspect"]):
garciadeblas4568a372021-03-24 09:19:48 +01001399 if (
1400 indata["scaleVnfData"]["scaleByStepData"]["scaling-group-descriptor"]
1401 == scaling_aspect["id"]
1402 ):
garciaale7cbd03c2020-11-27 10:38:35 -03001403 break
1404 else:
garciadeblas4568a372021-03-24 09:19:48 +01001405 raise EngineException(
1406 "Invalid scaleVnfData:scaleByStepData:scaling-group-descriptor '{}' is not "
1407 "present at vnfd:scaling-aspect".format(
1408 indata["scaleVnfData"]["scaleByStepData"][
1409 "scaling-group-descriptor"
1410 ]
1411 )
1412 )
garciaale7cbd03c2020-11-27 10:38:35 -03001413
garciadeblas0964edf2022-02-11 00:43:44 +01001414 def _check_heal_ns_operation(self, indata, nsr):
1415 return
1416
garciaale7cbd03c2020-11-27 10:38:35 -03001417 def _check_instantiate_ns_operation(self, indata, nsr, session):
tierno982da4e2019-09-03 11:51:55 +00001418 vnf_member_index_to_vnfd = {} # map between vnf_member_index to vnf descriptor.
tiernob24258a2018-10-04 18:39:49 +02001419 vim_accounts = []
tierno4f9d4ae2019-03-20 17:24:11 +00001420 wim_accounts = []
tiernob24258a2018-10-04 18:39:49 +02001421 nsd = nsr["nsd"]
garciaale7cbd03c2020-11-27 10:38:35 -03001422 self._check_valid_vim_account(indata["vimAccountId"], vim_accounts, session)
1423 self._check_valid_wim_account(indata.get("wimAccountId"), wim_accounts, session)
1424 for in_vnf in get_iterable(indata.get("vnf")):
1425 member_vnf_index = in_vnf["member-vnf-index"]
tierno982da4e2019-09-03 11:51:55 +00001426 if vnf_member_index_to_vnfd.get(member_vnf_index):
garciaale7cbd03c2020-11-27 10:38:35 -03001427 vnfd = vnf_member_index_to_vnfd[member_vnf_index]
tierno260dd6f2019-09-02 10:48:56 +00001428 else:
garciadeblas4568a372021-03-24 09:19:48 +01001429 vnfd = self._get_vnfd_from_vnf_member_index(
1430 member_vnf_index, nsr["_id"]
1431 )
1432 vnf_member_index_to_vnfd[
1433 member_vnf_index
1434 ] = vnfd # add to cache, avoiding a later look for
garciaale7cbd03c2020-11-27 10:38:35 -03001435 self._check_vnf_instantiation_params(in_vnf, vnfd)
1436 if in_vnf.get("vimAccountId"):
garciadeblas4568a372021-03-24 09:19:48 +01001437 self._check_valid_vim_account(
1438 in_vnf["vimAccountId"], vim_accounts, session
1439 )
tierno260dd6f2019-09-02 10:48:56 +00001440
garciaale7cbd03c2020-11-27 10:38:35 -03001441 for in_vld in get_iterable(indata.get("vld")):
garciadeblas4568a372021-03-24 09:19:48 +01001442 self._check_valid_wim_account(
1443 in_vld.get("wimAccountId"), wim_accounts, session
1444 )
garciaale7cbd03c2020-11-27 10:38:35 -03001445 for vldd in get_iterable(nsd.get("virtual-link-desc")):
1446 if in_vld["name"] == vldd["id"]:
1447 break
tierno9cb7d672019-10-30 12:13:48 +00001448 else:
garciadeblas4568a372021-03-24 09:19:48 +01001449 raise EngineException(
1450 "Invalid parameter vld:name='{}' is not present at nsd:vld".format(
1451 in_vld["name"]
1452 )
1453 )
tierno9cb7d672019-10-30 12:13:48 +00001454
garciaale7cbd03c2020-11-27 10:38:35 -03001455 def _get_vnfd_from_vnf_member_index(self, member_vnf_index, nsr_id):
1456 # Obtain vnf descriptor. The vnfr is used to get the vnfd._id used for this member_vnf_index
garciadeblas4568a372021-03-24 09:19:48 +01001457 vnfr = self.db.get_one(
1458 "vnfrs",
1459 {"nsr-id-ref": nsr_id, "member-vnf-index-ref": member_vnf_index},
1460 fail_on_empty=False,
1461 )
garciaale7cbd03c2020-11-27 10:38:35 -03001462 if not vnfr:
garciadeblas4568a372021-03-24 09:19:48 +01001463 raise EngineException(
1464 "Invalid parameter member_vnf_index='{}' is not one of the "
1465 "nsd:constituent-vnfd".format(member_vnf_index)
1466 )
beierlmcee2ebf2022-03-29 17:42:48 -04001467
1468 ## Backwards compatibility: if there is no revision, get it from the one and only VNFD entry
1469 if "revision" in vnfr:
1470 vnfd_revision = vnfr["vnfd-id"] + ":" + str(vnfr["revision"])
1471 vnfd = self.db.get_one("vnfds_revisions", {"_id": vnfd_revision}, fail_on_empty=False)
1472 else:
1473 vnfd = self.db.get_one("vnfds", {"_id": vnfr["vnfd-id"]}, fail_on_empty=False)
1474
garciaale7cbd03c2020-11-27 10:38:35 -03001475 if not vnfd:
garciadeblas4568a372021-03-24 09:19:48 +01001476 raise EngineException(
1477 "vnfd id={} has been deleted!. Operation cannot be performed".format(
1478 vnfr["vnfd-id"]
1479 )
1480 )
garciaale7cbd03c2020-11-27 10:38:35 -03001481 return vnfd
gcalvino5e72d152018-10-23 11:46:57 +02001482
garciaale7cbd03c2020-11-27 10:38:35 -03001483 def _check_valid_vdu(self, vnfd, vdu_id):
1484 for vdud in get_iterable(vnfd.get("vdu")):
1485 if vdud["id"] == vdu_id:
1486 return vdud
1487 else:
garciadeblas4568a372021-03-24 09:19:48 +01001488 raise EngineException(
1489 "Invalid parameter vdu_id='{}' not present at vnfd:vdu:id".format(
1490 vdu_id
1491 )
1492 )
garciaale7cbd03c2020-11-27 10:38:35 -03001493
1494 def _check_valid_kdu(self, vnfd, kdu_name):
1495 for kdud in get_iterable(vnfd.get("kdu")):
1496 if kdud["name"] == kdu_name:
1497 return kdud
1498 else:
garciadeblas4568a372021-03-24 09:19:48 +01001499 raise EngineException(
1500 "Invalid parameter kdu_name='{}' not present at vnfd:kdu:name".format(
1501 kdu_name
1502 )
1503 )
garciaale7cbd03c2020-11-27 10:38:35 -03001504
1505 def _check_vnf_instantiation_params(self, in_vnf, vnfd):
1506 for in_vdu in get_iterable(in_vnf.get("vdu")):
1507 for vdu in get_iterable(vnfd.get("vdu")):
1508 if in_vdu["id"] == vdu["id"]:
1509 for volume in get_iterable(in_vdu.get("volume")):
1510 for volumed in get_iterable(vdu.get("virtual-storage-desc")):
aticigd7753fc2022-05-18 18:55:23 +03001511 if volumed == volume["name"]:
garciaale7cbd03c2020-11-27 10:38:35 -03001512 break
1513 else:
garciadeblas4568a372021-03-24 09:19:48 +01001514 raise EngineException(
1515 "Invalid parameter vnf[member-vnf-index='{}']:vdu[id='{}']:"
1516 "volume:name='{}' is not present at "
1517 "vnfd:vdu:virtual-storage-desc list".format(
1518 in_vnf["member-vnf-index"],
1519 in_vdu["id"],
1520 volume["id"],
1521 )
1522 )
garciaale7cbd03c2020-11-27 10:38:35 -03001523
1524 vdu_if_names = set()
1525 for cpd in get_iterable(vdu.get("int-cpd")):
garciadeblas4568a372021-03-24 09:19:48 +01001526 for iface in get_iterable(
1527 cpd.get("virtual-network-interface-requirement")
1528 ):
garciaale7cbd03c2020-11-27 10:38:35 -03001529 vdu_if_names.add(iface.get("name"))
1530
aticigd7753fc2022-05-18 18:55:23 +03001531 for in_iface in get_iterable(in_vdu.get("interface")):
garciaale7cbd03c2020-11-27 10:38:35 -03001532 if in_iface["name"] in vdu_if_names:
1533 break
1534 else:
garciadeblas4568a372021-03-24 09:19:48 +01001535 raise EngineException(
1536 "Invalid parameter vnf[member-vnf-index='{}']:vdu[id='{}']:"
1537 "int-cpd[id='{}'] is not present at vnfd:vdu:int-cpd".format(
1538 in_vnf["member-vnf-index"],
1539 in_vdu["id"],
1540 in_iface["name"],
1541 )
1542 )
garciaale7cbd03c2020-11-27 10:38:35 -03001543 break
1544
1545 else:
garciadeblas4568a372021-03-24 09:19:48 +01001546 raise EngineException(
1547 "Invalid parameter vnf[member-vnf-index='{}']:vdu[id='{}'] is not present "
1548 "at vnfd:vdu".format(in_vnf["member-vnf-index"], in_vdu["id"])
1549 )
garciaale7cbd03c2020-11-27 10:38:35 -03001550
garciadeblas4568a372021-03-24 09:19:48 +01001551 vnfd_ivlds_cpds = {
1552 ivld.get("id"): set()
1553 for ivld in get_iterable(vnfd.get("int-virtual-link-desc"))
1554 }
Gulsum Aticid1014ca2023-03-28 17:50:48 +03001555 for vdu in vnfd.get("vdu", {}):
1556 for cpd in vdu.get("int-cpd", {}):
garciaale7cbd03c2020-11-27 10:38:35 -03001557 if cpd.get("int-virtual-link-desc"):
1558 vnfd_ivlds_cpds[cpd.get("int-virtual-link-desc")] = cpd.get("id")
1559
1560 for in_ivld in get_iterable(in_vnf.get("internal-vld")):
1561 if in_ivld.get("name") in vnfd_ivlds_cpds:
1562 for in_icp in get_iterable(in_ivld.get("internal-connection-point")):
1563 if in_icp["id-ref"] in vnfd_ivlds_cpds[in_ivld.get("name")]:
tierno40fbcad2018-10-26 10:58:15 +02001564 break
tiernob24258a2018-10-04 18:39:49 +02001565 else:
garciadeblas4568a372021-03-24 09:19:48 +01001566 raise EngineException(
1567 "Invalid parameter vnf[member-vnf-index='{}']:internal-vld[name"
1568 "='{}']:internal-connection-point[id-ref:'{}'] is not present at "
1569 "vnfd:internal-vld:name/id:internal-connection-point".format(
1570 in_vnf["member-vnf-index"],
1571 in_ivld["name"],
1572 in_icp["id-ref"],
1573 )
1574 )
tiernob24258a2018-10-04 18:39:49 +02001575 else:
garciadeblas4568a372021-03-24 09:19:48 +01001576 raise EngineException(
1577 "Invalid parameter vnf[member-vnf-index='{}']:internal-vld:name='{}'"
1578 " is not present at vnfd '{}'".format(
1579 in_vnf["member-vnf-index"], in_ivld["name"], vnfd["id"]
1580 )
1581 )
tiernob24258a2018-10-04 18:39:49 +02001582
garciaale7cbd03c2020-11-27 10:38:35 -03001583 def _check_valid_vim_account(self, vim_account, vim_accounts, session):
1584 if vim_account in vim_accounts:
1585 return
1586 try:
1587 db_filter = self._get_project_filter(session)
1588 db_filter["_id"] = vim_account
1589 self.db.get_one("vim_accounts", db_filter)
1590 except Exception:
garciadeblas4568a372021-03-24 09:19:48 +01001591 raise EngineException(
1592 "Invalid vimAccountId='{}' not present for the project".format(
1593 vim_account
1594 )
1595 )
garciaale7cbd03c2020-11-27 10:38:35 -03001596 vim_accounts.append(vim_account)
1597
David Garcia98de2982021-10-13 17:14:01 +02001598 def _get_vim_account(self, vim_id: str, session):
1599 try:
1600 db_filter = self._get_project_filter(session)
1601 db_filter["_id"] = vim_id
1602 return self.db.get_one("vim_accounts", db_filter)
1603 except Exception:
1604 raise EngineException(
1605 "Invalid vimAccountId='{}' not present for the project".format(
1606 vim_id
1607 )
1608 )
1609
garciaale7cbd03c2020-11-27 10:38:35 -03001610 def _check_valid_wim_account(self, wim_account, wim_accounts, session):
1611 if not isinstance(wim_account, str):
1612 return
1613 if wim_account in wim_accounts:
1614 return
1615 try:
gifrerenom4f73bd02022-03-07 16:57:25 +00001616 db_filter = self._get_project_filter(session)
garciaale7cbd03c2020-11-27 10:38:35 -03001617 db_filter["_id"] = wim_account
1618 self.db.get_one("wim_accounts", db_filter)
1619 except Exception:
garciadeblas4568a372021-03-24 09:19:48 +01001620 raise EngineException(
1621 "Invalid wimAccountId='{}' not present for the project".format(
1622 wim_account
1623 )
1624 )
garciaale7cbd03c2020-11-27 10:38:35 -03001625 wim_accounts.append(wim_account)
tiernob24258a2018-10-04 18:39:49 +02001626
garciadeblas4568a372021-03-24 09:19:48 +01001627 def _look_for_pdu(
1628 self, session, rollback, vnfr, vim_account, vnfr_update, vnfr_update_rollback
1629 ):
tiernocc103432018-10-19 14:10:35 +02001630 """
tierno36ec8602018-11-02 17:27:11 +01001631 Look for a free PDU in the catalog matching vdur type and interfaces. Fills vnfr.vdur with the interface
1632 (ip_address, ...) information.
1633 Modifies PDU _admin.usageState to 'IN_USE'
tierno65ca36d2019-02-12 19:27:52 +01001634 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
tierno36ec8602018-11-02 17:27:11 +01001635 :param rollback: list with the database modifications to rollback if needed
1636 :param vnfr: vnfr to be updated. It is modified with pdu interface info if pdu is found
1637 :param vim_account: vim_account where this vnfr should be deployed
1638 :param vnfr_update: dictionary filled by this method with changes to be done at database vnfr
1639 :param vnfr_update_rollback: dictionary filled by this method with original content of vnfr in case a rollback
1640 of the changed vnfr is needed
1641
1642 :return: List of PDU interfaces that are connected to an existing VIM network. Each item contains:
1643 "vim-network-name": used at VIM
1644 "name": interface name
1645 "vnf-vld-id": internal VNFD vld where this interface is connected, or
1646 "ns-vld-id": NSD vld where this interface is connected.
1647 NOTE: One, and only one between 'vnf-vld-id' and 'ns-vld-id' contains a value. The other will be None
tiernocc103432018-10-19 14:10:35 +02001648 """
tierno36ec8602018-11-02 17:27:11 +01001649
1650 ifaces_forcing_vim_network = []
tiernocc103432018-10-19 14:10:35 +02001651 for vdur_index, vdur in enumerate(get_iterable(vnfr.get("vdur"))):
1652 if not vdur.get("pdu-type"):
1653 continue
1654 pdu_type = vdur.get("pdu-type")
tierno65ca36d2019-02-12 19:27:52 +01001655 pdu_filter = self._get_project_filter(session)
tierno36ec8602018-11-02 17:27:11 +01001656 pdu_filter["vim_accounts"] = vim_account
tiernocc103432018-10-19 14:10:35 +02001657 pdu_filter["type"] = pdu_type
1658 pdu_filter["_admin.operationalState"] = "ENABLED"
tierno36ec8602018-11-02 17:27:11 +01001659 pdu_filter["_admin.usageState"] = "NOT_IN_USE"
tiernocc103432018-10-19 14:10:35 +02001660 # TODO feature 1417: "shared": True,
1661
1662 available_pdus = self.db.get_list("pdus", pdu_filter)
1663 for pdu in available_pdus:
1664 # step 1 check if this pdu contains needed interfaces:
1665 match_interfaces = True
1666 for vdur_interface in vdur["interfaces"]:
1667 for pdu_interface in pdu["interfaces"]:
1668 if pdu_interface["name"] == vdur_interface["name"]:
1669 # TODO feature 1417: match per mgmt type
1670 break
1671 else: # no interface found for name
1672 match_interfaces = False
1673 break
1674 if match_interfaces:
1675 break
1676 else:
1677 raise EngineException(
tierno36ec8602018-11-02 17:27:11 +01001678 "No PDU of type={} at vim_account={} found for member_vnf_index={}, vdu={} matching interface "
garciadeblas4568a372021-03-24 09:19:48 +01001679 "names".format(
1680 pdu_type,
1681 vim_account,
1682 vnfr["member-vnf-index-ref"],
1683 vdur["vdu-id-ref"],
1684 )
1685 )
tiernocc103432018-10-19 14:10:35 +02001686
1687 # step 2. Update pdu
1688 rollback_pdu = {
1689 "_admin.usageState": pdu["_admin"]["usageState"],
1690 "_admin.usage.vnfr_id": None,
1691 "_admin.usage.nsr_id": None,
1692 "_admin.usage.vdur": None,
1693 }
garciadeblas4568a372021-03-24 09:19:48 +01001694 self.db.set_one(
1695 "pdus",
1696 {"_id": pdu["_id"]},
1697 {
1698 "_admin.usageState": "IN_USE",
1699 "_admin.usage": {
1700 "vnfr_id": vnfr["_id"],
1701 "nsr_id": vnfr["nsr-id-ref"],
1702 "vdur": vdur["vdu-id-ref"],
1703 },
1704 },
1705 )
1706 rollback.append(
1707 {
1708 "topic": "pdus",
1709 "_id": pdu["_id"],
1710 "operation": "set",
1711 "content": rollback_pdu,
1712 }
1713 )
tiernocc103432018-10-19 14:10:35 +02001714
1715 # step 3. Fill vnfr info by filling vdur
1716 vdu_text = "vdur.{}".format(vdur_index)
tierno36ec8602018-11-02 17:27:11 +01001717 vnfr_update_rollback[vdu_text + ".pdu-id"] = None
tiernocc103432018-10-19 14:10:35 +02001718 vnfr_update[vdu_text + ".pdu-id"] = pdu["_id"]
1719 for iface_index, vdur_interface in enumerate(vdur["interfaces"]):
1720 for pdu_interface in pdu["interfaces"]:
1721 if pdu_interface["name"] == vdur_interface["name"]:
1722 iface_text = vdu_text + ".interfaces.{}".format(iface_index)
1723 for k, v in pdu_interface.items():
garciadeblas4568a372021-03-24 09:19:48 +01001724 if k in (
1725 "ip-address",
1726 "mac-address",
1727 ): # TODO: switch-xxxxx must be inserted
tierno36ec8602018-11-02 17:27:11 +01001728 vnfr_update[iface_text + ".{}".format(k)] = v
garciadeblas4568a372021-03-24 09:19:48 +01001729 vnfr_update_rollback[
1730 iface_text + ".{}".format(k)
1731 ] = vdur_interface.get(v)
tierno36ec8602018-11-02 17:27:11 +01001732 if pdu_interface.get("ip-address"):
garciadeblas4568a372021-03-24 09:19:48 +01001733 if vdur_interface.get(
1734 "mgmt-interface"
1735 ) or vdur_interface.get("mgmt-vnf"):
1736 vnfr_update_rollback[
1737 vdu_text + ".ip-address"
1738 ] = vdur.get("ip-address")
1739 vnfr_update[vdu_text + ".ip-address"] = pdu_interface[
1740 "ip-address"
1741 ]
tierno36ec8602018-11-02 17:27:11 +01001742 if vdur_interface.get("mgmt-vnf"):
garciadeblas4568a372021-03-24 09:19:48 +01001743 vnfr_update_rollback["ip-address"] = vnfr.get(
1744 "ip-address"
1745 )
tierno36ec8602018-11-02 17:27:11 +01001746 vnfr_update["ip-address"] = pdu_interface["ip-address"]
garciadeblas4568a372021-03-24 09:19:48 +01001747 vnfr_update[vdu_text + ".ip-address"] = pdu_interface[
1748 "ip-address"
1749 ]
1750 if pdu_interface.get("vim-network-name") or pdu_interface.get(
1751 "vim-network-id"
1752 ):
1753 ifaces_forcing_vim_network.append(
1754 {
1755 "name": vdur_interface.get("vnf-vld-id")
1756 or vdur_interface.get("ns-vld-id"),
1757 "vnf-vld-id": vdur_interface.get("vnf-vld-id"),
1758 "ns-vld-id": vdur_interface.get("ns-vld-id"),
1759 }
1760 )
gcalvino17d5b732018-12-17 16:26:21 +01001761 if pdu_interface.get("vim-network-id"):
garciadeblas4568a372021-03-24 09:19:48 +01001762 ifaces_forcing_vim_network[-1][
1763 "vim-network-id"
1764 ] = pdu_interface["vim-network-id"]
gcalvino17d5b732018-12-17 16:26:21 +01001765 if pdu_interface.get("vim-network-name"):
garciadeblas4568a372021-03-24 09:19:48 +01001766 ifaces_forcing_vim_network[-1][
1767 "vim-network-name"
1768 ] = pdu_interface["vim-network-name"]
tiernocc103432018-10-19 14:10:35 +02001769 break
1770
tierno36ec8602018-11-02 17:27:11 +01001771 return ifaces_forcing_vim_network
tiernocc103432018-10-19 14:10:35 +02001772
garciadeblas4568a372021-03-24 09:19:48 +01001773 def _look_for_k8scluster(
1774 self, session, rollback, vnfr, vim_account, vnfr_update, vnfr_update_rollback
1775 ):
tierno9cb7d672019-10-30 12:13:48 +00001776 """
1777 Look for an available k8scluster for all the kuds in the vnfd matching version and cni requirements.
1778 Fills vnfr.kdur with the selected k8scluster
1779
1780 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
1781 :param rollback: list with the database modifications to rollback if needed
1782 :param vnfr: vnfr to be updated. It is modified with pdu interface info if pdu is found
1783 :param vim_account: vim_account where this vnfr should be deployed
1784 :param vnfr_update: dictionary filled by this method with changes to be done at database vnfr
1785 :param vnfr_update_rollback: dictionary filled by this method with original content of vnfr in case a rollback
1786 of the changed vnfr is needed
1787
1788 :return: List of KDU interfaces that are connected to an existing VIM network. Each item contains:
1789 "vim-network-name": used at VIM
1790 "name": interface name
1791 "vnf-vld-id": internal VNFD vld where this interface is connected, or
1792 "ns-vld-id": NSD vld where this interface is connected.
1793 NOTE: One, and only one between 'vnf-vld-id' and 'ns-vld-id' contains a value. The other will be None
1794 """
1795
1796 ifaces_forcing_vim_network = []
tiernoc67b0e92019-11-05 12:45:29 +00001797 if not vnfr.get("kdur"):
1798 return ifaces_forcing_vim_network
tierno9cb7d672019-10-30 12:13:48 +00001799
tiernoc67b0e92019-11-05 12:45:29 +00001800 kdu_filter = self._get_project_filter(session)
1801 kdu_filter["vim_account"] = vim_account
1802 # TODO kdu_filter["_admin.operationalState"] = "ENABLED"
1803 available_k8sclusters = self.db.get_list("k8sclusters", kdu_filter)
1804
1805 k8s_requirements = {} # just for logging
1806 for k8scluster in available_k8sclusters:
1807 if not vnfr.get("k8s-cluster"):
tierno9cb7d672019-10-30 12:13:48 +00001808 break
tiernoc67b0e92019-11-05 12:45:29 +00001809 # restrict by cni
1810 if vnfr["k8s-cluster"].get("cni"):
1811 k8s_requirements["cni"] = vnfr["k8s-cluster"]["cni"]
garciadeblas4568a372021-03-24 09:19:48 +01001812 if not set(vnfr["k8s-cluster"]["cni"]).intersection(
1813 k8scluster.get("cni", ())
1814 ):
tiernoc67b0e92019-11-05 12:45:29 +00001815 continue
1816 # restrict by version
1817 if vnfr["k8s-cluster"].get("version"):
1818 k8s_requirements["version"] = vnfr["k8s-cluster"]["version"]
1819 if k8scluster.get("k8s_version") not in vnfr["k8s-cluster"]["version"]:
1820 continue
1821 # restrict by number of networks
1822 if vnfr["k8s-cluster"].get("nets"):
1823 k8s_requirements["networks"] = len(vnfr["k8s-cluster"]["nets"])
garciadeblas4568a372021-03-24 09:19:48 +01001824 if not k8scluster.get("nets") or len(k8scluster["nets"]) < len(
1825 vnfr["k8s-cluster"]["nets"]
1826 ):
tiernoc67b0e92019-11-05 12:45:29 +00001827 continue
1828 break
1829 else:
garciadeblas4568a372021-03-24 09:19:48 +01001830 raise EngineException(
1831 "No k8scluster with requirements='{}' at vim_account={} found for member_vnf_index={}".format(
1832 k8s_requirements, vim_account, vnfr["member-vnf-index-ref"]
1833 )
1834 )
tierno9cb7d672019-10-30 12:13:48 +00001835
tiernoc67b0e92019-11-05 12:45:29 +00001836 for kdur_index, kdur in enumerate(get_iterable(vnfr.get("kdur"))):
tierno9cb7d672019-10-30 12:13:48 +00001837 # step 3. Fill vnfr info by filling kdur
1838 kdu_text = "kdur.{}.".format(kdur_index)
1839 vnfr_update_rollback[kdu_text + "k8s-cluster.id"] = None
1840 vnfr_update[kdu_text + "k8s-cluster.id"] = k8scluster["_id"]
1841
tiernoc67b0e92019-11-05 12:45:29 +00001842 # step 4. Check VIM networks that forces the selected k8s_cluster
1843 if vnfr.get("k8s-cluster") and vnfr["k8s-cluster"].get("nets"):
1844 k8scluster_net_list = list(k8scluster.get("nets").keys())
1845 for net_index, kdur_net in enumerate(vnfr["k8s-cluster"]["nets"]):
1846 # get a network from k8s_cluster nets. If name matches use this, if not use other
1847 if kdur_net["id"] in k8scluster_net_list: # name matches
1848 vim_net = k8scluster["nets"][kdur_net["id"]]
1849 k8scluster_net_list.remove(kdur_net["id"])
1850 else:
1851 vim_net = k8scluster["nets"][k8scluster_net_list[0]]
1852 k8scluster_net_list.pop(0)
garciadeblas4568a372021-03-24 09:19:48 +01001853 vnfr_update_rollback[
1854 "k8s-cluster.nets.{}.vim_net".format(net_index)
1855 ] = None
tiernoc67b0e92019-11-05 12:45:29 +00001856 vnfr_update["k8s-cluster.nets.{}.vim_net".format(net_index)] = vim_net
garciadeblas4568a372021-03-24 09:19:48 +01001857 if vim_net and (
1858 kdur_net.get("vnf-vld-id") or kdur_net.get("ns-vld-id")
1859 ):
1860 ifaces_forcing_vim_network.append(
1861 {
1862 "name": kdur_net.get("vnf-vld-id")
1863 or kdur_net.get("ns-vld-id"),
1864 "vnf-vld-id": kdur_net.get("vnf-vld-id"),
1865 "ns-vld-id": kdur_net.get("ns-vld-id"),
1866 "vim-network-name": vim_net, # TODO can it be vim-network-id ???
1867 }
1868 )
tiernoc67b0e92019-11-05 12:45:29 +00001869 # TODO check that this forcing is not incompatible with other forcing
tierno9cb7d672019-10-30 12:13:48 +00001870 return ifaces_forcing_vim_network
1871
Gulsum Aticie395aa42021-11-10 20:59:06 +03001872 def _update_vnfrs_from_nsd(self, nsr):
1873 try:
1874 nsr_id = nsr["_id"]
1875 nsd = nsr["nsd"]
1876
1877 step = "Getting vnf_profiles from nsd"
1878 vnf_profiles = nsd.get("df", [{}])[0].get("vnf-profile", ())
1879 vld_fixed_ip_connection_point_data = {}
1880
1881 step = "Getting ip-address info from vnf_profile if it exists"
1882 for vnfp in vnf_profiles:
1883 # Checking ip-address info from nsd.vnf_profile and storing
1884 for vlc in vnfp.get("virtual-link-connectivity", ()):
1885 for cpd in vlc.get("constituent-cpd-id", ()):
1886 if cpd.get("ip-address"):
1887 step = "Storing ip-address info"
1888 vld_fixed_ip_connection_point_data.update({vlc.get("virtual-link-profile-id") + '.' + cpd.get("constituent-base-element-id"): {
1889 "vnfd-connection-point-ref": cpd.get(
1890 "constituent-cpd-id"),
1891 "ip-address": cpd.get(
1892 "ip-address")}})
1893
1894 # Inserting ip address to vnfr
1895 if len(vld_fixed_ip_connection_point_data) > 0:
1896 step = "Getting vnfrs"
1897 vnfrs = self.db.get_list("vnfrs", {"nsr-id-ref": nsr_id})
1898 for item in vld_fixed_ip_connection_point_data.keys():
1899 step = "Filtering vnfrs"
1900 vnfr = next(filter(lambda vnfr: vnfr["member-vnf-index-ref"] == item.split('.')[1], vnfrs), None)
1901 if vnfr:
1902 vnfr_update = {}
1903 for vdur_index, vdur in enumerate(vnfr["vdur"]):
1904 for iface_index, iface in enumerate(vdur["interfaces"]):
1905 step = "Looking for matched interface"
1906 if (
1907 iface.get("external-connection-point-ref")
1908 == vld_fixed_ip_connection_point_data[item].get("vnfd-connection-point-ref") and
1909 iface.get("ns-vld-id") == item.split('.')[0]
1910
1911 ):
1912 vnfr_update_text = "vdur.{}.interfaces.{}".format(
1913 vdur_index, iface_index
1914 )
1915 step = "Storing info in order to update vnfr"
1916 vnfr_update[
1917 vnfr_update_text + ".ip-address"
1918 ] = increment_ip_mac(
1919 vld_fixed_ip_connection_point_data[item].get("ip-address"),
1920 vdur.get("count-index", 0), )
1921 vnfr_update[vnfr_update_text + ".fixed-ip"] = True
1922
1923 step = "updating vnfr at database"
1924 self.db.set_one("vnfrs", {"_id": vnfr["_id"]}, vnfr_update)
1925 except (
1926 ValidationError,
1927 EngineException,
1928 DbException,
1929 MsgException,
1930 FsException,
1931 ) as e:
1932 raise type(e)("{} while '{}'".format(e, step), http_code=e.http_code)
1933
tiernocc103432018-10-19 14:10:35 +02001934 def _update_vnfrs(self, session, rollback, nsr, indata):
tiernocc103432018-10-19 14:10:35 +02001935 # get vnfr
1936 nsr_id = nsr["_id"]
1937 vnfrs = self.db.get_list("vnfrs", {"nsr-id-ref": nsr_id})
1938
1939 for vnfr in vnfrs:
1940 vnfr_update = {}
1941 vnfr_update_rollback = {}
1942 member_vnf_index = vnfr["member-vnf-index-ref"]
1943 # update vim-account-id
1944
1945 vim_account = indata["vimAccountId"]
David Garcia98de2982021-10-13 17:14:01 +02001946 vca_id = self._get_vim_account(vim_account, session).get("vca")
tiernocc103432018-10-19 14:10:35 +02001947 # check instantiate parameters
1948 for vnf_inst_params in get_iterable(indata.get("vnf")):
1949 if vnf_inst_params["member-vnf-index"] != member_vnf_index:
1950 continue
1951 if vnf_inst_params.get("vimAccountId"):
1952 vim_account = vnf_inst_params.get("vimAccountId")
David Garcia98de2982021-10-13 17:14:01 +02001953 vca_id = self._get_vim_account(vim_account, session).get("vca")
tiernocc103432018-10-19 14:10:35 +02001954
tiernocddb07d2020-10-06 08:28:00 +00001955 # get vnf.vdu.interface instantiation params to update vnfr.vdur.interfaces ip, mac
1956 for vdu_inst_param in get_iterable(vnf_inst_params.get("vdu")):
1957 for vdur_index, vdur in enumerate(vnfr["vdur"]):
1958 if vdu_inst_param["id"] != vdur["vdu-id-ref"]:
1959 continue
garciadeblas4568a372021-03-24 09:19:48 +01001960 for iface_inst_param in get_iterable(
1961 vdu_inst_param.get("interface")
1962 ):
1963 iface_index, _ = next(
1964 i
1965 for i in enumerate(vdur["interfaces"])
1966 if i[1]["name"] == iface_inst_param["name"]
1967 )
1968 vnfr_update_text = "vdur.{}.interfaces.{}".format(
1969 vdur_index, iface_index
1970 )
tiernocddb07d2020-10-06 08:28:00 +00001971 if iface_inst_param.get("ip-address"):
garciadeblas4568a372021-03-24 09:19:48 +01001972 vnfr_update[
1973 vnfr_update_text + ".ip-address"
1974 ] = increment_ip_mac(
1975 iface_inst_param.get("ip-address"),
1976 vdur.get("count-index", 0),
1977 )
tierno1bd9d952020-11-13 15:56:51 +00001978 vnfr_update[vnfr_update_text + ".fixed-ip"] = True
tiernocddb07d2020-10-06 08:28:00 +00001979 if iface_inst_param.get("mac-address"):
garciadeblas4568a372021-03-24 09:19:48 +01001980 vnfr_update[
1981 vnfr_update_text + ".mac-address"
1982 ] = increment_ip_mac(
1983 iface_inst_param.get("mac-address"),
1984 vdur.get("count-index", 0),
1985 )
tierno1bd9d952020-11-13 15:56:51 +00001986 vnfr_update[vnfr_update_text + ".fixed-mac"] = True
bravofe4254fd2021-02-03 15:22:06 -03001987 if iface_inst_param.get("floating-ip-required"):
garciadeblas4568a372021-03-24 09:19:48 +01001988 vnfr_update[
1989 vnfr_update_text + ".floating-ip-required"
1990 ] = True
tiernocddb07d2020-10-06 08:28:00 +00001991 # get vnf.internal-vld.internal-conection-point instantiation params to update vnfr.vdur.interfaces
1992 # TODO update vld with the ip-profile
garciadeblas4568a372021-03-24 09:19:48 +01001993 for ivld_inst_param in get_iterable(
1994 vnf_inst_params.get("internal-vld")
1995 ):
1996 for icp_inst_param in get_iterable(
1997 ivld_inst_param.get("internal-connection-point")
1998 ):
tiernocddb07d2020-10-06 08:28:00 +00001999 # look for iface
2000 for vdur_index, vdur in enumerate(vnfr["vdur"]):
2001 for iface_index, iface in enumerate(vdur["interfaces"]):
garciadeblas4568a372021-03-24 09:19:48 +01002002 if (
2003 iface.get("internal-connection-point-ref")
2004 == icp_inst_param["id-ref"]
2005 ):
2006 vnfr_update_text = "vdur.{}.interfaces.{}".format(
2007 vdur_index, iface_index
2008 )
tiernocddb07d2020-10-06 08:28:00 +00002009 if icp_inst_param.get("ip-address"):
garciadeblas4568a372021-03-24 09:19:48 +01002010 vnfr_update[
2011 vnfr_update_text + ".ip-address"
2012 ] = increment_ip_mac(
2013 icp_inst_param.get("ip-address"),
2014 vdur.get("count-index", 0),
2015 )
2016 vnfr_update[
2017 vnfr_update_text + ".fixed-ip"
2018 ] = True
tiernocddb07d2020-10-06 08:28:00 +00002019 if icp_inst_param.get("mac-address"):
garciadeblas4568a372021-03-24 09:19:48 +01002020 vnfr_update[
2021 vnfr_update_text + ".mac-address"
2022 ] = increment_ip_mac(
2023 icp_inst_param.get("mac-address"),
2024 vdur.get("count-index", 0),
2025 )
2026 vnfr_update[
2027 vnfr_update_text + ".fixed-mac"
2028 ] = True
tiernocddb07d2020-10-06 08:28:00 +00002029 break
2030 # get ip address from instantiation parameters.vld.vnfd-connection-point-ref
2031 for vld_inst_param in get_iterable(indata.get("vld")):
garciadeblas4568a372021-03-24 09:19:48 +01002032 for vnfcp_inst_param in get_iterable(
2033 vld_inst_param.get("vnfd-connection-point-ref")
2034 ):
tiernocddb07d2020-10-06 08:28:00 +00002035 if vnfcp_inst_param["member-vnf-index-ref"] != member_vnf_index:
2036 continue
2037 # look for iface
2038 for vdur_index, vdur in enumerate(vnfr["vdur"]):
2039 for iface_index, iface in enumerate(vdur["interfaces"]):
garciadeblas4568a372021-03-24 09:19:48 +01002040 if (
2041 iface.get("external-connection-point-ref")
2042 == vnfcp_inst_param["vnfd-connection-point-ref"]
2043 ):
2044 vnfr_update_text = "vdur.{}.interfaces.{}".format(
2045 vdur_index, iface_index
2046 )
tiernocddb07d2020-10-06 08:28:00 +00002047 if vnfcp_inst_param.get("ip-address"):
garciadeblas4568a372021-03-24 09:19:48 +01002048 vnfr_update[
2049 vnfr_update_text + ".ip-address"
2050 ] = increment_ip_mac(
2051 vnfcp_inst_param.get("ip-address"),
2052 vdur.get("count-index", 0),
2053 )
tierno1bd9d952020-11-13 15:56:51 +00002054 vnfr_update[vnfr_update_text + ".fixed-ip"] = True
tiernocddb07d2020-10-06 08:28:00 +00002055 if vnfcp_inst_param.get("mac-address"):
garciadeblas4568a372021-03-24 09:19:48 +01002056 vnfr_update[
2057 vnfr_update_text + ".mac-address"
2058 ] = increment_ip_mac(
2059 vnfcp_inst_param.get("mac-address"),
2060 vdur.get("count-index", 0),
2061 )
tierno1bd9d952020-11-13 15:56:51 +00002062 vnfr_update[vnfr_update_text + ".fixed-mac"] = True
tiernocddb07d2020-10-06 08:28:00 +00002063 break
2064
tiernocc103432018-10-19 14:10:35 +02002065 vnfr_update["vim-account-id"] = vim_account
2066 vnfr_update_rollback["vim-account-id"] = vnfr.get("vim-account-id")
2067
David Garciaecb41322021-03-31 19:10:46 +02002068 if vca_id:
2069 vnfr_update["vca-id"] = vca_id
2070 vnfr_update_rollback["vca-id"] = vnfr.get("vca-id")
2071
tiernocc103432018-10-19 14:10:35 +02002072 # get pdu
garciadeblas4568a372021-03-24 09:19:48 +01002073 ifaces_forcing_vim_network = self._look_for_pdu(
2074 session, rollback, vnfr, vim_account, vnfr_update, vnfr_update_rollback
2075 )
tiernocc103432018-10-19 14:10:35 +02002076
tierno9cb7d672019-10-30 12:13:48 +00002077 # get kdus
garciadeblas4568a372021-03-24 09:19:48 +01002078 ifaces_forcing_vim_network += self._look_for_k8scluster(
2079 session, rollback, vnfr, vim_account, vnfr_update, vnfr_update_rollback
2080 )
tierno9cb7d672019-10-30 12:13:48 +00002081 # update database vnfr
tierno36ec8602018-11-02 17:27:11 +01002082 self.db.set_one("vnfrs", {"_id": vnfr["_id"]}, vnfr_update)
garciadeblas4568a372021-03-24 09:19:48 +01002083 rollback.append(
2084 {
2085 "topic": "vnfrs",
2086 "_id": vnfr["_id"],
2087 "operation": "set",
2088 "content": vnfr_update_rollback,
2089 }
2090 )
tierno36ec8602018-11-02 17:27:11 +01002091
2092 # Update indada in case pdu forces to use a concrete vim-network-name
2093 # TODO check if user has already insert a vim-network-name and raises an error
2094 if not ifaces_forcing_vim_network:
2095 continue
2096 for iface_info in ifaces_forcing_vim_network:
2097 if iface_info.get("ns-vld-id"):
2098 if "vld" not in indata:
2099 indata["vld"] = []
garciadeblas4568a372021-03-24 09:19:48 +01002100 indata["vld"].append(
2101 {
2102 key: iface_info[key]
2103 for key in ("name", "vim-network-name", "vim-network-id")
2104 if iface_info.get(key)
2105 }
2106 )
tierno36ec8602018-11-02 17:27:11 +01002107
2108 elif iface_info.get("vnf-vld-id"):
2109 if "vnf" not in indata:
2110 indata["vnf"] = []
garciadeblas4568a372021-03-24 09:19:48 +01002111 indata["vnf"].append(
2112 {
2113 "member-vnf-index": member_vnf_index,
2114 "internal-vld": [
2115 {
2116 key: iface_info[key]
2117 for key in (
2118 "name",
2119 "vim-network-name",
2120 "vim-network-id",
2121 )
2122 if iface_info.get(key)
2123 }
2124 ],
2125 }
2126 )
tierno36ec8602018-11-02 17:27:11 +01002127
2128 @staticmethod
2129 def _create_nslcmop(nsr_id, operation, params):
2130 """
2131 Creates a ns-lcm-opp content to be stored at database.
2132 :param nsr_id: internal id of the instance
aticig544a2ae2022-04-05 09:00:17 +03002133 :param operation: instantiate, terminate, scale, action, update ...
tierno36ec8602018-11-02 17:27:11 +01002134 :param params: user parameters for the operation
2135 :return: dictionary following SOL005 format
2136 """
tiernob24258a2018-10-04 18:39:49 +02002137 now = time()
2138 _id = str(uuid4())
2139 nslcmop = {
2140 "id": _id,
2141 "_id": _id,
2142 "operationState": "PROCESSING", # COMPLETED,PARTIALLY_COMPLETED,FAILED_TEMP,FAILED,ROLLING_BACK,ROLLED_BACK
tiernoecf94bd2020-01-09 12:40:45 +00002143 "queuePosition": None,
2144 "stage": None,
2145 "errorMessage": None,
2146 "detailedStatus": None,
tiernob24258a2018-10-04 18:39:49 +02002147 "statusEnteredTime": now,
tierno36ec8602018-11-02 17:27:11 +01002148 "nsInstanceId": nsr_id,
tiernob24258a2018-10-04 18:39:49 +02002149 "lcmOperationType": operation,
2150 "startTime": now,
2151 "isAutomaticInvocation": False,
2152 "operationParams": params,
2153 "isCancelPending": False,
2154 "links": {
2155 "self": "/osm/nslcm/v1/ns_lcm_op_occs/" + _id,
tierno36ec8602018-11-02 17:27:11 +01002156 "nsInstance": "/osm/nslcm/v1/ns_instances/" + nsr_id,
garciadeblas4568a372021-03-24 09:19:48 +01002157 },
tiernob24258a2018-10-04 18:39:49 +02002158 }
2159 return nslcmop
2160
magnussonlf318b302020-01-20 18:38:18 +01002161 def _get_enabled_vims(self, session):
2162 """
2163 Retrieve and return VIM accounts that are accessible by current user and has state ENABLE
2164 :param session: current session with user information
2165 """
2166 db_filter = self._get_project_filter(session)
2167 db_filter["_admin.operationalState"] = "ENABLED"
2168 vims = self.db.get_list("vim_accounts", db_filter)
2169 vimAccounts = []
2170 for vim in vims:
garciadeblas4568a372021-03-24 09:19:48 +01002171 vimAccounts.append(vim["_id"])
magnussonlf318b302020-01-20 18:38:18 +01002172 return vimAccounts
2173
garciadeblas4568a372021-03-24 09:19:48 +01002174 def new(
2175 self,
2176 rollback,
2177 session,
2178 indata=None,
2179 kwargs=None,
2180 headers=None,
2181 slice_object=False,
2182 ):
tiernob24258a2018-10-04 18:39:49 +02002183 """
2184 Performs a new operation over a ns
2185 :param rollback: list to append created items at database in case a rollback must to be done
tierno65ca36d2019-02-12 19:27:52 +01002186 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
tiernob24258a2018-10-04 18:39:49 +02002187 :param indata: descriptor with the parameters of the operation. It must contains among others
2188 nsInstanceId: _id of the nsr to perform the operation
aticig544a2ae2022-04-05 09:00:17 +03002189 operation: it can be: instantiate, terminate, action, update TODO: heal
tiernob24258a2018-10-04 18:39:49 +02002190 :param kwargs: used to override the indata descriptor
2191 :param headers: http request headers
tiernob24258a2018-10-04 18:39:49 +02002192 :return: id of the nslcmops
2193 """
garciadeblas4568a372021-03-24 09:19:48 +01002194
Felipe Vicens90fbc9c2019-06-06 01:03:00 +02002195 def check_if_nsr_is_not_slice_member(session, nsr_id):
2196 nsis = None
2197 db_filter = self._get_project_filter(session)
2198 db_filter["_admin.nsrs-detailed-list.ANYINDEX.nsrId"] = nsr_id
garciadeblas4568a372021-03-24 09:19:48 +01002199 nsis = self.db.get_one(
2200 "nsis", db_filter, fail_on_empty=False, fail_on_more=False
2201 )
Felipe Vicens90fbc9c2019-06-06 01:03:00 +02002202 if nsis:
garciadeblas4568a372021-03-24 09:19:48 +01002203 raise EngineException(
2204 "The NS instance {} cannot be terminated because is used by the slice {}".format(
2205 nsr_id, nsis["_id"]
2206 ),
2207 http_code=HTTPStatus.CONFLICT,
2208 )
Felipe Vicens90fbc9c2019-06-06 01:03:00 +02002209
tiernob24258a2018-10-04 18:39:49 +02002210 try:
2211 # Override descriptor with query string kwargs
tierno1c38f2f2020-03-24 11:51:39 +00002212 self._update_input_with_kwargs(indata, kwargs, yaml_format=True)
tiernob24258a2018-10-04 18:39:49 +02002213 operation = indata["lcmOperationType"]
2214 nsInstanceId = indata["nsInstanceId"]
2215
2216 validate_input(indata, self.operation_schema[operation])
2217 # get ns from nsr_id
tierno65ca36d2019-02-12 19:27:52 +01002218 _filter = BaseTopic._get_project_filter(session)
tiernob24258a2018-10-04 18:39:49 +02002219 _filter["_id"] = nsInstanceId
2220 nsr = self.db.get_one("nsrs", _filter)
2221
2222 # initial checking
Felipe Vicens90fbc9c2019-06-06 01:03:00 +02002223 if operation == "terminate" and slice_object is False:
2224 check_if_nsr_is_not_slice_member(session, nsr["_id"])
garciadeblas4568a372021-03-24 09:19:48 +01002225 if (
2226 not nsr["_admin"].get("nsState")
2227 or nsr["_admin"]["nsState"] == "NOT_INSTANTIATED"
2228 ):
tiernob24258a2018-10-04 18:39:49 +02002229 if operation == "terminate" and indata.get("autoremove"):
2230 # NSR must be deleted
garciadeblas4568a372021-03-24 09:19:48 +01002231 return (
2232 None,
2233 None,
2234 ) # a none in this case is used to indicate not instantiated. It can be removed
tiernob24258a2018-10-04 18:39:49 +02002235 if operation != "instantiate":
garciadeblas4568a372021-03-24 09:19:48 +01002236 raise EngineException(
2237 "ns_instance '{}' cannot be '{}' because it is not instantiated".format(
2238 nsInstanceId, operation
2239 ),
2240 HTTPStatus.CONFLICT,
2241 )
tiernob24258a2018-10-04 18:39:49 +02002242 else:
tierno65ca36d2019-02-12 19:27:52 +01002243 if operation == "instantiate" and not session["force"]:
garciadeblas4568a372021-03-24 09:19:48 +01002244 raise EngineException(
2245 "ns_instance '{}' cannot be '{}' because it is already instantiated".format(
2246 nsInstanceId, operation
2247 ),
2248 HTTPStatus.CONFLICT,
2249 )
tiernob24258a2018-10-04 18:39:49 +02002250 self._check_ns_operation(session, nsr, operation, indata)
Guillermo Calvino7fcbd4f2022-01-26 17:37:56 +01002251 if (indata.get("primitive_params")):
2252 indata["primitive_params"] = json.dumps(indata["primitive_params"])
2253 elif (indata.get("additionalParamsForVnf")):
2254 indata["additionalParamsForVnf"] = json.dumps(indata["additionalParamsForVnf"])
tierno36ec8602018-11-02 17:27:11 +01002255
tiernocc103432018-10-19 14:10:35 +02002256 if operation == "instantiate":
Gulsum Aticie395aa42021-11-10 20:59:06 +03002257 self._update_vnfrs_from_nsd(nsr)
tiernocc103432018-10-19 14:10:35 +02002258 self._update_vnfrs(session, rollback, nsr, indata)
elumalai6c5ea6b2022-04-25 22:27:59 +05302259 if (operation == "update") and (indata["updateType"] == "CHANGE_VNFPKG"):
2260 nsr_update = {}
2261 vnfd_id = indata["changeVnfPackageData"]["vnfdId"]
2262 vnfd = self.db.get_one("vnfds", {"_id": vnfd_id})
2263 nsd = self.db.get_one("nsds", {"_id": nsr["nsd-id"]})
2264 ns_request = nsr["instantiate_params"]
2265 vnfr = self.db.get_one("vnfrs", {"_id": indata["changeVnfPackageData"]["vnfInstanceId"]})
elumalai8bf978e2022-05-26 15:32:06 +05302266 latest_vnfd_revision = vnfd["_admin"].get("revision", 1)
2267 vnfr_vnfd_revision = vnfr.get("revision", 1)
2268 if latest_vnfd_revision != vnfr_vnfd_revision:
2269 old_vnfd_id = vnfd_id + ":" + str(vnfr_vnfd_revision)
2270 old_db_vnfd = self.db.get_one("vnfds_revisions", {"_id": old_vnfd_id})
2271 old_sw_version = old_db_vnfd.get("software-version", "1.0")
2272 new_sw_version = vnfd.get("software-version", "1.0")
2273 if new_sw_version != old_sw_version:
2274 vnf_index = vnfr["member-vnf-index-ref"]
2275 self.logger.info("nsr {}".format(nsr))
2276 for vdu in vnfd["vdu"]:
elumalai0f6994c2022-07-05 17:53:59 +05302277 self.nsrtopic._add_flavor_to_nsr(vdu, vnfd, nsr, vnf_index, latest_vnfd_revision)
elumalai8bf978e2022-05-26 15:32:06 +05302278 sw_image_id = vdu.get("sw-image-desc")
2279 if sw_image_id:
2280 image_data = self.nsrtopic._get_image_data_from_vnfd(vnfd, sw_image_id)
2281 self.nsrtopic._add_image_to_nsr(nsr, image_data)
2282 for alt_image in vdu.get("alternative-sw-image-desc", ()):
2283 image_data = self.nsrtopic._get_image_data_from_vnfd(vnfd, alt_image)
2284 self.nsrtopic._add_image_to_nsr(nsr, image_data)
2285 nsr_update["image"] = nsr["image"]
2286 nsr_update["flavor"] = nsr["flavor"]
2287 self.db.set_one("nsrs", {"_id": nsr["_id"]}, nsr_update)
2288 ns_k8s_namespace = self.nsrtopic._get_ns_k8s_namespace(nsd, ns_request, session)
2289 vnfr_descriptor = self.nsrtopic._create_vnfr_descriptor_from_vnfd(
2290 nsd,
2291 vnfd,
2292 vnfd_id,
2293 vnf_index,
2294 nsr,
2295 ns_request,
2296 ns_k8s_namespace,
elumalai0f6994c2022-07-05 17:53:59 +05302297 latest_vnfd_revision,
elumalai8bf978e2022-05-26 15:32:06 +05302298 )
2299 indata["newVdur"] = vnfr_descriptor["vdur"]
tierno36ec8602018-11-02 17:27:11 +01002300 nslcmop_desc = self._create_nslcmop(nsInstanceId, operation, indata)
tierno1bfe4e22019-09-02 16:03:25 +00002301 _id = nslcmop_desc["_id"]
garciadeblas4568a372021-03-24 09:19:48 +01002302 self.format_on_new(
2303 nslcmop_desc, session["project_id"], make_public=session["public"]
2304 )
magnussonlf318b302020-01-20 18:38:18 +01002305 if indata.get("placement-engine"):
2306 # Save valid vim accounts in lcm operation descriptor
garciadeblas4568a372021-03-24 09:19:48 +01002307 nslcmop_desc["operationParams"][
2308 "validVimAccounts"
2309 ] = self._get_enabled_vims(session)
tierno1bfe4e22019-09-02 16:03:25 +00002310 self.db.create("nslcmops", nslcmop_desc)
tiernob24258a2018-10-04 18:39:49 +02002311 rollback.append({"topic": "nslcmops", "_id": _id})
Felipe Vicens07f31722018-10-29 15:16:44 +01002312 if not slice_object:
2313 self.msg.write("ns", operation, nslcmop_desc)
tiernobdebce92019-07-01 15:36:49 +00002314 return _id, None
2315 except ValidationError as e: # TODO remove try Except, it is captured at nbi.py
tiernob24258a2018-10-04 18:39:49 +02002316 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)
2317 # except DbException as e:
2318 # raise EngineException("Cannot get ns_instance '{}': {}".format(e), HTTPStatus.NOT_FOUND)
2319
tiernobee3bad2019-12-05 12:26:01 +00002320 def delete(self, session, _id, dry_run=False, not_send_msg=None):
garciadeblas4568a372021-03-24 09:19:48 +01002321 raise EngineException(
2322 "Method delete called directly", HTTPStatus.INTERNAL_SERVER_ERROR
2323 )
tiernob24258a2018-10-04 18:39:49 +02002324
tierno65ca36d2019-02-12 19:27:52 +01002325 def edit(self, session, _id, indata=None, kwargs=None, content=None):
garciadeblas4568a372021-03-24 09:19:48 +01002326 raise EngineException(
2327 "Method edit called directly", HTTPStatus.INTERNAL_SERVER_ERROR
2328 )
Felipe Vicensb57758d2018-10-16 16:00:20 +02002329
2330
2331class NsiTopic(BaseTopic):
2332 topic = "nsis"
2333 topic_msg = "nsi"
tierno6b02b052020-06-02 10:07:41 +00002334 quota_name = "slice_instances"
Felipe Vicensb57758d2018-10-16 16:00:20 +02002335
delacruzramo32bab472019-09-13 12:24:22 +02002336 def __init__(self, db, fs, msg, auth):
2337 BaseTopic.__init__(self, db, fs, msg, auth)
2338 self.nsrTopic = NsrTopic(db, fs, msg, auth)
Felipe Vicensb57758d2018-10-16 16:00:20 +02002339
Felipe Vicensc37b3842019-01-12 12:24:42 +01002340 @staticmethod
2341 def _format_ns_request(ns_request):
2342 formated_request = copy(ns_request)
2343 # TODO: Add request params
2344 return formated_request
2345
2346 @staticmethod
tiernofd160572019-01-21 10:41:37 +00002347 def _format_addional_params(slice_request):
Felipe Vicensc37b3842019-01-12 12:24:42 +01002348 """
2349 Get and format user additional params for NS or VNF
tiernofd160572019-01-21 10:41:37 +00002350 :param slice_request: User instantiation additional parameters
2351 :return: a formatted copy of additional params or None if not supplied
Felipe Vicensc37b3842019-01-12 12:24:42 +01002352 """
tiernofd160572019-01-21 10:41:37 +00002353 additional_params = copy(slice_request.get("additionalParamsForNsi"))
2354 if additional_params:
2355 for k, v in additional_params.items():
2356 if not isinstance(k, str):
garciadeblas4568a372021-03-24 09:19:48 +01002357 raise EngineException(
2358 "Invalid param at additionalParamsForNsi:{}. Only string keys are allowed".format(
2359 k
2360 )
2361 )
tiernofd160572019-01-21 10:41:37 +00002362 if "." in k or "$" in k:
garciadeblas4568a372021-03-24 09:19:48 +01002363 raise EngineException(
2364 "Invalid param at additionalParamsForNsi:{}. Keys must not contain dots or $".format(
2365 k
2366 )
2367 )
tiernofd160572019-01-21 10:41:37 +00002368 if isinstance(v, (dict, tuple, list)):
2369 additional_params[k] = "!!yaml " + safe_dump(v)
Felipe Vicensc37b3842019-01-12 12:24:42 +01002370 return additional_params
2371
Felipe Vicensb57758d2018-10-16 16:00:20 +02002372 def _check_descriptor_dependencies(self, session, descriptor):
2373 """
2374 Check that the dependent descriptors exist on a new descriptor or edition
tierno65ca36d2019-02-12 19:27:52 +01002375 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Felipe Vicensb57758d2018-10-16 16:00:20 +02002376 :param descriptor: descriptor to be inserted or edit
2377 :return: None or raises exception
2378 """
Felipe Vicens07f31722018-10-29 15:16:44 +01002379 if not descriptor.get("nst-ref"):
Felipe Vicensb57758d2018-10-16 16:00:20 +02002380 return
Felipe Vicens07f31722018-10-29 15:16:44 +01002381 nstd_id = descriptor["nst-ref"]
Felipe Vicensb57758d2018-10-16 16:00:20 +02002382 if not self.get_item_list(session, "nsts", {"id": nstd_id}):
garciadeblas4568a372021-03-24 09:19:48 +01002383 raise EngineException(
2384 "Descriptor error at nst-ref='{}' references a non exist nstd".format(
2385 nstd_id
2386 ),
2387 http_code=HTTPStatus.CONFLICT,
2388 )
Felipe Vicensb57758d2018-10-16 16:00:20 +02002389
tiernob4844ab2019-05-23 08:42:12 +00002390 def check_conflict_on_del(self, session, _id, db_content):
2391 """
2392 Check that NSI is not instantiated
2393 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
2394 :param _id: nsi internal id
2395 :param db_content: The database content of the _id
2396 :return: None or raises EngineException with the conflict
2397 """
tierno65ca36d2019-02-12 19:27:52 +01002398 if session["force"]:
Felipe Vicensb57758d2018-10-16 16:00:20 +02002399 return
tiernob4844ab2019-05-23 08:42:12 +00002400 nsi = db_content
Felipe Vicensb57758d2018-10-16 16:00:20 +02002401 if nsi["_admin"].get("nsiState") == "INSTANTIATED":
garciadeblas4568a372021-03-24 09:19:48 +01002402 raise EngineException(
2403 "nsi '{}' cannot be deleted because it is in 'INSTANTIATED' state. "
2404 "Launch 'terminate' operation first; or force deletion".format(_id),
2405 http_code=HTTPStatus.CONFLICT,
2406 )
Felipe Vicensb57758d2018-10-16 16:00:20 +02002407
tiernobee3bad2019-12-05 12:26:01 +00002408 def delete_extra(self, session, _id, db_content, not_send_msg=None):
Felipe Vicensb57758d2018-10-16 16:00:20 +02002409 """
tiernob4844ab2019-05-23 08:42:12 +00002410 Deletes associated nsilcmops from database. Deletes associated filesystem.
2411 Set usageState of nst
tierno65ca36d2019-02-12 19:27:52 +01002412 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Felipe Vicensb57758d2018-10-16 16:00:20 +02002413 :param _id: server internal id
tiernob4844ab2019-05-23 08:42:12 +00002414 :param db_content: The database content of the descriptor
tiernobee3bad2019-12-05 12:26:01 +00002415 :param not_send_msg: To not send message (False) or store content (list) instead
tiernob4844ab2019-05-23 08:42:12 +00002416 :return: None if ok or raises EngineException with the problem
Felipe Vicensb57758d2018-10-16 16:00:20 +02002417 """
Felipe Vicens07f31722018-10-29 15:16:44 +01002418
Felipe Vicens09e65422019-01-22 15:06:46 +01002419 # Deleting the nsrs belonging to nsir
tiernob4844ab2019-05-23 08:42:12 +00002420 nsir = db_content
Felipe Vicens09e65422019-01-22 15:06:46 +01002421 for nsrs_detailed_item in nsir["_admin"]["nsrs-detailed-list"]:
2422 nsr_id = nsrs_detailed_item["nsrId"]
2423 if nsrs_detailed_item.get("shared"):
garciadeblas4568a372021-03-24 09:19:48 +01002424 _filter = {
2425 "_admin.nsrs-detailed-list.ANYINDEX.shared": True,
2426 "_admin.nsrs-detailed-list.ANYINDEX.nsrId": nsr_id,
2427 "_id.ne": nsir["_id"],
2428 }
2429 nsi = self.db.get_one(
2430 "nsis", _filter, fail_on_empty=False, fail_on_more=False
2431 )
Felipe Vicens09e65422019-01-22 15:06:46 +01002432 if nsi: # last one using nsr
2433 continue
2434 try:
garciadeblas4568a372021-03-24 09:19:48 +01002435 self.nsrTopic.delete(
2436 session, nsr_id, dry_run=False, not_send_msg=not_send_msg
2437 )
Felipe Vicens09e65422019-01-22 15:06:46 +01002438 except (DbException, EngineException) as e:
2439 if e.http_code == HTTPStatus.NOT_FOUND:
2440 pass
2441 else:
2442 raise
Felipe Vicens07f31722018-10-29 15:16:44 +01002443
tiernob4844ab2019-05-23 08:42:12 +00002444 # delete related nsilcmops database entries
2445 self.db.del_list("nsilcmops", {"netsliceInstanceId": _id})
Felipe Vicens07f31722018-10-29 15:16:44 +01002446
tiernob4844ab2019-05-23 08:42:12 +00002447 # Check and set used NST usage state
Felipe Vicens09e65422019-01-22 15:06:46 +01002448 nsir_admin = nsir.get("_admin")
tiernob4844ab2019-05-23 08:42:12 +00002449 if nsir_admin and nsir_admin.get("nst-id"):
2450 # check if used by another NSI
garciadeblas4568a372021-03-24 09:19:48 +01002451 nsis_list = self.db.get_one(
2452 "nsis",
2453 {"nst-id": nsir_admin["nst-id"]},
2454 fail_on_empty=False,
2455 fail_on_more=False,
2456 )
tiernob4844ab2019-05-23 08:42:12 +00002457 if not nsis_list:
garciadeblas4568a372021-03-24 09:19:48 +01002458 self.db.set_one(
2459 "nsts",
2460 {"_id": nsir_admin["nst-id"]},
2461 {"_admin.usageState": "NOT_IN_USE"},
2462 )
tiernob4844ab2019-05-23 08:42:12 +00002463
tierno65ca36d2019-02-12 19:27:52 +01002464 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
Felipe Vicensb57758d2018-10-16 16:00:20 +02002465 """
Felipe Vicens07f31722018-10-29 15:16:44 +01002466 Creates a new netslice instance record into database. It also creates needed nsrs and vnfrs
Felipe Vicensb57758d2018-10-16 16:00:20 +02002467 :param rollback: list to append the created items at database in case a rollback must be done
tierno65ca36d2019-02-12 19:27:52 +01002468 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Felipe Vicensb57758d2018-10-16 16:00:20 +02002469 :param indata: params to be used for the nsir
2470 :param kwargs: used to override the indata descriptor
2471 :param headers: http request headers
Felipe Vicensb57758d2018-10-16 16:00:20 +02002472 :return: the _id of nsi descriptor created at database
2473 """
2474
2475 try:
delacruzramo32bab472019-09-13 12:24:22 +02002476 step = "checking quotas"
2477 self.check_quota(session)
2478
tierno99d4b172019-07-02 09:28:40 +00002479 step = ""
Felipe Vicensb57758d2018-10-16 16:00:20 +02002480 slice_request = self._remove_envelop(indata)
2481 # Override descriptor with query string kwargs
2482 self._update_input_with_kwargs(slice_request, kwargs)
bravofb995ea22021-02-10 10:57:52 -03002483 slice_request = self._validate_input_new(slice_request, session["force"])
Felipe Vicensb57758d2018-10-16 16:00:20 +02002484
Felipe Vicensb57758d2018-10-16 16:00:20 +02002485 # look for nstd
garciadeblas4568a372021-03-24 09:19:48 +01002486 step = "getting nstd id='{}' from database".format(
2487 slice_request.get("nstId")
2488 )
tiernob4844ab2019-05-23 08:42:12 +00002489 _filter = self._get_project_filter(session)
2490 _filter["_id"] = slice_request["nstId"]
Felipe Vicensb57758d2018-10-16 16:00:20 +02002491 nstd = self.db.get_one("nsts", _filter)
tierno40f742b2020-06-23 15:25:26 +00002492 # check NST is not disabled
2493 step = "checking NST operationalState"
2494 if nstd["_admin"]["operationalState"] == "DISABLED":
garciadeblas4568a372021-03-24 09:19:48 +01002495 raise EngineException(
2496 "nst with id '{}' is DISABLED, and thus cannot be used to create a netslice "
2497 "instance".format(slice_request["nstId"]),
2498 http_code=HTTPStatus.CONFLICT,
2499 )
tiernob4844ab2019-05-23 08:42:12 +00002500 del _filter["_id"]
2501
Frank Brydenb5a2ead2020-07-28 12:50:23 +00002502 # check NSD is not disabled
2503 step = "checking operationalState"
2504 if nstd["_admin"]["operationalState"] == "DISABLED":
garciadeblas4568a372021-03-24 09:19:48 +01002505 raise EngineException(
2506 "nst with id '{}' is DISABLED, and thus cannot be used to create "
2507 "a network slice".format(slice_request["nstId"]),
2508 http_code=HTTPStatus.CONFLICT,
2509 )
Frank Brydenb5a2ead2020-07-28 12:50:23 +00002510
Felipe Vicens07f31722018-10-29 15:16:44 +01002511 nstd.pop("_admin", None)
Felipe Vicens09e65422019-01-22 15:06:46 +01002512 nstd_id = nstd.pop("_id", None)
Felipe Vicensb57758d2018-10-16 16:00:20 +02002513 nsi_id = str(uuid4())
Felipe Vicensb57758d2018-10-16 16:00:20 +02002514 step = "filling nsi_descriptor with input data"
Felipe Vicens07f31722018-10-29 15:16:44 +01002515
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002516 # Creating the NSIR
Felipe Vicensb57758d2018-10-16 16:00:20 +02002517 nsi_descriptor = {
2518 "id": nsi_id,
garciadeblasc54d4202018-11-29 23:41:37 +01002519 "name": slice_request["nsiName"],
2520 "description": slice_request.get("nsiDescription", ""),
2521 "datacenter": slice_request["vimAccountId"],
Felipe Vicensb57758d2018-10-16 16:00:20 +02002522 "nst-ref": nstd["id"],
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002523 "instantiation_parameters": slice_request,
Felipe Vicensb57758d2018-10-16 16:00:20 +02002524 "network-slice-template": nstd,
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002525 "nsr-ref-list": [],
2526 "vlr-list": [],
Felipe Vicensb57758d2018-10-16 16:00:20 +02002527 "_id": nsi_id,
garciadeblas4568a372021-03-24 09:19:48 +01002528 "additionalParamsForNsi": self._format_addional_params(slice_request),
Felipe Vicensb57758d2018-10-16 16:00:20 +02002529 }
Felipe Vicensb57758d2018-10-16 16:00:20 +02002530
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002531 step = "creating nsi at database"
garciadeblas4568a372021-03-24 09:19:48 +01002532 self.format_on_new(
2533 nsi_descriptor, session["project_id"], make_public=session["public"]
2534 )
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002535 nsi_descriptor["_admin"]["nsiState"] = "NOT_INSTANTIATED"
2536 nsi_descriptor["_admin"]["netslice-subnet"] = None
Felipe Vicens09e65422019-01-22 15:06:46 +01002537 nsi_descriptor["_admin"]["deployed"] = {}
2538 nsi_descriptor["_admin"]["deployed"]["RO"] = []
2539 nsi_descriptor["_admin"]["nst-id"] = nstd_id
2540
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002541 # Creating netslice-vld for the RO.
2542 step = "creating netslice-vld at database"
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002543
2544 # Building the vlds list to be deployed
2545 # From netslice descriptors, creating the initial list
Felipe Vicens09e65422019-01-22 15:06:46 +01002546 nsi_vlds = []
2547
2548 for netslice_vlds in get_iterable(nstd.get("netslice-vld")):
2549 # Getting template Instantiation parameters from NST
2550 nsi_vld = deepcopy(netslice_vlds)
2551 nsi_vld["shared-nsrs-list"] = []
2552 nsi_vld["vimAccountId"] = slice_request["vimAccountId"]
2553 nsi_vlds.append(nsi_vld)
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002554
2555 nsi_descriptor["_admin"]["netslice-vld"] = nsi_vlds
tierno3ffc7a42019-12-03 09:39:40 +00002556 # Creating netslice-subnet_record.
Felipe Vicensb57758d2018-10-16 16:00:20 +02002557 needed_nsds = {}
Felipe Vicens07f31722018-10-29 15:16:44 +01002558 services = []
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002559
Felipe Vicens09e65422019-01-22 15:06:46 +01002560 # Updating the nstd with the nsd["_id"] associated to the nss -> services list
Felipe Vicensb57758d2018-10-16 16:00:20 +02002561 for member_ns in nstd["netslice-subnet"]:
2562 nsd_id = member_ns["nsd-ref"]
2563 step = "getting nstd id='{}' constituent-nsd='{}' from database".format(
garciadeblas4568a372021-03-24 09:19:48 +01002564 member_ns["nsd-ref"], member_ns["id"]
2565 )
Felipe Vicensb57758d2018-10-16 16:00:20 +02002566 if nsd_id not in needed_nsds:
2567 # Obtain nsd
tiernob4844ab2019-05-23 08:42:12 +00002568 _filter["id"] = nsd_id
garciadeblas4568a372021-03-24 09:19:48 +01002569 nsd = self.db.get_one(
2570 "nsds", _filter, fail_on_empty=True, fail_on_more=True
2571 )
tiernob4844ab2019-05-23 08:42:12 +00002572 del _filter["id"]
Felipe Vicensb57758d2018-10-16 16:00:20 +02002573 nsd.pop("_admin")
2574 needed_nsds[nsd_id] = nsd
2575 else:
2576 nsd = needed_nsds[nsd_id]
Felipe Vicens09e65422019-01-22 15:06:46 +01002577 member_ns["_id"] = needed_nsds[nsd_id].get("_id")
2578 services.append(member_ns)
Felipe Vicens07f31722018-10-29 15:16:44 +01002579
Felipe Vicensb57758d2018-10-16 16:00:20 +02002580 step = "filling nsir nsd-id='{}' constituent-nsd='{}' from database".format(
garciadeblas4568a372021-03-24 09:19:48 +01002581 member_ns["nsd-ref"], member_ns["id"]
2582 )
Felipe Vicensb57758d2018-10-16 16:00:20 +02002583
Felipe Vicens07f31722018-10-29 15:16:44 +01002584 # creates Network Services records (NSRs)
2585 step = "creating nsrs at database using NsrTopic.new()"
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002586 ns_params = slice_request.get("netslice-subnet")
Felipe Vicens07f31722018-10-29 15:16:44 +01002587 nsrs_list = []
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002588 nsi_netslice_subnet = []
Felipe Vicens07f31722018-10-29 15:16:44 +01002589 for service in services:
Felipe Vicens09e65422019-01-22 15:06:46 +01002590 # Check if the netslice-subnet is shared and if it is share if the nss exists
2591 _id_nsr = None
Felipe Vicens07f31722018-10-29 15:16:44 +01002592 indata_ns = {}
Felipe Vicens09e65422019-01-22 15:06:46 +01002593 # Is the nss shared and instantiated?
tiernob4844ab2019-05-23 08:42:12 +00002594 _filter["_admin.nsrs-detailed-list.ANYINDEX.shared"] = True
garciadeblas4568a372021-03-24 09:19:48 +01002595 _filter["_admin.nsrs-detailed-list.ANYINDEX.nsd-id"] = service[
2596 "nsd-ref"
2597 ]
Felipe Vicens08ddb142019-08-09 15:52:40 +02002598 _filter["_admin.nsrs-detailed-list.ANYINDEX.nss-id"] = service["id"]
garciadeblas4568a372021-03-24 09:19:48 +01002599 nsi = self.db.get_one(
2600 "nsis", _filter, fail_on_empty=False, fail_on_more=False
2601 )
Felipe Vicens09e65422019-01-22 15:06:46 +01002602 if nsi and service.get("is-shared-nss"):
2603 nsrs_detailed_list = nsi["_admin"]["nsrs-detailed-list"]
2604 for nsrs_detailed_item in nsrs_detailed_list:
2605 if nsrs_detailed_item["nsd-id"] == service["nsd-ref"]:
Felipe Vicens08ddb142019-08-09 15:52:40 +02002606 if nsrs_detailed_item["nss-id"] == service["id"]:
2607 _id_nsr = nsrs_detailed_item["nsrId"]
2608 break
Felipe Vicens09e65422019-01-22 15:06:46 +01002609 for netslice_subnet in nsi["_admin"]["netslice-subnet"]:
2610 if netslice_subnet["nss-id"] == service["id"]:
2611 indata_ns = netslice_subnet
2612 break
2613 else:
2614 indata_ns = {}
2615 if service.get("instantiation-parameters"):
2616 indata_ns = deepcopy(service["instantiation-parameters"])
2617 # del service["instantiation-parameters"]
garciadeblas4568a372021-03-24 09:19:48 +01002618
Felipe Vicens09e65422019-01-22 15:06:46 +01002619 indata_ns["nsdId"] = service["_id"]
garciadeblas4568a372021-03-24 09:19:48 +01002620 indata_ns["nsName"] = (
2621 slice_request.get("nsiName") + "." + service["id"]
2622 )
Felipe Vicens09e65422019-01-22 15:06:46 +01002623 indata_ns["vimAccountId"] = slice_request.get("vimAccountId")
2624 indata_ns["nsDescription"] = service["description"]
tierno99d4b172019-07-02 09:28:40 +00002625 if slice_request.get("ssh_keys"):
2626 indata_ns["ssh_keys"] = slice_request.get("ssh_keys")
Felipe Vicensc37b3842019-01-12 12:24:42 +01002627
Felipe Vicens09e65422019-01-22 15:06:46 +01002628 if ns_params:
2629 for ns_param in ns_params:
2630 if ns_param.get("id") == service["id"]:
2631 copy_ns_param = deepcopy(ns_param)
2632 del copy_ns_param["id"]
2633 indata_ns.update(copy_ns_param)
garciadeblas4568a372021-03-24 09:19:48 +01002634 break
Felipe Vicens09e65422019-01-22 15:06:46 +01002635
2636 # Creates Nsr objects
garciadeblas4568a372021-03-24 09:19:48 +01002637 _id_nsr, _ = self.nsrTopic.new(
2638 rollback, session, indata_ns, kwargs, headers
2639 )
2640 nsrs_item = {
2641 "nsrId": _id_nsr,
2642 "shared": service.get("is-shared-nss"),
2643 "nsd-id": service["nsd-ref"],
2644 "nss-id": service["id"],
2645 "nslcmop_instantiate": None,
2646 }
Felipe Vicens09e65422019-01-22 15:06:46 +01002647 indata_ns["nss-id"] = service["id"]
Felipe Vicens07f31722018-10-29 15:16:44 +01002648 nsrs_list.append(nsrs_item)
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002649 nsi_netslice_subnet.append(indata_ns)
2650 nsr_ref = {"nsr-ref": _id_nsr}
2651 nsi_descriptor["nsr-ref-list"].append(nsr_ref)
Felipe Vicens07f31722018-10-29 15:16:44 +01002652
2653 # Adding the nsrs list to the nsi
2654 nsi_descriptor["_admin"]["nsrs-detailed-list"] = nsrs_list
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002655 nsi_descriptor["_admin"]["netslice-subnet"] = nsi_netslice_subnet
garciadeblas4568a372021-03-24 09:19:48 +01002656 self.db.set_one(
2657 "nsts", {"_id": slice_request["nstId"]}, {"_admin.usageState": "IN_USE"}
2658 )
Felipe Vicens09e65422019-01-22 15:06:46 +01002659
Felipe Vicens07f31722018-10-29 15:16:44 +01002660 # Creating the entry in the database
Felipe Vicensb57758d2018-10-16 16:00:20 +02002661 self.db.create("nsis", nsi_descriptor)
2662 rollback.append({"topic": "nsis", "_id": nsi_id})
tiernobdebce92019-07-01 15:36:49 +00002663 return nsi_id, None
garciadeblas4568a372021-03-24 09:19:48 +01002664 except Exception as e: # TODO remove try Except, it is captured at nbi.py
2665 self.logger.exception(
2666 "Exception {} at NsiTopic.new()".format(e), exc_info=True
2667 )
Felipe Vicensb57758d2018-10-16 16:00:20 +02002668 raise EngineException("Error {}: {}".format(step, e))
2669 except ValidationError as e:
2670 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)
2671
tierno65ca36d2019-02-12 19:27:52 +01002672 def edit(self, session, _id, indata=None, kwargs=None, content=None):
garciadeblas4568a372021-03-24 09:19:48 +01002673 raise EngineException(
2674 "Method edit called directly", HTTPStatus.INTERNAL_SERVER_ERROR
2675 )
Felipe Vicens07f31722018-10-29 15:16:44 +01002676
2677
2678class NsiLcmOpTopic(BaseTopic):
2679 topic = "nsilcmops"
2680 topic_msg = "nsi"
2681 operation_schema = { # mapping between operation and jsonschema to validate
2682 "instantiate": nsi_instantiate,
garciadeblas4568a372021-03-24 09:19:48 +01002683 "terminate": None,
Felipe Vicens07f31722018-10-29 15:16:44 +01002684 }
garciadeblas4568a372021-03-24 09:19:48 +01002685
delacruzramo32bab472019-09-13 12:24:22 +02002686 def __init__(self, db, fs, msg, auth):
2687 BaseTopic.__init__(self, db, fs, msg, auth)
2688 self.nsi_NsLcmOpTopic = NsLcmOpTopic(self.db, self.fs, self.msg, self.auth)
Felipe Vicens07f31722018-10-29 15:16:44 +01002689
2690 def _check_nsi_operation(self, session, nsir, operation, indata):
2691 """
2692 Check that user has enter right parameters for the operation
tierno65ca36d2019-02-12 19:27:52 +01002693 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Felipe Vicens07f31722018-10-29 15:16:44 +01002694 :param operation: it can be: instantiate, terminate, action, TODO: update, heal
2695 :param indata: descriptor with the parameters of the operation
2696 :return: None
2697 """
2698 nsds = {}
2699 nstd = nsir["network-slice-template"]
2700
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002701 def check_valid_netslice_subnet_id(nstId):
Felipe Vicens07f31722018-10-29 15:16:44 +01002702 # TODO change to vnfR (??)
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002703 for netslice_subnet in nstd["netslice-subnet"]:
2704 if nstId == netslice_subnet["id"]:
2705 nsd_id = netslice_subnet["nsd-ref"]
Felipe Vicens07f31722018-10-29 15:16:44 +01002706 if nsd_id not in nsds:
Felipe Vicens5403f542020-05-22 16:37:39 +02002707 _filter = self._get_project_filter(session)
2708 _filter["id"] = nsd_id
2709 nsds[nsd_id] = self.db.get_one("nsds", _filter)
Felipe Vicens07f31722018-10-29 15:16:44 +01002710 return nsds[nsd_id]
2711 else:
garciadeblas4568a372021-03-24 09:19:48 +01002712 raise EngineException(
2713 "Invalid parameter nstId='{}' is not one of the "
2714 "nst:netslice-subnet".format(nstId)
2715 )
2716
Felipe Vicens07f31722018-10-29 15:16:44 +01002717 if operation == "instantiate":
2718 # check the existance of netslice-subnet items
garciadeblas4568a372021-03-24 09:19:48 +01002719 for in_nst in get_iterable(indata.get("netslice-subnet")):
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +01002720 check_valid_netslice_subnet_id(in_nst["id"])
Felipe Vicens07f31722018-10-29 15:16:44 +01002721
2722 def _create_nsilcmop(self, session, netsliceInstanceId, operation, params):
2723 now = time()
2724 _id = str(uuid4())
2725 nsilcmop = {
2726 "id": _id,
2727 "_id": _id,
2728 "operationState": "PROCESSING", # COMPLETED,PARTIALLY_COMPLETED,FAILED_TEMP,FAILED,ROLLING_BACK,ROLLED_BACK
2729 "statusEnteredTime": now,
2730 "netsliceInstanceId": netsliceInstanceId,
2731 "lcmOperationType": operation,
2732 "startTime": now,
2733 "isAutomaticInvocation": False,
2734 "operationParams": params,
2735 "isCancelPending": False,
2736 "links": {
2737 "self": "/osm/nsilcm/v1/nsi_lcm_op_occs/" + _id,
garciadeblas4568a372021-03-24 09:19:48 +01002738 "netsliceInstanceId": "/osm/nsilcm/v1/netslice_instances/"
2739 + netsliceInstanceId,
2740 },
Felipe Vicens07f31722018-10-29 15:16:44 +01002741 }
2742 return nsilcmop
2743
Felipe Vicens09e65422019-01-22 15:06:46 +01002744 def add_shared_nsr_2vld(self, nsir, nsr_item):
2745 for nst_sb_item in nsir["network-slice-template"].get("netslice-subnet"):
2746 if nst_sb_item.get("is-shared-nss"):
2747 for admin_subnet_item in nsir["_admin"].get("netslice-subnet"):
2748 if admin_subnet_item["nss-id"] == nst_sb_item["id"]:
2749 for admin_vld_item in nsir["_admin"].get("netslice-vld"):
garciadeblas4568a372021-03-24 09:19:48 +01002750 for admin_vld_nss_cp_ref_item in admin_vld_item[
2751 "nss-connection-point-ref"
2752 ]:
2753 if (
2754 admin_subnet_item["nss-id"]
2755 == admin_vld_nss_cp_ref_item["nss-ref"]
2756 ):
2757 if (
2758 not nsr_item["nsrId"]
2759 in admin_vld_item["shared-nsrs-list"]
2760 ):
2761 admin_vld_item["shared-nsrs-list"].append(
2762 nsr_item["nsrId"]
2763 )
Felipe Vicens09e65422019-01-22 15:06:46 +01002764 break
2765 # self.db.set_one("nsis", {"_id": nsir["_id"]}, nsir)
garciadeblas4568a372021-03-24 09:19:48 +01002766 self.db.set_one(
2767 "nsis",
2768 {"_id": nsir["_id"]},
2769 {"_admin.netslice-vld": nsir["_admin"].get("netslice-vld")},
2770 )
Felipe Vicens09e65422019-01-22 15:06:46 +01002771
tierno65ca36d2019-02-12 19:27:52 +01002772 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
Felipe Vicens07f31722018-10-29 15:16:44 +01002773 """
2774 Performs a new operation over a ns
2775 :param rollback: list to append created items at database in case a rollback must to be done
tierno65ca36d2019-02-12 19:27:52 +01002776 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
Felipe Vicens07f31722018-10-29 15:16:44 +01002777 :param indata: descriptor with the parameters of the operation. It must contains among others
Felipe Vicens126af572019-06-05 19:13:04 +02002778 netsliceInstanceId: _id of the nsir to perform the operation
Felipe Vicens07f31722018-10-29 15:16:44 +01002779 operation: it can be: instantiate, terminate, action, TODO: update, heal
2780 :param kwargs: used to override the indata descriptor
2781 :param headers: http request headers
Felipe Vicens07f31722018-10-29 15:16:44 +01002782 :return: id of the nslcmops
2783 """
2784 try:
2785 # Override descriptor with query string kwargs
2786 self._update_input_with_kwargs(indata, kwargs)
2787 operation = indata["lcmOperationType"]
Felipe Vicens126af572019-06-05 19:13:04 +02002788 netsliceInstanceId = indata["netsliceInstanceId"]
Felipe Vicens07f31722018-10-29 15:16:44 +01002789 validate_input(indata, self.operation_schema[operation])
2790
Felipe Vicens126af572019-06-05 19:13:04 +02002791 # get nsi from netsliceInstanceId
tiernob4844ab2019-05-23 08:42:12 +00002792 _filter = self._get_project_filter(session)
Felipe Vicens126af572019-06-05 19:13:04 +02002793 _filter["_id"] = netsliceInstanceId
Felipe Vicens07f31722018-10-29 15:16:44 +01002794 nsir = self.db.get_one("nsis", _filter)
tierno40f742b2020-06-23 15:25:26 +00002795 logging_prefix = "nsi={} {} ".format(netsliceInstanceId, operation)
tiernob4844ab2019-05-23 08:42:12 +00002796 del _filter["_id"]
Felipe Vicens07f31722018-10-29 15:16:44 +01002797
2798 # initial checking
garciadeblas4568a372021-03-24 09:19:48 +01002799 if (
2800 not nsir["_admin"].get("nsiState")
2801 or nsir["_admin"]["nsiState"] == "NOT_INSTANTIATED"
2802 ):
Felipe Vicens07f31722018-10-29 15:16:44 +01002803 if operation == "terminate" and indata.get("autoremove"):
2804 # NSIR must be deleted
garciadeblas4568a372021-03-24 09:19:48 +01002805 return (
2806 None,
2807 None,
2808 ) # a none in this case is used to indicate not instantiated. It can be removed
Felipe Vicens07f31722018-10-29 15:16:44 +01002809 if operation != "instantiate":
garciadeblas4568a372021-03-24 09:19:48 +01002810 raise EngineException(
2811 "netslice_instance '{}' cannot be '{}' because it is not instantiated".format(
2812 netsliceInstanceId, operation
2813 ),
2814 HTTPStatus.CONFLICT,
2815 )
Felipe Vicens07f31722018-10-29 15:16:44 +01002816 else:
tierno65ca36d2019-02-12 19:27:52 +01002817 if operation == "instantiate" and not session["force"]:
garciadeblas4568a372021-03-24 09:19:48 +01002818 raise EngineException(
2819 "netslice_instance '{}' cannot be '{}' because it is already instantiated".format(
2820 netsliceInstanceId, operation
2821 ),
2822 HTTPStatus.CONFLICT,
2823 )
2824
Felipe Vicens07f31722018-10-29 15:16:44 +01002825 # Creating all the NS_operation (nslcmop)
2826 # Get service list from db
2827 nsrs_list = nsir["_admin"]["nsrs-detailed-list"]
2828 nslcmops = []
Felipe Vicens09e65422019-01-22 15:06:46 +01002829 # nslcmops_item = None
2830 for index, nsr_item in enumerate(nsrs_list):
tierno40f742b2020-06-23 15:25:26 +00002831 nsr_id = nsr_item["nsrId"]
Felipe Vicens09e65422019-01-22 15:06:46 +01002832 if nsr_item.get("shared"):
Felipe Vicens58e2d2f2019-05-30 13:01:20 +02002833 _filter["_admin.nsrs-detailed-list.ANYINDEX.shared"] = True
tierno40f742b2020-06-23 15:25:26 +00002834 _filter["_admin.nsrs-detailed-list.ANYINDEX.nsrId"] = nsr_id
garciadeblas4568a372021-03-24 09:19:48 +01002835 _filter[
2836 "_admin.nsrs-detailed-list.ANYINDEX.nslcmop_instantiate.ne"
2837 ] = None
Felipe Vicens126af572019-06-05 19:13:04 +02002838 _filter["_id.ne"] = netsliceInstanceId
garciadeblas4568a372021-03-24 09:19:48 +01002839 nsi = self.db.get_one(
2840 "nsis", _filter, fail_on_empty=False, fail_on_more=False
2841 )
Felipe Vicens58e2d2f2019-05-30 13:01:20 +02002842 if operation == "terminate":
garciadeblas4568a372021-03-24 09:19:48 +01002843 _update = {
2844 "_admin.nsrs-detailed-list.{}.nslcmop_instantiate".format(
2845 index
2846 ): None
2847 }
Felipe Vicens58e2d2f2019-05-30 13:01:20 +02002848 self.db.set_one("nsis", {"_id": nsir["_id"]}, _update)
garciadeblas4568a372021-03-24 09:19:48 +01002849 if (
2850 nsi
2851 ): # other nsi is using this nsr and it needs this nsr instantiated
tierno40f742b2020-06-23 15:25:26 +00002852 continue # do not create nsilcmop
2853 else: # instantiate
2854 # looks the first nsi fulfilling the conditions but not being the current NSIR
2855 if nsi:
garciadeblas4568a372021-03-24 09:19:48 +01002856 nsi_nsr_item = next(
2857 n
2858 for n in nsi["_admin"]["nsrs-detailed-list"]
2859 if n["nsrId"] == nsr_id
2860 and n["shared"]
2861 and n["nslcmop_instantiate"]
2862 )
tierno40f742b2020-06-23 15:25:26 +00002863 self.add_shared_nsr_2vld(nsir, nsr_item)
2864 nslcmops.append(nsi_nsr_item["nslcmop_instantiate"])
garciadeblas4568a372021-03-24 09:19:48 +01002865 _update = {
2866 "_admin.nsrs-detailed-list.{}".format(
2867 index
2868 ): nsi_nsr_item
2869 }
tierno40f742b2020-06-23 15:25:26 +00002870 self.db.set_one("nsis", {"_id": nsir["_id"]}, _update)
2871 # continue to not create nslcmop since nsrs is shared and nsrs was created
2872 continue
2873 else:
2874 self.add_shared_nsr_2vld(nsir, nsr_item)
Felipe Vicens09e65422019-01-22 15:06:46 +01002875
tierno40f742b2020-06-23 15:25:26 +00002876 # create operation
Felipe Vicens09e65422019-01-22 15:06:46 +01002877 try:
tierno0b8752f2020-05-12 09:42:02 +00002878 indata_ns = {
2879 "lcmOperationType": operation,
tierno40f742b2020-06-23 15:25:26 +00002880 "nsInstanceId": nsr_id,
tierno0b8752f2020-05-12 09:42:02 +00002881 # Including netslice_id in the ns instantiate Operation
2882 "netsliceInstanceId": netsliceInstanceId,
2883 }
2884 if operation == "instantiate":
tierno40f742b2020-06-23 15:25:26 +00002885 service = self.db.get_one("nsrs", {"_id": nsr_id})
tierno0b8752f2020-05-12 09:42:02 +00002886 indata_ns.update(service["instantiate_params"])
2887
tierno99d4b172019-07-02 09:28:40 +00002888 # Creating NS_LCM_OP with the flag slice_object=True to not trigger the service instantiation
Felipe Vicens09e65422019-01-22 15:06:46 +01002889 # message via kafka bus
garciadeblas4568a372021-03-24 09:19:48 +01002890 nslcmop, _ = self.nsi_NsLcmOpTopic.new(
2891 rollback, session, indata_ns, None, headers, slice_object=True
2892 )
Felipe Vicens09e65422019-01-22 15:06:46 +01002893 nslcmops.append(nslcmop)
tierno40f742b2020-06-23 15:25:26 +00002894 if operation == "instantiate":
garciadeblas4568a372021-03-24 09:19:48 +01002895 _update = {
2896 "_admin.nsrs-detailed-list.{}.nslcmop_instantiate".format(
2897 index
2898 ): nslcmop
2899 }
tierno40f742b2020-06-23 15:25:26 +00002900 self.db.set_one("nsis", {"_id": nsir["_id"]}, _update)
Felipe Vicens09e65422019-01-22 15:06:46 +01002901 except (DbException, EngineException) as e:
2902 if e.http_code == HTTPStatus.NOT_FOUND:
garciadeblas4568a372021-03-24 09:19:48 +01002903 self.logger.info(
2904 logging_prefix
2905 + "skipping NS={} because not found".format(nsr_id)
2906 )
Felipe Vicens09e65422019-01-22 15:06:46 +01002907 pass
2908 else:
2909 raise
Felipe Vicens07f31722018-10-29 15:16:44 +01002910
2911 # Creates nsilcmop
2912 indata["nslcmops_ids"] = nslcmops
2913 self._check_nsi_operation(session, nsir, operation, indata)
Felipe Vicens09e65422019-01-22 15:06:46 +01002914
garciadeblas4568a372021-03-24 09:19:48 +01002915 nsilcmop_desc = self._create_nsilcmop(
2916 session, netsliceInstanceId, operation, indata
2917 )
2918 self.format_on_new(
2919 nsilcmop_desc, session["project_id"], make_public=session["public"]
2920 )
Felipe Vicens07f31722018-10-29 15:16:44 +01002921 _id = self.db.create("nsilcmops", nsilcmop_desc)
2922 rollback.append({"topic": "nsilcmops", "_id": _id})
2923 self.msg.write("nsi", operation, nsilcmop_desc)
tiernobdebce92019-07-01 15:36:49 +00002924 return _id, None
Felipe Vicens07f31722018-10-29 15:16:44 +01002925 except ValidationError as e:
2926 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)
Felipe Vicens07f31722018-10-29 15:16:44 +01002927
tiernobee3bad2019-12-05 12:26:01 +00002928 def delete(self, session, _id, dry_run=False, not_send_msg=None):
garciadeblas4568a372021-03-24 09:19:48 +01002929 raise EngineException(
2930 "Method delete called directly", HTTPStatus.INTERNAL_SERVER_ERROR
2931 )
Felipe Vicens07f31722018-10-29 15:16:44 +01002932
tierno65ca36d2019-02-12 19:27:52 +01002933 def edit(self, session, _id, indata=None, kwargs=None, content=None):
garciadeblas4568a372021-03-24 09:19:48 +01002934 raise EngineException(
2935 "Method edit called directly", HTTPStatus.INTERNAL_SERVER_ERROR
2936 )