4e88cc4b976f60c1314ea269c93d78cf5f097ad2
[osm/RO.git] / NG-RO / osm_ng_ro / ns.py
1 # -*- coding: utf-8 -*-
2
3 ##
4 # Copyright 2020 Telefonica Investigacion y Desarrollo, S.A.U.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14 # implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 ##
18
19 from http import HTTPStatus
20 from itertools import product
21 import logging
22 from random import choice as random_choice
23 from threading import Lock
24 from time import time
25 from traceback import format_exc as traceback_format_exc
26 from typing import Any, Dict, List, Optional, Tuple, Type
27 from uuid import uuid4
28
29 from cryptography.hazmat.backends import default_backend as crypto_default_backend
30 from cryptography.hazmat.primitives import serialization as crypto_serialization
31 from cryptography.hazmat.primitives.asymmetric import rsa
32 from jinja2 import (
33 Environment,
34 select_autoescape,
35 StrictUndefined,
36 TemplateError,
37 TemplateNotFound,
38 UndefinedError,
39 )
40 from osm_common import (
41 dbmemory,
42 dbmongo,
43 fslocal,
44 fsmongo,
45 msgkafka,
46 msglocal,
47 version as common_version,
48 )
49 from osm_common.dbbase import DbBase, DbException
50 from osm_common.fsbase import FsBase, FsException
51 from osm_common.msgbase import MsgException
52 from osm_ng_ro.ns_thread import deep_get, NsWorker, NsWorkerException
53 from osm_ng_ro.validation import deploy_schema, validate_input
54 import yaml
55
56 __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
57 min_common_version = "0.1.16"
58
59
60 class NsException(Exception):
61 def __init__(self, message, http_code=HTTPStatus.BAD_REQUEST):
62 self.http_code = http_code
63 super(Exception, self).__init__(message)
64
65
66 def get_process_id():
67 """
68 Obtain a unique ID for this process. If running from inside docker, it will get docker ID. If not it
69 will provide a random one
70 :return: Obtained ID
71 """
72 # Try getting docker id. If fails, get pid
73 try:
74 with open("/proc/self/cgroup", "r") as f:
75 text_id_ = f.readline()
76 _, _, text_id = text_id_.rpartition("/")
77 text_id = text_id.replace("\n", "")[:12]
78
79 if text_id:
80 return text_id
81 except Exception as error:
82 logging.exception(f"{error} occured while getting process id")
83
84 # Return a random id
85 return "".join(random_choice("0123456789abcdef") for _ in range(12))
86
87
88 def versiontuple(v):
89 """utility for compare dot separate versions. Fills with zeros to proper number comparison"""
90 filled = []
91
92 for point in v.split("."):
93 filled.append(point.zfill(8))
94
95 return tuple(filled)
96
97
98 class Ns(object):
99 def __init__(self):
100 self.db = None
101 self.fs = None
102 self.msg = None
103 self.config = None
104 # self.operations = None
105 self.logger = None
106 # ^ Getting logger inside method self.start because parent logger (ro) is not available yet.
107 # If done now it will not be linked to parent not getting its handler and level
108 self.map_topic = {}
109 self.write_lock = None
110 self.vims_assigned = {}
111 self.next_worker = 0
112 self.plugins = {}
113 self.workers = []
114 self.process_params_function_map = {
115 "net": Ns._process_net_params,
116 "image": Ns._process_image_params,
117 "flavor": Ns._process_flavor_params,
118 "vdu": Ns._process_vdu_params,
119 "affinity-or-anti-affinity-group": Ns._process_affinity_group_params,
120 }
121 self.db_path_map = {
122 "net": "vld",
123 "image": "image",
124 "flavor": "flavor",
125 "vdu": "vdur",
126 "affinity-or-anti-affinity-group": "affinity-or-anti-affinity-group",
127 }
128
129 def init_db(self, target_version):
130 pass
131
132 def start(self, config):
133 """
134 Connect to database, filesystem storage, and messaging
135 :param config: two level dictionary with configuration. Top level should contain 'database', 'storage',
136 :param config: Configuration of db, storage, etc
137 :return: None
138 """
139 self.config = config
140 self.config["process_id"] = get_process_id() # used for HA identity
141 self.logger = logging.getLogger("ro.ns")
142
143 # check right version of common
144 if versiontuple(common_version) < versiontuple(min_common_version):
145 raise NsException(
146 "Not compatible osm/common version '{}'. Needed '{}' or higher".format(
147 common_version, min_common_version
148 )
149 )
150
151 try:
152 if not self.db:
153 if config["database"]["driver"] == "mongo":
154 self.db = dbmongo.DbMongo()
155 self.db.db_connect(config["database"])
156 elif config["database"]["driver"] == "memory":
157 self.db = dbmemory.DbMemory()
158 self.db.db_connect(config["database"])
159 else:
160 raise NsException(
161 "Invalid configuration param '{}' at '[database]':'driver'".format(
162 config["database"]["driver"]
163 )
164 )
165
166 if not self.fs:
167 if config["storage"]["driver"] == "local":
168 self.fs = fslocal.FsLocal()
169 self.fs.fs_connect(config["storage"])
170 elif config["storage"]["driver"] == "mongo":
171 self.fs = fsmongo.FsMongo()
172 self.fs.fs_connect(config["storage"])
173 elif config["storage"]["driver"] is None:
174 pass
175 else:
176 raise NsException(
177 "Invalid configuration param '{}' at '[storage]':'driver'".format(
178 config["storage"]["driver"]
179 )
180 )
181
182 if not self.msg:
183 if config["message"]["driver"] == "local":
184 self.msg = msglocal.MsgLocal()
185 self.msg.connect(config["message"])
186 elif config["message"]["driver"] == "kafka":
187 self.msg = msgkafka.MsgKafka()
188 self.msg.connect(config["message"])
189 else:
190 raise NsException(
191 "Invalid configuration param '{}' at '[message]':'driver'".format(
192 config["message"]["driver"]
193 )
194 )
195
196 # TODO load workers to deal with exising database tasks
197
198 self.write_lock = Lock()
199 except (DbException, FsException, MsgException) as e:
200 raise NsException(str(e), http_code=e.http_code)
201
202 def get_assigned_vims(self):
203 return list(self.vims_assigned.keys())
204
205 def stop(self):
206 try:
207 if self.db:
208 self.db.db_disconnect()
209
210 if self.fs:
211 self.fs.fs_disconnect()
212
213 if self.msg:
214 self.msg.disconnect()
215
216 self.write_lock = None
217 except (DbException, FsException, MsgException) as e:
218 raise NsException(str(e), http_code=e.http_code)
219
220 for worker in self.workers:
221 worker.insert_task(("terminate",))
222
223 def _create_worker(self):
224 """
225 Look for a worker thread in idle status. If not found it creates one unless the number of threads reach the
226 limit of 'server.ns_threads' configuration. If reached, it just assigns one existing thread
227 return the index of the assigned worker thread. Worker threads are storead at self.workers
228 """
229 # Look for a thread in idle status
230 worker_id = next(
231 (
232 i
233 for i in range(len(self.workers))
234 if self.workers[i] and self.workers[i].idle
235 ),
236 None,
237 )
238
239 if worker_id is not None:
240 # unset idle status to avoid race conditions
241 self.workers[worker_id].idle = False
242 else:
243 worker_id = len(self.workers)
244
245 if worker_id < self.config["global"]["server.ns_threads"]:
246 # create a new worker
247 self.workers.append(
248 NsWorker(worker_id, self.config, self.plugins, self.db)
249 )
250 self.workers[worker_id].start()
251 else:
252 # reached maximum number of threads, assign VIM to an existing one
253 worker_id = self.next_worker
254 self.next_worker = (self.next_worker + 1) % self.config["global"][
255 "server.ns_threads"
256 ]
257
258 return worker_id
259
260 def assign_vim(self, target_id):
261 with self.write_lock:
262 return self._assign_vim(target_id)
263
264 def _assign_vim(self, target_id):
265 if target_id not in self.vims_assigned:
266 worker_id = self.vims_assigned[target_id] = self._create_worker()
267 self.workers[worker_id].insert_task(("load_vim", target_id))
268
269 def reload_vim(self, target_id):
270 # send reload_vim to the thread working with this VIM and inform all that a VIM has been changed,
271 # this is because database VIM information is cached for threads working with SDN
272 with self.write_lock:
273 for worker in self.workers:
274 if worker and not worker.idle:
275 worker.insert_task(("reload_vim", target_id))
276
277 def unload_vim(self, target_id):
278 with self.write_lock:
279 return self._unload_vim(target_id)
280
281 def _unload_vim(self, target_id):
282 if target_id in self.vims_assigned:
283 worker_id = self.vims_assigned[target_id]
284 self.workers[worker_id].insert_task(("unload_vim", target_id))
285 del self.vims_assigned[target_id]
286
287 def check_vim(self, target_id):
288 with self.write_lock:
289 if target_id in self.vims_assigned:
290 worker_id = self.vims_assigned[target_id]
291 else:
292 worker_id = self._create_worker()
293
294 worker = self.workers[worker_id]
295 worker.insert_task(("check_vim", target_id))
296
297 def unload_unused_vims(self):
298 with self.write_lock:
299 vims_to_unload = []
300
301 for target_id in self.vims_assigned:
302 if not self.db.get_one(
303 "ro_tasks",
304 q_filter={
305 "target_id": target_id,
306 "tasks.status": ["SCHEDULED", "BUILD", "DONE", "FAILED"],
307 },
308 fail_on_empty=False,
309 ):
310 vims_to_unload.append(target_id)
311
312 for target_id in vims_to_unload:
313 self._unload_vim(target_id)
314
315 @staticmethod
316 def _get_cloud_init(
317 db: Type[DbBase],
318 fs: Type[FsBase],
319 location: str,
320 ) -> str:
321 """This method reads cloud init from a file.
322
323 Note: Not used as cloud init content is provided in the http body.
324
325 Args:
326 db (Type[DbBase]): [description]
327 fs (Type[FsBase]): [description]
328 location (str): can be 'vnfr_id:file:file_name' or 'vnfr_id:vdu:vdu_idex'
329
330 Raises:
331 NsException: [description]
332 NsException: [description]
333
334 Returns:
335 str: [description]
336 """
337 vnfd_id, _, other = location.partition(":")
338 _type, _, name = other.partition(":")
339 vnfd = db.get_one("vnfds", {"_id": vnfd_id})
340
341 if _type == "file":
342 base_folder = vnfd["_admin"]["storage"]
343 cloud_init_file = "{}/{}/cloud_init/{}".format(
344 base_folder["folder"], base_folder["pkg-dir"], name
345 )
346
347 if not fs:
348 raise NsException(
349 "Cannot read file '{}'. Filesystem not loaded, change configuration at storage.driver".format(
350 cloud_init_file
351 )
352 )
353
354 with fs.file_open(cloud_init_file, "r") as ci_file:
355 cloud_init_content = ci_file.read()
356 elif _type == "vdu":
357 cloud_init_content = vnfd["vdu"][int(name)]["cloud-init"]
358 else:
359 raise NsException("Mismatch descriptor for cloud init: {}".format(location))
360
361 return cloud_init_content
362
363 @staticmethod
364 def _parse_jinja2(
365 cloud_init_content: str,
366 params: Dict[str, Any],
367 context: str,
368 ) -> str:
369 """Function that processes the cloud init to replace Jinja2 encoded parameters.
370
371 Args:
372 cloud_init_content (str): [description]
373 params (Dict[str, Any]): [description]
374 context (str): [description]
375
376 Raises:
377 NsException: [description]
378 NsException: [description]
379
380 Returns:
381 str: [description]
382 """
383 try:
384 env = Environment(
385 undefined=StrictUndefined,
386 autoescape=select_autoescape(default_for_string=True, default=True),
387 )
388 template = env.from_string(cloud_init_content)
389
390 return template.render(params or {})
391 except UndefinedError as e:
392 raise NsException(
393 "Variable '{}' defined at vnfd='{}' must be provided in the instantiation parameters"
394 "inside the 'additionalParamsForVnf' block".format(e, context)
395 )
396 except (TemplateError, TemplateNotFound) as e:
397 raise NsException(
398 "Error parsing Jinja2 to cloud-init content at vnfd='{}': {}".format(
399 context, e
400 )
401 )
402
403 def _create_db_ro_nsrs(self, nsr_id, now):
404 try:
405 key = rsa.generate_private_key(
406 backend=crypto_default_backend(), public_exponent=65537, key_size=2048
407 )
408 private_key = key.private_bytes(
409 crypto_serialization.Encoding.PEM,
410 crypto_serialization.PrivateFormat.PKCS8,
411 crypto_serialization.NoEncryption(),
412 )
413 public_key = key.public_key().public_bytes(
414 crypto_serialization.Encoding.OpenSSH,
415 crypto_serialization.PublicFormat.OpenSSH,
416 )
417 private_key = private_key.decode("utf8")
418 # Change first line because Paramiko needs a explicit start with 'BEGIN RSA PRIVATE KEY'
419 i = private_key.find("\n")
420 private_key = "-----BEGIN RSA PRIVATE KEY-----" + private_key[i:]
421 public_key = public_key.decode("utf8")
422 except Exception as e:
423 raise NsException("Cannot create ssh-keys: {}".format(e))
424
425 schema_version = "1.1"
426 private_key_encrypted = self.db.encrypt(
427 private_key, schema_version=schema_version, salt=nsr_id
428 )
429 db_content = {
430 "_id": nsr_id,
431 "_admin": {
432 "created": now,
433 "modified": now,
434 "schema_version": schema_version,
435 },
436 "public_key": public_key,
437 "private_key": private_key_encrypted,
438 "actions": [],
439 }
440 self.db.create("ro_nsrs", db_content)
441
442 return db_content
443
444 @staticmethod
445 def _create_task(
446 deployment_info: Dict[str, Any],
447 target_id: str,
448 item: str,
449 action: str,
450 target_record: str,
451 target_record_id: str,
452 extra_dict: Dict[str, Any] = None,
453 ) -> Dict[str, Any]:
454 """Function to create task dict from deployment information.
455
456 Args:
457 deployment_info (Dict[str, Any]): [description]
458 target_id (str): [description]
459 item (str): [description]
460 action (str): [description]
461 target_record (str): [description]
462 target_record_id (str): [description]
463 extra_dict (Dict[str, Any], optional): [description]. Defaults to None.
464
465 Returns:
466 Dict[str, Any]: [description]
467 """
468 task = {
469 "target_id": target_id, # it will be removed before pushing at database
470 "action_id": deployment_info.get("action_id"),
471 "nsr_id": deployment_info.get("nsr_id"),
472 "task_id": f"{deployment_info.get('action_id')}:{deployment_info.get('task_index')}",
473 "status": "SCHEDULED",
474 "action": action,
475 "item": item,
476 "target_record": target_record,
477 "target_record_id": target_record_id,
478 }
479
480 if extra_dict:
481 task.update(extra_dict) # params, find_params, depends_on
482
483 deployment_info["task_index"] = deployment_info.get("task_index", 0) + 1
484
485 return task
486
487 @staticmethod
488 def _create_ro_task(
489 target_id: str,
490 task: Dict[str, Any],
491 ) -> Dict[str, Any]:
492 """Function to create an RO task from task information.
493
494 Args:
495 target_id (str): [description]
496 task (Dict[str, Any]): [description]
497
498 Returns:
499 Dict[str, Any]: [description]
500 """
501 now = time()
502
503 _id = task.get("task_id")
504 db_ro_task = {
505 "_id": _id,
506 "locked_by": None,
507 "locked_at": 0.0,
508 "target_id": target_id,
509 "vim_info": {
510 "created": False,
511 "created_items": None,
512 "vim_id": None,
513 "vim_name": None,
514 "vim_status": None,
515 "vim_details": None,
516 "vim_message": None,
517 "refresh_at": None,
518 },
519 "modified_at": now,
520 "created_at": now,
521 "to_check_at": now,
522 "tasks": [task],
523 }
524
525 return db_ro_task
526
527 @staticmethod
528 def _process_image_params(
529 target_image: Dict[str, Any],
530 indata: Dict[str, Any],
531 vim_info: Dict[str, Any],
532 target_record_id: str,
533 **kwargs: Dict[str, Any],
534 ) -> Dict[str, Any]:
535 """Function to process VDU image parameters.
536
537 Args:
538 target_image (Dict[str, Any]): [description]
539 indata (Dict[str, Any]): [description]
540 vim_info (Dict[str, Any]): [description]
541 target_record_id (str): [description]
542
543 Returns:
544 Dict[str, Any]: [description]
545 """
546 find_params = {}
547
548 if target_image.get("image"):
549 find_params["filter_dict"] = {"name": target_image.get("image")}
550
551 if target_image.get("vim_image_id"):
552 find_params["filter_dict"] = {"id": target_image.get("vim_image_id")}
553
554 if target_image.get("image_checksum"):
555 find_params["filter_dict"] = {
556 "checksum": target_image.get("image_checksum")
557 }
558
559 return {"find_params": find_params}
560
561 @staticmethod
562 def _get_resource_allocation_params(
563 quota_descriptor: Dict[str, Any],
564 ) -> Dict[str, Any]:
565 """Read the quota_descriptor from vnfd and fetch the resource allocation properties from the
566 descriptor object.
567
568 Args:
569 quota_descriptor (Dict[str, Any]): cpu/mem/vif/disk-io quota descriptor
570
571 Returns:
572 Dict[str, Any]: quota params for limit, reserve, shares from the descriptor object
573 """
574 quota = {}
575
576 if quota_descriptor.get("limit"):
577 quota["limit"] = int(quota_descriptor["limit"])
578
579 if quota_descriptor.get("reserve"):
580 quota["reserve"] = int(quota_descriptor["reserve"])
581
582 if quota_descriptor.get("shares"):
583 quota["shares"] = int(quota_descriptor["shares"])
584
585 return quota
586
587 @staticmethod
588 def _process_guest_epa_quota_params(
589 guest_epa_quota: Dict[str, Any],
590 epa_vcpu_set: bool,
591 ) -> Dict[str, Any]:
592 """Function to extract the guest epa quota parameters.
593
594 Args:
595 guest_epa_quota (Dict[str, Any]): [description]
596 epa_vcpu_set (bool): [description]
597
598 Returns:
599 Dict[str, Any]: [description]
600 """
601 result = {}
602
603 if guest_epa_quota.get("cpu-quota") and not epa_vcpu_set:
604 cpuquota = Ns._get_resource_allocation_params(
605 guest_epa_quota.get("cpu-quota")
606 )
607
608 if cpuquota:
609 result["cpu-quota"] = cpuquota
610
611 if guest_epa_quota.get("mem-quota"):
612 vduquota = Ns._get_resource_allocation_params(
613 guest_epa_quota.get("mem-quota")
614 )
615
616 if vduquota:
617 result["mem-quota"] = vduquota
618
619 if guest_epa_quota.get("disk-io-quota"):
620 diskioquota = Ns._get_resource_allocation_params(
621 guest_epa_quota.get("disk-io-quota")
622 )
623
624 if diskioquota:
625 result["disk-io-quota"] = diskioquota
626
627 if guest_epa_quota.get("vif-quota"):
628 vifquota = Ns._get_resource_allocation_params(
629 guest_epa_quota.get("vif-quota")
630 )
631
632 if vifquota:
633 result["vif-quota"] = vifquota
634
635 return result
636
637 @staticmethod
638 def _process_guest_epa_numa_params(
639 guest_epa_quota: Dict[str, Any],
640 ) -> Tuple[Dict[str, Any], bool]:
641 """[summary]
642
643 Args:
644 guest_epa_quota (Dict[str, Any]): [description]
645
646 Returns:
647 Tuple[Dict[str, Any], bool]: [description]
648 """
649 numa = {}
650 numa_list = []
651 epa_vcpu_set = False
652
653 if guest_epa_quota.get("numa-node-policy"):
654 numa_node_policy = guest_epa_quota.get("numa-node-policy")
655
656 if numa_node_policy.get("node"):
657 for numa_node in numa_node_policy["node"]:
658 vcpu_list = []
659 if numa_node.get("id"):
660 numa["id"] = int(numa_node["id"])
661
662 if numa_node.get("vcpu"):
663 for vcpu in numa_node.get("vcpu"):
664 vcpu_id = int(vcpu.get("id"))
665 vcpu_list.append(vcpu_id)
666 numa["vcpu"] = vcpu_list
667
668 if numa_node.get("num-cores"):
669 numa["cores"] = numa_node["num-cores"]
670 epa_vcpu_set = True
671
672 paired_threads = numa_node.get("paired-threads", {})
673 if paired_threads.get("num-paired-threads"):
674 numa["paired_threads"] = int(
675 numa_node["paired-threads"]["num-paired-threads"]
676 )
677 epa_vcpu_set = True
678
679 if paired_threads.get("paired-thread-ids"):
680 numa["paired-threads-id"] = []
681
682 for pair in paired_threads["paired-thread-ids"]:
683 numa["paired-threads-id"].append(
684 (
685 str(pair["thread-a"]),
686 str(pair["thread-b"]),
687 )
688 )
689
690 if numa_node.get("num-threads"):
691 numa["threads"] = int(numa_node["num-threads"])
692 epa_vcpu_set = True
693
694 if numa_node.get("memory-mb"):
695 numa["memory"] = max(int(int(numa_node["memory-mb"]) / 1024), 1)
696
697 numa_list.append(numa)
698 numa = {}
699
700 return numa_list, epa_vcpu_set
701
702 @staticmethod
703 def _process_guest_epa_cpu_pinning_params(
704 guest_epa_quota: Dict[str, Any],
705 vcpu_count: int,
706 epa_vcpu_set: bool,
707 ) -> Tuple[Dict[str, Any], bool]:
708 """[summary]
709
710 Args:
711 guest_epa_quota (Dict[str, Any]): [description]
712 vcpu_count (int): [description]
713 epa_vcpu_set (bool): [description]
714
715 Returns:
716 Tuple[Dict[str, Any], bool]: [description]
717 """
718 numa = {}
719 local_epa_vcpu_set = epa_vcpu_set
720
721 if (
722 guest_epa_quota.get("cpu-pinning-policy") == "DEDICATED"
723 and not epa_vcpu_set
724 ):
725 # Pinning policy "REQUIRE" uses threads as host should support SMT architecture
726 # Pinning policy "ISOLATE" uses cores as host should not support SMT architecture
727 # Pinning policy "PREFER" uses threads in case host supports SMT architecture
728 numa[
729 "cores"
730 if guest_epa_quota.get("cpu-thread-pinning-policy") == "ISOLATE"
731 else "threads"
732 ] = max(vcpu_count, 1)
733 local_epa_vcpu_set = True
734
735 return numa, local_epa_vcpu_set
736
737 @staticmethod
738 def _process_epa_params(
739 target_flavor: Dict[str, Any],
740 ) -> Dict[str, Any]:
741 """[summary]
742
743 Args:
744 target_flavor (Dict[str, Any]): [description]
745
746 Returns:
747 Dict[str, Any]: [description]
748 """
749 extended = {}
750 numa = {}
751 numa_list = []
752
753 if target_flavor.get("guest-epa"):
754 guest_epa = target_flavor["guest-epa"]
755
756 numa_list, epa_vcpu_set = Ns._process_guest_epa_numa_params(
757 guest_epa_quota=guest_epa
758 )
759
760 if guest_epa.get("mempage-size"):
761 extended["mempage-size"] = guest_epa.get("mempage-size")
762
763 if guest_epa.get("cpu-pinning-policy"):
764 extended["cpu-pinning-policy"] = guest_epa.get("cpu-pinning-policy")
765
766 if guest_epa.get("cpu-thread-pinning-policy"):
767 extended["cpu-thread-pinning-policy"] = guest_epa.get(
768 "cpu-thread-pinning-policy"
769 )
770
771 if guest_epa.get("numa-node-policy"):
772 if guest_epa.get("numa-node-policy").get("mem-policy"):
773 extended["mem-policy"] = guest_epa.get("numa-node-policy").get(
774 "mem-policy"
775 )
776
777 tmp_numa, epa_vcpu_set = Ns._process_guest_epa_cpu_pinning_params(
778 guest_epa_quota=guest_epa,
779 vcpu_count=int(target_flavor.get("vcpu-count", 1)),
780 epa_vcpu_set=epa_vcpu_set,
781 )
782 for numa in numa_list:
783 numa.update(tmp_numa)
784
785 extended.update(
786 Ns._process_guest_epa_quota_params(
787 guest_epa_quota=guest_epa,
788 epa_vcpu_set=epa_vcpu_set,
789 )
790 )
791
792 if numa:
793 extended["numas"] = numa_list
794
795 return extended
796
797 @staticmethod
798 def _process_flavor_params(
799 target_flavor: Dict[str, Any],
800 indata: Dict[str, Any],
801 vim_info: Dict[str, Any],
802 target_record_id: str,
803 **kwargs: Dict[str, Any],
804 ) -> Dict[str, Any]:
805 """[summary]
806
807 Args:
808 target_flavor (Dict[str, Any]): [description]
809 indata (Dict[str, Any]): [description]
810 vim_info (Dict[str, Any]): [description]
811 target_record_id (str): [description]
812
813 Returns:
814 Dict[str, Any]: [description]
815 """
816 db = kwargs.get("db")
817 target_vdur = {}
818
819 flavor_data = {
820 "disk": int(target_flavor["storage-gb"]),
821 "ram": int(target_flavor["memory-mb"]),
822 "vcpus": int(target_flavor["vcpu-count"]),
823 }
824
825 for vnf in indata.get("vnf", []):
826 for vdur in vnf.get("vdur", []):
827 if vdur.get("ns-flavor-id") == target_flavor.get("id"):
828 target_vdur = vdur
829
830 if db and isinstance(indata.get("vnf"), list):
831 vnfd_id = indata.get("vnf")[0].get("vnfd-id")
832 vnfd = db.get_one("vnfds", {"_id": vnfd_id})
833 # check if there is persistent root disk
834 for vdu in vnfd.get("vdu", ()):
835 if vdu["name"] == target_vdur.get("vdu-name"):
836 for vsd in vnfd.get("virtual-storage-desc", ()):
837 if vsd.get("id") == vdu.get("virtual-storage-desc", [[]])[0]:
838 root_disk = vsd
839 if (
840 root_disk.get("type-of-storage")
841 == "persistent-storage:persistent-storage"
842 ):
843 flavor_data["disk"] = 0
844
845 for storage in target_vdur.get("virtual-storages", []):
846 if (
847 storage.get("type-of-storage")
848 == "etsi-nfv-descriptors:ephemeral-storage"
849 ):
850 flavor_data["ephemeral"] = int(storage.get("size-of-storage", 0))
851 elif storage.get("type-of-storage") == "etsi-nfv-descriptors:swap-storage":
852 flavor_data["swap"] = int(storage.get("size-of-storage", 0))
853
854 extended = Ns._process_epa_params(target_flavor)
855 if extended:
856 flavor_data["extended"] = extended
857
858 extra_dict = {"find_params": {"flavor_data": flavor_data}}
859 flavor_data_name = flavor_data.copy()
860 flavor_data_name["name"] = target_flavor["name"]
861 extra_dict["params"] = {"flavor_data": flavor_data_name}
862
863 return extra_dict
864
865 @staticmethod
866 def _ip_profile_to_ro(
867 ip_profile: Dict[str, Any],
868 ) -> Dict[str, Any]:
869 """[summary]
870
871 Args:
872 ip_profile (Dict[str, Any]): [description]
873
874 Returns:
875 Dict[str, Any]: [description]
876 """
877 if not ip_profile:
878 return None
879
880 ro_ip_profile = {
881 "ip_version": "IPv4"
882 if "v4" in ip_profile.get("ip-version", "ipv4")
883 else "IPv6",
884 "subnet_address": ip_profile.get("subnet-address"),
885 "gateway_address": ip_profile.get("gateway-address"),
886 "dhcp_enabled": ip_profile.get("dhcp-params", {}).get("enabled", False),
887 "dhcp_start_address": ip_profile.get("dhcp-params", {}).get(
888 "start-address", None
889 ),
890 "dhcp_count": ip_profile.get("dhcp-params", {}).get("count", None),
891 }
892
893 if ip_profile.get("dns-server"):
894 ro_ip_profile["dns_address"] = ";".join(
895 [v["address"] for v in ip_profile["dns-server"] if v.get("address")]
896 )
897
898 if ip_profile.get("security-group"):
899 ro_ip_profile["security_group"] = ip_profile["security-group"]
900
901 return ro_ip_profile
902
903 @staticmethod
904 def _process_net_params(
905 target_vld: Dict[str, Any],
906 indata: Dict[str, Any],
907 vim_info: Dict[str, Any],
908 target_record_id: str,
909 **kwargs: Dict[str, Any],
910 ) -> Dict[str, Any]:
911 """Function to process network parameters.
912
913 Args:
914 target_vld (Dict[str, Any]): [description]
915 indata (Dict[str, Any]): [description]
916 vim_info (Dict[str, Any]): [description]
917 target_record_id (str): [description]
918
919 Returns:
920 Dict[str, Any]: [description]
921 """
922 extra_dict = {}
923
924 if vim_info.get("sdn"):
925 # vnf_preffix = "vnfrs:{}".format(vnfr_id)
926 # ns_preffix = "nsrs:{}".format(nsr_id)
927 # remove the ending ".sdn
928 vld_target_record_id, _, _ = target_record_id.rpartition(".")
929 extra_dict["params"] = {
930 k: vim_info[k]
931 for k in ("sdn-ports", "target_vim", "vlds", "type")
932 if vim_info.get(k)
933 }
934
935 # TODO needed to add target_id in the dependency.
936 if vim_info.get("target_vim"):
937 extra_dict["depends_on"] = [
938 f"{vim_info.get('target_vim')} {vld_target_record_id}"
939 ]
940
941 return extra_dict
942
943 if vim_info.get("vim_network_name"):
944 extra_dict["find_params"] = {
945 "filter_dict": {
946 "name": vim_info.get("vim_network_name"),
947 },
948 }
949 elif vim_info.get("vim_network_id"):
950 extra_dict["find_params"] = {
951 "filter_dict": {
952 "id": vim_info.get("vim_network_id"),
953 },
954 }
955 elif target_vld.get("mgmt-network") and not vim_info.get("provider_network"):
956 extra_dict["find_params"] = {
957 "mgmt": True,
958 "name": target_vld["id"],
959 }
960 else:
961 # create
962 extra_dict["params"] = {
963 "net_name": (
964 f"{indata.get('name')[:16]}-{target_vld.get('name', target_vld.get('id'))[:16]}"
965 ),
966 "ip_profile": Ns._ip_profile_to_ro(vim_info.get("ip_profile")),
967 "provider_network_profile": vim_info.get("provider_network"),
968 }
969
970 if not target_vld.get("underlay"):
971 extra_dict["params"]["net_type"] = "bridge"
972 else:
973 extra_dict["params"]["net_type"] = (
974 "ptp" if target_vld.get("type") == "ELINE" else "data"
975 )
976
977 return extra_dict
978
979 @staticmethod
980 def find_persistent_root_volumes(
981 vnfd: dict,
982 target_vdu: dict,
983 vdu_instantiation_volumes_list: list,
984 disk_list: list,
985 ) -> Dict[str, any]:
986 """Find the persistent root volumes and add them to the disk_list
987 by parsing the instantiation parameters.
988
989 Args:
990 vnfd (dict): VNF descriptor
991 target_vdu (dict): processed VDU
992 vdu_instantiation_volumes_list (list): instantiation parameters for the each VDU as a list
993 disk_list (list): to be filled up
994
995 Returns:
996 persistent_root_disk (dict): Details of persistent root disk
997
998 """
999 persistent_root_disk = {}
1000 # There can be only one root disk, when we find it, it will return the result
1001
1002 for vdu, vsd in product(
1003 vnfd.get("vdu", ()), vnfd.get("virtual-storage-desc", ())
1004 ):
1005 if (
1006 vdu["name"] == target_vdu["vdu-name"]
1007 and vsd.get("id") == vdu.get("virtual-storage-desc", [[]])[0]
1008 ):
1009 root_disk = vsd
1010 if (
1011 root_disk.get("type-of-storage")
1012 == "persistent-storage:persistent-storage"
1013 ):
1014 for vdu_volume in vdu_instantiation_volumes_list:
1015 if (
1016 vdu_volume["vim-volume-id"]
1017 and root_disk["id"] == vdu_volume["name"]
1018 ):
1019 persistent_root_disk[vsd["id"]] = {
1020 "vim_volume_id": vdu_volume["vim-volume-id"],
1021 "image_id": vdu.get("sw-image-desc"),
1022 }
1023
1024 disk_list.append(persistent_root_disk[vsd["id"]])
1025
1026 return persistent_root_disk
1027
1028 else:
1029 if root_disk.get("size-of-storage"):
1030 persistent_root_disk[vsd["id"]] = {
1031 "image_id": vdu.get("sw-image-desc"),
1032 "size": root_disk.get("size-of-storage"),
1033 "keep": Ns.is_volume_keeping_required(root_disk),
1034 }
1035
1036 disk_list.append(persistent_root_disk[vsd["id"]])
1037
1038 return persistent_root_disk
1039
1040 @staticmethod
1041 def find_persistent_volumes(
1042 persistent_root_disk: dict,
1043 target_vdu: dict,
1044 vdu_instantiation_volumes_list: list,
1045 disk_list: list,
1046 ) -> None:
1047 """Find the ordinary persistent volumes and add them to the disk_list
1048 by parsing the instantiation parameters.
1049
1050 Args:
1051 persistent_root_disk: persistent root disk dictionary
1052 target_vdu: processed VDU
1053 vdu_instantiation_volumes_list: instantiation parameters for the each VDU as a list
1054 disk_list: to be filled up
1055
1056 """
1057 # Find the ordinary volumes which are not added to the persistent_root_disk
1058 persistent_disk = {}
1059 for disk in target_vdu.get("virtual-storages", {}):
1060 if (
1061 disk.get("type-of-storage") == "persistent-storage:persistent-storage"
1062 and disk["id"] not in persistent_root_disk.keys()
1063 ):
1064 for vdu_volume in vdu_instantiation_volumes_list:
1065 if vdu_volume["vim-volume-id"] and disk["id"] == vdu_volume["name"]:
1066 persistent_disk[disk["id"]] = {
1067 "vim_volume_id": vdu_volume["vim-volume-id"],
1068 }
1069 disk_list.append(persistent_disk[disk["id"]])
1070
1071 else:
1072 if disk["id"] not in persistent_disk.keys():
1073 persistent_disk[disk["id"]] = {
1074 "size": disk.get("size-of-storage"),
1075 "keep": Ns.is_volume_keeping_required(disk),
1076 }
1077 disk_list.append(persistent_disk[disk["id"]])
1078
1079 @staticmethod
1080 def is_volume_keeping_required(virtual_storage_desc: Dict[str, Any]) -> bool:
1081 """Function to decide keeping persistent volume
1082 upon VDU deletion.
1083
1084 Args:
1085 virtual_storage_desc (Dict[str, Any]): virtual storage description dictionary
1086
1087 Returns:
1088 bool (True/False)
1089 """
1090
1091 if not virtual_storage_desc.get("vdu-storage-requirements"):
1092 return False
1093 for item in virtual_storage_desc.get("vdu-storage-requirements", {}):
1094 if item.get("key") == "keep-volume" and item.get("value") == "true":
1095 return True
1096 return False
1097
1098 @staticmethod
1099 def _sort_vdu_interfaces(target_vdu: dict) -> None:
1100 """Sort the interfaces according to position number.
1101
1102 Args:
1103 target_vdu (dict): Details of VDU to be created
1104
1105 """
1106 # If the position info is provided for all the interfaces, it will be sorted
1107 # according to position number ascendingly.
1108 sorted_interfaces = sorted(
1109 target_vdu["interfaces"],
1110 key=lambda x: (x.get("position") is None, x.get("position")),
1111 )
1112 target_vdu["interfaces"] = sorted_interfaces
1113
1114 @staticmethod
1115 def _partially_locate_vdu_interfaces(target_vdu: dict) -> None:
1116 """Only place the interfaces which has specific position.
1117
1118 Args:
1119 target_vdu (dict): Details of VDU to be created
1120
1121 """
1122 # If the position info is provided for some interfaces but not all of them, the interfaces
1123 # which has specific position numbers will be placed and others' positions will not be taken care.
1124 if any(
1125 i.get("position") + 1
1126 for i in target_vdu["interfaces"]
1127 if i.get("position") is not None
1128 ):
1129 n = len(target_vdu["interfaces"])
1130 sorted_interfaces = [-1] * n
1131 k, m = 0, 0
1132
1133 while k < n:
1134 if target_vdu["interfaces"][k].get("position") is not None:
1135 if any(i.get("position") == 0 for i in target_vdu["interfaces"]):
1136 idx = target_vdu["interfaces"][k]["position"] + 1
1137 else:
1138 idx = target_vdu["interfaces"][k]["position"]
1139 sorted_interfaces[idx - 1] = target_vdu["interfaces"][k]
1140 k += 1
1141
1142 while m < n:
1143 if target_vdu["interfaces"][m].get("position") is None:
1144 idy = sorted_interfaces.index(-1)
1145 sorted_interfaces[idy] = target_vdu["interfaces"][m]
1146 m += 1
1147
1148 target_vdu["interfaces"] = sorted_interfaces
1149
1150 @staticmethod
1151 def _prepare_vdu_cloud_init(
1152 target_vdu: dict, vdu2cloud_init: dict, db: object, fs: object
1153 ) -> Dict:
1154 """Fill cloud_config dict with cloud init details.
1155
1156 Args:
1157 target_vdu (dict): Details of VDU to be created
1158 vdu2cloud_init (dict): Cloud init dict
1159 db (object): DB object
1160 fs (object): FS object
1161
1162 Returns:
1163 cloud_config (dict): Cloud config details of VDU
1164
1165 """
1166 # cloud config
1167 cloud_config = {}
1168
1169 if target_vdu.get("cloud-init"):
1170 if target_vdu["cloud-init"] not in vdu2cloud_init:
1171 vdu2cloud_init[target_vdu["cloud-init"]] = Ns._get_cloud_init(
1172 db=db,
1173 fs=fs,
1174 location=target_vdu["cloud-init"],
1175 )
1176
1177 cloud_content_ = vdu2cloud_init[target_vdu["cloud-init"]]
1178 cloud_config["user-data"] = Ns._parse_jinja2(
1179 cloud_init_content=cloud_content_,
1180 params=target_vdu.get("additionalParams"),
1181 context=target_vdu["cloud-init"],
1182 )
1183
1184 if target_vdu.get("boot-data-drive"):
1185 cloud_config["boot-data-drive"] = target_vdu.get("boot-data-drive")
1186
1187 return cloud_config
1188
1189 @staticmethod
1190 def _check_vld_information_of_interfaces(
1191 interface: dict, ns_preffix: str, vnf_preffix: str
1192 ) -> Optional[str]:
1193 """Prepare the net_text by the virtual link information for vnf and ns level.
1194 Args:
1195 interface (dict): Interface details
1196 ns_preffix (str): Prefix of NS
1197 vnf_preffix (str): Prefix of VNF
1198
1199 Returns:
1200 net_text (str): information of net
1201
1202 """
1203 net_text = ""
1204 if interface.get("ns-vld-id"):
1205 net_text = ns_preffix + ":vld." + interface["ns-vld-id"]
1206 elif interface.get("vnf-vld-id"):
1207 net_text = vnf_preffix + ":vld." + interface["vnf-vld-id"]
1208
1209 return net_text
1210
1211 @staticmethod
1212 def _prepare_interface_port_security(interface: dict) -> None:
1213 """
1214
1215 Args:
1216 interface (dict): Interface details
1217
1218 """
1219 if "port-security-enabled" in interface:
1220 interface["port_security"] = interface.pop("port-security-enabled")
1221
1222 if "port-security-disable-strategy" in interface:
1223 interface["port_security_disable_strategy"] = interface.pop(
1224 "port-security-disable-strategy"
1225 )
1226
1227 @staticmethod
1228 def _create_net_item_of_interface(interface: dict, net_text: str) -> dict:
1229 """Prepare net item including name, port security, floating ip etc.
1230
1231 Args:
1232 interface (dict): Interface details
1233 net_text (str): information of net
1234
1235 Returns:
1236 net_item (dict): Dict including net details
1237
1238 """
1239
1240 net_item = {
1241 x: v
1242 for x, v in interface.items()
1243 if x
1244 in (
1245 "name",
1246 "vpci",
1247 "port_security",
1248 "port_security_disable_strategy",
1249 "floating_ip",
1250 )
1251 }
1252 net_item["net_id"] = "TASK-" + net_text
1253 net_item["type"] = "virtual"
1254
1255 return net_item
1256
1257 @staticmethod
1258 def _prepare_type_of_interface(
1259 interface: dict, tasks_by_target_record_id: dict, net_text: str, net_item: dict
1260 ) -> None:
1261 """Fill the net item type by interface type such as SR-IOV, OM-MGMT, bridge etc.
1262
1263 Args:
1264 interface (dict): Interface details
1265 tasks_by_target_record_id (dict): Task details
1266 net_text (str): information of net
1267 net_item (dict): Dict including net details
1268
1269 """
1270 # TODO mac_address: used for SR-IOV ifaces #TODO for other types
1271 # TODO floating_ip: True/False (or it can be None)
1272
1273 if interface.get("type") in ("SR-IOV", "PCI-PASSTHROUGH"):
1274 # Mark the net create task as type data
1275 if deep_get(
1276 tasks_by_target_record_id,
1277 net_text,
1278 "extra_dict",
1279 "params",
1280 "net_type",
1281 ):
1282 tasks_by_target_record_id[net_text]["extra_dict"]["params"][
1283 "net_type"
1284 ] = "data"
1285
1286 net_item["use"] = "data"
1287 net_item["model"] = interface["type"]
1288 net_item["type"] = interface["type"]
1289
1290 elif (
1291 interface.get("type") == "OM-MGMT"
1292 or interface.get("mgmt-interface")
1293 or interface.get("mgmt-vnf")
1294 ):
1295 net_item["use"] = "mgmt"
1296
1297 else:
1298 # If interface.get("type") in ("VIRTIO", "E1000", "PARAVIRT"):
1299 net_item["use"] = "bridge"
1300 net_item["model"] = interface.get("type")
1301
1302 @staticmethod
1303 def _prepare_vdu_interfaces(
1304 target_vdu: dict,
1305 extra_dict: dict,
1306 ns_preffix: str,
1307 vnf_preffix: str,
1308 logger: object,
1309 tasks_by_target_record_id: dict,
1310 net_list: list,
1311 ) -> None:
1312 """Prepare the net_item and add net_list, add mgmt interface to extra_dict.
1313
1314 Args:
1315 target_vdu (dict): VDU to be created
1316 extra_dict (dict): Dictionary to be filled
1317 ns_preffix (str): NS prefix as string
1318 vnf_preffix (str): VNF prefix as string
1319 logger (object): Logger Object
1320 tasks_by_target_record_id (dict): Task details
1321 net_list (list): Net list of VDU
1322 """
1323 for iface_index, interface in enumerate(target_vdu["interfaces"]):
1324 net_text = Ns._check_vld_information_of_interfaces(
1325 interface, ns_preffix, vnf_preffix
1326 )
1327 if not net_text:
1328 # Interface not connected to any vld
1329 logger.error(
1330 "Interface {} from vdu {} not connected to any vld".format(
1331 iface_index, target_vdu["vdu-name"]
1332 )
1333 )
1334 continue
1335
1336 extra_dict["depends_on"].append(net_text)
1337
1338 Ns._prepare_interface_port_security(interface)
1339
1340 net_item = Ns._create_net_item_of_interface(interface, net_text)
1341
1342 Ns._prepare_type_of_interface(
1343 interface, tasks_by_target_record_id, net_text, net_item
1344 )
1345
1346 if interface.get("ip-address"):
1347 net_item["ip_address"] = interface["ip-address"]
1348
1349 if interface.get("mac-address"):
1350 net_item["mac_address"] = interface["mac-address"]
1351
1352 net_list.append(net_item)
1353
1354 if interface.get("mgmt-vnf"):
1355 extra_dict["mgmt_vnf_interface"] = iface_index
1356 elif interface.get("mgmt-interface"):
1357 extra_dict["mgmt_vdu_interface"] = iface_index
1358
1359 @staticmethod
1360 def _prepare_vdu_ssh_keys(
1361 target_vdu: dict, ro_nsr_public_key: dict, cloud_config: dict
1362 ) -> None:
1363 """Add ssh keys to cloud config.
1364
1365 Args:
1366 target_vdu (dict): Details of VDU to be created
1367 ro_nsr_public_key (dict): RO NSR public Key
1368 cloud_config (dict): Cloud config details
1369
1370 """
1371 ssh_keys = []
1372
1373 if target_vdu.get("ssh-keys"):
1374 ssh_keys += target_vdu.get("ssh-keys")
1375
1376 if target_vdu.get("ssh-access-required"):
1377 ssh_keys.append(ro_nsr_public_key)
1378
1379 if ssh_keys:
1380 cloud_config["key-pairs"] = ssh_keys
1381
1382 @staticmethod
1383 def _select_persistent_root_disk(vsd: dict, vdu: dict) -> dict:
1384 """Selects the persistent root disk if exists.
1385 Args:
1386 vsd (dict): Virtual storage descriptors in VNFD
1387 vdu (dict): VNF descriptor
1388
1389 Returns:
1390 root_disk (dict): Selected persistent root disk
1391 """
1392 if vsd.get("id") == vdu.get("virtual-storage-desc", [[]])[0]:
1393 root_disk = vsd
1394 if root_disk.get(
1395 "type-of-storage"
1396 ) == "persistent-storage:persistent-storage" and root_disk.get(
1397 "size-of-storage"
1398 ):
1399 return root_disk
1400
1401 @staticmethod
1402 def _add_persistent_root_disk_to_disk_list(
1403 vnfd: dict, target_vdu: dict, persistent_root_disk: dict, disk_list: list
1404 ) -> None:
1405 """Find the persistent root disk and add to disk list.
1406
1407 Args:
1408 vnfd (dict): VNF descriptor
1409 target_vdu (dict): Details of VDU to be created
1410 persistent_root_disk (dict): Details of persistent root disk
1411 disk_list (list): Disks of VDU
1412
1413 """
1414 for vdu in vnfd.get("vdu", ()):
1415 if vdu["name"] == target_vdu["vdu-name"]:
1416 for vsd in vnfd.get("virtual-storage-desc", ()):
1417 root_disk = Ns._select_persistent_root_disk(vsd, vdu)
1418 if not root_disk:
1419 continue
1420
1421 persistent_root_disk[vsd["id"]] = {
1422 "image_id": vdu.get("sw-image-desc"),
1423 "size": root_disk["size-of-storage"],
1424 "keep": Ns.is_volume_keeping_required(root_disk),
1425 }
1426
1427 disk_list.append(persistent_root_disk[vsd["id"]])
1428 break
1429
1430 @staticmethod
1431 def _add_persistent_ordinary_disks_to_disk_list(
1432 target_vdu: dict,
1433 persistent_root_disk: dict,
1434 persistent_ordinary_disk: dict,
1435 disk_list: list,
1436 ) -> None:
1437 """Fill the disk list by adding persistent ordinary disks.
1438
1439 Args:
1440 target_vdu (dict): Details of VDU to be created
1441 persistent_root_disk (dict): Details of persistent root disk
1442 persistent_ordinary_disk (dict): Details of persistent ordinary disk
1443 disk_list (list): Disks of VDU
1444
1445 """
1446 if target_vdu.get("virtual-storages"):
1447 for disk in target_vdu["virtual-storages"]:
1448 if (
1449 disk.get("type-of-storage")
1450 == "persistent-storage:persistent-storage"
1451 and disk["id"] not in persistent_root_disk.keys()
1452 ):
1453 persistent_ordinary_disk[disk["id"]] = {
1454 "size": disk["size-of-storage"],
1455 "keep": Ns.is_volume_keeping_required(disk),
1456 }
1457 disk_list.append(persistent_ordinary_disk[disk["id"]])
1458
1459 @staticmethod
1460 def _prepare_vdu_affinity_group_list(
1461 target_vdu: dict, extra_dict: dict, ns_preffix: str
1462 ) -> List[Dict[str, any]]:
1463 """Process affinity group details to prepare affinity group list.
1464
1465 Args:
1466 target_vdu (dict): Details of VDU to be created
1467 extra_dict (dict): Dictionary to be filled
1468 ns_preffix (str): Prefix as string
1469
1470 Returns:
1471
1472 affinity_group_list (list): Affinity group details
1473
1474 """
1475 affinity_group_list = []
1476
1477 if target_vdu.get("affinity-or-anti-affinity-group-id"):
1478 for affinity_group_id in target_vdu["affinity-or-anti-affinity-group-id"]:
1479 affinity_group = {}
1480 affinity_group_text = (
1481 ns_preffix + ":affinity-or-anti-affinity-group." + affinity_group_id
1482 )
1483
1484 if not isinstance(extra_dict.get("depends_on"), list):
1485 raise NsException("Invalid extra_dict format.")
1486
1487 extra_dict["depends_on"].append(affinity_group_text)
1488 affinity_group["affinity_group_id"] = "TASK-" + affinity_group_text
1489 affinity_group_list.append(affinity_group)
1490
1491 return affinity_group_list
1492
1493 @staticmethod
1494 def _process_vdu_params(
1495 target_vdu: Dict[str, Any],
1496 indata: Dict[str, Any],
1497 vim_info: Dict[str, Any],
1498 target_record_id: str,
1499 **kwargs: Dict[str, Any],
1500 ) -> Dict[str, Any]:
1501 """Function to process VDU parameters.
1502
1503 Args:
1504 target_vdu (Dict[str, Any]): [description]
1505 indata (Dict[str, Any]): [description]
1506 vim_info (Dict[str, Any]): [description]
1507 target_record_id (str): [description]
1508
1509 Returns:
1510 Dict[str, Any]: [description]
1511 """
1512 vnfr_id = kwargs.get("vnfr_id")
1513 nsr_id = kwargs.get("nsr_id")
1514 vnfr = kwargs.get("vnfr")
1515 vdu2cloud_init = kwargs.get("vdu2cloud_init")
1516 tasks_by_target_record_id = kwargs.get("tasks_by_target_record_id")
1517 logger = kwargs.get("logger")
1518 db = kwargs.get("db")
1519 fs = kwargs.get("fs")
1520 ro_nsr_public_key = kwargs.get("ro_nsr_public_key")
1521
1522 vnf_preffix = "vnfrs:{}".format(vnfr_id)
1523 ns_preffix = "nsrs:{}".format(nsr_id)
1524 image_text = ns_preffix + ":image." + target_vdu["ns-image-id"]
1525 flavor_text = ns_preffix + ":flavor." + target_vdu["ns-flavor-id"]
1526 extra_dict = {"depends_on": [image_text, flavor_text]}
1527 net_list = []
1528
1529 persistent_root_disk = {}
1530 persistent_ordinary_disk = {}
1531 vdu_instantiation_volumes_list = []
1532 disk_list = []
1533 vnfd_id = vnfr["vnfd-id"]
1534 vnfd = db.get_one("vnfds", {"_id": vnfd_id})
1535
1536 # If the position info is provided for all the interfaces, it will be sorted
1537 # according to position number ascendingly.
1538 if all(
1539 True if i.get("position") is not None else False
1540 for i in target_vdu["interfaces"]
1541 ):
1542 Ns._sort_vdu_interfaces(target_vdu)
1543
1544 # If the position info is provided for some interfaces but not all of them, the interfaces
1545 # which has specific position numbers will be placed and others' positions will not be taken care.
1546 else:
1547 Ns._partially_locate_vdu_interfaces(target_vdu)
1548
1549 # If the position info is not provided for the interfaces, interfaces will be attached
1550 # according to the order in the VNFD.
1551 Ns._prepare_vdu_interfaces(
1552 target_vdu,
1553 extra_dict,
1554 ns_preffix,
1555 vnf_preffix,
1556 logger,
1557 tasks_by_target_record_id,
1558 net_list,
1559 )
1560
1561 # cloud config
1562 cloud_config = Ns._prepare_vdu_cloud_init(target_vdu, vdu2cloud_init, db, fs)
1563
1564 # Prepare VDU ssh keys
1565 Ns._prepare_vdu_ssh_keys(target_vdu, ro_nsr_public_key, cloud_config)
1566
1567 if target_vdu.get("additionalParams"):
1568 vdu_instantiation_volumes_list = (
1569 target_vdu.get("additionalParams").get("OSM").get("vdu_volumes")
1570 )
1571
1572 if vdu_instantiation_volumes_list:
1573 # Find the root volumes and add to the disk_list
1574 persistent_root_disk = Ns.find_persistent_root_volumes(
1575 vnfd, target_vdu, vdu_instantiation_volumes_list, disk_list
1576 )
1577
1578 # Find the ordinary volumes which are not added to the persistent_root_disk
1579 # and put them to the disk list
1580 Ns.find_persistent_volumes(
1581 persistent_root_disk,
1582 target_vdu,
1583 vdu_instantiation_volumes_list,
1584 disk_list,
1585 )
1586
1587 else:
1588 # Vdu_instantiation_volumes_list is empty
1589 # First get add the persistent root disks to disk_list
1590 Ns._add_persistent_root_disk_to_disk_list(
1591 vnfd, target_vdu, persistent_root_disk, disk_list
1592 )
1593 # Add the persistent non-root disks to disk_list
1594 Ns._add_persistent_ordinary_disks_to_disk_list(
1595 target_vdu, persistent_root_disk, persistent_ordinary_disk, disk_list
1596 )
1597
1598 affinity_group_list = Ns._prepare_vdu_affinity_group_list(
1599 target_vdu, extra_dict, ns_preffix
1600 )
1601
1602 extra_dict["params"] = {
1603 "name": "{}-{}-{}-{}".format(
1604 indata["name"][:16],
1605 vnfr["member-vnf-index-ref"][:16],
1606 target_vdu["vdu-name"][:32],
1607 target_vdu.get("count-index") or 0,
1608 ),
1609 "description": target_vdu["vdu-name"],
1610 "start": True,
1611 "image_id": "TASK-" + image_text,
1612 "flavor_id": "TASK-" + flavor_text,
1613 "affinity_group_list": affinity_group_list,
1614 "net_list": net_list,
1615 "cloud_config": cloud_config or None,
1616 "disk_list": disk_list,
1617 "availability_zone_index": None, # TODO
1618 "availability_zone_list": None, # TODO
1619 }
1620
1621 return extra_dict
1622
1623 @staticmethod
1624 def _process_affinity_group_params(
1625 target_affinity_group: Dict[str, Any],
1626 indata: Dict[str, Any],
1627 vim_info: Dict[str, Any],
1628 target_record_id: str,
1629 **kwargs: Dict[str, Any],
1630 ) -> Dict[str, Any]:
1631 """Get affinity or anti-affinity group parameters.
1632
1633 Args:
1634 target_affinity_group (Dict[str, Any]): [description]
1635 indata (Dict[str, Any]): [description]
1636 vim_info (Dict[str, Any]): [description]
1637 target_record_id (str): [description]
1638
1639 Returns:
1640 Dict[str, Any]: [description]
1641 """
1642
1643 extra_dict = {}
1644 affinity_group_data = {
1645 "name": target_affinity_group["name"],
1646 "type": target_affinity_group["type"],
1647 "scope": target_affinity_group["scope"],
1648 }
1649
1650 if target_affinity_group.get("vim-affinity-group-id"):
1651 affinity_group_data["vim-affinity-group-id"] = target_affinity_group[
1652 "vim-affinity-group-id"
1653 ]
1654
1655 extra_dict["params"] = {
1656 "affinity_group_data": affinity_group_data,
1657 }
1658
1659 return extra_dict
1660
1661 @staticmethod
1662 def _process_recreate_vdu_params(
1663 existing_vdu: Dict[str, Any],
1664 db_nsr: Dict[str, Any],
1665 vim_info: Dict[str, Any],
1666 target_record_id: str,
1667 target_id: str,
1668 **kwargs: Dict[str, Any],
1669 ) -> Dict[str, Any]:
1670 """Function to process VDU parameters to recreate.
1671
1672 Args:
1673 existing_vdu (Dict[str, Any]): [description]
1674 db_nsr (Dict[str, Any]): [description]
1675 vim_info (Dict[str, Any]): [description]
1676 target_record_id (str): [description]
1677 target_id (str): [description]
1678
1679 Returns:
1680 Dict[str, Any]: [description]
1681 """
1682 vnfr = kwargs.get("vnfr")
1683 vdu2cloud_init = kwargs.get("vdu2cloud_init")
1684 # logger = kwargs.get("logger")
1685 db = kwargs.get("db")
1686 fs = kwargs.get("fs")
1687 ro_nsr_public_key = kwargs.get("ro_nsr_public_key")
1688
1689 extra_dict = {}
1690 net_list = []
1691
1692 vim_details = {}
1693 vim_details_text = existing_vdu["vim_info"][target_id].get("vim_details", None)
1694 if vim_details_text:
1695 vim_details = yaml.safe_load(f"{vim_details_text}")
1696
1697 for iface_index, interface in enumerate(existing_vdu["interfaces"]):
1698 if "port-security-enabled" in interface:
1699 interface["port_security"] = interface.pop("port-security-enabled")
1700
1701 if "port-security-disable-strategy" in interface:
1702 interface["port_security_disable_strategy"] = interface.pop(
1703 "port-security-disable-strategy"
1704 )
1705
1706 net_item = {
1707 x: v
1708 for x, v in interface.items()
1709 if x
1710 in (
1711 "name",
1712 "vpci",
1713 "port_security",
1714 "port_security_disable_strategy",
1715 "floating_ip",
1716 )
1717 }
1718 existing_ifaces = existing_vdu["vim_info"][target_id].get(
1719 "interfaces_backup", []
1720 )
1721 net_id = next(
1722 (
1723 i["vim_net_id"]
1724 for i in existing_ifaces
1725 if i["ip_address"] == interface["ip-address"]
1726 ),
1727 None,
1728 )
1729
1730 net_item["net_id"] = net_id
1731 net_item["type"] = "virtual"
1732
1733 # TODO mac_address: used for SR-IOV ifaces #TODO for other types
1734 # TODO floating_ip: True/False (or it can be None)
1735 if interface.get("type") in ("SR-IOV", "PCI-PASSTHROUGH"):
1736 net_item["use"] = "data"
1737 net_item["model"] = interface["type"]
1738 net_item["type"] = interface["type"]
1739 elif (
1740 interface.get("type") == "OM-MGMT"
1741 or interface.get("mgmt-interface")
1742 or interface.get("mgmt-vnf")
1743 ):
1744 net_item["use"] = "mgmt"
1745 else:
1746 # if interface.get("type") in ("VIRTIO", "E1000", "PARAVIRT"):
1747 net_item["use"] = "bridge"
1748 net_item["model"] = interface.get("type")
1749
1750 if interface.get("ip-address"):
1751 net_item["ip_address"] = interface["ip-address"]
1752
1753 if interface.get("mac-address"):
1754 net_item["mac_address"] = interface["mac-address"]
1755
1756 net_list.append(net_item)
1757
1758 if interface.get("mgmt-vnf"):
1759 extra_dict["mgmt_vnf_interface"] = iface_index
1760 elif interface.get("mgmt-interface"):
1761 extra_dict["mgmt_vdu_interface"] = iface_index
1762
1763 # cloud config
1764 cloud_config = {}
1765
1766 if existing_vdu.get("cloud-init"):
1767 if existing_vdu["cloud-init"] not in vdu2cloud_init:
1768 vdu2cloud_init[existing_vdu["cloud-init"]] = Ns._get_cloud_init(
1769 db=db,
1770 fs=fs,
1771 location=existing_vdu["cloud-init"],
1772 )
1773
1774 cloud_content_ = vdu2cloud_init[existing_vdu["cloud-init"]]
1775 cloud_config["user-data"] = Ns._parse_jinja2(
1776 cloud_init_content=cloud_content_,
1777 params=existing_vdu.get("additionalParams"),
1778 context=existing_vdu["cloud-init"],
1779 )
1780
1781 if existing_vdu.get("boot-data-drive"):
1782 cloud_config["boot-data-drive"] = existing_vdu.get("boot-data-drive")
1783
1784 ssh_keys = []
1785
1786 if existing_vdu.get("ssh-keys"):
1787 ssh_keys += existing_vdu.get("ssh-keys")
1788
1789 if existing_vdu.get("ssh-access-required"):
1790 ssh_keys.append(ro_nsr_public_key)
1791
1792 if ssh_keys:
1793 cloud_config["key-pairs"] = ssh_keys
1794
1795 disk_list = []
1796 for vol_id in vim_details.get("os-extended-volumes:volumes_attached", []):
1797 disk_list.append({"vim_id": vol_id["id"]})
1798
1799 affinity_group_list = []
1800
1801 if existing_vdu.get("affinity-or-anti-affinity-group-id"):
1802 affinity_group = {}
1803 for affinity_group_id in existing_vdu["affinity-or-anti-affinity-group-id"]:
1804 for group in db_nsr.get("affinity-or-anti-affinity-group"):
1805 if (
1806 group["id"] == affinity_group_id
1807 and group["vim_info"][target_id].get("vim_id", None) is not None
1808 ):
1809 affinity_group["affinity_group_id"] = group["vim_info"][
1810 target_id
1811 ].get("vim_id", None)
1812 affinity_group_list.append(affinity_group)
1813
1814 extra_dict["params"] = {
1815 "name": "{}-{}-{}-{}".format(
1816 db_nsr["name"][:16],
1817 vnfr["member-vnf-index-ref"][:16],
1818 existing_vdu["vdu-name"][:32],
1819 existing_vdu.get("count-index") or 0,
1820 ),
1821 "description": existing_vdu["vdu-name"],
1822 "start": True,
1823 "image_id": vim_details["image"]["id"],
1824 "flavor_id": vim_details["flavor"]["id"],
1825 "affinity_group_list": affinity_group_list,
1826 "net_list": net_list,
1827 "cloud_config": cloud_config or None,
1828 "disk_list": disk_list,
1829 "availability_zone_index": None, # TODO
1830 "availability_zone_list": None, # TODO
1831 }
1832
1833 return extra_dict
1834
1835 def calculate_diff_items(
1836 self,
1837 indata,
1838 db_nsr,
1839 db_ro_nsr,
1840 db_nsr_update,
1841 item,
1842 tasks_by_target_record_id,
1843 action_id,
1844 nsr_id,
1845 task_index,
1846 vnfr_id=None,
1847 vnfr=None,
1848 ):
1849 """Function that returns the incremental changes (creation, deletion)
1850 related to a specific item `item` to be done. This function should be
1851 called for NS instantiation, NS termination, NS update to add a new VNF
1852 or a new VLD, remove a VNF or VLD, etc.
1853 Item can be `net`, `flavor`, `image` or `vdu`.
1854 It takes a list of target items from indata (which came from the REST API)
1855 and compares with the existing items from db_ro_nsr, identifying the
1856 incremental changes to be done. During the comparison, it calls the method
1857 `process_params` (which was passed as parameter, and is particular for each
1858 `item`)
1859
1860 Args:
1861 indata (Dict[str, Any]): deployment info
1862 db_nsr: NSR record from DB
1863 db_ro_nsr (Dict[str, Any]): record from "ro_nsrs"
1864 db_nsr_update (Dict[str, Any]): NSR info to update in DB
1865 item (str): element to process (net, vdu...)
1866 tasks_by_target_record_id (Dict[str, Any]):
1867 [<target_record_id>, <task>]
1868 action_id (str): action id
1869 nsr_id (str): NSR id
1870 task_index (number): task index to add to task name
1871 vnfr_id (str): VNFR id
1872 vnfr (Dict[str, Any]): VNFR info
1873
1874 Returns:
1875 List: list with the incremental changes (deletes, creates) for each item
1876 number: current task index
1877 """
1878
1879 diff_items = []
1880 db_path = ""
1881 db_record = ""
1882 target_list = []
1883 existing_list = []
1884 process_params = None
1885 vdu2cloud_init = indata.get("cloud_init_content") or {}
1886 ro_nsr_public_key = db_ro_nsr["public_key"]
1887
1888 # According to the type of item, the path, the target_list,
1889 # the existing_list and the method to process params are set
1890 db_path = self.db_path_map[item]
1891 process_params = self.process_params_function_map[item]
1892 if item in ("net", "vdu"):
1893 # This case is specific for the NS VLD (not applied to VDU)
1894 if vnfr is None:
1895 db_record = "nsrs:{}:{}".format(nsr_id, db_path)
1896 target_list = indata.get("ns", []).get(db_path, [])
1897 existing_list = db_nsr.get(db_path, [])
1898 # This case is common for VNF VLDs and VNF VDUs
1899 else:
1900 db_record = "vnfrs:{}:{}".format(vnfr_id, db_path)
1901 target_vnf = next(
1902 (vnf for vnf in indata.get("vnf", ()) if vnf["_id"] == vnfr_id),
1903 None,
1904 )
1905 target_list = target_vnf.get(db_path, []) if target_vnf else []
1906 existing_list = vnfr.get(db_path, [])
1907 elif item in ("image", "flavor", "affinity-or-anti-affinity-group"):
1908 db_record = "nsrs:{}:{}".format(nsr_id, db_path)
1909 target_list = indata.get(item, [])
1910 existing_list = db_nsr.get(item, [])
1911 else:
1912 raise NsException("Item not supported: {}", item)
1913
1914 # ensure all the target_list elements has an "id". If not assign the index as id
1915 if target_list is None:
1916 target_list = []
1917 for target_index, tl in enumerate(target_list):
1918 if tl and not tl.get("id"):
1919 tl["id"] = str(target_index)
1920
1921 # step 1 items (networks,vdus,...) to be deleted/updated
1922 for item_index, existing_item in enumerate(existing_list):
1923 target_item = next(
1924 (t for t in target_list if t["id"] == existing_item["id"]),
1925 None,
1926 )
1927
1928 for target_vim, existing_viminfo in existing_item.get(
1929 "vim_info", {}
1930 ).items():
1931 if existing_viminfo is None:
1932 continue
1933
1934 if target_item:
1935 target_viminfo = target_item.get("vim_info", {}).get(target_vim)
1936 else:
1937 target_viminfo = None
1938
1939 if target_viminfo is None:
1940 # must be deleted
1941 self._assign_vim(target_vim)
1942 target_record_id = "{}.{}".format(db_record, existing_item["id"])
1943 item_ = item
1944
1945 if target_vim.startswith("sdn") or target_vim.startswith("wim"):
1946 # item must be sdn-net instead of net if target_vim is a sdn
1947 item_ = "sdn_net"
1948 target_record_id += ".sdn"
1949
1950 deployment_info = {
1951 "action_id": action_id,
1952 "nsr_id": nsr_id,
1953 "task_index": task_index,
1954 }
1955
1956 diff_items.append(
1957 {
1958 "deployment_info": deployment_info,
1959 "target_id": target_vim,
1960 "item": item_,
1961 "action": "DELETE",
1962 "target_record": f"{db_record}.{item_index}.vim_info.{target_vim}",
1963 "target_record_id": target_record_id,
1964 }
1965 )
1966 task_index += 1
1967
1968 # step 2 items (networks,vdus,...) to be created
1969 for target_item in target_list:
1970 item_index = -1
1971
1972 for item_index, existing_item in enumerate(existing_list):
1973 if existing_item["id"] == target_item["id"]:
1974 break
1975 else:
1976 item_index += 1
1977 db_nsr_update[db_path + ".{}".format(item_index)] = target_item
1978 existing_list.append(target_item)
1979 existing_item = None
1980
1981 for target_vim, target_viminfo in target_item.get("vim_info", {}).items():
1982 existing_viminfo = None
1983
1984 if existing_item:
1985 existing_viminfo = existing_item.get("vim_info", {}).get(target_vim)
1986
1987 if existing_viminfo is not None:
1988 continue
1989
1990 target_record_id = "{}.{}".format(db_record, target_item["id"])
1991 item_ = item
1992
1993 if target_vim.startswith("sdn") or target_vim.startswith("wim"):
1994 # item must be sdn-net instead of net if target_vim is a sdn
1995 item_ = "sdn_net"
1996 target_record_id += ".sdn"
1997
1998 kwargs = {}
1999 self.logger.debug(
2000 "ns.calculate_diff_items target_item={}".format(target_item)
2001 )
2002 if process_params == Ns._process_flavor_params:
2003 kwargs.update(
2004 {
2005 "db": self.db,
2006 }
2007 )
2008 self.logger.debug(
2009 "calculate_diff_items for flavor kwargs={}".format(kwargs)
2010 )
2011
2012 if process_params == Ns._process_vdu_params:
2013 self.logger.debug("calculate_diff_items self.fs={}".format(self.fs))
2014 kwargs.update(
2015 {
2016 "vnfr_id": vnfr_id,
2017 "nsr_id": nsr_id,
2018 "vnfr": vnfr,
2019 "vdu2cloud_init": vdu2cloud_init,
2020 "tasks_by_target_record_id": tasks_by_target_record_id,
2021 "logger": self.logger,
2022 "db": self.db,
2023 "fs": self.fs,
2024 "ro_nsr_public_key": ro_nsr_public_key,
2025 }
2026 )
2027 self.logger.debug("calculate_diff_items kwargs={}".format(kwargs))
2028
2029 extra_dict = process_params(
2030 target_item,
2031 indata,
2032 target_viminfo,
2033 target_record_id,
2034 **kwargs,
2035 )
2036 self._assign_vim(target_vim)
2037
2038 deployment_info = {
2039 "action_id": action_id,
2040 "nsr_id": nsr_id,
2041 "task_index": task_index,
2042 }
2043
2044 new_item = {
2045 "deployment_info": deployment_info,
2046 "target_id": target_vim,
2047 "item": item_,
2048 "action": "CREATE",
2049 "target_record": f"{db_record}.{item_index}.vim_info.{target_vim}",
2050 "target_record_id": target_record_id,
2051 "extra_dict": extra_dict,
2052 "common_id": target_item.get("common_id", None),
2053 }
2054 diff_items.append(new_item)
2055 tasks_by_target_record_id[target_record_id] = new_item
2056 task_index += 1
2057
2058 db_nsr_update[db_path + ".{}".format(item_index)] = target_item
2059
2060 return diff_items, task_index
2061
2062 def calculate_all_differences_to_deploy(
2063 self,
2064 indata,
2065 nsr_id,
2066 db_nsr,
2067 db_vnfrs,
2068 db_ro_nsr,
2069 db_nsr_update,
2070 db_vnfrs_update,
2071 action_id,
2072 tasks_by_target_record_id,
2073 ):
2074 """This method calculates the ordered list of items (`changes_list`)
2075 to be created and deleted.
2076
2077 Args:
2078 indata (Dict[str, Any]): deployment info
2079 nsr_id (str): NSR id
2080 db_nsr: NSR record from DB
2081 db_vnfrs: VNFRS record from DB
2082 db_ro_nsr (Dict[str, Any]): record from "ro_nsrs"
2083 db_nsr_update (Dict[str, Any]): NSR info to update in DB
2084 db_vnfrs_update (Dict[str, Any]): VNFRS info to update in DB
2085 action_id (str): action id
2086 tasks_by_target_record_id (Dict[str, Any]):
2087 [<target_record_id>, <task>]
2088
2089 Returns:
2090 List: ordered list of items to be created and deleted.
2091 """
2092
2093 task_index = 0
2094 # set list with diffs:
2095 changes_list = []
2096
2097 # NS vld, image and flavor
2098 for item in ["net", "image", "flavor", "affinity-or-anti-affinity-group"]:
2099 self.logger.debug("process NS={} {}".format(nsr_id, item))
2100 diff_items, task_index = self.calculate_diff_items(
2101 indata=indata,
2102 db_nsr=db_nsr,
2103 db_ro_nsr=db_ro_nsr,
2104 db_nsr_update=db_nsr_update,
2105 item=item,
2106 tasks_by_target_record_id=tasks_by_target_record_id,
2107 action_id=action_id,
2108 nsr_id=nsr_id,
2109 task_index=task_index,
2110 vnfr_id=None,
2111 )
2112 changes_list += diff_items
2113
2114 # VNF vlds and vdus
2115 for vnfr_id, vnfr in db_vnfrs.items():
2116 # vnfr_id need to be set as global variable for among others nested method _process_vdu_params
2117 for item in ["net", "vdu"]:
2118 self.logger.debug("process VNF={} {}".format(vnfr_id, item))
2119 diff_items, task_index = self.calculate_diff_items(
2120 indata=indata,
2121 db_nsr=db_nsr,
2122 db_ro_nsr=db_ro_nsr,
2123 db_nsr_update=db_vnfrs_update[vnfr["_id"]],
2124 item=item,
2125 tasks_by_target_record_id=tasks_by_target_record_id,
2126 action_id=action_id,
2127 nsr_id=nsr_id,
2128 task_index=task_index,
2129 vnfr_id=vnfr_id,
2130 vnfr=vnfr,
2131 )
2132 changes_list += diff_items
2133
2134 return changes_list
2135
2136 def define_all_tasks(
2137 self,
2138 changes_list,
2139 db_new_tasks,
2140 tasks_by_target_record_id,
2141 ):
2142 """Function to create all the task structures obtanied from
2143 the method calculate_all_differences_to_deploy
2144
2145 Args:
2146 changes_list (List): ordered list of items to be created or deleted
2147 db_new_tasks (List): tasks list to be created
2148 action_id (str): action id
2149 tasks_by_target_record_id (Dict[str, Any]):
2150 [<target_record_id>, <task>]
2151
2152 """
2153
2154 for change in changes_list:
2155 task = Ns._create_task(
2156 deployment_info=change["deployment_info"],
2157 target_id=change["target_id"],
2158 item=change["item"],
2159 action=change["action"],
2160 target_record=change["target_record"],
2161 target_record_id=change["target_record_id"],
2162 extra_dict=change.get("extra_dict", None),
2163 )
2164
2165 self.logger.debug("ns.define_all_tasks task={}".format(task))
2166 tasks_by_target_record_id[change["target_record_id"]] = task
2167 db_new_tasks.append(task)
2168
2169 if change.get("common_id"):
2170 task["common_id"] = change["common_id"]
2171
2172 def upload_all_tasks(
2173 self,
2174 db_new_tasks,
2175 now,
2176 ):
2177 """Function to save all tasks in the common DB
2178
2179 Args:
2180 db_new_tasks (List): tasks list to be created
2181 now (time): current time
2182
2183 """
2184
2185 nb_ro_tasks = 0 # for logging
2186
2187 for db_task in db_new_tasks:
2188 target_id = db_task.pop("target_id")
2189 common_id = db_task.get("common_id")
2190
2191 # Do not chek tasks with vim_status DELETED
2192 # because in manual heealing there are two tasks for the same vdur:
2193 # one with vim_status deleted and the other one with the actual VM status.
2194
2195 if common_id:
2196 if self.db.set_one(
2197 "ro_tasks",
2198 q_filter={
2199 "target_id": target_id,
2200 "tasks.common_id": common_id,
2201 "vim_info.vim_status.ne": "DELETED",
2202 },
2203 update_dict={"to_check_at": now, "modified_at": now},
2204 push={"tasks": db_task},
2205 fail_on_empty=False,
2206 ):
2207 continue
2208
2209 if not self.db.set_one(
2210 "ro_tasks",
2211 q_filter={
2212 "target_id": target_id,
2213 "tasks.target_record": db_task["target_record"],
2214 "vim_info.vim_status.ne": "DELETED",
2215 },
2216 update_dict={"to_check_at": now, "modified_at": now},
2217 push={"tasks": db_task},
2218 fail_on_empty=False,
2219 ):
2220 # Create a ro_task
2221 self.logger.debug("Updating database, Creating ro_tasks")
2222 db_ro_task = Ns._create_ro_task(target_id, db_task)
2223 nb_ro_tasks += 1
2224 self.db.create("ro_tasks", db_ro_task)
2225
2226 self.logger.debug(
2227 "Created {} ro_tasks; {} tasks - db_new_tasks={}".format(
2228 nb_ro_tasks, len(db_new_tasks), db_new_tasks
2229 )
2230 )
2231
2232 def upload_recreate_tasks(
2233 self,
2234 db_new_tasks,
2235 now,
2236 ):
2237 """Function to save recreate tasks in the common DB
2238
2239 Args:
2240 db_new_tasks (List): tasks list to be created
2241 now (time): current time
2242
2243 """
2244
2245 nb_ro_tasks = 0 # for logging
2246
2247 for db_task in db_new_tasks:
2248 target_id = db_task.pop("target_id")
2249 self.logger.debug("target_id={} db_task={}".format(target_id, db_task))
2250
2251 action = db_task.get("action", None)
2252
2253 # Create a ro_task
2254 self.logger.debug("Updating database, Creating ro_tasks")
2255 db_ro_task = Ns._create_ro_task(target_id, db_task)
2256
2257 # If DELETE task: the associated created items should be removed
2258 # (except persistent volumes):
2259 if action == "DELETE":
2260 db_ro_task["vim_info"]["created"] = True
2261 db_ro_task["vim_info"]["created_items"] = db_task.get(
2262 "created_items", {}
2263 )
2264 db_ro_task["vim_info"]["volumes_to_hold"] = db_task.get(
2265 "volumes_to_hold", []
2266 )
2267 db_ro_task["vim_info"]["vim_id"] = db_task.get("vim_id", None)
2268
2269 nb_ro_tasks += 1
2270 self.logger.debug("upload_all_tasks db_ro_task={}".format(db_ro_task))
2271 self.db.create("ro_tasks", db_ro_task)
2272
2273 self.logger.debug(
2274 "Created {} ro_tasks; {} tasks - db_new_tasks={}".format(
2275 nb_ro_tasks, len(db_new_tasks), db_new_tasks
2276 )
2277 )
2278
2279 def _prepare_created_items_for_healing(
2280 self,
2281 nsr_id,
2282 target_record,
2283 ):
2284 created_items = {}
2285 # Get created_items from ro_task
2286 ro_tasks = self.db.get_list("ro_tasks", {"tasks.nsr_id": nsr_id})
2287 for ro_task in ro_tasks:
2288 for task in ro_task["tasks"]:
2289 if (
2290 task["target_record"] == target_record
2291 and task["action"] == "CREATE"
2292 and ro_task["vim_info"]["created_items"]
2293 ):
2294 created_items = ro_task["vim_info"]["created_items"]
2295 break
2296
2297 return created_items
2298
2299 def _prepare_persistent_volumes_for_healing(
2300 self,
2301 target_id,
2302 existing_vdu,
2303 ):
2304 # The associated volumes of the VM shouldn't be removed
2305 volumes_list = []
2306 vim_details = {}
2307 vim_details_text = existing_vdu["vim_info"][target_id].get("vim_details", None)
2308 if vim_details_text:
2309 vim_details = yaml.safe_load(f"{vim_details_text}")
2310
2311 for vol_id in vim_details.get("os-extended-volumes:volumes_attached", []):
2312 volumes_list.append(vol_id["id"])
2313
2314 return volumes_list
2315
2316 def prepare_changes_to_recreate(
2317 self,
2318 indata,
2319 nsr_id,
2320 db_nsr,
2321 db_vnfrs,
2322 db_ro_nsr,
2323 action_id,
2324 tasks_by_target_record_id,
2325 ):
2326 """This method will obtain an ordered list of items (`changes_list`)
2327 to be created and deleted to meet the recreate request.
2328 """
2329
2330 self.logger.debug(
2331 "ns.prepare_changes_to_recreate nsr_id={} indata={}".format(nsr_id, indata)
2332 )
2333
2334 task_index = 0
2335 # set list with diffs:
2336 changes_list = []
2337 db_path = self.db_path_map["vdu"]
2338 target_list = indata.get("healVnfData", {})
2339 vdu2cloud_init = indata.get("cloud_init_content") or {}
2340 ro_nsr_public_key = db_ro_nsr["public_key"]
2341
2342 # Check each VNF of the target
2343 for target_vnf in target_list:
2344 # Find this VNF in the list from DB
2345 vnfr_id = target_vnf.get("vnfInstanceId", None)
2346 if vnfr_id:
2347 existing_vnf = db_vnfrs.get(vnfr_id)
2348 db_record = "vnfrs:{}:{}".format(vnfr_id, db_path)
2349 # vim_account_id = existing_vnf.get("vim-account-id", "")
2350
2351 # Check each VDU of this VNF
2352 for target_vdu in target_vnf["additionalParams"].get("vdu", None):
2353 vdu_name = target_vdu.get("vdu-id", None)
2354 # For multi instance VDU count-index is mandatory
2355 # For single session VDU count-indes is 0
2356 count_index = target_vdu.get("count-index", 0)
2357 item_index = 0
2358 existing_instance = None
2359 for instance in existing_vnf.get("vdur", None):
2360 if (
2361 instance["vdu-name"] == vdu_name
2362 and instance["count-index"] == count_index
2363 ):
2364 existing_instance = instance
2365 break
2366 else:
2367 item_index += 1
2368
2369 target_record_id = "{}.{}".format(db_record, existing_instance["id"])
2370
2371 # The target VIM is the one already existing in DB to recreate
2372 for target_vim, target_viminfo in existing_instance.get(
2373 "vim_info", {}
2374 ).items():
2375 # step 1 vdu to be deleted
2376 self._assign_vim(target_vim)
2377 deployment_info = {
2378 "action_id": action_id,
2379 "nsr_id": nsr_id,
2380 "task_index": task_index,
2381 }
2382
2383 target_record = f"{db_record}.{item_index}.vim_info.{target_vim}"
2384 created_items = self._prepare_created_items_for_healing(
2385 nsr_id, target_record
2386 )
2387
2388 volumes_to_hold = self._prepare_persistent_volumes_for_healing(
2389 target_vim, existing_instance
2390 )
2391
2392 # Specific extra params for recreate tasks:
2393 extra_dict = {
2394 "created_items": created_items,
2395 "vim_id": existing_instance["vim-id"],
2396 "volumes_to_hold": volumes_to_hold,
2397 }
2398
2399 changes_list.append(
2400 {
2401 "deployment_info": deployment_info,
2402 "target_id": target_vim,
2403 "item": "vdu",
2404 "action": "DELETE",
2405 "target_record": target_record,
2406 "target_record_id": target_record_id,
2407 "extra_dict": extra_dict,
2408 }
2409 )
2410 delete_task_id = f"{action_id}:{task_index}"
2411 task_index += 1
2412
2413 # step 2 vdu to be created
2414 kwargs = {}
2415 kwargs.update(
2416 {
2417 "vnfr_id": vnfr_id,
2418 "nsr_id": nsr_id,
2419 "vnfr": existing_vnf,
2420 "vdu2cloud_init": vdu2cloud_init,
2421 "tasks_by_target_record_id": tasks_by_target_record_id,
2422 "logger": self.logger,
2423 "db": self.db,
2424 "fs": self.fs,
2425 "ro_nsr_public_key": ro_nsr_public_key,
2426 }
2427 )
2428
2429 extra_dict = self._process_recreate_vdu_params(
2430 existing_instance,
2431 db_nsr,
2432 target_viminfo,
2433 target_record_id,
2434 target_vim,
2435 **kwargs,
2436 )
2437
2438 # The CREATE task depens on the DELETE task
2439 extra_dict["depends_on"] = [delete_task_id]
2440
2441 # Add volumes created from created_items if any
2442 # Ports should be deleted with delete task and automatically created with create task
2443 volumes = {}
2444 for k, v in created_items.items():
2445 try:
2446 k_item, _, k_id = k.partition(":")
2447 if k_item == "volume":
2448 volumes[k] = v
2449 except Exception as e:
2450 self.logger.error(
2451 "Error evaluating created item {}: {}".format(k, e)
2452 )
2453 extra_dict["previous_created_volumes"] = volumes
2454
2455 deployment_info = {
2456 "action_id": action_id,
2457 "nsr_id": nsr_id,
2458 "task_index": task_index,
2459 }
2460 self._assign_vim(target_vim)
2461
2462 new_item = {
2463 "deployment_info": deployment_info,
2464 "target_id": target_vim,
2465 "item": "vdu",
2466 "action": "CREATE",
2467 "target_record": target_record,
2468 "target_record_id": target_record_id,
2469 "extra_dict": extra_dict,
2470 }
2471 changes_list.append(new_item)
2472 tasks_by_target_record_id[target_record_id] = new_item
2473 task_index += 1
2474
2475 return changes_list
2476
2477 def recreate(self, session, indata, version, nsr_id, *args, **kwargs):
2478 self.logger.debug("ns.recreate nsr_id={} indata={}".format(nsr_id, indata))
2479 # TODO: validate_input(indata, recreate_schema)
2480 action_id = indata.get("action_id", str(uuid4()))
2481 # get current deployment
2482 db_vnfrs = {} # vnf's info indexed by _id
2483 step = ""
2484 logging_text = "Recreate nsr_id={} action_id={} indata={}".format(
2485 nsr_id, action_id, indata
2486 )
2487 self.logger.debug(logging_text + "Enter")
2488
2489 try:
2490 step = "Getting ns and vnfr record from db"
2491 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
2492 db_new_tasks = []
2493 tasks_by_target_record_id = {}
2494 # read from db: vnf's of this ns
2495 step = "Getting vnfrs from db"
2496 db_vnfrs_list = self.db.get_list("vnfrs", {"nsr-id-ref": nsr_id})
2497 self.logger.debug("ns.recreate: db_vnfrs_list={}".format(db_vnfrs_list))
2498
2499 if not db_vnfrs_list:
2500 raise NsException("Cannot obtain associated VNF for ns")
2501
2502 for vnfr in db_vnfrs_list:
2503 db_vnfrs[vnfr["_id"]] = vnfr
2504
2505 now = time()
2506 db_ro_nsr = self.db.get_one("ro_nsrs", {"_id": nsr_id}, fail_on_empty=False)
2507 self.logger.debug("ns.recreate: db_ro_nsr={}".format(db_ro_nsr))
2508
2509 if not db_ro_nsr:
2510 db_ro_nsr = self._create_db_ro_nsrs(nsr_id, now)
2511
2512 with self.write_lock:
2513 # NS
2514 step = "process NS elements"
2515 changes_list = self.prepare_changes_to_recreate(
2516 indata=indata,
2517 nsr_id=nsr_id,
2518 db_nsr=db_nsr,
2519 db_vnfrs=db_vnfrs,
2520 db_ro_nsr=db_ro_nsr,
2521 action_id=action_id,
2522 tasks_by_target_record_id=tasks_by_target_record_id,
2523 )
2524
2525 self.define_all_tasks(
2526 changes_list=changes_list,
2527 db_new_tasks=db_new_tasks,
2528 tasks_by_target_record_id=tasks_by_target_record_id,
2529 )
2530
2531 # Delete all ro_tasks registered for the targets vdurs (target_record)
2532 # If task of type CREATE exist then vim will try to get info form deleted VMs.
2533 # So remove all task related to target record.
2534 ro_tasks = self.db.get_list("ro_tasks", {"tasks.nsr_id": nsr_id})
2535 for change in changes_list:
2536 for ro_task in ro_tasks:
2537 for task in ro_task["tasks"]:
2538 if task["target_record"] == change["target_record"]:
2539 self.db.del_one(
2540 "ro_tasks",
2541 q_filter={
2542 "_id": ro_task["_id"],
2543 "modified_at": ro_task["modified_at"],
2544 },
2545 fail_on_empty=False,
2546 )
2547
2548 step = "Updating database, Appending tasks to ro_tasks"
2549 self.upload_recreate_tasks(
2550 db_new_tasks=db_new_tasks,
2551 now=now,
2552 )
2553
2554 self.logger.debug(
2555 logging_text + "Exit. Created {} tasks".format(len(db_new_tasks))
2556 )
2557
2558 return (
2559 {"status": "ok", "nsr_id": nsr_id, "action_id": action_id},
2560 action_id,
2561 True,
2562 )
2563 except Exception as e:
2564 if isinstance(e, (DbException, NsException)):
2565 self.logger.error(
2566 logging_text + "Exit Exception while '{}': {}".format(step, e)
2567 )
2568 else:
2569 e = traceback_format_exc()
2570 self.logger.critical(
2571 logging_text + "Exit Exception while '{}': {}".format(step, e),
2572 exc_info=True,
2573 )
2574
2575 raise NsException(e)
2576
2577 def deploy(self, session, indata, version, nsr_id, *args, **kwargs):
2578 self.logger.debug("ns.deploy nsr_id={} indata={}".format(nsr_id, indata))
2579 validate_input(indata, deploy_schema)
2580 action_id = indata.get("action_id", str(uuid4()))
2581 task_index = 0
2582 # get current deployment
2583 db_nsr_update = {} # update operation on nsrs
2584 db_vnfrs_update = {}
2585 db_vnfrs = {} # vnf's info indexed by _id
2586 step = ""
2587 logging_text = "Task deploy nsr_id={} action_id={} ".format(nsr_id, action_id)
2588 self.logger.debug(logging_text + "Enter")
2589
2590 try:
2591 step = "Getting ns and vnfr record from db"
2592 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
2593 self.logger.debug("ns.deploy: db_nsr={}".format(db_nsr))
2594 db_new_tasks = []
2595 tasks_by_target_record_id = {}
2596 # read from db: vnf's of this ns
2597 step = "Getting vnfrs from db"
2598 db_vnfrs_list = self.db.get_list("vnfrs", {"nsr-id-ref": nsr_id})
2599
2600 if not db_vnfrs_list:
2601 raise NsException("Cannot obtain associated VNF for ns")
2602
2603 for vnfr in db_vnfrs_list:
2604 db_vnfrs[vnfr["_id"]] = vnfr
2605 db_vnfrs_update[vnfr["_id"]] = {}
2606 self.logger.debug("ns.deploy db_vnfrs={}".format(db_vnfrs))
2607
2608 now = time()
2609 db_ro_nsr = self.db.get_one("ro_nsrs", {"_id": nsr_id}, fail_on_empty=False)
2610
2611 if not db_ro_nsr:
2612 db_ro_nsr = self._create_db_ro_nsrs(nsr_id, now)
2613
2614 # check that action_id is not in the list of actions. Suffixed with :index
2615 if action_id in db_ro_nsr["actions"]:
2616 index = 1
2617
2618 while True:
2619 new_action_id = "{}:{}".format(action_id, index)
2620
2621 if new_action_id not in db_ro_nsr["actions"]:
2622 action_id = new_action_id
2623 self.logger.debug(
2624 logging_text
2625 + "Changing action_id in use to {}".format(action_id)
2626 )
2627 break
2628
2629 index += 1
2630
2631 def _process_action(indata):
2632 nonlocal db_new_tasks
2633 nonlocal action_id
2634 nonlocal nsr_id
2635 nonlocal task_index
2636 nonlocal db_vnfrs
2637 nonlocal db_ro_nsr
2638
2639 if indata["action"]["action"] == "inject_ssh_key":
2640 key = indata["action"].get("key")
2641 user = indata["action"].get("user")
2642 password = indata["action"].get("password")
2643
2644 for vnf in indata.get("vnf", ()):
2645 if vnf["_id"] not in db_vnfrs:
2646 raise NsException("Invalid vnf={}".format(vnf["_id"]))
2647
2648 db_vnfr = db_vnfrs[vnf["_id"]]
2649
2650 for target_vdu in vnf.get("vdur", ()):
2651 vdu_index, vdur = next(
2652 (
2653 i_v
2654 for i_v in enumerate(db_vnfr["vdur"])
2655 if i_v[1]["id"] == target_vdu["id"]
2656 ),
2657 (None, None),
2658 )
2659
2660 if not vdur:
2661 raise NsException(
2662 "Invalid vdu vnf={}.{}".format(
2663 vnf["_id"], target_vdu["id"]
2664 )
2665 )
2666
2667 target_vim, vim_info = next(
2668 k_v for k_v in vdur["vim_info"].items()
2669 )
2670 self._assign_vim(target_vim)
2671 target_record = "vnfrs:{}:vdur.{}.ssh_keys".format(
2672 vnf["_id"], vdu_index
2673 )
2674 extra_dict = {
2675 "depends_on": [
2676 "vnfrs:{}:vdur.{}".format(vnf["_id"], vdur["id"])
2677 ],
2678 "params": {
2679 "ip_address": vdur.get("ip-address"),
2680 "user": user,
2681 "key": key,
2682 "password": password,
2683 "private_key": db_ro_nsr["private_key"],
2684 "salt": db_ro_nsr["_id"],
2685 "schema_version": db_ro_nsr["_admin"][
2686 "schema_version"
2687 ],
2688 },
2689 }
2690
2691 deployment_info = {
2692 "action_id": action_id,
2693 "nsr_id": nsr_id,
2694 "task_index": task_index,
2695 }
2696
2697 task = Ns._create_task(
2698 deployment_info=deployment_info,
2699 target_id=target_vim,
2700 item="vdu",
2701 action="EXEC",
2702 target_record=target_record,
2703 target_record_id=None,
2704 extra_dict=extra_dict,
2705 )
2706
2707 task_index = deployment_info.get("task_index")
2708
2709 db_new_tasks.append(task)
2710
2711 with self.write_lock:
2712 if indata.get("action"):
2713 _process_action(indata)
2714 else:
2715 # compute network differences
2716 # NS
2717 step = "process NS elements"
2718 changes_list = self.calculate_all_differences_to_deploy(
2719 indata=indata,
2720 nsr_id=nsr_id,
2721 db_nsr=db_nsr,
2722 db_vnfrs=db_vnfrs,
2723 db_ro_nsr=db_ro_nsr,
2724 db_nsr_update=db_nsr_update,
2725 db_vnfrs_update=db_vnfrs_update,
2726 action_id=action_id,
2727 tasks_by_target_record_id=tasks_by_target_record_id,
2728 )
2729 self.define_all_tasks(
2730 changes_list=changes_list,
2731 db_new_tasks=db_new_tasks,
2732 tasks_by_target_record_id=tasks_by_target_record_id,
2733 )
2734
2735 step = "Updating database, Appending tasks to ro_tasks"
2736 self.upload_all_tasks(
2737 db_new_tasks=db_new_tasks,
2738 now=now,
2739 )
2740
2741 step = "Updating database, nsrs"
2742 if db_nsr_update:
2743 self.db.set_one("nsrs", {"_id": nsr_id}, db_nsr_update)
2744
2745 for vnfr_id, db_vnfr_update in db_vnfrs_update.items():
2746 if db_vnfr_update:
2747 step = "Updating database, vnfrs={}".format(vnfr_id)
2748 self.db.set_one("vnfrs", {"_id": vnfr_id}, db_vnfr_update)
2749
2750 self.logger.debug(
2751 logging_text + "Exit. Created {} tasks".format(len(db_new_tasks))
2752 )
2753
2754 return (
2755 {"status": "ok", "nsr_id": nsr_id, "action_id": action_id},
2756 action_id,
2757 True,
2758 )
2759 except Exception as e:
2760 if isinstance(e, (DbException, NsException)):
2761 self.logger.error(
2762 logging_text + "Exit Exception while '{}': {}".format(step, e)
2763 )
2764 else:
2765 e = traceback_format_exc()
2766 self.logger.critical(
2767 logging_text + "Exit Exception while '{}': {}".format(step, e),
2768 exc_info=True,
2769 )
2770
2771 raise NsException(e)
2772
2773 def delete(self, session, indata, version, nsr_id, *args, **kwargs):
2774 self.logger.debug("ns.delete version={} nsr_id={}".format(version, nsr_id))
2775 # self.db.del_list({"_id": ro_task["_id"], "tasks.nsr_id.ne": nsr_id})
2776
2777 with self.write_lock:
2778 try:
2779 NsWorker.delete_db_tasks(self.db, nsr_id, None)
2780 except NsWorkerException as e:
2781 raise NsException(e)
2782
2783 return None, None, True
2784
2785 def status(self, session, indata, version, nsr_id, action_id, *args, **kwargs):
2786 self.logger.debug(
2787 "ns.status version={} nsr_id={}, action_id={} indata={}".format(
2788 version, nsr_id, action_id, indata
2789 )
2790 )
2791 task_list = []
2792 done = 0
2793 total = 0
2794 ro_tasks = self.db.get_list("ro_tasks", {"tasks.action_id": action_id})
2795 global_status = "DONE"
2796 details = []
2797
2798 for ro_task in ro_tasks:
2799 for task in ro_task["tasks"]:
2800 if task and task["action_id"] == action_id:
2801 task_list.append(task)
2802 total += 1
2803
2804 if task["status"] == "FAILED":
2805 global_status = "FAILED"
2806 error_text = "Error at {} {}: {}".format(
2807 task["action"].lower(),
2808 task["item"],
2809 ro_task["vim_info"].get("vim_message") or "unknown",
2810 )
2811 details.append(error_text)
2812 elif task["status"] in ("SCHEDULED", "BUILD"):
2813 if global_status != "FAILED":
2814 global_status = "BUILD"
2815 else:
2816 done += 1
2817
2818 return_data = {
2819 "status": global_status,
2820 "details": ". ".join(details)
2821 if details
2822 else "progress {}/{}".format(done, total),
2823 "nsr_id": nsr_id,
2824 "action_id": action_id,
2825 "tasks": task_list,
2826 }
2827
2828 return return_data, None, True
2829
2830 def recreate_status(
2831 self, session, indata, version, nsr_id, action_id, *args, **kwargs
2832 ):
2833 return self.status(session, indata, version, nsr_id, action_id, *args, **kwargs)
2834
2835 def cancel(self, session, indata, version, nsr_id, action_id, *args, **kwargs):
2836 print(
2837 "ns.cancel session={} indata={} version={} nsr_id={}, action_id={}".format(
2838 session, indata, version, nsr_id, action_id
2839 )
2840 )
2841
2842 return None, None, True
2843
2844 def rebuild_start_stop_task(
2845 self,
2846 vdu_id,
2847 vnf_id,
2848 vdu_index,
2849 action_id,
2850 nsr_id,
2851 task_index,
2852 target_vim,
2853 extra_dict,
2854 ):
2855 self._assign_vim(target_vim)
2856 target_record = "vnfrs:{}:vdur.{}".format(vnf_id, vdu_index)
2857 target_record_id = "vnfrs:{}:vdur.{}".format(vnf_id, vdu_id)
2858 deployment_info = {
2859 "action_id": action_id,
2860 "nsr_id": nsr_id,
2861 "task_index": task_index,
2862 }
2863
2864 task = Ns._create_task(
2865 deployment_info=deployment_info,
2866 target_id=target_vim,
2867 item="update",
2868 action="EXEC",
2869 target_record=target_record,
2870 target_record_id=target_record_id,
2871 extra_dict=extra_dict,
2872 )
2873 return task
2874
2875 def rebuild_start_stop(
2876 self, session, action_dict, version, nsr_id, *args, **kwargs
2877 ):
2878 task_index = 0
2879 extra_dict = {}
2880 now = time()
2881 action_id = action_dict.get("action_id", str(uuid4()))
2882 step = ""
2883 logging_text = "Task deploy nsr_id={} action_id={} ".format(nsr_id, action_id)
2884 self.logger.debug(logging_text + "Enter")
2885
2886 action = list(action_dict.keys())[0]
2887 task_dict = action_dict.get(action)
2888 vim_vm_id = action_dict.get(action).get("vim_vm_id")
2889
2890 if action_dict.get("stop"):
2891 action = "shutoff"
2892 db_new_tasks = []
2893 try:
2894 step = "lock the operation & do task creation"
2895 with self.write_lock:
2896 extra_dict["params"] = {
2897 "vim_vm_id": vim_vm_id,
2898 "action": action,
2899 }
2900 task = self.rebuild_start_stop_task(
2901 task_dict["vdu_id"],
2902 task_dict["vnf_id"],
2903 task_dict["vdu_index"],
2904 action_id,
2905 nsr_id,
2906 task_index,
2907 task_dict["target_vim"],
2908 extra_dict,
2909 )
2910 db_new_tasks.append(task)
2911 step = "upload Task to db"
2912 self.upload_all_tasks(
2913 db_new_tasks=db_new_tasks,
2914 now=now,
2915 )
2916 self.logger.debug(
2917 logging_text + "Exit. Created {} tasks".format(len(db_new_tasks))
2918 )
2919 return (
2920 {"status": "ok", "nsr_id": nsr_id, "action_id": action_id},
2921 action_id,
2922 True,
2923 )
2924 except Exception as e:
2925 if isinstance(e, (DbException, NsException)):
2926 self.logger.error(
2927 logging_text + "Exit Exception while '{}': {}".format(step, e)
2928 )
2929 else:
2930 e = traceback_format_exc()
2931 self.logger.critical(
2932 logging_text + "Exit Exception while '{}': {}".format(step, e),
2933 exc_info=True,
2934 )
2935 raise NsException(e)
2936
2937 def get_deploy(self, session, indata, version, nsr_id, action_id, *args, **kwargs):
2938 nsrs = self.db.get_list("nsrs", {})
2939 return_data = []
2940
2941 for ns in nsrs:
2942 return_data.append({"_id": ns["_id"], "name": ns["name"]})
2943
2944 return return_data, None, True
2945
2946 def get_actions(self, session, indata, version, nsr_id, action_id, *args, **kwargs):
2947 ro_tasks = self.db.get_list("ro_tasks", {"tasks.nsr_id": nsr_id})
2948 return_data = []
2949
2950 for ro_task in ro_tasks:
2951 for task in ro_task["tasks"]:
2952 if task["action_id"] not in return_data:
2953 return_data.append(task["action_id"])
2954
2955 return return_data, None, True
2956
2957 def migrate_task(
2958 self, vdu, vnf, vdu_index, action_id, nsr_id, task_index, extra_dict
2959 ):
2960 target_vim, vim_info = next(k_v for k_v in vdu["vim_info"].items())
2961 self._assign_vim(target_vim)
2962 target_record = "vnfrs:{}:vdur.{}".format(vnf["_id"], vdu_index)
2963 target_record_id = "vnfrs:{}:vdur.{}".format(vnf["_id"], vdu["id"])
2964 deployment_info = {
2965 "action_id": action_id,
2966 "nsr_id": nsr_id,
2967 "task_index": task_index,
2968 }
2969
2970 task = Ns._create_task(
2971 deployment_info=deployment_info,
2972 target_id=target_vim,
2973 item="migrate",
2974 action="EXEC",
2975 target_record=target_record,
2976 target_record_id=target_record_id,
2977 extra_dict=extra_dict,
2978 )
2979
2980 return task
2981
2982 def migrate(self, session, indata, version, nsr_id, *args, **kwargs):
2983 task_index = 0
2984 extra_dict = {}
2985 now = time()
2986 action_id = indata.get("action_id", str(uuid4()))
2987 step = ""
2988 logging_text = "Task deploy nsr_id={} action_id={} ".format(nsr_id, action_id)
2989 self.logger.debug(logging_text + "Enter")
2990 try:
2991 vnf_instance_id = indata["vnfInstanceId"]
2992 step = "Getting vnfrs from db"
2993 db_vnfr = self.db.get_one("vnfrs", {"_id": vnf_instance_id})
2994 vdu = indata.get("vdu")
2995 migrateToHost = indata.get("migrateToHost")
2996 db_new_tasks = []
2997
2998 with self.write_lock:
2999 if vdu is not None:
3000 vdu_id = indata["vdu"]["vduId"]
3001 vdu_count_index = indata["vdu"].get("vduCountIndex", 0)
3002 for vdu_index, vdu in enumerate(db_vnfr["vdur"]):
3003 if (
3004 vdu["vdu-id-ref"] == vdu_id
3005 and vdu["count-index"] == vdu_count_index
3006 ):
3007 extra_dict["params"] = {
3008 "vim_vm_id": vdu["vim-id"],
3009 "migrate_host": migrateToHost,
3010 "vdu_vim_info": vdu["vim_info"],
3011 }
3012 step = "Creating migration task for vdu:{}".format(vdu)
3013 task = self.migrate_task(
3014 vdu,
3015 db_vnfr,
3016 vdu_index,
3017 action_id,
3018 nsr_id,
3019 task_index,
3020 extra_dict,
3021 )
3022 db_new_tasks.append(task)
3023 task_index += 1
3024 break
3025 else:
3026 for vdu_index, vdu in enumerate(db_vnfr["vdur"]):
3027 extra_dict["params"] = {
3028 "vim_vm_id": vdu["vim-id"],
3029 "migrate_host": migrateToHost,
3030 "vdu_vim_info": vdu["vim_info"],
3031 }
3032 step = "Creating migration task for vdu:{}".format(vdu)
3033 task = self.migrate_task(
3034 vdu,
3035 db_vnfr,
3036 vdu_index,
3037 action_id,
3038 nsr_id,
3039 task_index,
3040 extra_dict,
3041 )
3042 db_new_tasks.append(task)
3043 task_index += 1
3044
3045 self.upload_all_tasks(
3046 db_new_tasks=db_new_tasks,
3047 now=now,
3048 )
3049
3050 self.logger.debug(
3051 logging_text + "Exit. Created {} tasks".format(len(db_new_tasks))
3052 )
3053 return (
3054 {"status": "ok", "nsr_id": nsr_id, "action_id": action_id},
3055 action_id,
3056 True,
3057 )
3058 except Exception as e:
3059 if isinstance(e, (DbException, NsException)):
3060 self.logger.error(
3061 logging_text + "Exit Exception while '{}': {}".format(step, e)
3062 )
3063 else:
3064 e = traceback_format_exc()
3065 self.logger.critical(
3066 logging_text + "Exit Exception while '{}': {}".format(step, e),
3067 exc_info=True,
3068 )
3069 raise NsException(e)
3070
3071 def verticalscale_task(
3072 self, vdu, vnf, vdu_index, action_id, nsr_id, task_index, extra_dict
3073 ):
3074 target_vim, vim_info = next(k_v for k_v in vdu["vim_info"].items())
3075 self._assign_vim(target_vim)
3076 target_record = "vnfrs:{}:vdur.{}".format(vnf["_id"], vdu_index)
3077 target_record_id = "vnfrs:{}:vdur.{}".format(vnf["_id"], vdu["id"])
3078 deployment_info = {
3079 "action_id": action_id,
3080 "nsr_id": nsr_id,
3081 "task_index": task_index,
3082 }
3083
3084 task = Ns._create_task(
3085 deployment_info=deployment_info,
3086 target_id=target_vim,
3087 item="verticalscale",
3088 action="EXEC",
3089 target_record=target_record,
3090 target_record_id=target_record_id,
3091 extra_dict=extra_dict,
3092 )
3093 return task
3094
3095 def verticalscale(self, session, indata, version, nsr_id, *args, **kwargs):
3096 task_index = 0
3097 extra_dict = {}
3098 now = time()
3099 action_id = indata.get("action_id", str(uuid4()))
3100 step = ""
3101 logging_text = "Task deploy nsr_id={} action_id={} ".format(nsr_id, action_id)
3102 self.logger.debug(logging_text + "Enter")
3103 try:
3104 VnfFlavorData = indata.get("changeVnfFlavorData")
3105 vnf_instance_id = VnfFlavorData["vnfInstanceId"]
3106 step = "Getting vnfrs from db"
3107 db_vnfr = self.db.get_one("vnfrs", {"_id": vnf_instance_id})
3108 vduid = VnfFlavorData["additionalParams"]["vduid"]
3109 vduCountIndex = VnfFlavorData["additionalParams"]["vduCountIndex"]
3110 virtualMemory = VnfFlavorData["additionalParams"]["virtualMemory"]
3111 numVirtualCpu = VnfFlavorData["additionalParams"]["numVirtualCpu"]
3112 sizeOfStorage = VnfFlavorData["additionalParams"]["sizeOfStorage"]
3113 flavor_dict = {
3114 "name": vduid + "-flv",
3115 "ram": virtualMemory,
3116 "vcpus": numVirtualCpu,
3117 "disk": sizeOfStorage,
3118 }
3119 db_new_tasks = []
3120 step = "Creating Tasks for vertical scaling"
3121 with self.write_lock:
3122 for vdu_index, vdu in enumerate(db_vnfr["vdur"]):
3123 if (
3124 vdu["vdu-id-ref"] == vduid
3125 and vdu["count-index"] == vduCountIndex
3126 ):
3127 extra_dict["params"] = {
3128 "vim_vm_id": vdu["vim-id"],
3129 "flavor_dict": flavor_dict,
3130 }
3131 task = self.verticalscale_task(
3132 vdu,
3133 db_vnfr,
3134 vdu_index,
3135 action_id,
3136 nsr_id,
3137 task_index,
3138 extra_dict,
3139 )
3140 db_new_tasks.append(task)
3141 task_index += 1
3142 break
3143 self.upload_all_tasks(
3144 db_new_tasks=db_new_tasks,
3145 now=now,
3146 )
3147 self.logger.debug(
3148 logging_text + "Exit. Created {} tasks".format(len(db_new_tasks))
3149 )
3150 return (
3151 {"status": "ok", "nsr_id": nsr_id, "action_id": action_id},
3152 action_id,
3153 True,
3154 )
3155 except Exception as e:
3156 if isinstance(e, (DbException, NsException)):
3157 self.logger.error(
3158 logging_text + "Exit Exception while '{}': {}".format(step, e)
3159 )
3160 else:
3161 e = traceback_format_exc()
3162 self.logger.critical(
3163 logging_text + "Exit Exception while '{}': {}".format(step, e),
3164 exc_info=True,
3165 )
3166 raise NsException(e)