Enable pylint, black and flake8 in tox.ini
[osm/NBI.git] / osm_nbi / instance_topics.py
1 # -*- coding: utf-8 -*-
2
3 # 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
16 # import logging
17 import json
18 from uuid import uuid4
19 from http import HTTPStatus
20 from time import time
21 from copy import copy, deepcopy
22 from osm_nbi.validation import (
23 validate_input,
24 ValidationError,
25 ns_instantiate,
26 ns_terminate,
27 ns_action,
28 ns_scale,
29 ns_update,
30 ns_heal,
31 nsi_instantiate,
32 ns_migrate,
33 ns_verticalscale,
34 )
35 from osm_nbi.base_topic import (
36 BaseTopic,
37 EngineException,
38 get_iterable,
39 deep_get,
40 increment_ip_mac,
41 update_descriptor_usage_state,
42 )
43 from yaml import safe_dump
44 from osm_common.dbbase import DbException
45 from osm_common.msgbase import MsgException
46 from osm_common.fsbase import FsException
47 from osm_nbi import utils
48 from re import (
49 match,
50 ) # For checking that additional parameter names are valid Jinja2 identifiers
51
52 __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
53
54
55 class NsrTopic(BaseTopic):
56 topic = "nsrs"
57 topic_msg = "ns"
58 quota_name = "ns_instances"
59 schema_new = ns_instantiate
60
61 def __init__(self, db, fs, msg, auth):
62 BaseTopic.__init__(self, db, fs, msg, auth)
63
64 @staticmethod
65 def format_on_new(content, project_id=None, make_public=False):
66 BaseTopic.format_on_new(content, project_id=project_id, make_public=make_public)
67 content["_admin"]["nsState"] = "NOT_INSTANTIATED"
68 return None
69
70 def check_conflict_on_del(self, session, _id, db_content):
71 """
72 Check that NSR is not instantiated
73 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
74 :param _id: nsr internal id
75 :param db_content: The database content of the nsr
76 :return: None or raises EngineException with the conflict
77 """
78 if session["force"]:
79 return
80 nsr = db_content
81 if nsr["_admin"].get("nsState") == "INSTANTIATED":
82 raise EngineException(
83 "nsr '{}' cannot be deleted because it is in 'INSTANTIATED' state. "
84 "Launch 'terminate' operation first; or force deletion".format(_id),
85 http_code=HTTPStatus.CONFLICT,
86 )
87
88 def delete_extra(self, session, _id, db_content, not_send_msg=None):
89 """
90 Deletes associated nslcmops and vnfrs from database. Deletes associated filesystem.
91 Set usageState of pdu, vnfd, nsd
92 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
93 :param _id: server internal id
94 :param db_content: The database content of the descriptor
95 :param not_send_msg: To not send message (False) or store content (list) instead
96 :return: None if ok or raises EngineException with the problem
97 """
98 self.fs.file_delete(_id, ignore_non_exist=True)
99 self.db.del_list("nslcmops", {"nsInstanceId": _id})
100 self.db.del_list("vnfrs", {"nsr-id-ref": _id})
101
102 # set all used pdus as free
103 self.db.set_list(
104 "pdus",
105 {"_admin.usage.nsr_id": _id},
106 {"_admin.usageState": "NOT_IN_USE", "_admin.usage": None},
107 )
108
109 # Set NSD usageState
110 nsr = db_content
111 used_nsd_id = nsr.get("nsd-id")
112 if used_nsd_id:
113 # check if used by another NSR
114 nsrs_list = self.db.get_one(
115 "nsrs", {"nsd-id": used_nsd_id}, fail_on_empty=False, fail_on_more=False
116 )
117 if not nsrs_list:
118 self.db.set_one(
119 "nsds", {"_id": used_nsd_id}, {"_admin.usageState": "NOT_IN_USE"}
120 )
121
122 # Set VNFD usageState
123 used_vnfd_id_list = nsr.get("vnfd-id")
124 if used_vnfd_id_list:
125 for used_vnfd_id in used_vnfd_id_list:
126 # check if used by another NSR
127 nsrs_list = self.db.get_one(
128 "nsrs",
129 {"vnfd-id": used_vnfd_id},
130 fail_on_empty=False,
131 fail_on_more=False,
132 )
133 if not nsrs_list:
134 self.db.set_one(
135 "vnfds",
136 {"_id": used_vnfd_id},
137 {"_admin.usageState": "NOT_IN_USE"},
138 )
139
140 # delete extra ro_nsrs used for internal RO module
141 self.db.del_one("ro_nsrs", q_filter={"_id": _id}, fail_on_empty=False)
142
143 @staticmethod
144 def _format_ns_request(ns_request):
145 formated_request = copy(ns_request)
146 formated_request.pop("additionalParamsForNs", None)
147 formated_request.pop("additionalParamsForVnf", None)
148 return formated_request
149
150 @staticmethod
151 def _format_additional_params(
152 ns_request, member_vnf_index=None, vdu_id=None, kdu_name=None, descriptor=None
153 ):
154 """
155 Get and format user additional params for NS or VNF.
156 The vdu_id and kdu_name params are mutually exclusive! If none of them are given, then the method will
157 exclusively search for the VNF/NS LCM additional params.
158
159 :param ns_request: User instantiation additional parameters
160 :param member_vnf_index: None for extract NS params, or member_vnf_index to extract VNF params
161 :vdu_id: VDU's ID against which we want to format the additional params
162 :kdu_name: KDU's name against which we want to format the additional params
163 :param descriptor: If not None it check that needed parameters of descriptor are supplied
164 :return: tuple with a formatted copy of additional params or None if not supplied, plus other parameters
165 """
166 additional_params = None
167 other_params = None
168 if not member_vnf_index:
169 additional_params = copy(ns_request.get("additionalParamsForNs"))
170 where_ = "additionalParamsForNs"
171 elif ns_request.get("additionalParamsForVnf"):
172 where_ = "additionalParamsForVnf[member-vnf-index={}]".format(
173 member_vnf_index
174 )
175 item = next(
176 (
177 x
178 for x in ns_request["additionalParamsForVnf"]
179 if x["member-vnf-index"] == member_vnf_index
180 ),
181 None,
182 )
183 if item:
184 if not vdu_id and not kdu_name:
185 other_params = item
186 additional_params = copy(item.get("additionalParams")) or {}
187 if vdu_id and item.get("additionalParamsForVdu"):
188 item_vdu = next(
189 (
190 x
191 for x in item["additionalParamsForVdu"]
192 if x["vdu_id"] == vdu_id
193 ),
194 None,
195 )
196 other_params = item_vdu
197 if item_vdu and item_vdu.get("additionalParams"):
198 where_ += ".additionalParamsForVdu[vdu_id={}]".format(vdu_id)
199 additional_params = item_vdu["additionalParams"]
200 if kdu_name:
201 additional_params = {}
202 if item.get("additionalParamsForKdu"):
203 item_kdu = next(
204 (
205 x
206 for x in item["additionalParamsForKdu"]
207 if x["kdu_name"] == kdu_name
208 ),
209 None,
210 )
211 other_params = item_kdu
212 if item_kdu and item_kdu.get("additionalParams"):
213 where_ += ".additionalParamsForKdu[kdu_name={}]".format(
214 kdu_name
215 )
216 additional_params = item_kdu["additionalParams"]
217
218 if additional_params:
219 for k, v in additional_params.items():
220 # BEGIN Check that additional parameter names are valid Jinja2 identifiers if target is not Kdu
221 if not kdu_name and not match("^[a-zA-Z_][a-zA-Z0-9_]*$", k):
222 raise EngineException(
223 "Invalid param name at {}:{}. Must contain only alphanumeric characters "
224 "and underscores, and cannot start with a digit".format(
225 where_, k
226 )
227 )
228 # END Check that additional parameter names are valid Jinja2 identifiers
229 if not isinstance(k, str):
230 raise EngineException(
231 "Invalid param at {}:{}. Only string keys are allowed".format(
232 where_, k
233 )
234 )
235 if "$" in k:
236 raise EngineException(
237 "Invalid param at {}:{}. Keys must not contain $ symbol".format(
238 where_, k
239 )
240 )
241 if isinstance(v, (dict, tuple, list)):
242 additional_params[k] = "!!yaml " + safe_dump(v)
243 if kdu_name:
244 additional_params = json.dumps(additional_params)
245
246 # Select the VDU ID, KDU name or NS/VNF ID, depending on the method's call intent
247 selector = vdu_id if vdu_id else kdu_name if kdu_name else descriptor.get("id")
248
249 if descriptor:
250 for df in descriptor.get("df", []):
251 # check that enough parameters are supplied for the initial-config-primitive
252 # TODO: check for cloud-init
253 if member_vnf_index:
254 initial_primitives = []
255 if (
256 "lcm-operations-configuration" in df
257 and "operate-vnf-op-config"
258 in df["lcm-operations-configuration"]
259 ):
260 for config in df["lcm-operations-configuration"][
261 "operate-vnf-op-config"
262 ].get("day1-2", []):
263 # Verify the target object (VNF|NS|VDU|KDU) where we need to populate
264 # the params with the additional ones given by the user
265 if config.get("id") == selector:
266 for primitive in get_iterable(
267 config.get("initial-config-primitive")
268 ):
269 initial_primitives.append(primitive)
270 else:
271 initial_primitives = deep_get(
272 descriptor, ("ns-configuration", "initial-config-primitive")
273 )
274
275 for initial_primitive in get_iterable(initial_primitives):
276 for param in get_iterable(initial_primitive.get("parameter")):
277 if param["value"].startswith("<") and param["value"].endswith(
278 ">"
279 ):
280 if param["value"] in (
281 "<rw_mgmt_ip>",
282 "<VDU_SCALE_INFO>",
283 "<ns_config_info>",
284 "<OSM>",
285 ):
286 continue
287 if (
288 not additional_params
289 or param["value"][1:-1] not in additional_params
290 ):
291 raise EngineException(
292 "Parameter '{}' needed for vnfd[id={}]:day1-2 configuration:"
293 "initial-config-primitive[name={}] not supplied".format(
294 param["value"],
295 descriptor["id"],
296 initial_primitive["name"],
297 )
298 )
299
300 return additional_params or None, other_params or None
301
302 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
303 """
304 Creates a new nsr into database. It also creates needed vnfrs
305 :param rollback: list to append the created items at database in case a rollback must be done
306 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
307 :param indata: params to be used for the nsr
308 :param kwargs: used to override the indata descriptor
309 :param headers: http request headers
310 :return: the _id of nsr descriptor created at database. Or an exception of type
311 EngineException, ValidationError, DbException, FsException, MsgException.
312 Note: Exceptions are not captured on purpose. They should be captured at called
313 """
314 step = "checking quotas" # first step must be defined outside try
315 try:
316 self.check_quota(session)
317
318 step = "validating input parameters"
319 ns_request = self._remove_envelop(indata)
320 self._update_input_with_kwargs(ns_request, kwargs)
321 ns_request = self._validate_input_new(ns_request, session["force"])
322
323 step = "getting nsd id='{}' from database".format(ns_request.get("nsdId"))
324 nsd = self._get_nsd_from_db(ns_request["nsdId"], session)
325 ns_k8s_namespace = self._get_ns_k8s_namespace(nsd, ns_request, session)
326
327 step = "checking nsdOperationalState"
328 self._check_nsd_operational_state(nsd, ns_request)
329
330 step = "filling nsr from input data"
331 nsr_id = str(uuid4())
332 nsr_descriptor = self._create_nsr_descriptor_from_nsd(
333 nsd, ns_request, nsr_id, session
334 )
335
336 # Create VNFRs
337 needed_vnfds = {}
338 # TODO: Change for multiple df support
339 vnf_profiles = nsd.get("df", [{}])[0].get("vnf-profile", ())
340 for vnfp in vnf_profiles:
341 vnfd_id = vnfp.get("vnfd-id")
342 vnf_index = vnfp.get("id")
343 step = (
344 "getting vnfd id='{}' constituent-vnfd='{}' from database".format(
345 vnfd_id, vnf_index
346 )
347 )
348 if vnfd_id not in needed_vnfds:
349 vnfd = self._get_vnfd_from_db(vnfd_id, session)
350 if "revision" in vnfd["_admin"]:
351 vnfd["revision"] = vnfd["_admin"]["revision"]
352 vnfd.pop("_admin")
353 needed_vnfds[vnfd_id] = vnfd
354 nsr_descriptor["vnfd-id"].append(vnfd["_id"])
355 else:
356 vnfd = needed_vnfds[vnfd_id]
357
358 step = "filling vnfr vnfd-id='{}' constituent-vnfd='{}'".format(
359 vnfd_id, vnf_index
360 )
361 vnfr_descriptor = self._create_vnfr_descriptor_from_vnfd(
362 nsd,
363 vnfd,
364 vnfd_id,
365 vnf_index,
366 nsr_descriptor,
367 ns_request,
368 ns_k8s_namespace,
369 )
370
371 step = "creating vnfr vnfd-id='{}' constituent-vnfd='{}' at database".format(
372 vnfd_id, vnf_index
373 )
374 self._add_vnfr_to_db(vnfr_descriptor, rollback, session)
375 nsr_descriptor["constituent-vnfr-ref"].append(vnfr_descriptor["id"])
376 step = "Updating VNFD usageState"
377 update_descriptor_usage_state(vnfd, "vnfds", self.db)
378
379 step = "creating nsr at database"
380 self._add_nsr_to_db(nsr_descriptor, rollback, session)
381 step = "Updating NSD usageState"
382 update_descriptor_usage_state(nsd, "nsds", self.db)
383
384 step = "creating nsr temporal folder"
385 self.fs.mkdir(nsr_id)
386
387 return nsr_id, None
388 except (
389 ValidationError,
390 EngineException,
391 DbException,
392 MsgException,
393 FsException,
394 ) as e:
395 raise type(e)("{} while '{}'".format(e, step), http_code=e.http_code)
396
397 def _get_nsd_from_db(self, nsd_id, session):
398 _filter = self._get_project_filter(session)
399 _filter["_id"] = nsd_id
400 return self.db.get_one("nsds", _filter)
401
402 def _get_vnfd_from_db(self, vnfd_id, session):
403 _filter = self._get_project_filter(session)
404 _filter["id"] = vnfd_id
405 vnfd = self.db.get_one("vnfds", _filter, fail_on_empty=True, fail_on_more=True)
406 return vnfd
407
408 def _add_nsr_to_db(self, nsr_descriptor, rollback, session):
409 self.format_on_new(
410 nsr_descriptor, session["project_id"], make_public=session["public"]
411 )
412 self.db.create("nsrs", nsr_descriptor)
413 rollback.append({"topic": "nsrs", "_id": nsr_descriptor["id"]})
414
415 def _add_vnfr_to_db(self, vnfr_descriptor, rollback, session):
416 self.format_on_new(
417 vnfr_descriptor, session["project_id"], make_public=session["public"]
418 )
419 self.db.create("vnfrs", vnfr_descriptor)
420 rollback.append({"topic": "vnfrs", "_id": vnfr_descriptor["id"]})
421
422 def _check_nsd_operational_state(self, nsd, ns_request):
423 if nsd["_admin"]["operationalState"] == "DISABLED":
424 raise EngineException(
425 "nsd with id '{}' is DISABLED, and thus cannot be used to create "
426 "a network service".format(ns_request["nsdId"]),
427 http_code=HTTPStatus.CONFLICT,
428 )
429
430 def _get_ns_k8s_namespace(self, nsd, ns_request, session):
431 additional_params, _ = self._format_additional_params(
432 ns_request, descriptor=nsd
433 )
434 # use for k8s-namespace from ns_request or additionalParamsForNs. By default, the project_id
435 ns_k8s_namespace = session["project_id"][0] if session["project_id"] else None
436 if ns_request and ns_request.get("k8s-namespace"):
437 ns_k8s_namespace = ns_request["k8s-namespace"]
438 if additional_params and additional_params.get("k8s-namespace"):
439 ns_k8s_namespace = additional_params["k8s-namespace"]
440
441 return ns_k8s_namespace
442
443 def _add_flavor_to_nsr(
444 self, vdu, vnfd, nsr_descriptor, member_vnf_index, revision=None
445 ):
446 flavor_data = {}
447 guest_epa = {}
448 # Find this vdu compute and storage descriptors
449 vdu_virtual_compute = {}
450 vdu_virtual_storage = {}
451 for vcd in vnfd.get("virtual-compute-desc", ()):
452 if vcd.get("id") == vdu.get("virtual-compute-desc"):
453 vdu_virtual_compute = vcd
454 for vsd in vnfd.get("virtual-storage-desc", ()):
455 if vsd.get("id") == vdu.get("virtual-storage-desc", [[]])[0]:
456 vdu_virtual_storage = vsd
457 # Get this vdu vcpus, memory and storage info for flavor_data
458 if vdu_virtual_compute.get("virtual-cpu", {}).get("num-virtual-cpu"):
459 flavor_data["vcpu-count"] = vdu_virtual_compute["virtual-cpu"][
460 "num-virtual-cpu"
461 ]
462 if vdu_virtual_compute.get("virtual-memory", {}).get("size"):
463 flavor_data["memory-mb"] = (
464 float(vdu_virtual_compute["virtual-memory"]["size"]) * 1024.0
465 )
466 if vdu_virtual_storage.get("size-of-storage"):
467 flavor_data["storage-gb"] = vdu_virtual_storage["size-of-storage"]
468 # Get this vdu EPA info for guest_epa
469 if vdu_virtual_compute.get("virtual-cpu", {}).get("cpu-quota"):
470 guest_epa["cpu-quota"] = vdu_virtual_compute["virtual-cpu"]["cpu-quota"]
471 if vdu_virtual_compute.get("virtual-cpu", {}).get("pinning"):
472 vcpu_pinning = vdu_virtual_compute["virtual-cpu"]["pinning"]
473 if vcpu_pinning.get("thread-policy"):
474 guest_epa["cpu-thread-pinning-policy"] = vcpu_pinning["thread-policy"]
475 if vcpu_pinning.get("policy"):
476 cpu_policy = (
477 "SHARED" if vcpu_pinning["policy"] == "dynamic" else "DEDICATED"
478 )
479 guest_epa["cpu-pinning-policy"] = cpu_policy
480 if vdu_virtual_compute.get("virtual-memory", {}).get("mem-quota"):
481 guest_epa["mem-quota"] = vdu_virtual_compute["virtual-memory"]["mem-quota"]
482 if vdu_virtual_compute.get("virtual-memory", {}).get("mempage-size"):
483 guest_epa["mempage-size"] = vdu_virtual_compute["virtual-memory"][
484 "mempage-size"
485 ]
486 if vdu_virtual_compute.get("virtual-memory", {}).get("numa-node-policy"):
487 guest_epa["numa-node-policy"] = vdu_virtual_compute["virtual-memory"][
488 "numa-node-policy"
489 ]
490 if vdu_virtual_storage.get("disk-io-quota"):
491 guest_epa["disk-io-quota"] = vdu_virtual_storage["disk-io-quota"]
492
493 if guest_epa:
494 flavor_data["guest-epa"] = guest_epa
495
496 revision = revision if revision is not None else 1
497 flavor_data["name"] = (
498 vdu["id"][:56] + "-" + member_vnf_index + "-" + str(revision) + "-flv"
499 )
500 flavor_data["id"] = str(len(nsr_descriptor["flavor"]))
501 nsr_descriptor["flavor"].append(flavor_data)
502
503 def _create_nsr_descriptor_from_nsd(self, nsd, ns_request, nsr_id, session):
504 now = time()
505 additional_params, _ = self._format_additional_params(
506 ns_request, descriptor=nsd
507 )
508
509 nsr_descriptor = {
510 "name": ns_request["nsName"],
511 "name-ref": ns_request["nsName"],
512 "short-name": ns_request["nsName"],
513 "admin-status": "ENABLED",
514 "nsState": "NOT_INSTANTIATED",
515 "currentOperation": "IDLE",
516 "currentOperationID": None,
517 "errorDescription": None,
518 "errorDetail": None,
519 "deploymentStatus": None,
520 "configurationStatus": None,
521 "vcaStatus": None,
522 "nsd": {k: v for k, v in nsd.items()},
523 "datacenter": ns_request["vimAccountId"],
524 "resource-orchestrator": "osmopenmano",
525 "description": ns_request.get("nsDescription", ""),
526 "constituent-vnfr-ref": [],
527 "operational-status": "init", # typedef ns-operational-
528 "config-status": "init", # typedef config-states
529 "detailed-status": "scheduled",
530 "orchestration-progress": {},
531 "create-time": now,
532 "nsd-name-ref": nsd["name"],
533 "operational-events": [], # "id", "timestamp", "description", "event",
534 "nsd-ref": nsd["id"],
535 "nsd-id": nsd["_id"],
536 "vnfd-id": [],
537 "instantiate_params": self._format_ns_request(ns_request),
538 "additionalParamsForNs": additional_params,
539 "ns-instance-config-ref": nsr_id,
540 "id": nsr_id,
541 "_id": nsr_id,
542 "ssh-authorized-key": ns_request.get("ssh_keys"), # TODO remove
543 "flavor": [],
544 "image": [],
545 "affinity-or-anti-affinity-group": [],
546 }
547 if "revision" in nsd["_admin"]:
548 nsr_descriptor["revision"] = nsd["_admin"]["revision"]
549
550 ns_request["nsr_id"] = nsr_id
551 if ns_request and ns_request.get("config-units"):
552 nsr_descriptor["config-units"] = ns_request["config-units"]
553 # Create vld
554 if nsd.get("virtual-link-desc"):
555 nsr_vld = deepcopy(nsd.get("virtual-link-desc", []))
556 # Fill each vld with vnfd-connection-point-ref data
557 # TODO: Change for multiple df support
558 all_vld_connection_point_data = {vld.get("id"): [] for vld in nsr_vld}
559 vnf_profiles = nsd.get("df", [[]])[0].get("vnf-profile", ())
560 for vnf_profile in vnf_profiles:
561 for vlc in vnf_profile.get("virtual-link-connectivity", ()):
562 for cpd in vlc.get("constituent-cpd-id", ()):
563 all_vld_connection_point_data[
564 vlc.get("virtual-link-profile-id")
565 ].append(
566 {
567 "member-vnf-index-ref": cpd.get(
568 "constituent-base-element-id"
569 ),
570 "vnfd-connection-point-ref": cpd.get(
571 "constituent-cpd-id"
572 ),
573 "vnfd-id-ref": vnf_profile.get("vnfd-id"),
574 }
575 )
576
577 vnfd = self._get_vnfd_from_db(vnf_profile.get("vnfd-id"), session)
578 vnfd.pop("_admin")
579
580 for vdu in vnfd.get("vdu", ()):
581 member_vnf_index = vnf_profile.get("id")
582 self._add_flavor_to_nsr(vdu, vnfd, nsr_descriptor, member_vnf_index)
583 sw_image_id = vdu.get("sw-image-desc")
584 if sw_image_id:
585 image_data = self._get_image_data_from_vnfd(vnfd, sw_image_id)
586 self._add_image_to_nsr(nsr_descriptor, image_data)
587
588 # also add alternative images to the list of images
589 for alt_image in vdu.get("alternative-sw-image-desc", ()):
590 image_data = self._get_image_data_from_vnfd(vnfd, alt_image)
591 self._add_image_to_nsr(nsr_descriptor, image_data)
592
593 # Add Affinity or Anti-affinity group information to NSR
594 vdu_profiles = vnfd.get("df", [[]])[0].get("vdu-profile", ())
595 affinity_group_prefix_name = "{}-{}".format(
596 nsr_descriptor["name"][:16], vnf_profile.get("id")[:16]
597 )
598
599 for vdu_profile in vdu_profiles:
600 affinity_group_data = {}
601 for affinity_group in vdu_profile.get(
602 "affinity-or-anti-affinity-group", ()
603 ):
604 affinity_group_data = (
605 self._get_affinity_or_anti_affinity_group_data_from_vnfd(
606 vnfd, affinity_group["id"]
607 )
608 )
609 affinity_group_data["member-vnf-index"] = vnf_profile.get("id")
610 self._add_affinity_or_anti_affinity_group_to_nsr(
611 nsr_descriptor,
612 affinity_group_data,
613 affinity_group_prefix_name,
614 )
615
616 for vld in nsr_vld:
617 vld["vnfd-connection-point-ref"] = all_vld_connection_point_data.get(
618 vld.get("id"), []
619 )
620 vld["name"] = vld["id"]
621 nsr_descriptor["vld"] = nsr_vld
622
623 return nsr_descriptor
624
625 def _get_affinity_or_anti_affinity_group_data_from_vnfd(
626 self, vnfd, affinity_group_id
627 ):
628 """
629 Gets affinity-or-anti-affinity-group info from df and returns the desired affinity group
630 """
631 affinity_group = utils.find_in_list(
632 vnfd.get("df", [[]])[0].get("affinity-or-anti-affinity-group", ()),
633 lambda ag: ag["id"] == affinity_group_id,
634 )
635 affinity_group_data = {}
636 if affinity_group:
637 if affinity_group.get("id"):
638 affinity_group_data["ag-id"] = affinity_group["id"]
639 if affinity_group.get("type"):
640 affinity_group_data["type"] = affinity_group["type"]
641 if affinity_group.get("scope"):
642 affinity_group_data["scope"] = affinity_group["scope"]
643 return affinity_group_data
644
645 def _add_affinity_or_anti_affinity_group_to_nsr(
646 self, nsr_descriptor, affinity_group_data, affinity_group_prefix_name
647 ):
648 """
649 Adds affinity-or-anti-affinity-group to nsr checking first it is not already added
650 """
651 affinity_group = next(
652 (
653 f
654 for f in nsr_descriptor["affinity-or-anti-affinity-group"]
655 if all(f.get(k) == affinity_group_data[k] for k in affinity_group_data)
656 ),
657 None,
658 )
659 if not affinity_group:
660 affinity_group_data["id"] = str(
661 len(nsr_descriptor["affinity-or-anti-affinity-group"])
662 )
663 affinity_group_data["name"] = "{}-{}".format(
664 affinity_group_prefix_name, affinity_group_data["ag-id"][:32]
665 )
666 nsr_descriptor["affinity-or-anti-affinity-group"].append(
667 affinity_group_data
668 )
669
670 def _get_image_data_from_vnfd(self, vnfd, sw_image_id):
671 sw_image_desc = utils.find_in_list(
672 vnfd.get("sw-image-desc", ()), lambda sw: sw["id"] == sw_image_id
673 )
674 image_data = {}
675 if sw_image_desc.get("image"):
676 image_data["image"] = sw_image_desc["image"]
677 if sw_image_desc.get("checksum"):
678 image_data["image_checksum"] = sw_image_desc["checksum"]["hash"]
679 if sw_image_desc.get("vim-type"):
680 image_data["vim-type"] = sw_image_desc["vim-type"]
681 return image_data
682
683 def _add_image_to_nsr(self, nsr_descriptor, image_data):
684 """
685 Adds image to nsr checking first it is not already added
686 """
687 img = next(
688 (
689 f
690 for f in nsr_descriptor["image"]
691 if all(f.get(k) == image_data[k] for k in image_data)
692 ),
693 None,
694 )
695 if not img:
696 image_data["id"] = str(len(nsr_descriptor["image"]))
697 nsr_descriptor["image"].append(image_data)
698
699 def _create_vnfr_descriptor_from_vnfd(
700 self,
701 nsd,
702 vnfd,
703 vnfd_id,
704 vnf_index,
705 nsr_descriptor,
706 ns_request,
707 ns_k8s_namespace,
708 revision=None,
709 ):
710 vnfr_id = str(uuid4())
711 nsr_id = nsr_descriptor["id"]
712 now = time()
713 additional_params, vnf_params = self._format_additional_params(
714 ns_request, vnf_index, descriptor=vnfd
715 )
716
717 vnfr_descriptor = {
718 "id": vnfr_id,
719 "_id": vnfr_id,
720 "nsr-id-ref": nsr_id,
721 "member-vnf-index-ref": vnf_index,
722 "additionalParamsForVnf": additional_params,
723 "created-time": now,
724 # "vnfd": vnfd, # at OSM model.but removed to avoid data duplication TODO: revise
725 "vnfd-ref": vnfd_id,
726 "vnfd-id": vnfd["_id"], # not at OSM model, but useful
727 "vim-account-id": None,
728 "vca-id": None,
729 "vdur": [],
730 "connection-point": [],
731 "ip-address": None, # mgmt-interface filled by LCM
732 }
733
734 # Revision backwards compatility. Only specify the revision in the record if
735 # the original VNFD has a revision.
736 if "revision" in vnfd:
737 vnfr_descriptor["revision"] = vnfd["revision"]
738
739 vnf_k8s_namespace = ns_k8s_namespace
740 if vnf_params:
741 if vnf_params.get("k8s-namespace"):
742 vnf_k8s_namespace = vnf_params["k8s-namespace"]
743 if vnf_params.get("config-units"):
744 vnfr_descriptor["config-units"] = vnf_params["config-units"]
745
746 # Create vld
747 if vnfd.get("int-virtual-link-desc"):
748 vnfr_descriptor["vld"] = []
749 for vnfd_vld in vnfd.get("int-virtual-link-desc"):
750 vnfr_descriptor["vld"].append({key: vnfd_vld[key] for key in vnfd_vld})
751
752 for cp in vnfd.get("ext-cpd", ()):
753 vnf_cp = {
754 "name": cp.get("id"),
755 "connection-point-id": cp.get("int-cpd", {}).get("cpd"),
756 "connection-point-vdu-id": cp.get("int-cpd", {}).get("vdu-id"),
757 "id": cp.get("id"),
758 # "ip-address", "mac-address" # filled by LCM
759 # vim-id # TODO it would be nice having a vim port id
760 }
761 vnfr_descriptor["connection-point"].append(vnf_cp)
762
763 # Create k8s-cluster information
764 # TODO: Validate if a k8s-cluster net can have more than one ext-cpd ?
765 if vnfd.get("k8s-cluster"):
766 vnfr_descriptor["k8s-cluster"] = vnfd["k8s-cluster"]
767 all_k8s_cluster_nets_cpds = {}
768 for cpd in get_iterable(vnfd.get("ext-cpd")):
769 if cpd.get("k8s-cluster-net"):
770 all_k8s_cluster_nets_cpds[cpd.get("k8s-cluster-net")] = cpd.get(
771 "id"
772 )
773 for net in get_iterable(vnfr_descriptor["k8s-cluster"].get("nets")):
774 if net.get("id") in all_k8s_cluster_nets_cpds:
775 net["external-connection-point-ref"] = all_k8s_cluster_nets_cpds[
776 net.get("id")
777 ]
778
779 # update kdus
780 for kdu in get_iterable(vnfd.get("kdu")):
781 additional_params, kdu_params = self._format_additional_params(
782 ns_request, vnf_index, kdu_name=kdu["name"], descriptor=vnfd
783 )
784 kdu_k8s_namespace = vnf_k8s_namespace
785 kdu_model = kdu_params.get("kdu_model") if kdu_params else None
786 if kdu_params and kdu_params.get("k8s-namespace"):
787 kdu_k8s_namespace = kdu_params["k8s-namespace"]
788
789 kdu_deployment_name = ""
790 if kdu_params and kdu_params.get("kdu-deployment-name"):
791 kdu_deployment_name = kdu_params.get("kdu-deployment-name")
792
793 kdur = {
794 "additionalParams": additional_params,
795 "k8s-namespace": kdu_k8s_namespace,
796 "kdu-deployment-name": kdu_deployment_name,
797 "kdu-name": kdu["name"],
798 # TODO "name": "" Name of the VDU in the VIM
799 "ip-address": None, # mgmt-interface filled by LCM
800 "k8s-cluster": {},
801 }
802 if kdu_params and kdu_params.get("config-units"):
803 kdur["config-units"] = kdu_params["config-units"]
804 if kdu.get("helm-version"):
805 kdur["helm-version"] = kdu["helm-version"]
806 for k8s_type in ("helm-chart", "juju-bundle"):
807 if kdu.get(k8s_type):
808 kdur[k8s_type] = kdu_model or kdu[k8s_type]
809 if not vnfr_descriptor.get("kdur"):
810 vnfr_descriptor["kdur"] = []
811 vnfr_descriptor["kdur"].append(kdur)
812
813 vnfd_mgmt_cp = vnfd.get("mgmt-cp")
814
815 for vdu in vnfd.get("vdu", ()):
816 vdu_mgmt_cp = []
817 try:
818 configs = vnfd.get("df")[0]["lcm-operations-configuration"][
819 "operate-vnf-op-config"
820 ]["day1-2"]
821 vdu_config = utils.find_in_list(
822 configs, lambda config: config["id"] == vdu["id"]
823 )
824 except Exception:
825 vdu_config = None
826
827 try:
828 vdu_instantiation_level = utils.find_in_list(
829 vnfd.get("df")[0]["instantiation-level"][0]["vdu-level"],
830 lambda a_vdu_profile: a_vdu_profile["vdu-id"] == vdu["id"],
831 )
832 except Exception:
833 vdu_instantiation_level = None
834
835 if vdu_config:
836 external_connection_ee = utils.filter_in_list(
837 vdu_config.get("execution-environment-list", []),
838 lambda ee: "external-connection-point-ref" in ee,
839 )
840 for ee in external_connection_ee:
841 vdu_mgmt_cp.append(ee["external-connection-point-ref"])
842
843 additional_params, vdu_params = self._format_additional_params(
844 ns_request, vnf_index, vdu_id=vdu["id"], descriptor=vnfd
845 )
846
847 try:
848 vdu_virtual_storage_descriptors = utils.filter_in_list(
849 vnfd.get("virtual-storage-desc", []),
850 lambda stg_desc: stg_desc["id"] in vdu["virtual-storage-desc"],
851 )
852 except Exception:
853 vdu_virtual_storage_descriptors = []
854 vdur = {
855 "vdu-id-ref": vdu["id"],
856 # TODO "name": "" Name of the VDU in the VIM
857 "ip-address": None, # mgmt-interface filled by LCM
858 # "vim-id", "flavor-id", "image-id", "management-ip" # filled by LCM
859 "internal-connection-point": [],
860 "interfaces": [],
861 "additionalParams": additional_params,
862 "vdu-name": vdu["name"],
863 "virtual-storages": vdu_virtual_storage_descriptors,
864 }
865 if vdu_params and vdu_params.get("config-units"):
866 vdur["config-units"] = vdu_params["config-units"]
867 if deep_get(vdu, ("supplemental-boot-data", "boot-data-drive")):
868 vdur["boot-data-drive"] = vdu["supplemental-boot-data"][
869 "boot-data-drive"
870 ]
871 if vdu.get("pdu-type"):
872 vdur["pdu-type"] = vdu["pdu-type"]
873 vdur["name"] = vdu["pdu-type"]
874 # TODO volumes: name, volume-id
875 for icp in vdu.get("int-cpd", ()):
876 vdu_icp = {
877 "id": icp["id"],
878 "connection-point-id": icp["id"],
879 "name": icp.get("id"),
880 }
881
882 vdur["internal-connection-point"].append(vdu_icp)
883
884 for iface in icp.get("virtual-network-interface-requirement", ()):
885 # Name, mac-address and interface position is taken from VNFD
886 # and included into VNFR. By this way RO can process this information
887 # while creating the VDU.
888 iface_fields = ("name", "mac-address", "position")
889 vdu_iface = {
890 x: iface[x] for x in iface_fields if iface.get(x) is not None
891 }
892
893 vdu_iface["internal-connection-point-ref"] = vdu_icp["id"]
894 if "port-security-enabled" in icp:
895 vdu_iface["port-security-enabled"] = icp[
896 "port-security-enabled"
897 ]
898
899 if "port-security-disable-strategy" in icp:
900 vdu_iface["port-security-disable-strategy"] = icp[
901 "port-security-disable-strategy"
902 ]
903
904 for ext_cp in vnfd.get("ext-cpd", ()):
905 if not ext_cp.get("int-cpd"):
906 continue
907 if ext_cp["int-cpd"].get("vdu-id") != vdu["id"]:
908 continue
909 if icp["id"] == ext_cp["int-cpd"].get("cpd"):
910 vdu_iface["external-connection-point-ref"] = ext_cp.get(
911 "id"
912 )
913
914 if "port-security-enabled" in ext_cp:
915 vdu_iface["port-security-enabled"] = ext_cp[
916 "port-security-enabled"
917 ]
918
919 if "port-security-disable-strategy" in ext_cp:
920 vdu_iface["port-security-disable-strategy"] = ext_cp[
921 "port-security-disable-strategy"
922 ]
923
924 break
925
926 if (
927 vnfd_mgmt_cp
928 and vdu_iface.get("external-connection-point-ref")
929 == vnfd_mgmt_cp
930 ):
931 vdu_iface["mgmt-vnf"] = True
932 vdu_iface["mgmt-interface"] = True
933
934 for ecp in vdu_mgmt_cp:
935 if vdu_iface.get("external-connection-point-ref") == ecp:
936 vdu_iface["mgmt-interface"] = True
937
938 if iface.get("virtual-interface"):
939 vdu_iface.update(deepcopy(iface["virtual-interface"]))
940
941 # look for network where this interface is connected
942 iface_ext_cp = vdu_iface.get("external-connection-point-ref")
943 if iface_ext_cp:
944 # TODO: Change for multiple df support
945 for df in get_iterable(nsd.get("df")):
946 for vnf_profile in get_iterable(df.get("vnf-profile")):
947 for vlc_index, vlc in enumerate(
948 get_iterable(
949 vnf_profile.get("virtual-link-connectivity")
950 )
951 ):
952 for cpd in get_iterable(
953 vlc.get("constituent-cpd-id")
954 ):
955 if (
956 cpd.get("constituent-cpd-id")
957 == iface_ext_cp
958 ):
959 vdu_iface["ns-vld-id"] = vlc.get(
960 "virtual-link-profile-id"
961 )
962 # if iface type is SRIOV or PASSTHROUGH, set pci-interfaces flag to True
963 if vdu_iface.get("type") in (
964 "SR-IOV",
965 "PCI-PASSTHROUGH",
966 ):
967 nsr_descriptor["vld"][vlc_index][
968 "pci-interfaces"
969 ] = True
970 break
971 elif vdu_iface.get("internal-connection-point-ref"):
972 vdu_iface["vnf-vld-id"] = icp.get("int-virtual-link-desc")
973 # TODO: store fixed IP address in the record (if it exists in the ICP)
974 # if iface type is SRIOV or PASSTHROUGH, set pci-interfaces flag to True
975 if vdu_iface.get("type") in ("SR-IOV", "PCI-PASSTHROUGH"):
976 ivld_index = utils.find_index_in_list(
977 vnfd.get("int-virtual-link-desc", ()),
978 lambda ivld: ivld["id"]
979 == icp.get("int-virtual-link-desc"),
980 )
981 vnfr_descriptor["vld"][ivld_index]["pci-interfaces"] = True
982
983 vdur["interfaces"].append(vdu_iface)
984
985 if vdu.get("sw-image-desc"):
986 sw_image = utils.find_in_list(
987 vnfd.get("sw-image-desc", ()),
988 lambda image: image["id"] == vdu.get("sw-image-desc"),
989 )
990 nsr_sw_image_data = utils.find_in_list(
991 nsr_descriptor["image"],
992 lambda nsr_image: (nsr_image.get("image") == sw_image.get("image")),
993 )
994 vdur["ns-image-id"] = nsr_sw_image_data["id"]
995
996 if vdu.get("alternative-sw-image-desc"):
997 alt_image_ids = []
998 for alt_image_id in vdu.get("alternative-sw-image-desc", ()):
999 sw_image = utils.find_in_list(
1000 vnfd.get("sw-image-desc", ()),
1001 lambda image: image["id"] == alt_image_id,
1002 )
1003 nsr_sw_image_data = utils.find_in_list(
1004 nsr_descriptor["image"],
1005 lambda nsr_image: (
1006 nsr_image.get("image") == sw_image.get("image")
1007 ),
1008 )
1009 alt_image_ids.append(nsr_sw_image_data["id"])
1010 vdur["alt-image-ids"] = alt_image_ids
1011
1012 revision = revision if revision is not None else 1
1013 flavor_data_name = (
1014 vdu["id"][:56] + "-" + vnf_index + "-" + str(revision) + "-flv"
1015 )
1016 nsr_flavor_desc = utils.find_in_list(
1017 nsr_descriptor["flavor"],
1018 lambda flavor: flavor["name"] == flavor_data_name,
1019 )
1020
1021 if nsr_flavor_desc:
1022 vdur["ns-flavor-id"] = nsr_flavor_desc["id"]
1023
1024 # Adding Affinity groups information to vdur
1025 try:
1026 vdu_profile_affinity_group = utils.find_in_list(
1027 vnfd.get("df")[0]["vdu-profile"],
1028 lambda a_vdu: a_vdu["id"] == vdu["id"],
1029 )
1030 except Exception:
1031 vdu_profile_affinity_group = None
1032
1033 if vdu_profile_affinity_group:
1034 affinity_group_ids = []
1035 for affinity_group in vdu_profile_affinity_group.get(
1036 "affinity-or-anti-affinity-group", ()
1037 ):
1038 vdu_affinity_group = utils.find_in_list(
1039 vdu_profile_affinity_group.get(
1040 "affinity-or-anti-affinity-group", ()
1041 ),
1042 lambda ag_fp: ag_fp["id"] == affinity_group["id"],
1043 )
1044 nsr_affinity_group = utils.find_in_list(
1045 nsr_descriptor["affinity-or-anti-affinity-group"],
1046 lambda nsr_ag: (
1047 nsr_ag.get("ag-id") == vdu_affinity_group.get("id")
1048 and nsr_ag.get("member-vnf-index")
1049 == vnfr_descriptor.get("member-vnf-index-ref")
1050 ),
1051 )
1052 # Update Affinity Group VIM name if VDU instantiation parameter is present
1053 if vnf_params and vnf_params.get("affinity-or-anti-affinity-group"):
1054 vnf_params_affinity_group = utils.find_in_list(
1055 vnf_params["affinity-or-anti-affinity-group"],
1056 lambda vnfp_ag: (
1057 vnfp_ag.get("id") == vdu_affinity_group.get("id")
1058 ),
1059 )
1060 if vnf_params_affinity_group.get("vim-affinity-group-id"):
1061 nsr_affinity_group[
1062 "vim-affinity-group-id"
1063 ] = vnf_params_affinity_group["vim-affinity-group-id"]
1064 affinity_group_ids.append(nsr_affinity_group["id"])
1065 vdur["affinity-or-anti-affinity-group-id"] = affinity_group_ids
1066
1067 if vdu_instantiation_level:
1068 count = vdu_instantiation_level.get("number-of-instances")
1069 else:
1070 count = 1
1071
1072 for index in range(0, count):
1073 vdur = deepcopy(vdur)
1074 for iface in vdur["interfaces"]:
1075 if iface.get("ip-address") and index != 0:
1076 iface["ip-address"] = increment_ip_mac(iface["ip-address"])
1077 if iface.get("mac-address") and index != 0:
1078 iface["mac-address"] = increment_ip_mac(iface["mac-address"])
1079
1080 vdur["_id"] = str(uuid4())
1081 vdur["id"] = vdur["_id"]
1082 vdur["count-index"] = index
1083 vnfr_descriptor["vdur"].append(vdur)
1084
1085 return vnfr_descriptor
1086
1087 def vca_status_refresh(self, session, ns_instance_content, filter_q):
1088 """
1089 vcaStatus in ns_instance_content maybe stale, check if it is stale and create lcm op
1090 to refresh vca status by sending message to LCM when it is stale. Ignore otherwise.
1091 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
1092 :param ns_instance_content: ns instance content
1093 :param filter_q: dict: query parameter containing vcaStatus-refresh as true or false
1094 :return: None
1095 """
1096 time_now, time_delta = (
1097 time(),
1098 time() - ns_instance_content["_admin"]["modified"],
1099 )
1100 force_refresh = (
1101 isinstance(filter_q, dict) and filter_q.get("vcaStatusRefresh") == "true"
1102 )
1103 threshold_reached = time_delta > 120
1104 if force_refresh or threshold_reached:
1105 operation, _id = "vca_status_refresh", ns_instance_content["_id"]
1106 ns_instance_content["_admin"]["modified"] = time_now
1107 self.db.set_one(self.topic, {"_id": _id}, ns_instance_content)
1108 nslcmop_desc = NsLcmOpTopic._create_nslcmop(_id, operation, None)
1109 self.format_on_new(
1110 nslcmop_desc, session["project_id"], make_public=session["public"]
1111 )
1112 nslcmop_desc["_admin"].pop("nsState")
1113 self.msg.write("ns", operation, nslcmop_desc)
1114 return
1115
1116 def show(self, session, _id, filter_q=None, api_req=False):
1117 """
1118 Get complete information on an ns instance.
1119 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
1120 :param _id: string, ns instance id
1121 :param filter_q: dict: query parameter containing vcaStatusRefresh as true or false
1122 :param api_req: True if this call is serving an external API request. False if serving internal request.
1123 :return: dictionary, raise exception if not found.
1124 """
1125 ns_instance_content = super().show(session, _id, api_req)
1126 self.vca_status_refresh(session, ns_instance_content, filter_q)
1127 return ns_instance_content
1128
1129 def edit(self, session, _id, indata=None, kwargs=None, content=None):
1130 raise EngineException(
1131 "Method edit called directly", HTTPStatus.INTERNAL_SERVER_ERROR
1132 )
1133
1134
1135 class VnfrTopic(BaseTopic):
1136 topic = "vnfrs"
1137 topic_msg = None
1138
1139 def __init__(self, db, fs, msg, auth):
1140 BaseTopic.__init__(self, db, fs, msg, auth)
1141
1142 def delete(self, session, _id, dry_run=False, not_send_msg=None):
1143 raise EngineException(
1144 "Method delete called directly", HTTPStatus.INTERNAL_SERVER_ERROR
1145 )
1146
1147 def edit(self, session, _id, indata=None, kwargs=None, content=None):
1148 raise EngineException(
1149 "Method edit called directly", HTTPStatus.INTERNAL_SERVER_ERROR
1150 )
1151
1152 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
1153 # Not used because vnfrs are created and deleted by NsrTopic class directly
1154 raise EngineException(
1155 "Method new called directly", HTTPStatus.INTERNAL_SERVER_ERROR
1156 )
1157
1158
1159 class NsLcmOpTopic(BaseTopic):
1160 topic = "nslcmops"
1161 topic_msg = "ns"
1162 operation_schema = { # mapping between operation and jsonschema to validate
1163 "instantiate": ns_instantiate,
1164 "action": ns_action,
1165 "update": ns_update,
1166 "scale": ns_scale,
1167 "heal": ns_heal,
1168 "terminate": ns_terminate,
1169 "migrate": ns_migrate,
1170 "verticalscale": ns_verticalscale,
1171 }
1172
1173 def __init__(self, db, fs, msg, auth):
1174 BaseTopic.__init__(self, db, fs, msg, auth)
1175 self.nsrtopic = NsrTopic(db, fs, msg, auth)
1176
1177 def _check_ns_operation(self, session, nsr, operation, indata):
1178 """
1179 Check that user has enter right parameters for the operation
1180 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
1181 :param operation: it can be: instantiate, terminate, action, update, heal
1182 :param indata: descriptor with the parameters of the operation
1183 :return: None
1184 """
1185 if operation == "action":
1186 self._check_action_ns_operation(indata, nsr)
1187 elif operation == "scale":
1188 self._check_scale_ns_operation(indata, nsr)
1189 elif operation == "update":
1190 self._check_update_ns_operation(indata, nsr)
1191 elif operation == "heal":
1192 self._check_heal_ns_operation(indata, nsr)
1193 elif operation == "instantiate":
1194 self._check_instantiate_ns_operation(indata, nsr, session)
1195
1196 def _check_action_ns_operation(self, indata, nsr):
1197 nsd = nsr["nsd"]
1198 # check vnf_member_index
1199 if indata.get("vnf_member_index"):
1200 indata["member_vnf_index"] = indata.pop(
1201 "vnf_member_index"
1202 ) # for backward compatibility
1203 if indata.get("member_vnf_index"):
1204 vnfd = self._get_vnfd_from_vnf_member_index(
1205 indata["member_vnf_index"], nsr["_id"]
1206 )
1207 try:
1208 configs = vnfd.get("df")[0]["lcm-operations-configuration"][
1209 "operate-vnf-op-config"
1210 ]["day1-2"]
1211 except Exception:
1212 configs = []
1213
1214 if indata.get("vdu_id"):
1215 self._check_valid_vdu(vnfd, indata["vdu_id"])
1216 descriptor_configuration = utils.find_in_list(
1217 configs, lambda config: config["id"] == indata["vdu_id"]
1218 )
1219 elif indata.get("kdu_name"):
1220 self._check_valid_kdu(vnfd, indata["kdu_name"])
1221 descriptor_configuration = utils.find_in_list(
1222 configs, lambda config: config["id"] == indata.get("kdu_name")
1223 )
1224 else:
1225 descriptor_configuration = utils.find_in_list(
1226 configs, lambda config: config["id"] == vnfd["id"]
1227 )
1228 if descriptor_configuration is not None:
1229 descriptor_configuration = descriptor_configuration.get(
1230 "config-primitive"
1231 )
1232 else: # use a NSD
1233 descriptor_configuration = nsd.get("ns-configuration", {}).get(
1234 "config-primitive"
1235 )
1236
1237 # For k8s allows default primitives without validating the parameters
1238 if indata.get("kdu_name") and indata["primitive"] in (
1239 "upgrade",
1240 "rollback",
1241 "status",
1242 "inspect",
1243 "readme",
1244 ):
1245 # TODO should be checked that rollback only can contains revsision_numbe????
1246 if not indata.get("member_vnf_index"):
1247 raise EngineException(
1248 "Missing action parameter 'member_vnf_index' for default KDU primitive '{}'".format(
1249 indata["primitive"]
1250 )
1251 )
1252 return
1253 # if not, check primitive
1254 for config_primitive in get_iterable(descriptor_configuration):
1255 if indata["primitive"] == config_primitive["name"]:
1256 # check needed primitive_params are provided
1257 if indata.get("primitive_params"):
1258 in_primitive_params_copy = copy(indata["primitive_params"])
1259 else:
1260 in_primitive_params_copy = {}
1261 for paramd in get_iterable(config_primitive.get("parameter")):
1262 if paramd["name"] in in_primitive_params_copy:
1263 del in_primitive_params_copy[paramd["name"]]
1264 elif not paramd.get("default-value"):
1265 raise EngineException(
1266 "Needed parameter {} not provided for primitive '{}'".format(
1267 paramd["name"], indata["primitive"]
1268 )
1269 )
1270 # check no extra primitive params are provided
1271 if in_primitive_params_copy:
1272 raise EngineException(
1273 "parameter/s '{}' not present at vnfd /nsd for primitive '{}'".format(
1274 list(in_primitive_params_copy.keys()), indata["primitive"]
1275 )
1276 )
1277 break
1278 else:
1279 raise EngineException(
1280 "Invalid primitive '{}' is not present at vnfd/nsd".format(
1281 indata["primitive"]
1282 )
1283 )
1284
1285 def _check_update_ns_operation(self, indata, nsr) -> None:
1286 """Validates the ns-update request according to updateType
1287
1288 If updateType is CHANGE_VNFPKG:
1289 - it checks the vnfInstanceId, whether it's available under ns instance
1290 - it checks the vnfdId whether it matches with the vnfd-id in the vnf-record of specified VNF.
1291 Otherwise exception will be raised.
1292 If updateType is REMOVE_VNF:
1293 - it checks if the vnfInstanceId is available in the ns instance
1294 - Otherwise exception will be raised.
1295
1296 Args:
1297 indata: includes updateType such as CHANGE_VNFPKG,
1298 nsr: network service record
1299
1300 Raises:
1301 EngineException:
1302 a meaningful error if given update parameters are not proper such as
1303 "Error in validating ns-update request: <ID> does not match
1304 with the vnfd-id of vnfinstance
1305 http_code=HTTPStatus.UNPROCESSABLE_ENTITY"
1306
1307 """
1308 try:
1309 if indata["updateType"] == "CHANGE_VNFPKG":
1310 # vnfInstanceId, nsInstanceId, vnfdId are mandatory
1311 vnf_instance_id = indata["changeVnfPackageData"]["vnfInstanceId"]
1312 ns_instance_id = indata["nsInstanceId"]
1313 vnfd_id_2update = indata["changeVnfPackageData"]["vnfdId"]
1314
1315 if vnf_instance_id not in nsr["constituent-vnfr-ref"]:
1316
1317 raise EngineException(
1318 f"Error in validating ns-update request: vnf {vnf_instance_id} does not "
1319 f"belong to NS {ns_instance_id}",
1320 http_code=HTTPStatus.UNPROCESSABLE_ENTITY,
1321 )
1322
1323 # Getting vnfrs through the ns_instance_id
1324 vnfrs = self.db.get_list("vnfrs", {"nsr-id-ref": ns_instance_id})
1325 constituent_vnfd_id = next(
1326 (
1327 vnfr["vnfd-id"]
1328 for vnfr in vnfrs
1329 if vnfr["id"] == vnf_instance_id
1330 ),
1331 None,
1332 )
1333
1334 # Check the given vnfd-id belongs to given vnf instance
1335 if constituent_vnfd_id and (vnfd_id_2update != constituent_vnfd_id):
1336
1337 raise EngineException(
1338 f"Error in validating ns-update request: vnfd-id {vnfd_id_2update} does not "
1339 f"match with the vnfd-id: {constituent_vnfd_id} of VNF instance: {vnf_instance_id}",
1340 http_code=HTTPStatus.UNPROCESSABLE_ENTITY,
1341 )
1342
1343 # Validating the ns update timeout
1344 if (
1345 indata.get("timeout_ns_update")
1346 and indata["timeout_ns_update"] < 300
1347 ):
1348 raise EngineException(
1349 "Error in validating ns-update request: {} second is not enough "
1350 "to upgrade the VNF instance: {}".format(
1351 indata["timeout_ns_update"], vnf_instance_id
1352 ),
1353 http_code=HTTPStatus.UNPROCESSABLE_ENTITY,
1354 )
1355 elif indata["updateType"] == "REMOVE_VNF":
1356 vnf_instance_id = indata["removeVnfInstanceId"]
1357 ns_instance_id = indata["nsInstanceId"]
1358 if vnf_instance_id not in nsr["constituent-vnfr-ref"]:
1359 raise EngineException(
1360 "Invalid VNF Instance Id. '{}' is not "
1361 "present in the NS '{}'".format(vnf_instance_id, ns_instance_id)
1362 )
1363
1364 except (
1365 DbException,
1366 AttributeError,
1367 IndexError,
1368 KeyError,
1369 ValueError,
1370 ) as e:
1371 raise type(e)(
1372 "Ns update request could not be processed with error: {}.".format(e)
1373 )
1374
1375 def _check_scale_ns_operation(self, indata, nsr):
1376 vnfd = self._get_vnfd_from_vnf_member_index(
1377 indata["scaleVnfData"]["scaleByStepData"]["member-vnf-index"], nsr["_id"]
1378 )
1379 for scaling_aspect in get_iterable(vnfd.get("df", ())[0]["scaling-aspect"]):
1380 if (
1381 indata["scaleVnfData"]["scaleByStepData"]["scaling-group-descriptor"]
1382 == scaling_aspect["id"]
1383 ):
1384 break
1385 else:
1386 raise EngineException(
1387 "Invalid scaleVnfData:scaleByStepData:scaling-group-descriptor '{}' is not "
1388 "present at vnfd:scaling-aspect".format(
1389 indata["scaleVnfData"]["scaleByStepData"][
1390 "scaling-group-descriptor"
1391 ]
1392 )
1393 )
1394
1395 def _check_heal_ns_operation(self, indata, nsr):
1396 return
1397
1398 def _check_instantiate_ns_operation(self, indata, nsr, session):
1399 vnf_member_index_to_vnfd = {} # map between vnf_member_index to vnf descriptor.
1400 vim_accounts = []
1401 wim_accounts = []
1402 nsd = nsr["nsd"]
1403 self._check_valid_vim_account(indata["vimAccountId"], vim_accounts, session)
1404 self._check_valid_wim_account(indata.get("wimAccountId"), wim_accounts, session)
1405 for in_vnf in get_iterable(indata.get("vnf")):
1406 member_vnf_index = in_vnf["member-vnf-index"]
1407 if vnf_member_index_to_vnfd.get(member_vnf_index):
1408 vnfd = vnf_member_index_to_vnfd[member_vnf_index]
1409 else:
1410 vnfd = self._get_vnfd_from_vnf_member_index(
1411 member_vnf_index, nsr["_id"]
1412 )
1413 vnf_member_index_to_vnfd[
1414 member_vnf_index
1415 ] = vnfd # add to cache, avoiding a later look for
1416 self._check_vnf_instantiation_params(in_vnf, vnfd)
1417 if in_vnf.get("vimAccountId"):
1418 self._check_valid_vim_account(
1419 in_vnf["vimAccountId"], vim_accounts, session
1420 )
1421
1422 for in_vld in get_iterable(indata.get("vld")):
1423 self._check_valid_wim_account(
1424 in_vld.get("wimAccountId"), wim_accounts, session
1425 )
1426 for vldd in get_iterable(nsd.get("virtual-link-desc")):
1427 if in_vld["name"] == vldd["id"]:
1428 break
1429 else:
1430 raise EngineException(
1431 "Invalid parameter vld:name='{}' is not present at nsd:vld".format(
1432 in_vld["name"]
1433 )
1434 )
1435
1436 def _get_vnfd_from_vnf_member_index(self, member_vnf_index, nsr_id):
1437 # Obtain vnf descriptor. The vnfr is used to get the vnfd._id used for this member_vnf_index
1438 vnfr = self.db.get_one(
1439 "vnfrs",
1440 {"nsr-id-ref": nsr_id, "member-vnf-index-ref": member_vnf_index},
1441 fail_on_empty=False,
1442 )
1443 if not vnfr:
1444 raise EngineException(
1445 "Invalid parameter member_vnf_index='{}' is not one of the "
1446 "nsd:constituent-vnfd".format(member_vnf_index)
1447 )
1448
1449 # Backwards compatibility: if there is no revision, get it from the one and only VNFD entry
1450 if "revision" in vnfr:
1451 vnfd_revision = vnfr["vnfd-id"] + ":" + str(vnfr["revision"])
1452 vnfd = self.db.get_one(
1453 "vnfds_revisions", {"_id": vnfd_revision}, fail_on_empty=False
1454 )
1455 else:
1456 vnfd = self.db.get_one(
1457 "vnfds", {"_id": vnfr["vnfd-id"]}, fail_on_empty=False
1458 )
1459
1460 if not vnfd:
1461 raise EngineException(
1462 "vnfd id={} has been deleted!. Operation cannot be performed".format(
1463 vnfr["vnfd-id"]
1464 )
1465 )
1466 return vnfd
1467
1468 def _check_valid_vdu(self, vnfd, vdu_id):
1469 for vdud in get_iterable(vnfd.get("vdu")):
1470 if vdud["id"] == vdu_id:
1471 return vdud
1472 else:
1473 raise EngineException(
1474 "Invalid parameter vdu_id='{}' not present at vnfd:vdu:id".format(
1475 vdu_id
1476 )
1477 )
1478
1479 def _check_valid_kdu(self, vnfd, kdu_name):
1480 for kdud in get_iterable(vnfd.get("kdu")):
1481 if kdud["name"] == kdu_name:
1482 return kdud
1483 else:
1484 raise EngineException(
1485 "Invalid parameter kdu_name='{}' not present at vnfd:kdu:name".format(
1486 kdu_name
1487 )
1488 )
1489
1490 def _check_vnf_instantiation_params(self, in_vnf, vnfd):
1491 for in_vdu in get_iterable(in_vnf.get("vdu")):
1492 for vdu in get_iterable(vnfd.get("vdu")):
1493 if in_vdu["id"] == vdu["id"]:
1494 for volume in get_iterable(in_vdu.get("volume")):
1495 for volumed in get_iterable(vdu.get("virtual-storage-desc")):
1496 if volumed == volume["name"]:
1497 break
1498 else:
1499 raise EngineException(
1500 "Invalid parameter vnf[member-vnf-index='{}']:vdu[id='{}']:"
1501 "volume:name='{}' is not present at "
1502 "vnfd:vdu:virtual-storage-desc list".format(
1503 in_vnf["member-vnf-index"],
1504 in_vdu["id"],
1505 volume["id"],
1506 )
1507 )
1508
1509 vdu_if_names = set()
1510 for cpd in get_iterable(vdu.get("int-cpd")):
1511 for iface in get_iterable(
1512 cpd.get("virtual-network-interface-requirement")
1513 ):
1514 vdu_if_names.add(iface.get("name"))
1515
1516 for in_iface in get_iterable(in_vdu.get("interface")):
1517 if in_iface["name"] in vdu_if_names:
1518 break
1519 else:
1520 raise EngineException(
1521 "Invalid parameter vnf[member-vnf-index='{}']:vdu[id='{}']:"
1522 "int-cpd[id='{}'] is not present at vnfd:vdu:int-cpd".format(
1523 in_vnf["member-vnf-index"],
1524 in_vdu["id"],
1525 in_iface["name"],
1526 )
1527 )
1528 break
1529
1530 else:
1531 raise EngineException(
1532 "Invalid parameter vnf[member-vnf-index='{}']:vdu[id='{}'] is not present "
1533 "at vnfd:vdu".format(in_vnf["member-vnf-index"], in_vdu["id"])
1534 )
1535
1536 vnfd_ivlds_cpds = {
1537 ivld.get("id"): set()
1538 for ivld in get_iterable(vnfd.get("int-virtual-link-desc"))
1539 }
1540 for vdu in get_iterable(vnfd.get("vdu")):
1541 for cpd in get_iterable(vnfd.get("int-cpd")):
1542 if cpd.get("int-virtual-link-desc"):
1543 vnfd_ivlds_cpds[cpd.get("int-virtual-link-desc")] = cpd.get("id")
1544
1545 for in_ivld in get_iterable(in_vnf.get("internal-vld")):
1546 if in_ivld.get("name") in vnfd_ivlds_cpds:
1547 for in_icp in get_iterable(in_ivld.get("internal-connection-point")):
1548 if in_icp["id-ref"] in vnfd_ivlds_cpds[in_ivld.get("name")]:
1549 break
1550 else:
1551 raise EngineException(
1552 "Invalid parameter vnf[member-vnf-index='{}']:internal-vld[name"
1553 "='{}']:internal-connection-point[id-ref:'{}'] is not present at "
1554 "vnfd:internal-vld:name/id:internal-connection-point".format(
1555 in_vnf["member-vnf-index"],
1556 in_ivld["name"],
1557 in_icp["id-ref"],
1558 )
1559 )
1560 else:
1561 raise EngineException(
1562 "Invalid parameter vnf[member-vnf-index='{}']:internal-vld:name='{}'"
1563 " is not present at vnfd '{}'".format(
1564 in_vnf["member-vnf-index"], in_ivld["name"], vnfd["id"]
1565 )
1566 )
1567
1568 def _check_valid_vim_account(self, vim_account, vim_accounts, session):
1569 if vim_account in vim_accounts:
1570 return
1571 try:
1572 db_filter = self._get_project_filter(session)
1573 db_filter["_id"] = vim_account
1574 self.db.get_one("vim_accounts", db_filter)
1575 except Exception:
1576 raise EngineException(
1577 "Invalid vimAccountId='{}' not present for the project".format(
1578 vim_account
1579 )
1580 )
1581 vim_accounts.append(vim_account)
1582
1583 def _get_vim_account(self, vim_id: str, session):
1584 try:
1585 db_filter = self._get_project_filter(session)
1586 db_filter["_id"] = vim_id
1587 return self.db.get_one("vim_accounts", db_filter)
1588 except Exception:
1589 raise EngineException(
1590 "Invalid vimAccountId='{}' not present for the project".format(vim_id)
1591 )
1592
1593 def _check_valid_wim_account(self, wim_account, wim_accounts, session):
1594 if not isinstance(wim_account, str):
1595 return
1596 if wim_account in wim_accounts:
1597 return
1598 try:
1599 db_filter = self._get_project_filter(session)
1600 db_filter["_id"] = wim_account
1601 self.db.get_one("wim_accounts", db_filter)
1602 except Exception:
1603 raise EngineException(
1604 "Invalid wimAccountId='{}' not present for the project".format(
1605 wim_account
1606 )
1607 )
1608 wim_accounts.append(wim_account)
1609
1610 def _look_for_pdu(
1611 self, session, rollback, vnfr, vim_account, vnfr_update, vnfr_update_rollback
1612 ):
1613 """
1614 Look for a free PDU in the catalog matching vdur type and interfaces. Fills vnfr.vdur with the interface
1615 (ip_address, ...) information.
1616 Modifies PDU _admin.usageState to 'IN_USE'
1617 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
1618 :param rollback: list with the database modifications to rollback if needed
1619 :param vnfr: vnfr to be updated. It is modified with pdu interface info if pdu is found
1620 :param vim_account: vim_account where this vnfr should be deployed
1621 :param vnfr_update: dictionary filled by this method with changes to be done at database vnfr
1622 :param vnfr_update_rollback: dictionary filled by this method with original content of vnfr in case a rollback
1623 of the changed vnfr is needed
1624
1625 :return: List of PDU interfaces that are connected to an existing VIM network. Each item contains:
1626 "vim-network-name": used at VIM
1627 "name": interface name
1628 "vnf-vld-id": internal VNFD vld where this interface is connected, or
1629 "ns-vld-id": NSD vld where this interface is connected.
1630 NOTE: One, and only one between 'vnf-vld-id' and 'ns-vld-id' contains a value. The other will be None
1631 """
1632
1633 ifaces_forcing_vim_network = []
1634 for vdur_index, vdur in enumerate(get_iterable(vnfr.get("vdur"))):
1635 if not vdur.get("pdu-type"):
1636 continue
1637 pdu_type = vdur.get("pdu-type")
1638 pdu_filter = self._get_project_filter(session)
1639 pdu_filter["vim_accounts"] = vim_account
1640 pdu_filter["type"] = pdu_type
1641 pdu_filter["_admin.operationalState"] = "ENABLED"
1642 pdu_filter["_admin.usageState"] = "NOT_IN_USE"
1643 # TODO feature 1417: "shared": True,
1644
1645 available_pdus = self.db.get_list("pdus", pdu_filter)
1646 for pdu in available_pdus:
1647 # step 1 check if this pdu contains needed interfaces:
1648 match_interfaces = True
1649 for vdur_interface in vdur["interfaces"]:
1650 for pdu_interface in pdu["interfaces"]:
1651 if pdu_interface["name"] == vdur_interface["name"]:
1652 # TODO feature 1417: match per mgmt type
1653 break
1654 else: # no interface found for name
1655 match_interfaces = False
1656 break
1657 if match_interfaces:
1658 break
1659 else:
1660 raise EngineException(
1661 "No PDU of type={} at vim_account={} found for member_vnf_index={}, vdu={} matching interface "
1662 "names".format(
1663 pdu_type,
1664 vim_account,
1665 vnfr["member-vnf-index-ref"],
1666 vdur["vdu-id-ref"],
1667 )
1668 )
1669
1670 # step 2. Update pdu
1671 rollback_pdu = {
1672 "_admin.usageState": pdu["_admin"]["usageState"],
1673 "_admin.usage.vnfr_id": None,
1674 "_admin.usage.nsr_id": None,
1675 "_admin.usage.vdur": None,
1676 }
1677 self.db.set_one(
1678 "pdus",
1679 {"_id": pdu["_id"]},
1680 {
1681 "_admin.usageState": "IN_USE",
1682 "_admin.usage": {
1683 "vnfr_id": vnfr["_id"],
1684 "nsr_id": vnfr["nsr-id-ref"],
1685 "vdur": vdur["vdu-id-ref"],
1686 },
1687 },
1688 )
1689 rollback.append(
1690 {
1691 "topic": "pdus",
1692 "_id": pdu["_id"],
1693 "operation": "set",
1694 "content": rollback_pdu,
1695 }
1696 )
1697
1698 # step 3. Fill vnfr info by filling vdur
1699 vdu_text = "vdur.{}".format(vdur_index)
1700 vnfr_update_rollback[vdu_text + ".pdu-id"] = None
1701 vnfr_update[vdu_text + ".pdu-id"] = pdu["_id"]
1702 for iface_index, vdur_interface in enumerate(vdur["interfaces"]):
1703 for pdu_interface in pdu["interfaces"]:
1704 if pdu_interface["name"] == vdur_interface["name"]:
1705 iface_text = vdu_text + ".interfaces.{}".format(iface_index)
1706 for k, v in pdu_interface.items():
1707 if k in (
1708 "ip-address",
1709 "mac-address",
1710 ): # TODO: switch-xxxxx must be inserted
1711 vnfr_update[iface_text + ".{}".format(k)] = v
1712 vnfr_update_rollback[
1713 iface_text + ".{}".format(k)
1714 ] = vdur_interface.get(v)
1715 if pdu_interface.get("ip-address"):
1716 if vdur_interface.get(
1717 "mgmt-interface"
1718 ) or vdur_interface.get("mgmt-vnf"):
1719 vnfr_update_rollback[
1720 vdu_text + ".ip-address"
1721 ] = vdur.get("ip-address")
1722 vnfr_update[vdu_text + ".ip-address"] = pdu_interface[
1723 "ip-address"
1724 ]
1725 if vdur_interface.get("mgmt-vnf"):
1726 vnfr_update_rollback["ip-address"] = vnfr.get(
1727 "ip-address"
1728 )
1729 vnfr_update["ip-address"] = pdu_interface["ip-address"]
1730 vnfr_update[vdu_text + ".ip-address"] = pdu_interface[
1731 "ip-address"
1732 ]
1733 if pdu_interface.get("vim-network-name") or pdu_interface.get(
1734 "vim-network-id"
1735 ):
1736 ifaces_forcing_vim_network.append(
1737 {
1738 "name": vdur_interface.get("vnf-vld-id")
1739 or vdur_interface.get("ns-vld-id"),
1740 "vnf-vld-id": vdur_interface.get("vnf-vld-id"),
1741 "ns-vld-id": vdur_interface.get("ns-vld-id"),
1742 }
1743 )
1744 if pdu_interface.get("vim-network-id"):
1745 ifaces_forcing_vim_network[-1][
1746 "vim-network-id"
1747 ] = pdu_interface["vim-network-id"]
1748 if pdu_interface.get("vim-network-name"):
1749 ifaces_forcing_vim_network[-1][
1750 "vim-network-name"
1751 ] = pdu_interface["vim-network-name"]
1752 break
1753
1754 return ifaces_forcing_vim_network
1755
1756 def _look_for_k8scluster(
1757 self, session, rollback, vnfr, vim_account, vnfr_update, vnfr_update_rollback
1758 ):
1759 """
1760 Look for an available k8scluster for all the kuds in the vnfd matching version and cni requirements.
1761 Fills vnfr.kdur with the selected k8scluster
1762
1763 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
1764 :param rollback: list with the database modifications to rollback if needed
1765 :param vnfr: vnfr to be updated. It is modified with pdu interface info if pdu is found
1766 :param vim_account: vim_account where this vnfr should be deployed
1767 :param vnfr_update: dictionary filled by this method with changes to be done at database vnfr
1768 :param vnfr_update_rollback: dictionary filled by this method with original content of vnfr in case a rollback
1769 of the changed vnfr is needed
1770
1771 :return: List of KDU interfaces that are connected to an existing VIM network. Each item contains:
1772 "vim-network-name": used at VIM
1773 "name": interface name
1774 "vnf-vld-id": internal VNFD vld where this interface is connected, or
1775 "ns-vld-id": NSD vld where this interface is connected.
1776 NOTE: One, and only one between 'vnf-vld-id' and 'ns-vld-id' contains a value. The other will be None
1777 """
1778
1779 ifaces_forcing_vim_network = []
1780 if not vnfr.get("kdur"):
1781 return ifaces_forcing_vim_network
1782
1783 kdu_filter = self._get_project_filter(session)
1784 kdu_filter["vim_account"] = vim_account
1785 # TODO kdu_filter["_admin.operationalState"] = "ENABLED"
1786 available_k8sclusters = self.db.get_list("k8sclusters", kdu_filter)
1787
1788 k8s_requirements = {} # just for logging
1789 for k8scluster in available_k8sclusters:
1790 if not vnfr.get("k8s-cluster"):
1791 break
1792 # restrict by cni
1793 if vnfr["k8s-cluster"].get("cni"):
1794 k8s_requirements["cni"] = vnfr["k8s-cluster"]["cni"]
1795 if not set(vnfr["k8s-cluster"]["cni"]).intersection(
1796 k8scluster.get("cni", ())
1797 ):
1798 continue
1799 # restrict by version
1800 if vnfr["k8s-cluster"].get("version"):
1801 k8s_requirements["version"] = vnfr["k8s-cluster"]["version"]
1802 if k8scluster.get("k8s_version") not in vnfr["k8s-cluster"]["version"]:
1803 continue
1804 # restrict by number of networks
1805 if vnfr["k8s-cluster"].get("nets"):
1806 k8s_requirements["networks"] = len(vnfr["k8s-cluster"]["nets"])
1807 if not k8scluster.get("nets") or len(k8scluster["nets"]) < len(
1808 vnfr["k8s-cluster"]["nets"]
1809 ):
1810 continue
1811 break
1812 else:
1813 raise EngineException(
1814 "No k8scluster with requirements='{}' at vim_account={} found for member_vnf_index={}".format(
1815 k8s_requirements, vim_account, vnfr["member-vnf-index-ref"]
1816 )
1817 )
1818
1819 for kdur_index, kdur in enumerate(get_iterable(vnfr.get("kdur"))):
1820 # step 3. Fill vnfr info by filling kdur
1821 kdu_text = "kdur.{}.".format(kdur_index)
1822 vnfr_update_rollback[kdu_text + "k8s-cluster.id"] = None
1823 vnfr_update[kdu_text + "k8s-cluster.id"] = k8scluster["_id"]
1824
1825 # step 4. Check VIM networks that forces the selected k8s_cluster
1826 if vnfr.get("k8s-cluster") and vnfr["k8s-cluster"].get("nets"):
1827 k8scluster_net_list = list(k8scluster.get("nets").keys())
1828 for net_index, kdur_net in enumerate(vnfr["k8s-cluster"]["nets"]):
1829 # get a network from k8s_cluster nets. If name matches use this, if not use other
1830 if kdur_net["id"] in k8scluster_net_list: # name matches
1831 vim_net = k8scluster["nets"][kdur_net["id"]]
1832 k8scluster_net_list.remove(kdur_net["id"])
1833 else:
1834 vim_net = k8scluster["nets"][k8scluster_net_list[0]]
1835 k8scluster_net_list.pop(0)
1836 vnfr_update_rollback[
1837 "k8s-cluster.nets.{}.vim_net".format(net_index)
1838 ] = None
1839 vnfr_update["k8s-cluster.nets.{}.vim_net".format(net_index)] = vim_net
1840 if vim_net and (
1841 kdur_net.get("vnf-vld-id") or kdur_net.get("ns-vld-id")
1842 ):
1843 ifaces_forcing_vim_network.append(
1844 {
1845 "name": kdur_net.get("vnf-vld-id")
1846 or kdur_net.get("ns-vld-id"),
1847 "vnf-vld-id": kdur_net.get("vnf-vld-id"),
1848 "ns-vld-id": kdur_net.get("ns-vld-id"),
1849 "vim-network-name": vim_net, # TODO can it be vim-network-id ???
1850 }
1851 )
1852 # TODO check that this forcing is not incompatible with other forcing
1853 return ifaces_forcing_vim_network
1854
1855 def _update_vnfrs_from_nsd(self, nsr):
1856 step = "Getting vnf_profiles from nsd" # first step must be defined outside try
1857 try:
1858 nsr_id = nsr["_id"]
1859 nsd = nsr["nsd"]
1860
1861 vnf_profiles = nsd.get("df", [{}])[0].get("vnf-profile", ())
1862 vld_fixed_ip_connection_point_data = {}
1863
1864 step = "Getting ip-address info from vnf_profile if it exists"
1865 for vnfp in vnf_profiles:
1866 # Checking ip-address info from nsd.vnf_profile and storing
1867 for vlc in vnfp.get("virtual-link-connectivity", ()):
1868 for cpd in vlc.get("constituent-cpd-id", ()):
1869 if cpd.get("ip-address"):
1870 step = "Storing ip-address info"
1871 vld_fixed_ip_connection_point_data.update(
1872 {
1873 vlc.get("virtual-link-profile-id")
1874 + "."
1875 + cpd.get("constituent-base-element-id"): {
1876 "vnfd-connection-point-ref": cpd.get(
1877 "constituent-cpd-id"
1878 ),
1879 "ip-address": cpd.get("ip-address"),
1880 }
1881 }
1882 )
1883
1884 # Inserting ip address to vnfr
1885 if len(vld_fixed_ip_connection_point_data) > 0:
1886 step = "Getting vnfrs"
1887 vnfrs = self.db.get_list("vnfrs", {"nsr-id-ref": nsr_id})
1888 for item in vld_fixed_ip_connection_point_data.keys():
1889 step = "Filtering vnfrs"
1890 vnfr = next(
1891 filter(
1892 lambda vnfr: vnfr["member-vnf-index-ref"]
1893 == item.split(".")[1],
1894 vnfrs,
1895 ),
1896 None,
1897 )
1898 if vnfr:
1899 vnfr_update = {}
1900 for vdur_index, vdur in enumerate(vnfr["vdur"]):
1901 for iface_index, iface in enumerate(vdur["interfaces"]):
1902 step = "Looking for matched interface"
1903 if (
1904 iface.get("external-connection-point-ref")
1905 == vld_fixed_ip_connection_point_data[item].get(
1906 "vnfd-connection-point-ref"
1907 )
1908 and iface.get("ns-vld-id") == item.split(".")[0]
1909 ):
1910 vnfr_update_text = "vdur.{}.interfaces.{}".format(
1911 vdur_index, iface_index
1912 )
1913 step = "Storing info in order to update vnfr"
1914 vnfr_update[
1915 vnfr_update_text + ".ip-address"
1916 ] = increment_ip_mac(
1917 vld_fixed_ip_connection_point_data[item].get(
1918 "ip-address"
1919 ),
1920 vdur.get("count-index", 0),
1921 )
1922 vnfr_update[vnfr_update_text + ".fixed-ip"] = True
1923
1924 step = "updating vnfr at database"
1925 self.db.set_one("vnfrs", {"_id": vnfr["_id"]}, vnfr_update)
1926 except (
1927 ValidationError,
1928 EngineException,
1929 DbException,
1930 MsgException,
1931 FsException,
1932 ) as e:
1933 raise type(e)("{} while '{}'".format(e, step), http_code=e.http_code)
1934
1935 def _update_vnfrs(self, session, rollback, nsr, indata):
1936 # get vnfr
1937 nsr_id = nsr["_id"]
1938 vnfrs = self.db.get_list("vnfrs", {"nsr-id-ref": nsr_id})
1939
1940 for vnfr in vnfrs:
1941 vnfr_update = {}
1942 vnfr_update_rollback = {}
1943 member_vnf_index = vnfr["member-vnf-index-ref"]
1944 # update vim-account-id
1945
1946 vim_account = indata["vimAccountId"]
1947 vca_id = self._get_vim_account(vim_account, session).get("vca")
1948 # check instantiate parameters
1949 for vnf_inst_params in get_iterable(indata.get("vnf")):
1950 if vnf_inst_params["member-vnf-index"] != member_vnf_index:
1951 continue
1952 if vnf_inst_params.get("vimAccountId"):
1953 vim_account = vnf_inst_params.get("vimAccountId")
1954 vca_id = self._get_vim_account(vim_account, session).get("vca")
1955
1956 # get vnf.vdu.interface instantiation params to update vnfr.vdur.interfaces ip, mac
1957 for vdu_inst_param in get_iterable(vnf_inst_params.get("vdu")):
1958 for vdur_index, vdur in enumerate(vnfr["vdur"]):
1959 if vdu_inst_param["id"] != vdur["vdu-id-ref"]:
1960 continue
1961 for iface_inst_param in get_iterable(
1962 vdu_inst_param.get("interface")
1963 ):
1964 iface_index, _ = next(
1965 i
1966 for i in enumerate(vdur["interfaces"])
1967 if i[1]["name"] == iface_inst_param["name"]
1968 )
1969 vnfr_update_text = "vdur.{}.interfaces.{}".format(
1970 vdur_index, iface_index
1971 )
1972 if iface_inst_param.get("ip-address"):
1973 vnfr_update[
1974 vnfr_update_text + ".ip-address"
1975 ] = increment_ip_mac(
1976 iface_inst_param.get("ip-address"),
1977 vdur.get("count-index", 0),
1978 )
1979 vnfr_update[vnfr_update_text + ".fixed-ip"] = True
1980 if iface_inst_param.get("mac-address"):
1981 vnfr_update[
1982 vnfr_update_text + ".mac-address"
1983 ] = increment_ip_mac(
1984 iface_inst_param.get("mac-address"),
1985 vdur.get("count-index", 0),
1986 )
1987 vnfr_update[vnfr_update_text + ".fixed-mac"] = True
1988 if iface_inst_param.get("floating-ip-required"):
1989 vnfr_update[
1990 vnfr_update_text + ".floating-ip-required"
1991 ] = True
1992 # get vnf.internal-vld.internal-conection-point instantiation params to update vnfr.vdur.interfaces
1993 # TODO update vld with the ip-profile
1994 for ivld_inst_param in get_iterable(
1995 vnf_inst_params.get("internal-vld")
1996 ):
1997 for icp_inst_param in get_iterable(
1998 ivld_inst_param.get("internal-connection-point")
1999 ):
2000 # look for iface
2001 for vdur_index, vdur in enumerate(vnfr["vdur"]):
2002 for iface_index, iface in enumerate(vdur["interfaces"]):
2003 if (
2004 iface.get("internal-connection-point-ref")
2005 == icp_inst_param["id-ref"]
2006 ):
2007 vnfr_update_text = "vdur.{}.interfaces.{}".format(
2008 vdur_index, iface_index
2009 )
2010 if icp_inst_param.get("ip-address"):
2011 vnfr_update[
2012 vnfr_update_text + ".ip-address"
2013 ] = increment_ip_mac(
2014 icp_inst_param.get("ip-address"),
2015 vdur.get("count-index", 0),
2016 )
2017 vnfr_update[
2018 vnfr_update_text + ".fixed-ip"
2019 ] = True
2020 if icp_inst_param.get("mac-address"):
2021 vnfr_update[
2022 vnfr_update_text + ".mac-address"
2023 ] = increment_ip_mac(
2024 icp_inst_param.get("mac-address"),
2025 vdur.get("count-index", 0),
2026 )
2027 vnfr_update[
2028 vnfr_update_text + ".fixed-mac"
2029 ] = True
2030 break
2031 # get ip address from instantiation parameters.vld.vnfd-connection-point-ref
2032 for vld_inst_param in get_iterable(indata.get("vld")):
2033 for vnfcp_inst_param in get_iterable(
2034 vld_inst_param.get("vnfd-connection-point-ref")
2035 ):
2036 if vnfcp_inst_param["member-vnf-index-ref"] != member_vnf_index:
2037 continue
2038 # look for iface
2039 for vdur_index, vdur in enumerate(vnfr["vdur"]):
2040 for iface_index, iface in enumerate(vdur["interfaces"]):
2041 if (
2042 iface.get("external-connection-point-ref")
2043 == vnfcp_inst_param["vnfd-connection-point-ref"]
2044 ):
2045 vnfr_update_text = "vdur.{}.interfaces.{}".format(
2046 vdur_index, iface_index
2047 )
2048 if vnfcp_inst_param.get("ip-address"):
2049 vnfr_update[
2050 vnfr_update_text + ".ip-address"
2051 ] = increment_ip_mac(
2052 vnfcp_inst_param.get("ip-address"),
2053 vdur.get("count-index", 0),
2054 )
2055 vnfr_update[vnfr_update_text + ".fixed-ip"] = True
2056 if vnfcp_inst_param.get("mac-address"):
2057 vnfr_update[
2058 vnfr_update_text + ".mac-address"
2059 ] = increment_ip_mac(
2060 vnfcp_inst_param.get("mac-address"),
2061 vdur.get("count-index", 0),
2062 )
2063 vnfr_update[vnfr_update_text + ".fixed-mac"] = True
2064 break
2065
2066 vnfr_update["vim-account-id"] = vim_account
2067 vnfr_update_rollback["vim-account-id"] = vnfr.get("vim-account-id")
2068
2069 if vca_id:
2070 vnfr_update["vca-id"] = vca_id
2071 vnfr_update_rollback["vca-id"] = vnfr.get("vca-id")
2072
2073 # get pdu
2074 ifaces_forcing_vim_network = self._look_for_pdu(
2075 session, rollback, vnfr, vim_account, vnfr_update, vnfr_update_rollback
2076 )
2077
2078 # get kdus
2079 ifaces_forcing_vim_network += self._look_for_k8scluster(
2080 session, rollback, vnfr, vim_account, vnfr_update, vnfr_update_rollback
2081 )
2082 # update database vnfr
2083 self.db.set_one("vnfrs", {"_id": vnfr["_id"]}, vnfr_update)
2084 rollback.append(
2085 {
2086 "topic": "vnfrs",
2087 "_id": vnfr["_id"],
2088 "operation": "set",
2089 "content": vnfr_update_rollback,
2090 }
2091 )
2092
2093 # Update indada in case pdu forces to use a concrete vim-network-name
2094 # TODO check if user has already insert a vim-network-name and raises an error
2095 if not ifaces_forcing_vim_network:
2096 continue
2097 for iface_info in ifaces_forcing_vim_network:
2098 if iface_info.get("ns-vld-id"):
2099 if "vld" not in indata:
2100 indata["vld"] = []
2101 indata["vld"].append(
2102 {
2103 key: iface_info[key]
2104 for key in ("name", "vim-network-name", "vim-network-id")
2105 if iface_info.get(key)
2106 }
2107 )
2108
2109 elif iface_info.get("vnf-vld-id"):
2110 if "vnf" not in indata:
2111 indata["vnf"] = []
2112 indata["vnf"].append(
2113 {
2114 "member-vnf-index": member_vnf_index,
2115 "internal-vld": [
2116 {
2117 key: iface_info[key]
2118 for key in (
2119 "name",
2120 "vim-network-name",
2121 "vim-network-id",
2122 )
2123 if iface_info.get(key)
2124 }
2125 ],
2126 }
2127 )
2128
2129 @staticmethod
2130 def _create_nslcmop(nsr_id, operation, params):
2131 """
2132 Creates a ns-lcm-opp content to be stored at database.
2133 :param nsr_id: internal id of the instance
2134 :param operation: instantiate, terminate, scale, action, update ...
2135 :param params: user parameters for the operation
2136 :return: dictionary following SOL005 format
2137 """
2138 now = time()
2139 _id = str(uuid4())
2140 nslcmop = {
2141 "id": _id,
2142 "_id": _id,
2143 "operationState": "PROCESSING", # COMPLETED,PARTIALLY_COMPLETED,FAILED_TEMP,FAILED,ROLLING_BACK,ROLLED_BACK
2144 "queuePosition": None,
2145 "stage": None,
2146 "errorMessage": None,
2147 "detailedStatus": None,
2148 "statusEnteredTime": now,
2149 "nsInstanceId": nsr_id,
2150 "lcmOperationType": operation,
2151 "startTime": now,
2152 "isAutomaticInvocation": False,
2153 "operationParams": params,
2154 "isCancelPending": False,
2155 "links": {
2156 "self": "/osm/nslcm/v1/ns_lcm_op_occs/" + _id,
2157 "nsInstance": "/osm/nslcm/v1/ns_instances/" + nsr_id,
2158 },
2159 }
2160 return nslcmop
2161
2162 def _get_enabled_vims(self, session):
2163 """
2164 Retrieve and return VIM accounts that are accessible by current user and has state ENABLE
2165 :param session: current session with user information
2166 """
2167 db_filter = self._get_project_filter(session)
2168 db_filter["_admin.operationalState"] = "ENABLED"
2169 vims = self.db.get_list("vim_accounts", db_filter)
2170 vimAccounts = []
2171 for vim in vims:
2172 vimAccounts.append(vim["_id"])
2173 return vimAccounts
2174
2175 def new(
2176 self,
2177 rollback,
2178 session,
2179 indata=None,
2180 kwargs=None,
2181 headers=None,
2182 slice_object=False,
2183 ):
2184 """
2185 Performs a new operation over a ns
2186 :param rollback: list to append created items at database in case a rollback must to be done
2187 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
2188 :param indata: descriptor with the parameters of the operation. It must contains among others
2189 nsInstanceId: _id of the nsr to perform the operation
2190 operation: it can be: instantiate, terminate, action, update TODO: heal
2191 :param kwargs: used to override the indata descriptor
2192 :param headers: http request headers
2193 :return: id of the nslcmops
2194 """
2195
2196 def check_if_nsr_is_not_slice_member(session, nsr_id):
2197 nsis = None
2198 db_filter = self._get_project_filter(session)
2199 db_filter["_admin.nsrs-detailed-list.ANYINDEX.nsrId"] = nsr_id
2200 nsis = self.db.get_one(
2201 "nsis", db_filter, fail_on_empty=False, fail_on_more=False
2202 )
2203 if nsis:
2204 raise EngineException(
2205 "The NS instance {} cannot be terminated because is used by the slice {}".format(
2206 nsr_id, nsis["_id"]
2207 ),
2208 http_code=HTTPStatus.CONFLICT,
2209 )
2210
2211 try:
2212 # Override descriptor with query string kwargs
2213 self._update_input_with_kwargs(indata, kwargs, yaml_format=True)
2214 operation = indata["lcmOperationType"]
2215 nsInstanceId = indata["nsInstanceId"]
2216
2217 validate_input(indata, self.operation_schema[operation])
2218 # get ns from nsr_id
2219 _filter = BaseTopic._get_project_filter(session)
2220 _filter["_id"] = nsInstanceId
2221 nsr = self.db.get_one("nsrs", _filter)
2222
2223 # initial checking
2224 if operation == "terminate" and slice_object is False:
2225 check_if_nsr_is_not_slice_member(session, nsr["_id"])
2226 if (
2227 not nsr["_admin"].get("nsState")
2228 or nsr["_admin"]["nsState"] == "NOT_INSTANTIATED"
2229 ):
2230 if operation == "terminate" and indata.get("autoremove"):
2231 # NSR must be deleted
2232 return (
2233 None,
2234 None,
2235 ) # a none in this case is used to indicate not instantiated. It can be removed
2236 if operation != "instantiate":
2237 raise EngineException(
2238 "ns_instance '{}' cannot be '{}' because it is not instantiated".format(
2239 nsInstanceId, operation
2240 ),
2241 HTTPStatus.CONFLICT,
2242 )
2243 else:
2244 if operation == "instantiate" and not session["force"]:
2245 raise EngineException(
2246 "ns_instance '{}' cannot be '{}' because it is already instantiated".format(
2247 nsInstanceId, operation
2248 ),
2249 HTTPStatus.CONFLICT,
2250 )
2251 self._check_ns_operation(session, nsr, operation, indata)
2252 if indata.get("primitive_params"):
2253 indata["primitive_params"] = json.dumps(indata["primitive_params"])
2254 elif indata.get("additionalParamsForVnf"):
2255 indata["additionalParamsForVnf"] = json.dumps(
2256 indata["additionalParamsForVnf"]
2257 )
2258
2259 if operation == "instantiate":
2260 self._update_vnfrs_from_nsd(nsr)
2261 self._update_vnfrs(session, rollback, nsr, indata)
2262 if (operation == "update") and (indata["updateType"] == "CHANGE_VNFPKG"):
2263 nsr_update = {}
2264 vnfd_id = indata["changeVnfPackageData"]["vnfdId"]
2265 vnfd = self.db.get_one("vnfds", {"_id": vnfd_id})
2266 nsd = self.db.get_one("nsds", {"_id": nsr["nsd-id"]})
2267 ns_request = nsr["instantiate_params"]
2268 vnfr = self.db.get_one(
2269 "vnfrs", {"_id": indata["changeVnfPackageData"]["vnfInstanceId"]}
2270 )
2271 latest_vnfd_revision = vnfd["_admin"].get("revision", 1)
2272 vnfr_vnfd_revision = vnfr.get("revision", 1)
2273 if latest_vnfd_revision != vnfr_vnfd_revision:
2274 old_vnfd_id = vnfd_id + ":" + str(vnfr_vnfd_revision)
2275 old_db_vnfd = self.db.get_one(
2276 "vnfds_revisions", {"_id": old_vnfd_id}
2277 )
2278 old_sw_version = old_db_vnfd.get("software-version", "1.0")
2279 new_sw_version = vnfd.get("software-version", "1.0")
2280 if new_sw_version != old_sw_version:
2281 vnf_index = vnfr["member-vnf-index-ref"]
2282 self.logger.info("nsr {}".format(nsr))
2283 for vdu in vnfd["vdu"]:
2284 self.nsrtopic._add_flavor_to_nsr(
2285 vdu, vnfd, nsr, vnf_index, latest_vnfd_revision
2286 )
2287 sw_image_id = vdu.get("sw-image-desc")
2288 if sw_image_id:
2289 image_data = self.nsrtopic._get_image_data_from_vnfd(
2290 vnfd, sw_image_id
2291 )
2292 self.nsrtopic._add_image_to_nsr(nsr, image_data)
2293 for alt_image in vdu.get("alternative-sw-image-desc", ()):
2294 image_data = self.nsrtopic._get_image_data_from_vnfd(
2295 vnfd, alt_image
2296 )
2297 self.nsrtopic._add_image_to_nsr(nsr, image_data)
2298 nsr_update["image"] = nsr["image"]
2299 nsr_update["flavor"] = nsr["flavor"]
2300 self.db.set_one("nsrs", {"_id": nsr["_id"]}, nsr_update)
2301 ns_k8s_namespace = self.nsrtopic._get_ns_k8s_namespace(
2302 nsd, ns_request, session
2303 )
2304 vnfr_descriptor = (
2305 self.nsrtopic._create_vnfr_descriptor_from_vnfd(
2306 nsd,
2307 vnfd,
2308 vnfd_id,
2309 vnf_index,
2310 nsr,
2311 ns_request,
2312 ns_k8s_namespace,
2313 latest_vnfd_revision,
2314 )
2315 )
2316 indata["newVdur"] = vnfr_descriptor["vdur"]
2317 nslcmop_desc = self._create_nslcmop(nsInstanceId, operation, indata)
2318 _id = nslcmop_desc["_id"]
2319 self.format_on_new(
2320 nslcmop_desc, session["project_id"], make_public=session["public"]
2321 )
2322 if indata.get("placement-engine"):
2323 # Save valid vim accounts in lcm operation descriptor
2324 nslcmop_desc["operationParams"][
2325 "validVimAccounts"
2326 ] = self._get_enabled_vims(session)
2327 self.db.create("nslcmops", nslcmop_desc)
2328 rollback.append({"topic": "nslcmops", "_id": _id})
2329 if not slice_object:
2330 self.msg.write("ns", operation, nslcmop_desc)
2331 return _id, None
2332 except ValidationError as e: # TODO remove try Except, it is captured at nbi.py
2333 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)
2334 # except DbException as e:
2335 # raise EngineException("Cannot get ns_instance '{}': {}".format(e), HTTPStatus.NOT_FOUND)
2336
2337 def delete(self, session, _id, dry_run=False, not_send_msg=None):
2338 raise EngineException(
2339 "Method delete called directly", HTTPStatus.INTERNAL_SERVER_ERROR
2340 )
2341
2342 def edit(self, session, _id, indata=None, kwargs=None, content=None):
2343 raise EngineException(
2344 "Method edit called directly", HTTPStatus.INTERNAL_SERVER_ERROR
2345 )
2346
2347
2348 class NsiTopic(BaseTopic):
2349 topic = "nsis"
2350 topic_msg = "nsi"
2351 quota_name = "slice_instances"
2352
2353 def __init__(self, db, fs, msg, auth):
2354 BaseTopic.__init__(self, db, fs, msg, auth)
2355 self.nsrTopic = NsrTopic(db, fs, msg, auth)
2356
2357 @staticmethod
2358 def _format_ns_request(ns_request):
2359 formated_request = copy(ns_request)
2360 # TODO: Add request params
2361 return formated_request
2362
2363 @staticmethod
2364 def _format_addional_params(slice_request):
2365 """
2366 Get and format user additional params for NS or VNF
2367 :param slice_request: User instantiation additional parameters
2368 :return: a formatted copy of additional params or None if not supplied
2369 """
2370 additional_params = copy(slice_request.get("additionalParamsForNsi"))
2371 if additional_params:
2372 for k, v in additional_params.items():
2373 if not isinstance(k, str):
2374 raise EngineException(
2375 "Invalid param at additionalParamsForNsi:{}. Only string keys are allowed".format(
2376 k
2377 )
2378 )
2379 if "." in k or "$" in k:
2380 raise EngineException(
2381 "Invalid param at additionalParamsForNsi:{}. Keys must not contain dots or $".format(
2382 k
2383 )
2384 )
2385 if isinstance(v, (dict, tuple, list)):
2386 additional_params[k] = "!!yaml " + safe_dump(v)
2387 return additional_params
2388
2389 def check_conflict_on_del(self, session, _id, db_content):
2390 """
2391 Check that NSI is not instantiated
2392 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
2393 :param _id: nsi internal id
2394 :param db_content: The database content of the _id
2395 :return: None or raises EngineException with the conflict
2396 """
2397 if session["force"]:
2398 return
2399 nsi = db_content
2400 if nsi["_admin"].get("nsiState") == "INSTANTIATED":
2401 raise EngineException(
2402 "nsi '{}' cannot be deleted because it is in 'INSTANTIATED' state. "
2403 "Launch 'terminate' operation first; or force deletion".format(_id),
2404 http_code=HTTPStatus.CONFLICT,
2405 )
2406
2407 def delete_extra(self, session, _id, db_content, not_send_msg=None):
2408 """
2409 Deletes associated nsilcmops from database. Deletes associated filesystem.
2410 Set usageState of nst
2411 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
2412 :param _id: server internal id
2413 :param db_content: The database content of the descriptor
2414 :param not_send_msg: To not send message (False) or store content (list) instead
2415 :return: None if ok or raises EngineException with the problem
2416 """
2417
2418 # Deleting the nsrs belonging to nsir
2419 nsir = db_content
2420 for nsrs_detailed_item in nsir["_admin"]["nsrs-detailed-list"]:
2421 nsr_id = nsrs_detailed_item["nsrId"]
2422 if nsrs_detailed_item.get("shared"):
2423 _filter = {
2424 "_admin.nsrs-detailed-list.ANYINDEX.shared": True,
2425 "_admin.nsrs-detailed-list.ANYINDEX.nsrId": nsr_id,
2426 "_id.ne": nsir["_id"],
2427 }
2428 nsi = self.db.get_one(
2429 "nsis", _filter, fail_on_empty=False, fail_on_more=False
2430 )
2431 if nsi: # last one using nsr
2432 continue
2433 try:
2434 self.nsrTopic.delete(
2435 session, nsr_id, dry_run=False, not_send_msg=not_send_msg
2436 )
2437 except (DbException, EngineException) as e:
2438 if e.http_code == HTTPStatus.NOT_FOUND:
2439 pass
2440 else:
2441 raise
2442
2443 # delete related nsilcmops database entries
2444 self.db.del_list("nsilcmops", {"netsliceInstanceId": _id})
2445
2446 # Check and set used NST usage state
2447 nsir_admin = nsir.get("_admin")
2448 if nsir_admin and nsir_admin.get("nst-id"):
2449 # check if used by another NSI
2450 nsis_list = self.db.get_one(
2451 "nsis",
2452 {"nst-id": nsir_admin["nst-id"]},
2453 fail_on_empty=False,
2454 fail_on_more=False,
2455 )
2456 if not nsis_list:
2457 self.db.set_one(
2458 "nsts",
2459 {"_id": nsir_admin["nst-id"]},
2460 {"_admin.usageState": "NOT_IN_USE"},
2461 )
2462
2463 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
2464 """
2465 Creates a new netslice instance record into database. It also creates needed nsrs and vnfrs
2466 :param rollback: list to append the created items at database in case a rollback must be done
2467 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
2468 :param indata: params to be used for the nsir
2469 :param kwargs: used to override the indata descriptor
2470 :param headers: http request headers
2471 :return: the _id of nsi descriptor created at database
2472 """
2473
2474 step = "checking quotas" # first step must be defined outside try
2475 try:
2476 self.check_quota(session)
2477
2478 step = ""
2479 slice_request = self._remove_envelop(indata)
2480 # Override descriptor with query string kwargs
2481 self._update_input_with_kwargs(slice_request, kwargs)
2482 slice_request = self._validate_input_new(slice_request, session["force"])
2483
2484 # look for nstd
2485 step = "getting nstd id='{}' from database".format(
2486 slice_request.get("nstId")
2487 )
2488 _filter = self._get_project_filter(session)
2489 _filter["_id"] = slice_request["nstId"]
2490 nstd = self.db.get_one("nsts", _filter)
2491 # check NST is not disabled
2492 step = "checking NST operationalState"
2493 if nstd["_admin"]["operationalState"] == "DISABLED":
2494 raise EngineException(
2495 "nst with id '{}' is DISABLED, and thus cannot be used to create a netslice "
2496 "instance".format(slice_request["nstId"]),
2497 http_code=HTTPStatus.CONFLICT,
2498 )
2499 del _filter["_id"]
2500
2501 # check NSD is not disabled
2502 step = "checking operationalState"
2503 if nstd["_admin"]["operationalState"] == "DISABLED":
2504 raise EngineException(
2505 "nst with id '{}' is DISABLED, and thus cannot be used to create "
2506 "a network slice".format(slice_request["nstId"]),
2507 http_code=HTTPStatus.CONFLICT,
2508 )
2509
2510 nstd.pop("_admin", None)
2511 nstd_id = nstd.pop("_id", None)
2512 nsi_id = str(uuid4())
2513 step = "filling nsi_descriptor with input data"
2514
2515 # Creating the NSIR
2516 nsi_descriptor = {
2517 "id": nsi_id,
2518 "name": slice_request["nsiName"],
2519 "description": slice_request.get("nsiDescription", ""),
2520 "datacenter": slice_request["vimAccountId"],
2521 "nst-ref": nstd["id"],
2522 "instantiation_parameters": slice_request,
2523 "network-slice-template": nstd,
2524 "nsr-ref-list": [],
2525 "vlr-list": [],
2526 "_id": nsi_id,
2527 "additionalParamsForNsi": self._format_addional_params(slice_request),
2528 }
2529
2530 step = "creating nsi at database"
2531 self.format_on_new(
2532 nsi_descriptor, session["project_id"], make_public=session["public"]
2533 )
2534 nsi_descriptor["_admin"]["nsiState"] = "NOT_INSTANTIATED"
2535 nsi_descriptor["_admin"]["netslice-subnet"] = None
2536 nsi_descriptor["_admin"]["deployed"] = {}
2537 nsi_descriptor["_admin"]["deployed"]["RO"] = []
2538 nsi_descriptor["_admin"]["nst-id"] = nstd_id
2539
2540 # Creating netslice-vld for the RO.
2541 step = "creating netslice-vld at database"
2542
2543 # Building the vlds list to be deployed
2544 # From netslice descriptors, creating the initial list
2545 nsi_vlds = []
2546
2547 for netslice_vlds in get_iterable(nstd.get("netslice-vld")):
2548 # Getting template Instantiation parameters from NST
2549 nsi_vld = deepcopy(netslice_vlds)
2550 nsi_vld["shared-nsrs-list"] = []
2551 nsi_vld["vimAccountId"] = slice_request["vimAccountId"]
2552 nsi_vlds.append(nsi_vld)
2553
2554 nsi_descriptor["_admin"]["netslice-vld"] = nsi_vlds
2555 # Creating netslice-subnet_record.
2556 needed_nsds = {}
2557 services = []
2558
2559 # Updating the nstd with the nsd["_id"] associated to the nss -> services list
2560 for member_ns in nstd["netslice-subnet"]:
2561 nsd_id = member_ns["nsd-ref"]
2562 step = "getting nstd id='{}' constituent-nsd='{}' from database".format(
2563 member_ns["nsd-ref"], member_ns["id"]
2564 )
2565 if nsd_id not in needed_nsds:
2566 # Obtain nsd
2567 _filter["id"] = nsd_id
2568 nsd = self.db.get_one(
2569 "nsds", _filter, fail_on_empty=True, fail_on_more=True
2570 )
2571 del _filter["id"]
2572 nsd.pop("_admin")
2573 needed_nsds[nsd_id] = nsd
2574 else:
2575 nsd = needed_nsds[nsd_id]
2576 member_ns["_id"] = needed_nsds[nsd_id].get("_id")
2577 services.append(member_ns)
2578
2579 step = "filling nsir nsd-id='{}' constituent-nsd='{}' from database".format(
2580 member_ns["nsd-ref"], member_ns["id"]
2581 )
2582
2583 # creates Network Services records (NSRs)
2584 step = "creating nsrs at database using NsrTopic.new()"
2585 ns_params = slice_request.get("netslice-subnet")
2586 nsrs_list = []
2587 nsi_netslice_subnet = []
2588 for service in services:
2589 # Check if the netslice-subnet is shared and if it is share if the nss exists
2590 _id_nsr = None
2591 indata_ns = {}
2592 # Is the nss shared and instantiated?
2593 _filter["_admin.nsrs-detailed-list.ANYINDEX.shared"] = True
2594 _filter["_admin.nsrs-detailed-list.ANYINDEX.nsd-id"] = service[
2595 "nsd-ref"
2596 ]
2597 _filter["_admin.nsrs-detailed-list.ANYINDEX.nss-id"] = service["id"]
2598 nsi = self.db.get_one(
2599 "nsis", _filter, fail_on_empty=False, fail_on_more=False
2600 )
2601 if nsi and service.get("is-shared-nss"):
2602 nsrs_detailed_list = nsi["_admin"]["nsrs-detailed-list"]
2603 for nsrs_detailed_item in nsrs_detailed_list:
2604 if nsrs_detailed_item["nsd-id"] == service["nsd-ref"]:
2605 if nsrs_detailed_item["nss-id"] == service["id"]:
2606 _id_nsr = nsrs_detailed_item["nsrId"]
2607 break
2608 for netslice_subnet in nsi["_admin"]["netslice-subnet"]:
2609 if netslice_subnet["nss-id"] == service["id"]:
2610 indata_ns = netslice_subnet
2611 break
2612 else:
2613 indata_ns = {}
2614 if service.get("instantiation-parameters"):
2615 indata_ns = deepcopy(service["instantiation-parameters"])
2616 # del service["instantiation-parameters"]
2617
2618 indata_ns["nsdId"] = service["_id"]
2619 indata_ns["nsName"] = (
2620 slice_request.get("nsiName") + "." + service["id"]
2621 )
2622 indata_ns["vimAccountId"] = slice_request.get("vimAccountId")
2623 indata_ns["nsDescription"] = service["description"]
2624 if slice_request.get("ssh_keys"):
2625 indata_ns["ssh_keys"] = slice_request.get("ssh_keys")
2626
2627 if ns_params:
2628 for ns_param in ns_params:
2629 if ns_param.get("id") == service["id"]:
2630 copy_ns_param = deepcopy(ns_param)
2631 del copy_ns_param["id"]
2632 indata_ns.update(copy_ns_param)
2633 break
2634
2635 # Creates Nsr objects
2636 _id_nsr, _ = self.nsrTopic.new(
2637 rollback, session, indata_ns, kwargs, headers
2638 )
2639 nsrs_item = {
2640 "nsrId": _id_nsr,
2641 "shared": service.get("is-shared-nss"),
2642 "nsd-id": service["nsd-ref"],
2643 "nss-id": service["id"],
2644 "nslcmop_instantiate": None,
2645 }
2646 indata_ns["nss-id"] = service["id"]
2647 nsrs_list.append(nsrs_item)
2648 nsi_netslice_subnet.append(indata_ns)
2649 nsr_ref = {"nsr-ref": _id_nsr}
2650 nsi_descriptor["nsr-ref-list"].append(nsr_ref)
2651
2652 # Adding the nsrs list to the nsi
2653 nsi_descriptor["_admin"]["nsrs-detailed-list"] = nsrs_list
2654 nsi_descriptor["_admin"]["netslice-subnet"] = nsi_netslice_subnet
2655 self.db.set_one(
2656 "nsts", {"_id": slice_request["nstId"]}, {"_admin.usageState": "IN_USE"}
2657 )
2658
2659 # Creating the entry in the database
2660 self.db.create("nsis", nsi_descriptor)
2661 rollback.append({"topic": "nsis", "_id": nsi_id})
2662 return nsi_id, None
2663 except ValidationError as e:
2664 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)
2665 except Exception as e: # TODO remove try Except, it is captured at nbi.py
2666 self.logger.exception(
2667 "Exception {} at NsiTopic.new()".format(e), exc_info=True
2668 )
2669 raise EngineException("Error {}: {}".format(step, e))
2670
2671 def edit(self, session, _id, indata=None, kwargs=None, content=None):
2672 raise EngineException(
2673 "Method edit called directly", HTTPStatus.INTERNAL_SERVER_ERROR
2674 )
2675
2676
2677 class NsiLcmOpTopic(BaseTopic):
2678 topic = "nsilcmops"
2679 topic_msg = "nsi"
2680 operation_schema = { # mapping between operation and jsonschema to validate
2681 "instantiate": nsi_instantiate,
2682 "terminate": None,
2683 }
2684
2685 def __init__(self, db, fs, msg, auth):
2686 BaseTopic.__init__(self, db, fs, msg, auth)
2687 self.nsi_NsLcmOpTopic = NsLcmOpTopic(self.db, self.fs, self.msg, self.auth)
2688
2689 def _check_nsi_operation(self, session, nsir, operation, indata):
2690 """
2691 Check that user has enter right parameters for the operation
2692 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
2693 :param operation: it can be: instantiate, terminate, action, TODO: update, heal
2694 :param indata: descriptor with the parameters of the operation
2695 :return: None
2696 """
2697 nsds = {}
2698 nstd = nsir["network-slice-template"]
2699
2700 def check_valid_netslice_subnet_id(nstId):
2701 # TODO change to vnfR (??)
2702 for netslice_subnet in nstd["netslice-subnet"]:
2703 if nstId == netslice_subnet["id"]:
2704 nsd_id = netslice_subnet["nsd-ref"]
2705 if nsd_id not in nsds:
2706 _filter = self._get_project_filter(session)
2707 _filter["id"] = nsd_id
2708 nsds[nsd_id] = self.db.get_one("nsds", _filter)
2709 return nsds[nsd_id]
2710 else:
2711 raise EngineException(
2712 "Invalid parameter nstId='{}' is not one of the "
2713 "nst:netslice-subnet".format(nstId)
2714 )
2715
2716 if operation == "instantiate":
2717 # check the existance of netslice-subnet items
2718 for in_nst in get_iterable(indata.get("netslice-subnet")):
2719 check_valid_netslice_subnet_id(in_nst["id"])
2720
2721 def _create_nsilcmop(self, session, netsliceInstanceId, operation, params):
2722 now = time()
2723 _id = str(uuid4())
2724 nsilcmop = {
2725 "id": _id,
2726 "_id": _id,
2727 "operationState": "PROCESSING", # COMPLETED,PARTIALLY_COMPLETED,FAILED_TEMP,FAILED,ROLLING_BACK,ROLLED_BACK
2728 "statusEnteredTime": now,
2729 "netsliceInstanceId": netsliceInstanceId,
2730 "lcmOperationType": operation,
2731 "startTime": now,
2732 "isAutomaticInvocation": False,
2733 "operationParams": params,
2734 "isCancelPending": False,
2735 "links": {
2736 "self": "/osm/nsilcm/v1/nsi_lcm_op_occs/" + _id,
2737 "netsliceInstanceId": "/osm/nsilcm/v1/netslice_instances/"
2738 + netsliceInstanceId,
2739 },
2740 }
2741 return nsilcmop
2742
2743 def add_shared_nsr_2vld(self, nsir, nsr_item):
2744 for nst_sb_item in nsir["network-slice-template"].get("netslice-subnet"):
2745 if nst_sb_item.get("is-shared-nss"):
2746 for admin_subnet_item in nsir["_admin"].get("netslice-subnet"):
2747 if admin_subnet_item["nss-id"] == nst_sb_item["id"]:
2748 for admin_vld_item in nsir["_admin"].get("netslice-vld"):
2749 for admin_vld_nss_cp_ref_item in admin_vld_item[
2750 "nss-connection-point-ref"
2751 ]:
2752 if (
2753 admin_subnet_item["nss-id"]
2754 == admin_vld_nss_cp_ref_item["nss-ref"]
2755 ):
2756 if (
2757 not nsr_item["nsrId"]
2758 in admin_vld_item["shared-nsrs-list"]
2759 ):
2760 admin_vld_item["shared-nsrs-list"].append(
2761 nsr_item["nsrId"]
2762 )
2763 break
2764 # self.db.set_one("nsis", {"_id": nsir["_id"]}, nsir)
2765 self.db.set_one(
2766 "nsis",
2767 {"_id": nsir["_id"]},
2768 {"_admin.netslice-vld": nsir["_admin"].get("netslice-vld")},
2769 )
2770
2771 def new(self, rollback, session, indata=None, kwargs=None, headers=None):
2772 """
2773 Performs a new operation over a ns
2774 :param rollback: list to append created items at database in case a rollback must to be done
2775 :param session: contains "username", "admin", "force", "public", "project_id", "set_project"
2776 :param indata: descriptor with the parameters of the operation. It must contains among others
2777 netsliceInstanceId: _id of the nsir to perform the operation
2778 operation: it can be: instantiate, terminate, action, TODO: update, heal
2779 :param kwargs: used to override the indata descriptor
2780 :param headers: http request headers
2781 :return: id of the nslcmops
2782 """
2783 try:
2784 # Override descriptor with query string kwargs
2785 self._update_input_with_kwargs(indata, kwargs)
2786 operation = indata["lcmOperationType"]
2787 netsliceInstanceId = indata["netsliceInstanceId"]
2788 validate_input(indata, self.operation_schema[operation])
2789
2790 # get nsi from netsliceInstanceId
2791 _filter = self._get_project_filter(session)
2792 _filter["_id"] = netsliceInstanceId
2793 nsir = self.db.get_one("nsis", _filter)
2794 logging_prefix = "nsi={} {} ".format(netsliceInstanceId, operation)
2795 del _filter["_id"]
2796
2797 # initial checking
2798 if (
2799 not nsir["_admin"].get("nsiState")
2800 or nsir["_admin"]["nsiState"] == "NOT_INSTANTIATED"
2801 ):
2802 if operation == "terminate" and indata.get("autoremove"):
2803 # NSIR must be deleted
2804 return (
2805 None,
2806 None,
2807 ) # a none in this case is used to indicate not instantiated. It can be removed
2808 if operation != "instantiate":
2809 raise EngineException(
2810 "netslice_instance '{}' cannot be '{}' because it is not instantiated".format(
2811 netsliceInstanceId, operation
2812 ),
2813 HTTPStatus.CONFLICT,
2814 )
2815 else:
2816 if operation == "instantiate" and not session["force"]:
2817 raise EngineException(
2818 "netslice_instance '{}' cannot be '{}' because it is already instantiated".format(
2819 netsliceInstanceId, operation
2820 ),
2821 HTTPStatus.CONFLICT,
2822 )
2823
2824 # Creating all the NS_operation (nslcmop)
2825 # Get service list from db
2826 nsrs_list = nsir["_admin"]["nsrs-detailed-list"]
2827 nslcmops = []
2828 # nslcmops_item = None
2829 for index, nsr_item in enumerate(nsrs_list):
2830 nsr_id = nsr_item["nsrId"]
2831 if nsr_item.get("shared"):
2832 _filter["_admin.nsrs-detailed-list.ANYINDEX.shared"] = True
2833 _filter["_admin.nsrs-detailed-list.ANYINDEX.nsrId"] = nsr_id
2834 _filter[
2835 "_admin.nsrs-detailed-list.ANYINDEX.nslcmop_instantiate.ne"
2836 ] = None
2837 _filter["_id.ne"] = netsliceInstanceId
2838 nsi = self.db.get_one(
2839 "nsis", _filter, fail_on_empty=False, fail_on_more=False
2840 )
2841 if operation == "terminate":
2842 _update = {
2843 "_admin.nsrs-detailed-list.{}.nslcmop_instantiate".format(
2844 index
2845 ): None
2846 }
2847 self.db.set_one("nsis", {"_id": nsir["_id"]}, _update)
2848 if (
2849 nsi
2850 ): # other nsi is using this nsr and it needs this nsr instantiated
2851 continue # do not create nsilcmop
2852 else: # instantiate
2853 # looks the first nsi fulfilling the conditions but not being the current NSIR
2854 if nsi:
2855 nsi_nsr_item = next(
2856 n
2857 for n in nsi["_admin"]["nsrs-detailed-list"]
2858 if n["nsrId"] == nsr_id
2859 and n["shared"]
2860 and n["nslcmop_instantiate"]
2861 )
2862 self.add_shared_nsr_2vld(nsir, nsr_item)
2863 nslcmops.append(nsi_nsr_item["nslcmop_instantiate"])
2864 _update = {
2865 "_admin.nsrs-detailed-list.{}".format(
2866 index
2867 ): nsi_nsr_item
2868 }
2869 self.db.set_one("nsis", {"_id": nsir["_id"]}, _update)
2870 # continue to not create nslcmop since nsrs is shared and nsrs was created
2871 continue
2872 else:
2873 self.add_shared_nsr_2vld(nsir, nsr_item)
2874
2875 # create operation
2876 try:
2877 indata_ns = {
2878 "lcmOperationType": operation,
2879 "nsInstanceId": nsr_id,
2880 # Including netslice_id in the ns instantiate Operation
2881 "netsliceInstanceId": netsliceInstanceId,
2882 }
2883 if operation == "instantiate":
2884 service = self.db.get_one("nsrs", {"_id": nsr_id})
2885 indata_ns.update(service["instantiate_params"])
2886
2887 # Creating NS_LCM_OP with the flag slice_object=True to not trigger the service instantiation
2888 # message via kafka bus
2889 nslcmop, _ = self.nsi_NsLcmOpTopic.new(
2890 rollback, session, indata_ns, None, headers, slice_object=True
2891 )
2892 nslcmops.append(nslcmop)
2893 if operation == "instantiate":
2894 _update = {
2895 "_admin.nsrs-detailed-list.{}.nslcmop_instantiate".format(
2896 index
2897 ): nslcmop
2898 }
2899 self.db.set_one("nsis", {"_id": nsir["_id"]}, _update)
2900 except (DbException, EngineException) as e:
2901 if e.http_code == HTTPStatus.NOT_FOUND:
2902 self.logger.info(
2903 logging_prefix
2904 + "skipping NS={} because not found".format(nsr_id)
2905 )
2906 pass
2907 else:
2908 raise
2909
2910 # Creates nsilcmop
2911 indata["nslcmops_ids"] = nslcmops
2912 self._check_nsi_operation(session, nsir, operation, indata)
2913
2914 nsilcmop_desc = self._create_nsilcmop(
2915 session, netsliceInstanceId, operation, indata
2916 )
2917 self.format_on_new(
2918 nsilcmop_desc, session["project_id"], make_public=session["public"]
2919 )
2920 _id = self.db.create("nsilcmops", nsilcmop_desc)
2921 rollback.append({"topic": "nsilcmops", "_id": _id})
2922 self.msg.write("nsi", operation, nsilcmop_desc)
2923 return _id, None
2924 except ValidationError as e:
2925 raise EngineException(e, HTTPStatus.UNPROCESSABLE_ENTITY)
2926
2927 def delete(self, session, _id, dry_run=False, not_send_msg=None):
2928 raise EngineException(
2929 "Method delete called directly", HTTPStatus.INTERNAL_SERVER_ERROR
2930 )
2931
2932 def edit(self, session, _id, indata=None, kwargs=None, content=None):
2933 raise EngineException(
2934 "Method edit called directly", HTTPStatus.INTERNAL_SERVER_ERROR
2935 )