Bug 96 Removed stale nsd_id reference causing exception in NSM
[osm/SO.git] / rwlaunchpad / plugins / rwnsm / rift / tasklets / rwnsmtasklet / rwnsmtasklet.py
1 #
2 # Copyright 2016 RIFT.IO Inc
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
18 import asyncio
19 import ncclient
20 import ncclient.asyncio_manager
21 import os
22 import shutil
23 import sys
24 import tempfile
25 import time
26 import uuid
27 import yaml
28 import requests
29 import json
30
31
32 from collections import deque
33 from collections import defaultdict
34 from enum import Enum
35
36 import gi
37 gi.require_version('RwYang', '1.0')
38 gi.require_version('RwNsdYang', '1.0')
39 gi.require_version('RwDts', '1.0')
40 gi.require_version('RwNsmYang', '1.0')
41 gi.require_version('RwNsrYang', '1.0')
42 gi.require_version('RwTypes', '1.0')
43 gi.require_version('RwVlrYang', '1.0')
44 gi.require_version('RwVnfrYang', '1.0')
45 from gi.repository import (
46 RwYang,
47 RwNsrYang,
48 NsrYang,
49 NsdYang,
50 RwVlrYang,
51 VnfrYang,
52 RwVnfrYang,
53 RwNsmYang,
54 RwsdnYang,
55 RwDts as rwdts,
56 RwTypes,
57 ProtobufC,
58 )
59
60 import rift.tasklets
61 import rift.mano.ncclient
62 import rift.mano.config_data.config
63 import rift.mano.dts as mano_dts
64
65 from . import rwnsm_conman as conman
66 from . import cloud
67 from . import publisher
68 from . import xpath
69 from . import config_value_pool
70 from . import rwvnffgmgr
71 from . import scale_group
72
73
74 class NetworkServiceRecordState(Enum):
75 """ Network Service Record State """
76 INIT = 101
77 VL_INIT_PHASE = 102
78 VNF_INIT_PHASE = 103
79 VNFFG_INIT_PHASE = 104
80 RUNNING = 106
81 SCALING_OUT = 107
82 SCALING_IN = 108
83 TERMINATE = 109
84 TERMINATE_RCVD = 110
85 VL_TERMINATE_PHASE = 111
86 VNF_TERMINATE_PHASE = 112
87 VNFFG_TERMINATE_PHASE = 113
88 TERMINATED = 114
89 FAILED = 115
90 VL_INSTANTIATE = 116
91 VL_TERMINATE = 117
92
93
94 class NetworkServiceRecordError(Exception):
95 """ Network Service Record Error """
96 pass
97
98
99 class NetworkServiceDescriptorError(Exception):
100 """ Network Service Descriptor Error """
101 pass
102
103
104 class VirtualNetworkFunctionRecordError(Exception):
105 """ Virtual Network Function Record Error """
106 pass
107
108
109 class NetworkServiceDescriptorNotFound(Exception):
110 """ Cannot find Network Service Descriptor"""
111 pass
112
113
114 class NetworkServiceDescriptorRefCountExists(Exception):
115 """ Network Service Descriptor reference count exists """
116 pass
117
118
119 class NetworkServiceDescriptorUnrefError(Exception):
120 """ Failed to unref a network service descriptor """
121 pass
122
123
124 class NsrInstantiationFailed(Exception):
125 """ Failed to instantiate network service """
126 pass
127
128
129 class VnfInstantiationFailed(Exception):
130 """ Failed to instantiate virtual network function"""
131 pass
132
133
134 class VnffgInstantiationFailed(Exception):
135 """ Failed to instantiate virtual network function"""
136 pass
137
138
139 class VnfDescriptorError(Exception):
140 """Failed to instantiate virtual network function"""
141 pass
142
143
144 class ScalingOperationError(Exception):
145 pass
146
147
148 class ScaleGroupMissingError(Exception):
149 pass
150
151
152 class PlacementGroupError(Exception):
153 pass
154
155
156 class NsrNsdUpdateError(Exception):
157 pass
158
159
160 class NsrVlUpdateError(NsrNsdUpdateError):
161 pass
162
163
164 class VlRecordState(Enum):
165 """ VL Record State """
166 INIT = 101
167 INSTANTIATION_PENDING = 102
168 ACTIVE = 103
169 TERMINATE_PENDING = 104
170 TERMINATED = 105
171 FAILED = 106
172
173
174 class VnffgRecordState(Enum):
175 """ VNFFG Record State """
176 INIT = 101
177 INSTANTIATION_PENDING = 102
178 ACTIVE = 103
179 TERMINATE_PENDING = 104
180 TERMINATED = 105
181 FAILED = 106
182
183
184 class VnffgRecord(object):
185 """ Vnffg Records class"""
186 SFF_DP_PORT = 4790
187 SFF_MGMT_PORT = 5000
188 def __init__(self, dts, log, loop, vnffgmgr, nsr, nsr_name, vnffgd_msg, sdn_account_name):
189
190 self._dts = dts
191 self._log = log
192 self._loop = loop
193 self._vnffgmgr = vnffgmgr
194 self._nsr = nsr
195 self._nsr_name = nsr_name
196 self._vnffgd_msg = vnffgd_msg
197 if sdn_account_name is None:
198 self._sdn_account_name = ''
199 else:
200 self._sdn_account_name = sdn_account_name
201
202 self._vnffgr_id = str(uuid.uuid4())
203 self._vnffgr_rsp_id = list()
204 self._vnffgr_state = VnffgRecordState.INIT
205
206 @property
207 def id(self):
208 """ VNFFGR id """
209 return self._vnffgr_id
210
211 @property
212 def state(self):
213 """ state of this VNF """
214 return self._vnffgr_state
215
216 def fetch_vnffgr(self):
217 """
218 Get VNFFGR message to be published
219 """
220
221 if self._vnffgr_state == VnffgRecordState.INIT:
222 vnffgr_dict = {"id": self._vnffgr_id,
223 "vnffgd_id_ref": self._vnffgd_msg.id,
224 "vnffgd_name_ref": self._vnffgd_msg.name,
225 "sdn_account": self._sdn_account_name,
226 "operational_status": 'init',
227 }
228 vnffgr = NsrYang.YangData_Nsr_NsInstanceOpdata_Nsr_Vnffgr.from_dict(vnffgr_dict)
229 elif self._vnffgr_state == VnffgRecordState.TERMINATED:
230 vnffgr_dict = {"id": self._vnffgr_id,
231 "vnffgd_id_ref": self._vnffgd_msg.id,
232 "vnffgd_name_ref": self._vnffgd_msg.name,
233 "sdn_account": self._sdn_account_name,
234 "operational_status": 'terminated',
235 }
236 vnffgr = NsrYang.YangData_Nsr_NsInstanceOpdata_Nsr_Vnffgr.from_dict(vnffgr_dict)
237 else:
238 try:
239 vnffgr = self._vnffgmgr.fetch_vnffgr(self._vnffgr_id)
240 except Exception:
241 self._log.exception("Fetching VNFFGR for VNFFG with id %s failed", self._vnffgr_id)
242 self._vnffgr_state = VnffgRecordState.FAILED
243 vnffgr_dict = {"id": self._vnffgr_id,
244 "vnffgd_id_ref": self._vnffgd_msg.id,
245 "vnffgd_name_ref": self._vnffgd_msg.name,
246 "sdn_account": self._sdn_account_name,
247 "operational_status": 'failed',
248 }
249 vnffgr = NsrYang.YangData_Nsr_NsInstanceOpdata_Nsr_Vnffgr.from_dict(vnffgr_dict)
250
251 return vnffgr
252
253 @asyncio.coroutine
254 def vnffgr_create_msg(self):
255 """ Virtual Link Record message for Creating VLR in VNS """
256 vnffgr_dict = {"id": self._vnffgr_id,
257 "vnffgd_id_ref": self._vnffgd_msg.id,
258 "vnffgd_name_ref": self._vnffgd_msg.name,
259 "sdn_account": self._sdn_account_name,
260 }
261 vnffgr = NsrYang.YangData_Nsr_NsInstanceOpdata_Nsr_Vnffgr.from_dict(vnffgr_dict)
262 for rsp in self._vnffgd_msg.rsp:
263 vnffgr_rsp = vnffgr.rsp.add()
264 vnffgr_rsp.id = str(uuid.uuid4())
265 vnffgr_rsp.name = self._nsr.name + '.' + rsp.name
266 self._vnffgr_rsp_id.append(vnffgr_rsp.id)
267 vnffgr_rsp.vnffgd_rsp_id_ref = rsp.id
268 vnffgr_rsp.vnffgd_rsp_name_ref = rsp.name
269 for rsp_cp_ref in rsp.vnfd_connection_point_ref:
270 vnfd = [vnfr.vnfd for vnfr in self._nsr.vnfrs.values() if vnfr.vnfd.id == rsp_cp_ref.vnfd_id_ref]
271 self._log.debug("VNFD message during VNFFG instantiation is %s",vnfd)
272 if len(vnfd) > 0 and vnfd[0].has_field('service_function_type'):
273 self._log.debug("Service Function Type for VNFD ID %s is %s",rsp_cp_ref.vnfd_id_ref, vnfd[0].service_function_type)
274 else:
275 self._log.error("Service Function Type not available for VNFD ID %s; Skipping in chain",rsp_cp_ref.vnfd_id_ref)
276 continue
277
278 vnfr_cp_ref = vnffgr_rsp.vnfr_connection_point_ref.add()
279 vnfr_cp_ref.member_vnf_index_ref = rsp_cp_ref.member_vnf_index_ref
280 vnfr_cp_ref.hop_number = rsp_cp_ref.order
281 vnfr_cp_ref.vnfd_id_ref =rsp_cp_ref.vnfd_id_ref
282 vnfr_cp_ref.service_function_type = vnfd[0].service_function_type
283 for nsr_vnfr in self._nsr.vnfrs.values():
284 if (nsr_vnfr.vnfd.id == vnfr_cp_ref.vnfd_id_ref and
285 nsr_vnfr.member_vnf_index == vnfr_cp_ref.member_vnf_index_ref):
286 vnfr_cp_ref.vnfr_id_ref = nsr_vnfr.id
287 vnfr_cp_ref.vnfr_name_ref = nsr_vnfr.name
288 vnfr_cp_ref.vnfr_connection_point_ref = rsp_cp_ref.vnfd_connection_point_ref
289
290 vnfr = yield from self._nsr.fetch_vnfr(nsr_vnfr.xpath)
291 self._log.debug(" Received VNFR is %s", vnfr)
292 while vnfr.operational_status != 'running':
293 self._log.info("Received vnf op status is %s; retrying",vnfr.operational_status)
294 if vnfr.operational_status == 'failed':
295 self._log.error("Fetching VNFR for %s failed", vnfr.id)
296 raise NsrInstantiationFailed("Failed NS %s instantiation due to VNFR %s failure" % (self.id, vnfr.id))
297 yield from asyncio.sleep(2, loop=self._loop)
298 vnfr = yield from self._nsr.fetch_vnfr(nsr_vnfr.xpath)
299 self._log.debug("Received VNFR is %s", vnfr)
300
301 vnfr_cp_ref.connection_point_params.mgmt_address = vnfr.mgmt_interface.ip_address
302 for cp in vnfr.connection_point:
303 if cp.name == vnfr_cp_ref.vnfr_connection_point_ref:
304 vnfr_cp_ref.connection_point_params.port_id = cp.connection_point_id
305 vnfr_cp_ref.connection_point_params.name = self._nsr.name + '.' + cp.name
306 for vdu in vnfr.vdur:
307 for ext_intf in vdu.external_interface:
308 if ext_intf.name == vnfr_cp_ref.vnfr_connection_point_ref:
309 vnfr_cp_ref.connection_point_params.vm_id = vdu.vim_id
310 self._log.debug("VIM ID for CP %s in VNFR %s is %s",cp.name,nsr_vnfr.id,
311 vnfr_cp_ref.connection_point_params.vm_id)
312 break
313
314 vnfr_cp_ref.connection_point_params.address = cp.ip_address
315 vnfr_cp_ref.connection_point_params.port = VnffgRecord.SFF_DP_PORT
316
317 for vnffgd_classifier in self._vnffgd_msg.classifier:
318 _rsp = [rsp for rsp in vnffgr.rsp if rsp.vnffgd_rsp_id_ref == vnffgd_classifier.rsp_id_ref]
319 if len(_rsp) > 0:
320 rsp_id_ref = _rsp[0].id
321 rsp_name = _rsp[0].name
322 else:
323 self._log.error("RSP with ID %s not found during classifier creation for classifier id %s",vnffgd_classifier.rsp_id_ref,vnffgd_classifier.id)
324 continue
325 vnffgr_classifier = vnffgr.classifier.add()
326 vnffgr_classifier.id = vnffgd_classifier.id
327 vnffgr_classifier.name = self._nsr.name + '.' + vnffgd_classifier.name
328 _rsp[0].classifier_name = vnffgr_classifier.name
329 vnffgr_classifier.rsp_id_ref = rsp_id_ref
330 vnffgr_classifier.rsp_name = rsp_name
331 for nsr_vnfr in self._nsr.vnfrs.values():
332 if (nsr_vnfr.vnfd.id == vnffgd_classifier.vnfd_id_ref and
333 nsr_vnfr.member_vnf_index == vnffgd_classifier.member_vnf_index_ref):
334 vnffgr_classifier.vnfr_id_ref = nsr_vnfr.id
335 vnffgr_classifier.vnfr_name_ref = nsr_vnfr.name
336 vnffgr_classifier.vnfr_connection_point_ref = vnffgd_classifier.vnfd_connection_point_ref
337
338 if nsr_vnfr.vnfd.service_function_chain == 'CLASSIFIER':
339 vnffgr_classifier.sff_name = nsr_vnfr.name
340
341 vnfr = yield from self._nsr.fetch_vnfr(nsr_vnfr.xpath)
342 self._log.debug(" Received VNFR is %s", vnfr)
343 while vnfr.operational_status != 'running':
344 self._log.info("Received vnf op status is %s; retrying",vnfr.operational_status)
345 if vnfr.operational_status == 'failed':
346 self._log.error("Fetching VNFR for %s failed", vnfr.id)
347 raise NsrInstantiationFailed("Failed NS %s instantiation due to VNFR %s failure" % (self.id, vnfr.id))
348 yield from asyncio.sleep(2, loop=self._loop)
349 vnfr = yield from self._nsr.fetch_vnfr(nsr_vnfr.xpath)
350 self._log.debug("Received VNFR is %s", vnfr)
351
352 for cp in vnfr.connection_point:
353 if cp.name == vnffgr_classifier.vnfr_connection_point_ref:
354 vnffgr_classifier.port_id = cp.connection_point_id
355 vnffgr_classifier.ip_address = cp.ip_address
356 for vdu in vnfr.vdur:
357 for ext_intf in vdu.external_interface:
358 if ext_intf.name == vnffgr_classifier.vnfr_connection_point_ref:
359 vnffgr_classifier.vm_id = vdu.vim_id
360 self._log.debug("VIM ID for CP %s in VNFR %s is %s",cp.name,nsr_vnfr.id,
361 vnfr_cp_ref.connection_point_params.vm_id)
362 break
363
364 self._log.info("VNFFGR msg to be sent is %s", vnffgr)
365 return vnffgr
366
367 @asyncio.coroutine
368 def vnffgr_nsr_sff_list(self):
369 """ SFF List for VNFR """
370 sff_list = {}
371 sf_list = [nsr_vnfr.name for nsr_vnfr in self._nsr.vnfrs.values() if nsr_vnfr.vnfd.service_function_chain == 'SF']
372
373 for nsr_vnfr in self._nsr.vnfrs.values():
374 if (nsr_vnfr.vnfd.service_function_chain == 'CLASSIFIER' or nsr_vnfr.vnfd.service_function_chain == 'SFF'):
375 vnfr = yield from self._nsr.fetch_vnfr(nsr_vnfr.xpath)
376 self._log.debug(" Received VNFR is %s", vnfr)
377 while vnfr.operational_status != 'running':
378 self._log.info("Received vnf op status is %s; retrying",vnfr.operational_status)
379 if vnfr.operational_status == 'failed':
380 self._log.error("Fetching VNFR for %s failed", vnfr.id)
381 raise NsrInstantiationFailed("Failed NS %s instantiation due to VNFR %s failure" % (self.id, vnfr.id))
382 yield from asyncio.sleep(2, loop=self._loop)
383 vnfr = yield from self._nsr.fetch_vnfr(nsr_vnfr.xpath)
384 self._log.debug("Received VNFR is %s", vnfr)
385
386 sff = RwsdnYang.VNFFGSff()
387 sff_list[nsr_vnfr.vnfd.id] = sff
388 sff.name = nsr_vnfr.name
389 sff.function_type = nsr_vnfr.vnfd.service_function_chain
390
391 sff.mgmt_address = vnfr.mgmt_interface.ip_address
392 sff.mgmt_port = VnffgRecord.SFF_MGMT_PORT
393 for cp in vnfr.connection_point:
394 sff_dp = sff.dp_endpoints.add()
395 sff_dp.name = self._nsr.name + '.' + cp.name
396 sff_dp.address = cp.ip_address
397 sff_dp.port = VnffgRecord.SFF_DP_PORT
398 if nsr_vnfr.vnfd.service_function_chain == 'SFF':
399 for sf_name in sf_list:
400 _sf = sff.vnfr_list.add()
401 _sf.vnfr_name = sf_name
402
403 return sff_list
404
405 @asyncio.coroutine
406 def instantiate(self):
407 """ Instantiate this VNFFG """
408
409 self._log.info("Instaniating VNFFGR with vnffgd %s",
410 self._vnffgd_msg)
411
412
413 vnffgr_request = yield from self.vnffgr_create_msg()
414 vnffg_sff_list = yield from self.vnffgr_nsr_sff_list()
415
416 try:
417 vnffgr = self._vnffgmgr.create_vnffgr(vnffgr_request,self._vnffgd_msg.classifier,vnffg_sff_list)
418 except Exception as e:
419 self._log.exception("VNFFG instantiation failed: %s", str(e))
420 self._vnffgr_state = VnffgRecordState.FAILED
421 raise NsrInstantiationFailed("Failed NS %s instantiation due to VNFFGR %s failure" % (self.id, vnffgr_request.id))
422
423 self._vnffgr_state = VnffgRecordState.INSTANTIATION_PENDING
424
425 self._log.info("Instantiated VNFFGR :%s", vnffgr)
426 self._vnffgr_state = VnffgRecordState.ACTIVE
427
428 self._log.info("Invoking update_state to update NSR state for NSR ID: %s", self._nsr.id)
429 yield from self._nsr.update_state()
430
431 def vnffgr_in_vnffgrm(self):
432 """ Is there a VNFR record in VNFM """
433 if (self._vnffgr_state == VnffgRecordState.ACTIVE or
434 self._vnffgr_state == VnffgRecordState.INSTANTIATION_PENDING or
435 self._vnffgr_state == VnffgRecordState.FAILED):
436 return True
437
438 return False
439
440 @asyncio.coroutine
441 def terminate(self):
442 """ Terminate this VNFFGR """
443 if not self.vnffgr_in_vnffgrm():
444 self._log.error("Ignoring terminate request for id %s in state %s",
445 self.id, self._vnffgr_state)
446 return
447
448 self._log.info("Terminating VNFFGR id:%s", self.id)
449 self._vnffgr_state = VnffgRecordState.TERMINATE_PENDING
450
451 self._vnffgmgr.terminate_vnffgr(self._vnffgr_id)
452
453 self._vnffgr_state = VnffgRecordState.TERMINATED
454 self._log.debug("Terminated VNFFGR id:%s", self.id)
455
456
457 class VirtualLinkRecord(object):
458 """ Virtual Link Records class"""
459 @staticmethod
460 @asyncio.coroutine
461 def create_record(dts, log, loop, nsr_name, vld_msg, cloud_account_name, om_datacenter, ip_profile, nsr_id, restart_mode=False):
462 """Creates a new VLR object based on the given data.
463
464 If restart mode is enabled, then we look for existing records in the
465 DTS and create a VLR records using the exiting data(ID)
466
467 Returns:
468 VirtualLinkRecord
469 """
470 vlr_obj = VirtualLinkRecord(
471 dts,
472 log,
473 loop,
474 nsr_name,
475 vld_msg,
476 cloud_account_name,
477 om_datacenter,
478 ip_profile,
479 nsr_id,
480 )
481
482 if restart_mode:
483 res_iter = yield from dts.query_read(
484 "D,/vlr:vlr-catalog/vlr:vlr",
485 rwdts.XactFlag.MERGE)
486
487 for fut in res_iter:
488 response = yield from fut
489 vlr = response.result
490
491 # Check if the record is already present, if so use the ID of
492 # the existing record. Since the name of the record is uniquely
493 # formed we can use it as a search key!
494 if vlr.name == vlr_obj.name:
495 vlr_obj.reset_id(vlr.id)
496 break
497
498 return vlr_obj
499
500 def __init__(self, dts, log, loop, nsr_name, vld_msg, cloud_account_name, om_datacenter, ip_profile, nsr_id):
501 self._dts = dts
502 self._log = log
503 self._loop = loop
504 self._nsr_name = nsr_name
505 self._vld_msg = vld_msg
506 self._cloud_account_name = cloud_account_name
507 self._om_datacenter_name = om_datacenter
508 self._assigned_subnet = None
509 self._nsr_id = nsr_id
510 self._ip_profile = ip_profile
511 self._vlr_id = str(uuid.uuid4())
512 self._state = VlRecordState.INIT
513 self._prev_state = None
514
515 @property
516 def xpath(self):
517 """ path for this object """
518 return "D,/vlr:vlr-catalog/vlr:vlr[vlr:id = '{}']".format(self._vlr_id)
519
520 @property
521 def id(self):
522 """ VLR id """
523 return self._vlr_id
524
525 @property
526 def nsr_name(self):
527 """ Get NSR name for this VL """
528 return self.nsr_name
529
530 @property
531 def vld_msg(self):
532 """ Virtual Link Desciptor """
533 return self._vld_msg
534
535 @property
536 def assigned_subnet(self):
537 """ Subnet assigned to this VL"""
538 return self._assigned_subnet
539
540 @property
541 def name(self):
542 """
543 Get the name for this VLR.
544 VLR name is "nsr name:VLD name"
545 """
546 if self.vld_msg.vim_network_name:
547 return self.vld_msg.vim_network_name
548 elif self.vld_msg.name == "multisite":
549 # This is a temporary hack to identify manually provisioned inter-site network
550 return self.vld_msg.name
551 else:
552 return self._nsr_name + "." + self.vld_msg.name
553
554 @property
555 def cloud_account_name(self):
556 """ Cloud account that this VLR should be created in """
557 return self._cloud_account_name
558
559 @property
560 def om_datacenter_name(self):
561 """ Datacenter that this VLR should be created in """
562 return self._om_datacenter_name
563
564 @staticmethod
565 def vlr_xpath(vlr):
566 """ Get the VLR path from VLR """
567 return (VirtualLinkRecord.XPATH + "[vlr:id = '{}']").format(vlr.id)
568
569 @property
570 def state(self):
571 """ VLR state """
572 return self._state
573
574 @state.setter
575 def state(self, value):
576 """ VLR set state """
577 self._state = value
578
579 @property
580 def prev_state(self):
581 """ VLR previous state """
582 return self._prev_state
583
584 @prev_state.setter
585 def prev_state(self, value):
586 """ VLR set previous state """
587 self._prev_state = value
588
589 @property
590 def vlr_msg(self):
591 """ Virtual Link Record message for Creating VLR in VNS """
592 vld_fields = ["short_name",
593 "vendor",
594 "description",
595 "version",
596 "type_yang",
597 "vim_network_name",
598 "provider_network"]
599
600 vld_copy_dict = {k: v for k, v in self.vld_msg.as_dict().items()
601 if k in vld_fields}
602
603 vlr_dict = {"id": self._vlr_id,
604 "nsr_id_ref": self._nsr_id,
605 "vld_ref": self.vld_msg.id,
606 "name": self.name,
607 "cloud_account": self.cloud_account_name,
608 "om_datacenter": self.om_datacenter_name,
609 }
610
611 if self._ip_profile and self._ip_profile.has_field('ip_profile_params'):
612 vlr_dict['ip_profile_params' ] = self._ip_profile.ip_profile_params.as_dict()
613
614 vlr_dict.update(vld_copy_dict)
615 vlr = RwVlrYang.YangData_Vlr_VlrCatalog_Vlr.from_dict(vlr_dict)
616 return vlr
617
618 def reset_id(self, vlr_id):
619 self._vlr_id = vlr_id
620
621 def create_nsr_vlr_msg(self, vnfrs):
622 """ The VLR message"""
623 nsr_vlr = RwNsrYang.YangData_Nsr_NsInstanceOpdata_Nsr_Vlr()
624 nsr_vlr.vlr_ref = self._vlr_id
625 nsr_vlr.assigned_subnet = self.assigned_subnet
626 nsr_vlr.cloud_account = self.cloud_account_name
627 nsr_vlr.om_datacenter = self.om_datacenter_name
628
629 for conn in self.vld_msg.vnfd_connection_point_ref:
630 for vnfr in vnfrs:
631 if (vnfr.vnfd.id == conn.vnfd_id_ref and
632 vnfr.member_vnf_index == conn.member_vnf_index_ref and
633 self.cloud_account_name == vnfr.cloud_account_name and
634 self.om_datacenter_name == vnfr.om_datacenter_name):
635 cp_entry = nsr_vlr.vnfr_connection_point_ref.add()
636 cp_entry.vnfr_id = vnfr.id
637 cp_entry.connection_point = conn.vnfd_connection_point_ref
638
639 return nsr_vlr
640
641 @asyncio.coroutine
642 def instantiate(self):
643 """ Instantiate this VL """
644
645 self._log.debug("Instaniating VLR key %s, vld %s",
646 self.xpath, self._vld_msg)
647 vlr = None
648 self._state = VlRecordState.INSTANTIATION_PENDING
649 self._log.debug("Executing VL create path:%s msg:%s",
650 self.xpath, self.vlr_msg)
651
652 with self._dts.transaction(flags=0) as xact:
653 block = xact.block_create()
654 block.add_query_create(self.xpath, self.vlr_msg)
655 self._log.debug("Executing VL create path:%s msg:%s",
656 self.xpath, self.vlr_msg)
657 res_iter = yield from block.execute(now=True)
658 for ent in res_iter:
659 res = yield from ent
660 vlr = res.result
661
662 if vlr is None:
663 self._state = VlRecordState.FAILED
664 raise NsrInstantiationFailed("Failed NS %s instantiation due to empty response" % self.id)
665
666 if vlr.operational_status == 'failed':
667 self._log.debug("NS Id:%s VL creation failed for vlr id %s", self.id, vlr.id)
668 self._state = VlRecordState.FAILED
669 raise NsrInstantiationFailed("Failed VL %s instantiation (%s)" % (vlr.id, vlr.operational_status_details))
670
671 self._log.info("Instantiated VL with xpath %s and vlr:%s",
672 self.xpath, vlr)
673 self._state = VlRecordState.ACTIVE
674 self._assigned_subnet = vlr.assigned_subnet
675
676 def vlr_in_vns(self):
677 """ Is there a VLR record in VNS """
678 if (self._state == VlRecordState.ACTIVE or
679 self._state == VlRecordState.INSTANTIATION_PENDING or
680 self._state == VlRecordState.TERMINATE_PENDING or
681 self._state == VlRecordState.FAILED):
682 return True
683
684 return False
685
686 @asyncio.coroutine
687 def terminate(self):
688 """ Terminate this VL """
689 if not self.vlr_in_vns():
690 self._log.debug("Ignoring terminate request for id %s in state %s",
691 self.id, self._state)
692 return
693
694 self._log.debug("Terminating VL id:%s", self.id)
695 self._state = VlRecordState.TERMINATE_PENDING
696
697 with self._dts.transaction(flags=0) as xact:
698 block = xact.block_create()
699 block.add_query_delete(self.xpath)
700 yield from block.execute(flags=0, now=True)
701
702 self._state = VlRecordState.TERMINATED
703 self._log.debug("Terminated VL id:%s", self.id)
704
705
706 class VnfRecordState(Enum):
707 """ Vnf Record State """
708 INIT = 101
709 INSTANTIATION_PENDING = 102
710 ACTIVE = 103
711 TERMINATE_PENDING = 104
712 TERMINATED = 105
713 FAILED = 106
714
715
716 class VirtualNetworkFunctionRecord(object):
717 """ Virtual Network Function Record class"""
718 XPATH = "D,/vnfr:vnfr-catalog/vnfr:vnfr"
719
720 @staticmethod
721 @asyncio.coroutine
722 def create_record(dts, log, loop, vnfd, const_vnfd_msg, nsd_id, nsr_name,
723 cloud_account_name, om_datacenter_name, nsr_id, group_name, group_instance_id,
724 placement_groups, restart_mode=False):
725 """Creates a new VNFR object based on the given data.
726
727 If restart mode is enabled, then we look for existing records in the
728 DTS and create a VNFR records using the exiting data(ID)
729
730 Returns:
731 VirtualNetworkFunctionRecord
732 """
733 vnfr_obj = VirtualNetworkFunctionRecord(
734 dts,
735 log,
736 loop,
737 vnfd,
738 const_vnfd_msg,
739 nsd_id,
740 nsr_name,
741 cloud_account_name,
742 om_datacenter_name,
743 nsr_id,
744 group_name,
745 group_instance_id,
746 placement_groups,
747 restart_mode=restart_mode)
748
749 if restart_mode:
750 res_iter = yield from dts.query_read(
751 "D,/vnfr:vnfr-catalog/vnfr:vnfr",
752 rwdts.XactFlag.MERGE)
753
754 for fut in res_iter:
755 response = yield from fut
756 vnfr = response.result
757
758 if vnfr.name == vnfr_obj.name:
759 vnfr_obj.reset_id(vnfr.id)
760 break
761
762 return vnfr_obj
763
764 def __init__(self,
765 dts,
766 log,
767 loop,
768 vnfd,
769 const_vnfd_msg,
770 nsd_id,
771 nsr_name,
772 cloud_account_name,
773 om_datacenter_name,
774 nsr_id,
775 group_name=None,
776 group_instance_id=None,
777 placement_groups = [],
778 restart_mode = False):
779 self._dts = dts
780 self._log = log
781 self._loop = loop
782 self._vnfd = vnfd
783 self._const_vnfd_msg = const_vnfd_msg
784 self._nsd_id = nsd_id
785 self._nsr_name = nsr_name
786 self._nsr_id = nsr_id
787 self._cloud_account_name = cloud_account_name
788 self._om_datacenter_name = om_datacenter_name
789 self._group_name = group_name
790 self._group_instance_id = group_instance_id
791 self._placement_groups = placement_groups
792 self._config_status = NsrYang.ConfigStates.INIT
793
794 self._prev_state = VnfRecordState.INIT
795 self._state = VnfRecordState.INIT
796 self._state_failed_reason = None
797
798 self.config_store = rift.mano.config_data.config.ConfigStore(self._log)
799 self.configure()
800
801 self._vnfr_id = str(uuid.uuid4())
802 self._name = None
803 self._vnfr_msg = self.create_vnfr_msg()
804 self._log.debug("Set VNFR {} config type to {}".
805 format(self.name, self.config_type))
806 self.restart_mode = restart_mode
807
808
809 if group_name is None and group_instance_id is not None:
810 raise ValueError("Group instance id must not be provided with an empty group name")
811
812 @property
813 def id(self):
814 """ VNFR id """
815 return self._vnfr_id
816
817 @property
818 def xpath(self):
819 """ VNFR xpath """
820 return "D,/vnfr:vnfr-catalog/vnfr:vnfr[vnfr:id = '{}']".format(self.id)
821
822 @property
823 def vnfr_msg(self):
824 """ VNFR message """
825 return self._vnfr_msg
826
827 @property
828 def const_vnfr_msg(self):
829 """ VNFR message """
830 return RwNsrYang.YangData_Nsr_NsInstanceOpdata_Nsr_ConstituentVnfrRef(vnfr_id=self.id,cloud_account=self.cloud_account_name,om_datacenter=self._om_datacenter_name)
831
832 @property
833 def vnfd(self):
834 """ vnfd """
835 return self._vnfd
836
837 @property
838 def cloud_account_name(self):
839 """ Cloud account that this VNF should be created in """
840 return self._cloud_account_name
841
842 @property
843 def om_datacenter_name(self):
844 """ Datacenter that this VNF should be created in """
845 return self._om_datacenter_name
846
847
848 @property
849 def active(self):
850 """ Is this VNF actve """
851 return True if self._state == VnfRecordState.ACTIVE else False
852
853 @property
854 def state(self):
855 """ state of this VNF """
856 return self._state
857
858 @property
859 def state_failed_reason(self):
860 """ Error message in case this VNF is in failed state """
861 return self._state_failed_reason
862
863 @property
864 def member_vnf_index(self):
865 """ Member VNF index """
866 return self._const_vnfd_msg.member_vnf_index
867
868 @property
869 def nsr_name(self):
870 """ NSR name"""
871 return self._nsr_name
872
873 @property
874 def name(self):
875 """ Name of this VNFR """
876 if self._name is not None:
877 return self._name
878
879 name_tags = [self._nsr_name]
880
881 if self._group_name is not None:
882 name_tags.append(self._group_name)
883
884 if self._group_instance_id is not None:
885 name_tags.append(str(self._group_instance_id))
886
887 name_tags.extend([self.vnfd.name, str(self.member_vnf_index)])
888
889 self._name = "__".join(name_tags)
890
891 return self._name
892
893 @staticmethod
894 def vnfr_xpath(vnfr):
895 """ Get the VNFR path from VNFR """
896 return (VirtualNetworkFunctionRecord.XPATH + "[vnfr:id = '{}']").format(vnfr.id)
897
898 @property
899 def config_type(self):
900 cfg_types = ['netconf', 'juju', 'script']
901 for method in cfg_types:
902 if self._vnfd.vnf_configuration.has_field(method):
903 return method
904 return 'none'
905
906 @property
907 def config_status(self):
908 """Return the config status as YANG ENUM string"""
909 self._log.debug("Map VNFR {} config status {} ({})".
910 format(self.name, self._config_status, self.config_type))
911 if self.config_type == 'none':
912 return 'config_not_needed'
913 elif self._config_status == NsrYang.ConfigStates.CONFIGURED:
914 return 'configured'
915 elif self._config_status == NsrYang.ConfigStates.FAILED:
916 return 'failed'
917
918 return 'configuring'
919
920 def set_state(self, state):
921 """ set the state of this object """
922 self._prev_state = self._state
923 self._state = state
924
925 def reset_id(self, vnfr_id):
926 self._vnfr_id = vnfr_id
927 self._vnfr_msg = self.create_vnfr_msg()
928
929 def configure(self):
930 self.config_store.merge_vnfd_config(
931 self._nsd_id,
932 self._vnfd,
933 self.member_vnf_index,
934 )
935
936 def create_vnfr_msg(self):
937 """ VNFR message for this VNFR """
938 vnfd_fields = [
939 "short_name",
940 "vendor",
941 "description",
942 "version",
943 "type_yang",
944 ]
945 vnfd_copy_dict = {k: v for k, v in self._vnfd.as_dict().items() if k in vnfd_fields}
946 vnfr_dict = {
947 "id": self.id,
948 "nsr_id_ref": self._nsr_id,
949 "vnfd_ref": self.vnfd.id,
950 "name": self.name,
951 "cloud_account": self._cloud_account_name,
952 "om_datacenter": self._om_datacenter_name,
953 "config_status": self.config_status
954 }
955 vnfr_dict.update(vnfd_copy_dict)
956
957 vnfr = RwVnfrYang.YangData_Vnfr_VnfrCatalog_Vnfr.from_dict(vnfr_dict)
958 vnfr.member_vnf_index_ref = self.member_vnf_index
959 vnfr.vnf_configuration.from_dict(self._vnfd.vnf_configuration.as_dict())
960
961 if self._vnfd.mgmt_interface.has_field("port"):
962 vnfr.mgmt_interface.port = self._vnfd.mgmt_interface.port
963
964 for group_info in self._placement_groups:
965 group = vnfr.placement_groups_info.add()
966 group.from_dict(group_info.as_dict())
967
968 # UI expects the monitoring param field to exist
969 vnfr.monitoring_param = []
970
971 self._log.debug("Get vnfr_msg for VNFR {} : {}".format(self.name, vnfr))
972 return vnfr
973
974 @asyncio.coroutine
975 def update_vnfm(self):
976 self._log.debug("Send an update to VNFM for VNFR {} with {}".
977 format(self.name, self.vnfr_msg))
978 yield from self._dts.query_update(
979 self.xpath,
980 rwdts.XactFlag.TRACE,
981 self.vnfr_msg
982 )
983
984 def get_config_status(self):
985 """Return the config status as YANG ENUM"""
986 return self._config_status
987
988 @asyncio.coroutine
989 def set_config_status(self, status):
990
991 def status_to_string(status):
992 status_dc = {
993 NsrYang.ConfigStates.INIT : 'init',
994 NsrYang.ConfigStates.CONFIGURING : 'configuring',
995 NsrYang.ConfigStates.CONFIG_NOT_NEEDED : 'config_not_needed',
996 NsrYang.ConfigStates.CONFIGURED : 'configured',
997 NsrYang.ConfigStates.FAILED : 'failed',
998 }
999
1000 return status_dc[status]
1001
1002 self._log.debug("Update VNFR {} from {} ({}) to {}".
1003 format(self.name, self._config_status,
1004 self.config_type, status))
1005 if self._config_status == NsrYang.ConfigStates.CONFIGURED:
1006 self._log.error("Updating already configured VNFR {}".
1007 format(self.name))
1008 return
1009
1010 if self._config_status != status:
1011 try:
1012 self._config_status = status
1013 # I don't think this is used. Original implementor can check.
1014 # Caused Exception, so corrected it by status_to_string
1015 # But not sure whats the use of this variable?
1016 self.vnfr_msg.config_status = status_to_string(status)
1017 except Exception as e:
1018 self._log.error("Exception=%s", str(e))
1019 pass
1020
1021 self._log.debug("Updated VNFR {} status to {}".format(self.name, status))
1022
1023 if self._config_status != NsrYang.ConfigStates.INIT:
1024 try:
1025 # Publish only after VNFM has the VNFR created
1026 yield from self.update_vnfm()
1027 except Exception as e:
1028 self._log.error("Exception updating VNFM with new status {} of VNFR {}: {}".
1029 format(status, self.name, e))
1030 self._log.exception(e)
1031
1032 def is_configured(self):
1033 if self.config_type == 'none':
1034 return True
1035
1036 if self._config_status == NsrYang.ConfigStates.CONFIGURED:
1037 return True
1038
1039 return False
1040
1041 @asyncio.coroutine
1042 def instantiate(self, nsr):
1043 """ Instantiate this VNFR"""
1044
1045 self._log.debug("Instaniating VNFR key %s, vnfd %s",
1046 self.xpath, self._vnfd)
1047
1048 self._log.debug("Create VNF with xpath %s and vnfr %s",
1049 self.xpath, self.vnfr_msg)
1050
1051 self.set_state(VnfRecordState.INSTANTIATION_PENDING)
1052
1053 def find_vlr_for_cp(conn):
1054 """ Find VLR for the given connection point """
1055 for vlr in nsr.vlrs:
1056 for vnfd_cp in vlr.vld_msg.vnfd_connection_point_ref:
1057 if (vnfd_cp.vnfd_id_ref == self._vnfd.id and
1058 vnfd_cp.vnfd_connection_point_ref == conn.name and
1059 vnfd_cp.member_vnf_index_ref == self.member_vnf_index and
1060 vlr.cloud_account_name == self.cloud_account_name):
1061 self._log.debug("Found VLR for cp_name:%s and vnf-index:%d",
1062 conn.name, self.member_vnf_index)
1063 return vlr
1064 return None
1065
1066 # For every connection point in the VNFD fill in the identifier
1067 for conn_p in self._vnfd.connection_point:
1068 cpr = VnfrYang.YangData_Vnfr_VnfrCatalog_Vnfr_ConnectionPoint()
1069 cpr.name = conn_p.name
1070 cpr.type_yang = conn_p.type_yang
1071 vlr_ref = find_vlr_for_cp(conn_p)
1072 if vlr_ref is None:
1073 msg = "Failed to find VLR for cp = %s" % conn_p.name
1074 self._log.debug("%s", msg)
1075 # raise VirtualNetworkFunctionRecordError(msg)
1076 continue
1077
1078 cpr.vlr_ref = vlr_ref.id
1079 self.vnfr_msg.connection_point.append(cpr)
1080 self._log.debug("Connection point [%s] added, vnf id=%s vnfd id=%s",
1081 cpr, self.vnfr_msg.id, self.vnfr_msg.vnfd_ref)
1082
1083 if not self.restart_mode:
1084 yield from self._dts.query_create(self.xpath,
1085 0, # this is sub
1086 self.vnfr_msg)
1087 else:
1088 yield from self._dts.query_update(self.xpath,
1089 0,
1090 self.vnfr_msg)
1091
1092 self._log.info("Created VNF with xpath %s and vnfr %s",
1093 self.xpath, self.vnfr_msg)
1094
1095 self._log.info("Instantiated VNFR with xpath %s and vnfd %s, vnfr %s",
1096 self.xpath, self._vnfd, self.vnfr_msg)
1097
1098 @asyncio.coroutine
1099 def update_state(self, vnfr_msg):
1100 """ Update this VNFR"""
1101 if vnfr_msg.operational_status == "running":
1102 if self.vnfr_msg.operational_status != "running":
1103 yield from self.is_active()
1104 elif vnfr_msg.operational_status == "failed":
1105 yield from self.instantiation_failed(failed_reason=vnfr_msg.operational_status_details)
1106
1107 @asyncio.coroutine
1108 def is_active(self):
1109 """ This VNFR is active """
1110 self._log.debug("VNFR %s is active", self._vnfr_id)
1111 self.set_state(VnfRecordState.ACTIVE)
1112
1113 @asyncio.coroutine
1114 def instantiation_failed(self, failed_reason=None):
1115 """ This VNFR instantiation failed"""
1116 self._log.error("VNFR %s instantiation failed", self._vnfr_id)
1117 self.set_state(VnfRecordState.FAILED)
1118 self._state_failed_reason = failed_reason
1119
1120 def vnfr_in_vnfm(self):
1121 """ Is there a VNFR record in VNFM """
1122 if (self._state == VnfRecordState.ACTIVE or
1123 self._state == VnfRecordState.INSTANTIATION_PENDING or
1124 self._state == VnfRecordState.FAILED):
1125 return True
1126
1127 return False
1128
1129 @asyncio.coroutine
1130 def terminate(self):
1131 """ Terminate this VNF """
1132 if not self.vnfr_in_vnfm():
1133 self._log.debug("Ignoring terminate request for id %s in state %s",
1134 self.id, self._state)
1135 return
1136
1137 self._log.debug("Terminating VNF id:%s", self.id)
1138 self.set_state(VnfRecordState.TERMINATE_PENDING)
1139 with self._dts.transaction(flags=0) as xact:
1140 block = xact.block_create()
1141 block.add_query_delete(self.xpath)
1142 yield from block.execute(flags=0)
1143 self.set_state(VnfRecordState.TERMINATED)
1144 self._log.debug("Terminated VNF id:%s", self.id)
1145
1146
1147 class NetworkServiceStatus(object):
1148 """ A class representing the Network service's status """
1149 MAX_EVENTS_RECORDED = 10
1150 """ Network service Status class"""
1151 def __init__(self, dts, log, loop):
1152 self._dts = dts
1153 self._log = log
1154 self._loop = loop
1155
1156 self._state = NetworkServiceRecordState.INIT
1157 self._events = deque([])
1158
1159 @asyncio.coroutine
1160 def create_notification(self, evt, evt_desc, evt_details):
1161 xp = "N,/rw-nsr:nsm-notification"
1162 notif = RwNsrYang.YangNotif_RwNsr_NsmNotification()
1163 notif.event = evt
1164 notif.description = evt_desc
1165 notif.details = evt_details if evt_details is not None else None
1166
1167 yield from self._dts.query_create(xp, rwdts.XactFlag.ADVISE, notif)
1168 self._log.info("Notification called by creating dts query: %s", notif)
1169
1170 def record_event(self, evt, evt_desc, evt_details):
1171 """ Record an event """
1172 self._log.debug("Recording event - evt %s, evt_descr %s len = %s",
1173 evt, evt_desc, len(self._events))
1174 if len(self._events) >= NetworkServiceStatus.MAX_EVENTS_RECORDED:
1175 self._events.popleft()
1176 self._events.append((int(time.time()), evt, evt_desc,
1177 evt_details if evt_details is not None else None))
1178
1179 self._loop.create_task(self.create_notification(evt,evt_desc,evt_details))
1180
1181 def set_state(self, state):
1182 """ set the state of this status object """
1183 self._state = state
1184
1185 def yang_str(self):
1186 """ Return the state as a yang enum string """
1187 state_to_str_map = {"INIT": "init",
1188 "VL_INIT_PHASE": "vl_init_phase",
1189 "VNF_INIT_PHASE": "vnf_init_phase",
1190 "VNFFG_INIT_PHASE": "vnffg_init_phase",
1191 "SCALING_GROUP_INIT_PHASE": "scaling_group_init_phase",
1192 "RUNNING": "running",
1193 "SCALING_OUT": "scaling_out",
1194 "SCALING_IN": "scaling_in",
1195 "TERMINATE_RCVD": "terminate_rcvd",
1196 "TERMINATE": "terminate",
1197 "VL_TERMINATE_PHASE": "vl_terminate_phase",
1198 "VNF_TERMINATE_PHASE": "vnf_terminate_phase",
1199 "VNFFG_TERMINATE_PHASE": "vnffg_terminate_phase",
1200 "TERMINATED": "terminated",
1201 "FAILED": "failed",
1202 "VL_INSTANTIATE": "vl_instantiate",
1203 "VL_TERMINATE": "vl_terminate",
1204 }
1205 return state_to_str_map[self._state.name]
1206
1207 @property
1208 def state(self):
1209 """ State of this status object """
1210 return self._state
1211
1212 @property
1213 def msg(self):
1214 """ Network Service Record as a message"""
1215 event_list = []
1216 idx = 1
1217 for entry in self._events:
1218 event = RwNsrYang.YangData_Nsr_NsInstanceOpdata_Nsr_OperationalEvents()
1219 event.id = idx
1220 idx += 1
1221 event.timestamp, event.event, event.description, event.details = entry
1222 event_list.append(event)
1223 return event_list
1224
1225
1226 class NetworkServiceRecord(object):
1227 """ Network service record """
1228 XPATH = "D,/nsr:ns-instance-opdata/nsr:nsr"
1229
1230 def __init__(self, dts, log, loop, nsm, nsm_plugin, nsr_cfg_msg, sdn_account_name, key_pairs, restart_mode=False):
1231 self._dts = dts
1232 self._log = log
1233 self._loop = loop
1234 self._nsm = nsm
1235 self._nsr_cfg_msg = nsr_cfg_msg
1236 self._nsm_plugin = nsm_plugin
1237 self._sdn_account_name = sdn_account_name
1238
1239 self._nsd = None
1240 self._nsr_msg = None
1241 self._nsr_regh = None
1242 self._key_pairs = key_pairs
1243 self._vlrs = []
1244 self._vnfrs = {}
1245 self._vnfds = {}
1246 self._vnffgrs = {}
1247 self._param_pools = {}
1248 self._scaling_groups = {}
1249 self._create_time = int(time.time())
1250 self._op_status = NetworkServiceStatus(dts, log, loop)
1251 self._config_status = NsrYang.ConfigStates.CONFIGURING
1252 self._config_status_details = None
1253 self._job_id = 0
1254 self.restart_mode = restart_mode
1255 self.config_store = rift.mano.config_data.config.ConfigStore(self._log)
1256 self._debug_running = False
1257 self._is_active = False
1258 self._vl_phase_completed = False
1259 self._vnf_phase_completed = False
1260
1261
1262 # Initalise the state to init
1263 # The NSR moves through the following transitions
1264 # 1. INIT -> VLS_READY once all the VLs in the NSD are created
1265 # 2. VLS_READY - VNFS_READY when all the VNFs in the NSD are created
1266 # 3. VNFS_READY - READY when the NSR is published
1267
1268 self.set_state(NetworkServiceRecordState.INIT)
1269
1270 self.substitute_input_parameters = InputParameterSubstitution(self._log)
1271
1272 @property
1273 def nsm_plugin(self):
1274 """ NSM Plugin """
1275 return self._nsm_plugin
1276
1277 def set_state(self, state):
1278 """ Set state for this NSR"""
1279 self._log.debug("Setting state to %s", state)
1280 # We are in init phase and is moving to the next state
1281 # The new state could be a FAILED state or VNF_INIIT_PHASE
1282 if self.state == NetworkServiceRecordState.VL_INIT_PHASE:
1283 self._vl_phase_completed = True
1284
1285 if self.state == NetworkServiceRecordState.VNF_INIT_PHASE:
1286 self._vnf_phase_completed = True
1287
1288 self._op_status.set_state(state)
1289
1290 @property
1291 def id(self):
1292 """ Get id for this NSR"""
1293 return self._nsr_cfg_msg.id
1294
1295 @property
1296 def name(self):
1297 """ Name of this network service record """
1298 return self._nsr_cfg_msg.name
1299
1300 @property
1301 def cloud_account_name(self):
1302 return self._nsr_cfg_msg.cloud_account
1303
1304 @property
1305 def om_datacenter_name(self):
1306 if self._nsr_cfg_msg.has_field('om_datacenter'):
1307 return self._nsr_cfg_msg.om_datacenter
1308 return None
1309
1310 @property
1311 def state(self):
1312 """State of this NetworkServiceRecord"""
1313 return self._op_status.state
1314
1315 @property
1316 def active(self):
1317 """ Is this NSR active ?"""
1318 return True if self._op_status.state == NetworkServiceRecordState.RUNNING else False
1319
1320 @property
1321 def vlrs(self):
1322 """ VLRs associated with this NSR"""
1323 return self._vlrs
1324
1325 @property
1326 def vnfrs(self):
1327 """ VNFRs associated with this NSR"""
1328 return self._vnfrs
1329
1330 @property
1331 def vnffgrs(self):
1332 """ VNFFGRs associated with this NSR"""
1333 return self._vnffgrs
1334
1335 @property
1336 def scaling_groups(self):
1337 """ Scaling groups associated with this NSR """
1338 return self._scaling_groups
1339
1340 @property
1341 def param_pools(self):
1342 """ Parameter value pools associated with this NSR"""
1343 return self._param_pools
1344
1345 @property
1346 def nsr_cfg_msg(self):
1347 return self._nsr_cfg_msg
1348
1349 @nsr_cfg_msg.setter
1350 def nsr_cfg_msg(self, msg):
1351 self._nsr_cfg_msg = msg
1352
1353 @property
1354 def nsd_msg(self):
1355 """ NSD Protobuf for this NSR """
1356 if self._nsd is not None:
1357 return self._nsd
1358 self._nsd = self._nsr_cfg_msg.nsd
1359 return self._nsd
1360
1361 @property
1362 def nsd_id(self):
1363 """ NSD ID for this NSR """
1364 return self.nsd_msg.id
1365
1366 @property
1367 def job_id(self):
1368 ''' Get a new job id for config primitive'''
1369 self._job_id += 1
1370 return self._job_id
1371
1372 @property
1373 def config_status(self):
1374 """ Config status for NSR """
1375 return self._config_status
1376
1377 def resolve_placement_group_cloud_construct(self, input_group):
1378 """
1379 Returns the cloud specific construct for placement group
1380 """
1381 copy_dict = ['name', 'requirement', 'strategy']
1382
1383 for group_info in self._nsr_cfg_msg.nsd_placement_group_maps:
1384 if group_info.placement_group_ref == input_group.name:
1385 group = VnfrYang.YangData_Vnfr_VnfrCatalog_Vnfr_PlacementGroupsInfo()
1386 group_dict = {k:v for k,v in
1387 group_info.as_dict().items() if k != 'placement_group_ref'}
1388 for param in copy_dict:
1389 group_dict.update({param: getattr(input_group, param)})
1390 group.from_dict(group_dict)
1391 return group
1392 return None
1393
1394
1395 def __str__(self):
1396 return "NSR(name={}, nsd_id={}, cloud_account={})".format(
1397 self.name, self.nsd_id, self.cloud_account_name
1398 )
1399
1400 def _get_vnfd(self, vnfd_id, config_xact):
1401 """ Fetch vnfd msg for the passed vnfd id """
1402 return self._nsm.get_vnfd(vnfd_id, config_xact)
1403
1404 def _get_vnfd_cloud_account(self, vnfd_member_index):
1405 """ Fetch Cloud Account for the passed vnfd id """
1406 if self._nsr_cfg_msg.vnf_cloud_account_map:
1407 vim_accounts = [(vnf.cloud_account,vnf.om_datacenter) for vnf in self._nsr_cfg_msg.vnf_cloud_account_map \
1408 if vnfd_member_index == vnf.member_vnf_index_ref]
1409 if vim_accounts and vim_accounts[0]:
1410 return vim_accounts[0]
1411 return (self.cloud_account_name,self.om_datacenter_name)
1412
1413 def _get_constituent_vnfd_msg(self, vnf_index):
1414 for const_vnfd in self.nsd_msg.constituent_vnfd:
1415 if const_vnfd.member_vnf_index == vnf_index:
1416 return const_vnfd
1417
1418 raise ValueError("Constituent VNF index %s not found" % vnf_index)
1419
1420 def record_event(self, evt, evt_desc, evt_details=None, state=None):
1421 """ Record an event """
1422 self._op_status.record_event(evt, evt_desc, evt_details)
1423 if state is not None:
1424 self.set_state(state)
1425
1426 def scaling_trigger_str(self, trigger):
1427 SCALING_TRIGGER_STRS = {
1428 NsdYang.ScalingTrigger.PRE_SCALE_IN : 'pre-scale-in',
1429 NsdYang.ScalingTrigger.POST_SCALE_IN : 'post-scale-in',
1430 NsdYang.ScalingTrigger.PRE_SCALE_OUT : 'pre-scale-out',
1431 NsdYang.ScalingTrigger.POST_SCALE_OUT : 'post-scale-out',
1432 }
1433 try:
1434 return SCALING_TRIGGER_STRS[trigger]
1435 except Exception as e:
1436 self._log.error("Scaling trigger mapping error for {} : {}".
1437 format(trigger, e))
1438 self._log.exception(e)
1439 return "Unknown trigger"
1440
1441 @asyncio.coroutine
1442 def instantiate_vls(self):
1443 """
1444 This function instantiates VLs for every VL in this Network Service
1445 """
1446 self._log.debug("Instantiating %d VLs in NSD id %s", len(self._vlrs),
1447 self.id)
1448 for vlr in self._vlrs:
1449 yield from self.nsm_plugin.instantiate_vl(self, vlr)
1450 vlr.state = VlRecordState.ACTIVE
1451
1452 @asyncio.coroutine
1453 def create(self, config_xact):
1454 """ Create this network service"""
1455 # Create virtual links for all the external vnf
1456 # connection points in this NS
1457 yield from self.create_vls()
1458
1459 # Create VNFs in this network service
1460 yield from self.create_vnfs(config_xact)
1461
1462 # Create VNFFG for network service
1463 self.create_vnffgs()
1464
1465 # Create Scaling Groups for each scaling group in NSD
1466 self.create_scaling_groups()
1467
1468 # Create Parameter Pools
1469 self.create_param_pools()
1470
1471 @asyncio.coroutine
1472 def apply_scale_group_config_script(self, script, group, scale_instance, trigger, vnfrs=None):
1473 """ Apply config based on script for scale group """
1474
1475 @asyncio.coroutine
1476 def add_vnfrs_data(vnfrs_list):
1477 """ Add as a dict each of the VNFRs data """
1478 vnfrs_data = []
1479 for vnfr in vnfrs_list:
1480 self._log.debug("Add VNFR {} data".format(vnfr))
1481 vnfr_data = dict()
1482 vnfr_data['name'] = vnfr.name
1483 if trigger in [NsdYang.ScalingTrigger.PRE_SCALE_IN, NsdYang.ScalingTrigger.POST_SCALE_OUT]:
1484 # Get VNF management and other IPs, etc
1485 opdata = yield from self.fetch_vnfr(vnfr.xpath)
1486 self._log.debug("VNFR {} op data: {}".format(vnfr.name, opdata))
1487 try:
1488 vnfr_data['rw_mgmt_ip'] = opdata.mgmt_interface.ip_address
1489 vnfr_data['rw_mgmt_port'] = opdata.mgmt_interface.port
1490 except Exception as e:
1491 self._log.error("Unable to get management IP for vnfr {}:{}".
1492 format(vnfr.name, e))
1493
1494 try:
1495 vnfr_data['connection_points'] = []
1496 for cp in opdata.connection_point:
1497 con_pt = dict()
1498 con_pt['name'] = cp.name
1499 con_pt['ip_address'] = cp.ip_address
1500 vnfr_data['connection_points'].append(con_pt)
1501 except Exception as e:
1502 self._log.error("Exception getting connections points for VNFR {}: {}".
1503 format(vnfr.name, e))
1504
1505 vnfrs_data.append(vnfr_data)
1506 self._log.debug("VNFRs data: {}".format(vnfrs_data))
1507
1508 return vnfrs_data
1509
1510 def add_nsr_data(nsr):
1511 nsr_data = dict()
1512 nsr_data['name'] = nsr.name
1513 return nsr_data
1514
1515 if script is None or len(script) == 0:
1516 self._log.error("Script not provided for scale group config: {}".format(group.name))
1517 return False
1518
1519 if script[0] == '/':
1520 path = script
1521 else:
1522 path = os.path.join(os.environ['RIFT_INSTALL'], "usr/bin", script)
1523 if not os.path.exists(path):
1524 self._log.error("Config faled for scale group {}: Script does not exist at {}".
1525 format(group.name, path))
1526 return False
1527
1528 # Build a YAML file with all parameters for the script to execute
1529 # The data consists of 5 sections
1530 # 1. Trigger
1531 # 2. Scale group config
1532 # 3. VNFRs in the scale group
1533 # 4. VNFRs outside scale group
1534 # 5. NSR data
1535 data = dict()
1536 data['trigger'] = group.trigger_map(trigger)
1537 data['config'] = group.group_msg.as_dict()
1538
1539 if vnfrs:
1540 data["vnfrs_in_group"] = yield from add_vnfrs_data(vnfrs)
1541 else:
1542 data["vnfrs_in_group"] = yield from add_vnfrs_data(scale_instance.vnfrs)
1543
1544 data["vnfrs_others"] = yield from add_vnfrs_data(self.vnfrs.values())
1545 data["nsr"] = add_nsr_data(self)
1546
1547 tmp_file = None
1548 with tempfile.NamedTemporaryFile(delete=False) as tmp_file:
1549 tmp_file.write(yaml.dump(data, default_flow_style=True)
1550 .encode("UTF-8"))
1551
1552 self._log.debug("Creating a temp file: {} with input data: {}".
1553 format(tmp_file.name, data))
1554
1555 cmd = "{} {}".format(path, tmp_file.name)
1556 self._log.debug("Running the CMD: {}".format(cmd))
1557 proc = yield from asyncio.create_subprocess_shell(cmd, loop=self._loop)
1558 rc = yield from proc.wait()
1559 if rc:
1560 self._log.error("The script {} for scale group {} config returned: {}".
1561 format(script, group.name, rc))
1562 return False
1563
1564 # Success
1565 return True
1566
1567
1568 @asyncio.coroutine
1569 def apply_scaling_group_config(self, trigger, group, scale_instance, vnfrs=None):
1570 """ Apply the config for the scaling group based on trigger """
1571 if group is None or scale_instance is None:
1572 return False
1573
1574 @asyncio.coroutine
1575 def update_config_status(success=True, err_msg=None):
1576 self._log.debug("Update %s config status to %r : %s",
1577 scale_instance, success, err_msg)
1578 if (scale_instance.config_status == "failed"):
1579 # Do not update the config status if it is already in failed state
1580 return
1581
1582 if scale_instance.config_status == "configured":
1583 # Update only to failed state an already configured scale instance
1584 if not success:
1585 scale_instance.config_status = "failed"
1586 scale_instance.config_err_msg = err_msg
1587 yield from self.update_state()
1588 else:
1589 # We are in configuring state
1590 # Only after post scale out mark instance as configured
1591 if trigger == NsdYang.ScalingTrigger.POST_SCALE_OUT:
1592 if success:
1593 scale_instance.config_status = "configured"
1594 else:
1595 scale_instance.config_status = "failed"
1596 scale_instance.config_err_msg = err_msg
1597 yield from self.update_state()
1598
1599 config = group.trigger_config(trigger)
1600 if config is None:
1601 return True
1602
1603 self._log.debug("Scaling group {} config: {}".format(group.name, config))
1604 if config.has_field("ns_config_primitive_name_ref"):
1605 config_name = config.ns_config_primitive_name_ref
1606 nsd_msg = self.nsd_msg
1607 config_primitive = None
1608 for ns_cfg_prim in nsd_msg.service_primitive:
1609 if ns_cfg_prim.name == config_name:
1610 config_primitive = ns_cfg_prim
1611 break
1612
1613 if config_primitive is None:
1614 raise ValueError("Could not find ns_cfg_prim %s in nsr %s" % (config_name, self.name))
1615
1616 self._log.debug("Scaling group {} config primitive: {}".format(group.name, config_primitive))
1617 if config_primitive.has_field("user_defined_script"):
1618 rc = yield from self.apply_scale_group_config_script(config_primitive.user_defined_script,
1619 group, scale_instance, trigger, vnfrs)
1620 err_msg = None
1621 if not rc:
1622 err_msg = "Failed config for trigger {} using config script '{}'". \
1623 format(self.scaling_trigger_str(trigger),
1624 config_primitive.user_defined_script)
1625 yield from update_config_status(success=rc, err_msg=err_msg)
1626 return rc
1627 else:
1628 err_msg = "Failed config for trigger {} as config script is not specified". \
1629 format(self.scaling_trigger_str(trigger))
1630 yield from update_config_status(success=False, err_msg=err_msg)
1631 raise NotImplementedError("Only script based config support for scale group for now: {}".
1632 format(group.name))
1633 else:
1634 err_msg = "Failed config for trigger {} as config primitive is not specified".\
1635 format(self.scaling_trigger_str(trigger))
1636 yield from update_config_status(success=False, err_msg=err_msg)
1637 self._log.error("Config primitive not specified for config action in scale group %s" %
1638 (group.name))
1639 return False
1640
1641 def create_scaling_groups(self):
1642 """ This function creates a NSScalingGroup for every scaling
1643 group defined in he NSD"""
1644
1645 for scaling_group_msg in self.nsd_msg.scaling_group_descriptor:
1646 self._log.debug("Found scaling_group %s in nsr id %s",
1647 scaling_group_msg.name, self.id)
1648
1649 group_record = scale_group.ScalingGroup(
1650 self._log,
1651 scaling_group_msg
1652 )
1653
1654 self._scaling_groups[group_record.name] = group_record
1655
1656 @asyncio.coroutine
1657 def create_scale_group_instance(self, group_name, index, config_xact, is_default=False):
1658 group = self._scaling_groups[group_name]
1659 scale_instance = group.create_instance(index, is_default)
1660
1661 @asyncio.coroutine
1662 def create_vnfs():
1663 self._log.debug("Creating %u VNFs associated with NS id %s scaling group %s",
1664 len(self.nsd_msg.constituent_vnfd), self.id, self)
1665
1666 vnfrs = []
1667 for vnf_index, count in group.vnf_index_count_map.items():
1668 const_vnfd_msg = self._get_constituent_vnfd_msg(vnf_index)
1669 vnfd_msg = self._get_vnfd(const_vnfd_msg.vnfd_id_ref, config_xact)
1670
1671 cloud_account_name, om_datacenter_name = self._get_vnfd_cloud_account(const_vnfd_msg.member_vnf_index)
1672 if cloud_account_name is None:
1673 cloud_account_name = self.cloud_account_name
1674 for _ in range(count):
1675 vnfr = yield from self.create_vnf_record(vnfd_msg, const_vnfd_msg, cloud_account_name, om_datacenter_name, group_name, index)
1676 scale_instance.add_vnfr(vnfr)
1677 vnfrs.append(vnfr)
1678
1679 return vnfrs
1680
1681 @asyncio.coroutine
1682 def instantiate_instance():
1683 self._log.debug("Creating %s VNFRS", scale_instance)
1684 vnfrs = yield from create_vnfs()
1685 yield from self.publish()
1686
1687 self._log.debug("Instantiating %s VNFRS for %s", len(vnfrs), scale_instance)
1688 scale_instance.operational_status = "vnf_init_phase"
1689 yield from self.update_state()
1690
1691 try:
1692 rc = yield from self.apply_scaling_group_config(NsdYang.ScalingTrigger.PRE_SCALE_OUT,
1693 group, scale_instance, vnfrs)
1694 if not rc:
1695 self._log.error("Pre scale out config for scale group {} ({}) failed".
1696 format(group.name, index))
1697 scale_instance.operational_status = "failed"
1698 else:
1699 yield from self.instantiate_vnfs(vnfrs)
1700
1701 except Exception as e:
1702 self._log.exception("Failed to begin instantiatiation of vnfs for scale group {}: {}".
1703 format(group.name, e))
1704 self._log.exception(e)
1705 scale_instance.operational_status = "failed"
1706
1707 yield from self.update_state()
1708
1709 yield from instantiate_instance()
1710
1711 @asyncio.coroutine
1712 def delete_scale_group_instance(self, group_name, index):
1713 group = self._scaling_groups[group_name]
1714 scale_instance = group.get_instance(index)
1715 if scale_instance.is_default:
1716 raise ScalingOperationError("Cannot terminate a default scaling group instance")
1717
1718 scale_instance.operational_status = "terminate"
1719 yield from self.update_state()
1720
1721 @asyncio.coroutine
1722 def terminate_instance():
1723 self._log.debug("Terminating %s VNFRS" % scale_instance)
1724 rc = yield from self.apply_scaling_group_config(NsdYang.ScalingTrigger.PRE_SCALE_IN,
1725 group, scale_instance)
1726 if not rc:
1727 self._log.error("Pre scale in config for scale group {} ({}) failed".
1728 format(group.name, index))
1729
1730 # Going ahead with terminate, even if there is an error in pre-scale-in config
1731 # as this could be result of scale out failure and we need to cleanup this group
1732 yield from self.terminate_vnfrs(scale_instance.vnfrs)
1733 group.delete_instance(index)
1734
1735 scale_instance.operational_status = "vnf_terminate_phase"
1736 yield from self.update_state()
1737
1738 yield from terminate_instance()
1739
1740 @asyncio.coroutine
1741 def _update_scale_group_instances_status(self):
1742 @asyncio.coroutine
1743 def post_scale_out_task(group, instance):
1744 # Apply post scale out config once all VNFRs are active
1745 rc = yield from self.apply_scaling_group_config(NsdYang.ScalingTrigger.POST_SCALE_OUT,
1746 group, instance)
1747 instance.operational_status = "running"
1748 if rc:
1749 self._log.debug("Scale out for group {} and instance {} succeeded".
1750 format(group.name, instance.instance_id))
1751 else:
1752 self._log.error("Post scale out config for scale group {} ({}) failed".
1753 format(group.name, instance.instance_id))
1754
1755 yield from self.update_state()
1756
1757 group_instances = {group: group.instances for group in self._scaling_groups.values()}
1758 for group, instances in group_instances.items():
1759 self._log.debug("Updating %s instance status", group)
1760 for instance in instances:
1761 instance_vnf_state_list = [vnfr.state for vnfr in instance.vnfrs]
1762 self._log.debug("Got vnfr instance states: %s", instance_vnf_state_list)
1763 if instance.operational_status == "vnf_init_phase":
1764 if all([state == VnfRecordState.ACTIVE for state in instance_vnf_state_list]):
1765 instance.operational_status = "running"
1766
1767 # Create a task for post scale out to allow us to sleep before attempting
1768 # to configure newly created VM's
1769 self._loop.create_task(post_scale_out_task(group, instance))
1770
1771 elif any([state == VnfRecordState.FAILED for state in instance_vnf_state_list]):
1772 self._log.debug("Scale out for group {} and instance {} failed".
1773 format(group.name, instance.instance_id))
1774 instance.operational_status = "failed"
1775
1776 elif instance.operational_status == "vnf_terminate_phase":
1777 if all([state == VnfRecordState.TERMINATED for state in instance_vnf_state_list]):
1778 instance.operational_status = "terminated"
1779 rc = yield from self.apply_scaling_group_config(NsdYang.ScalingTrigger.POST_SCALE_IN,
1780 group, instance)
1781 if rc:
1782 self._log.debug("Scale in for group {} and instance {} succeeded".
1783 format(group.name, instance.instance_id))
1784 else:
1785 self._log.error("Post scale in config for scale group {} ({}) failed".
1786 format(group.name, instance.instance_id))
1787
1788 def create_vnffgs(self):
1789 """ This function creates VNFFGs for every VNFFG in the NSD
1790 associated with this NSR"""
1791
1792 for vnffgd in self.nsd_msg.vnffgd:
1793 self._log.debug("Found vnffgd %s in nsr id %s", vnffgd, self.id)
1794 vnffgr = VnffgRecord(self._dts,
1795 self._log,
1796 self._loop,
1797 self._nsm._vnffgmgr,
1798 self,
1799 self.name,
1800 vnffgd,
1801 self._sdn_account_name
1802 )
1803 self._vnffgrs[vnffgr.id] = vnffgr
1804
1805 def resolve_vld_ip_profile(self, nsd_msg, vld):
1806 self._log.debug("Receieved ip profile ref is %s",vld.ip_profile_ref)
1807 if not vld.has_field('ip_profile_ref'):
1808 return None
1809 profile = [profile for profile in nsd_msg.ip_profiles if profile.name == vld.ip_profile_ref]
1810 return profile[0] if profile else None
1811
1812 @asyncio.coroutine
1813 def _create_vls(self, vld, cloud_account,om_datacenter):
1814 """Create a VLR in the cloud account specified using the given VLD
1815
1816 Args:
1817 vld : VLD yang obj
1818 cloud_account : Cloud account name
1819
1820 Returns:
1821 VirtualLinkRecord
1822 """
1823 vlr = yield from VirtualLinkRecord.create_record(
1824 self._dts,
1825 self._log,
1826 self._loop,
1827 self.name,
1828 vld,
1829 cloud_account,
1830 om_datacenter,
1831 self.resolve_vld_ip_profile(self.nsd_msg, vld),
1832 self.id,
1833 restart_mode=self.restart_mode)
1834
1835 return vlr
1836
1837 def _extract_cloud_accounts_for_vl(self, vld):
1838 """
1839 Extracts the list of cloud accounts from the NS Config obj
1840
1841 Rules:
1842 1. Cloud accounts based connection point (vnf_cloud_account_map)
1843 Args:
1844 vld : VLD yang object
1845
1846 Returns:
1847 TYPE: Description
1848 """
1849 cloud_account_list = []
1850
1851 if self._nsr_cfg_msg.vnf_cloud_account_map:
1852 # Handle case where cloud_account is None
1853 vnf_cloud_map = {}
1854 for vnf in self._nsr_cfg_msg.vnf_cloud_account_map:
1855 if vnf.cloud_account is not None or vnf.om_datacenter is not None:
1856 vnf_cloud_map[vnf.member_vnf_index_ref] = (vnf.cloud_account,vnf.om_datacenter)
1857
1858 for vnfc in vld.vnfd_connection_point_ref:
1859 cloud_account = vnf_cloud_map.get(
1860 vnfc.member_vnf_index_ref,
1861 (self.cloud_account_name,self.om_datacenter_name))
1862
1863 cloud_account_list.append(cloud_account)
1864
1865 if self._nsr_cfg_msg.vl_cloud_account_map:
1866 for vld_map in self._nsr_cfg_msg.vl_cloud_account_map:
1867 if vld_map.vld_id_ref == vld.id:
1868 for cloud_account in vld_map.cloud_accounts:
1869 cloud_account_list.extend((cloud_account,None))
1870 for om_datacenter in vld_map.om_datacenters:
1871 cloud_account_list.extend((None,om_datacenter))
1872
1873 # If no config has been provided then fall-back to the default
1874 # account
1875 if not cloud_account_list:
1876 cloud_account_list = [(self.cloud_account_name,self.om_datacenter_name)]
1877
1878 self._log.debug("VL {} cloud accounts: {}".
1879 format(vld.name, cloud_account_list))
1880 return set(cloud_account_list)
1881
1882 @asyncio.coroutine
1883 def create_vls(self):
1884 """ This function creates VLs for every VLD in the NSD
1885 associated with this NSR"""
1886 for vld in self.nsd_msg.vld:
1887 self._log.debug("Found vld %s in nsr id %s", vld, self.id)
1888 cloud_account_list = self._extract_cloud_accounts_for_vl(vld)
1889 for cloud_account,om_datacenter in cloud_account_list:
1890 vlr = yield from self._create_vls(vld, cloud_account,om_datacenter)
1891 self._vlrs.append(vlr)
1892
1893
1894 @asyncio.coroutine
1895 def create_vl_instance(self, vld):
1896 self._log.debug("Create VL for {}: {}".format(self.id, vld.as_dict()))
1897 # Check if the VL is already present
1898 vlr = None
1899 for vl in self._vlrs:
1900 if vl.vld_msg.id == vld.id:
1901 self._log.debug("The VLD %s already in NSR %s as VLR %s with status %s",
1902 vld.id, self.id, vl.id, vl.state)
1903 vlr = vl
1904 if vlr.state != VlRecordState.TERMINATED:
1905 err_msg = "VLR for VL %s in NSR %s already instantiated", \
1906 vld, self.id
1907 self._log.error(err_msg)
1908 raise NsrVlUpdateError(err_msg)
1909 break
1910
1911 if vlr is None:
1912 cloud_account_list = self._extract_cloud_accounts_for_vl(vld)
1913 for account,om_datacenter in cloud_account_list:
1914 vlr = yield from self._create_vls(vld, account,om_datacenter)
1915 self._vlrs.append(vlr)
1916
1917 vlr.state = VlRecordState.INSTANTIATION_PENDING
1918 yield from self.update_state()
1919
1920 try:
1921 yield from self.nsm_plugin.instantiate_vl(self, vlr)
1922 vlr.state = VlRecordState.ACTIVE
1923
1924 except Exception as e:
1925 err_msg = "Error instantiating VL for NSR {} and VLD {}: {}". \
1926 format(self.id, vld.id, e)
1927 self._log.error(err_msg)
1928 self._log.exception(e)
1929 vlr.state = VlRecordState.FAILED
1930
1931 yield from self.update_state()
1932
1933 @asyncio.coroutine
1934 def delete_vl_instance(self, vld):
1935 for vlr in self._vlrs:
1936 if vlr.vld_msg.id == vld.id:
1937 self._log.debug("Found VLR %s for VLD %s in NSR %s",
1938 vlr.id, vld.id, self.id)
1939 vlr.state = VlRecordState.TERMINATE_PENDING
1940 yield from self.update_state()
1941
1942 try:
1943 yield from self.nsm_plugin.terminate_vl(vlr)
1944 vlr.state = VlRecordState.TERMINATED
1945 self._vlrs.remove(vlr)
1946
1947 except Exception as e:
1948 err_msg = "Error terminating VL for NSR {} and VLD {}: {}". \
1949 format(self.id, vld.id, e)
1950 self._log.error(err_msg)
1951 self._log.exception(e)
1952 vlr.state = VlRecordState.FAILED
1953
1954 yield from self.update_state()
1955 break
1956
1957 @asyncio.coroutine
1958 def create_vnfs(self, config_xact):
1959 """
1960 This function creates VNFs for every VNF in the NSD
1961 associated with this NSR
1962 """
1963 self._log.debug("Creating %u VNFs associated with this NS id %s",
1964 len(self.nsd_msg.constituent_vnfd), self.id)
1965
1966 for const_vnfd in self.nsd_msg.constituent_vnfd:
1967 if not const_vnfd.start_by_default:
1968 self._log.debug("start_by_default set to False in constituent VNF (%s). Skipping start.",
1969 const_vnfd.member_vnf_index)
1970 continue
1971
1972 vnfd_msg = self._get_vnfd(const_vnfd.vnfd_id_ref, config_xact)
1973 cloud_account_name,om_datacenter_name = self._get_vnfd_cloud_account(const_vnfd.member_vnf_index)
1974 if cloud_account_name is None:
1975 cloud_account_name = self.cloud_account_name
1976 yield from self.create_vnf_record(vnfd_msg, const_vnfd, cloud_account_name, om_datacenter_name)
1977
1978
1979 def get_placement_groups(self, vnfd_msg, const_vnfd):
1980 placement_groups = []
1981 for group in self.nsd_msg.placement_groups:
1982 for member_vnfd in group.member_vnfd:
1983 if (member_vnfd.vnfd_id_ref == vnfd_msg.id) and \
1984 (member_vnfd.member_vnf_index_ref == const_vnfd.member_vnf_index):
1985 group_info = self.resolve_placement_group_cloud_construct(group)
1986 if group_info is None:
1987 self._log.error("Could not resolve cloud-construct for placement group: %s", group.name)
1988 ### raise PlacementGroupError("Could not resolve cloud-construct for placement group: {}".format(group.name))
1989 else:
1990 self._log.info("Successfully resolved cloud construct for placement group: %s for VNF: %s (Member Index: %s)",
1991 str(group_info),
1992 vnfd_msg.name,
1993 const_vnfd.member_vnf_index)
1994 placement_groups.append(group_info)
1995 return placement_groups
1996
1997 @asyncio.coroutine
1998 def create_vnf_record(self, vnfd_msg, const_vnfd, cloud_account_name, om_datacenter_name, group_name=None, group_instance_id=None):
1999 # Fetch the VNFD associated with this VNF
2000 placement_groups = self.get_placement_groups(vnfd_msg, const_vnfd)
2001 self._log.info("Cloud Account for VNF %d is %s",const_vnfd.member_vnf_index,cloud_account_name)
2002 self._log.info("Launching VNF: %s (Member Index: %s) in NSD plancement Groups: %s",
2003 vnfd_msg.name,
2004 const_vnfd.member_vnf_index,
2005 [ group.name for group in placement_groups])
2006 vnfr = yield from VirtualNetworkFunctionRecord.create_record(self._dts,
2007 self._log,
2008 self._loop,
2009 vnfd_msg,
2010 const_vnfd,
2011 self.nsd_id,
2012 self.name,
2013 cloud_account_name,
2014 om_datacenter_name,
2015 self.id,
2016 group_name,
2017 group_instance_id,
2018 placement_groups,
2019 restart_mode=self.restart_mode,
2020 )
2021 if vnfr.id in self._vnfrs:
2022 err = "VNF with VNFR id %s already in vnf list" % (vnfr.id,)
2023 raise NetworkServiceRecordError(err)
2024
2025 self._vnfrs[vnfr.id] = vnfr
2026 self._nsm.vnfrs[vnfr.id] = vnfr
2027
2028 yield from vnfr.set_config_status(NsrYang.ConfigStates.INIT)
2029
2030 self._log.debug("Added VNFR %s to NSM VNFR list with id %s",
2031 vnfr.name,
2032 vnfr.id)
2033
2034 return vnfr
2035
2036 def create_param_pools(self):
2037 for param_pool in self.nsd_msg.parameter_pool:
2038 self._log.debug("Found parameter pool %s in nsr id %s", param_pool, self.id)
2039
2040 start_value = param_pool.range.start_value
2041 end_value = param_pool.range.end_value
2042 if end_value < start_value:
2043 raise NetworkServiceRecordError(
2044 "Parameter pool %s has invalid range (start: {}, end: {})".format(
2045 start_value, end_value
2046 )
2047 )
2048
2049 self._param_pools[param_pool.name] = config_value_pool.ParameterValuePool(
2050 self._log,
2051 param_pool.name,
2052 range(start_value, end_value)
2053 )
2054
2055 @asyncio.coroutine
2056 def fetch_vnfr(self, vnfr_path):
2057 """ Fetch VNFR record """
2058 vnfr = None
2059 self._log.debug("Fetching VNFR with key %s while instantiating %s",
2060 vnfr_path, self.id)
2061 res_iter = yield from self._dts.query_read(vnfr_path, rwdts.XactFlag.MERGE)
2062
2063 for ent in res_iter:
2064 res = yield from ent
2065 vnfr = res.result
2066
2067 return vnfr
2068
2069 @asyncio.coroutine
2070 def instantiate_vnfs(self, vnfrs):
2071 """
2072 This function instantiates VNFs for every VNF in this Network Service
2073 """
2074 self._log.debug("Instantiating %u VNFs in NS %s", len(vnfrs), self.id)
2075 for vnf in vnfrs:
2076 self._log.debug("Instantiating VNF: %s in NS %s", vnf, self.id)
2077 yield from self.nsm_plugin.instantiate_vnf(self, vnf)
2078
2079 @asyncio.coroutine
2080 def instantiate_vnffgs(self):
2081 """
2082 This function instantiates VNFFGs for every VNFFG in this Network Service
2083 """
2084 self._log.debug("Instantiating %u VNFFGs in NS %s",
2085 len(self.nsd_msg.vnffgd), self.id)
2086 for _, vnfr in self.vnfrs.items():
2087 while vnfr.state in [VnfRecordState.INSTANTIATION_PENDING, VnfRecordState.INIT]:
2088 self._log.debug("Received vnfr state for vnfr %s is %s; retrying",vnfr.name,vnfr.state)
2089 yield from asyncio.sleep(2, loop=self._loop)
2090 if vnfr.state == VnfRecordState.ACTIVE:
2091 self._log.debug("Received vnfr state for vnfr %s is %s ",vnfr.name,vnfr.state)
2092 continue
2093 else:
2094 self._log.debug("Received vnfr state for vnfr %s is %s; failing vnffg creation",vnfr.name,vnfr.state)
2095 self._vnffgr_state = VnffgRecordState.FAILED
2096 return
2097
2098 self._log.info("Waiting for 90 seconds for VMs to come up")
2099 yield from asyncio.sleep(90, loop=self._loop)
2100 self._log.info("Starting VNFFG orchestration")
2101 for vnffg in self._vnffgrs.values():
2102 self._log.debug("Instantiating VNFFG: %s in NS %s", vnffg, self.id)
2103 yield from vnffg.instantiate()
2104
2105 @asyncio.coroutine
2106 def instantiate_scaling_instances(self, config_xact):
2107 """ Instantiate any default scaling instances in this Network Service """
2108 for group in self._scaling_groups.values():
2109 for i in range(group.min_instance_count):
2110 self._log.debug("Instantiating %s default scaling instance %s", group, i)
2111 yield from self.create_scale_group_instance(
2112 group.name, i, config_xact, is_default=True
2113 )
2114
2115 for group_msg in self._nsr_cfg_msg.scaling_group:
2116 if group_msg.scaling_group_name_ref != group.name:
2117 continue
2118
2119 for instance in group_msg.instance:
2120 self._log.debug("Reloading %s scaling instance %s", group_msg, instance.id)
2121 yield from self.create_scale_group_instance(
2122 group.name, instance.id, config_xact, is_default=False
2123 )
2124
2125 def has_scaling_instances(self):
2126 """ Return boolean indicating if the network service has default scaling groups """
2127 for group in self._scaling_groups.values():
2128 if group.min_instance_count > 0:
2129 return True
2130
2131 for group_msg in self._nsr_cfg_msg.scaling_group:
2132 if len(group_msg.instance) > 0:
2133 return True
2134
2135 return False
2136
2137 @asyncio.coroutine
2138 def publish(self):
2139 """ This function publishes this NSR """
2140 self._nsr_msg = self.create_msg()
2141
2142 self._log.debug("Publishing the NSR with xpath %s and nsr %s",
2143 self.nsr_xpath,
2144 self._nsr_msg)
2145
2146 if self._debug_running:
2147 self._log.debug("Publishing NSR in RUNNING state!")
2148 #raise()
2149
2150 with self._dts.transaction() as xact:
2151 yield from self._nsm.nsr_handler.update(xact, self.nsr_xpath, self._nsr_msg)
2152 if self._op_status.state == NetworkServiceRecordState.RUNNING:
2153 self._debug_running = True
2154
2155 @asyncio.coroutine
2156 def unpublish(self, xact):
2157 """ Unpublish this NSR object """
2158 self._log.debug("Unpublishing Network service id %s", self.id)
2159 yield from self._nsm.nsr_handler.delete(xact, self.nsr_xpath)
2160
2161 @property
2162 def nsr_xpath(self):
2163 """ Returns the xpath associated with this NSR """
2164 return(
2165 "D,/nsr:ns-instance-opdata" +
2166 "/nsr:nsr[nsr:ns-instance-config-ref = '{}']"
2167 ).format(self.id)
2168
2169 @staticmethod
2170 def xpath_from_nsr(nsr):
2171 """ Returns the xpath associated with this NSR op data"""
2172 return (NetworkServiceRecord.XPATH +
2173 "[nsr:ns-instance-config-ref = '{}']").format(nsr.id)
2174
2175 @property
2176 def nsd_xpath(self):
2177 """ Return NSD config xpath."""
2178 return(
2179 "C,/nsd:nsd-catalog/nsd:nsd[nsd:id = '{}']"
2180 ).format(self.nsd_id)
2181
2182 @asyncio.coroutine
2183 def instantiate(self, config_xact):
2184 """"Instantiates a NetworkServiceRecord.
2185
2186 This function instantiates a Network service
2187 which involves the following steps,
2188
2189 * Instantiate every VL in NSD by sending create VLR request to DTS.
2190 * Instantiate every VNF in NSD by sending create VNF reuqest to DTS.
2191 * Publish the NSR details to DTS
2192
2193 Arguments:
2194 nsr: The NSR configuration request containing nsr-id and nsd
2195 config_xact: The configuration transaction which initiated the instatiation
2196
2197 Raises:
2198 NetworkServiceRecordError if the NSR creation fails
2199
2200 Returns:
2201 No return value
2202 """
2203
2204 self._log.debug("Instantiating NS - %s xact - %s", self, config_xact)
2205
2206 # Move the state to INIITALIZING
2207 self.set_state(NetworkServiceRecordState.INIT)
2208
2209 event_descr = "Instantiation Request Received NSR Id:%s" % self.id
2210 self.record_event("instantiating", event_descr)
2211
2212 # Find the NSD
2213 self._nsd = self._nsr_cfg_msg.nsd
2214
2215 try:
2216 # Update ref count if nsd present in catalog
2217 self._nsm.get_nsd_ref(self.nsd_id)
2218
2219 except NetworkServiceDescriptorError:
2220 # This could be an NSD not in the nsd-catalog
2221 pass
2222
2223 # Merge any config and initial config primitive values
2224 self.config_store.merge_nsd_config(self.nsd_msg)
2225 self._log.debug("Merged NSD: {}".format(self.nsd_msg.as_dict()))
2226
2227 event_descr = "Fetched NSD with descriptor id %s" % self.nsd_id
2228 self.record_event("nsd-fetched", event_descr)
2229
2230 if self._nsd is None:
2231 msg = "Failed to fetch NSD with nsd-id [%s] for nsr-id %s"
2232 self._log.debug(msg, self.nsd_id, self.id)
2233 raise NetworkServiceRecordError(self)
2234
2235 self._log.debug("Got nsd result %s", self._nsd)
2236
2237 # Substitute any input parameters
2238 self.substitute_input_parameters(self._nsd, self._nsr_cfg_msg)
2239
2240 # Create the record
2241 yield from self.create(config_xact)
2242
2243 # Publish the NSR to DTS
2244 yield from self.publish()
2245
2246 @asyncio.coroutine
2247 def do_instantiate():
2248 """
2249 Instantiate network service
2250 """
2251 self._log.debug("Instantiating VLs nsr id [%s] nsd id [%s]",
2252 self.id, self.nsd_id)
2253
2254 # instantiate the VLs
2255 event_descr = ("Instantiating %s external VLs for NSR id %s" %
2256 (len(self.nsd_msg.vld), self.id))
2257 self.record_event("begin-external-vls-instantiation", event_descr)
2258
2259 self.set_state(NetworkServiceRecordState.VL_INIT_PHASE)
2260
2261 yield from self.instantiate_vls()
2262
2263 # Publish the NSR to DTS
2264 yield from self.publish()
2265
2266 event_descr = ("Finished instantiating %s external VLs for NSR id %s" %
2267 (len(self.nsd_msg.vld), self.id))
2268 self.record_event("end-external-vls-instantiation", event_descr)
2269
2270 self.set_state(NetworkServiceRecordState.VNF_INIT_PHASE)
2271
2272 self._log.debug("Instantiating VNFs ...... nsr[%s], nsd[%s]",
2273 self.id, self.nsd_id)
2274
2275 # instantiate the VNFs
2276 event_descr = ("Instantiating %s VNFS for NSR id %s" %
2277 (len(self.nsd_msg.constituent_vnfd), self.id))
2278
2279 self.record_event("begin-vnf-instantiation", event_descr)
2280
2281 yield from self.instantiate_vnfs(self._vnfrs.values())
2282
2283 self._log.debug(" Finished instantiating %d VNFs for NSR id %s",
2284 len(self.nsd_msg.constituent_vnfd), self.id)
2285
2286 event_descr = ("Finished instantiating %s VNFs for NSR id %s" %
2287 (len(self.nsd_msg.constituent_vnfd), self.id))
2288 self.record_event("end-vnf-instantiation", event_descr)
2289
2290 if len(self.vnffgrs) > 0:
2291 #self.set_state(NetworkServiceRecordState.VNFFG_INIT_PHASE)
2292 event_descr = ("Instantiating %s VNFFGS for NSR id %s" %
2293 (len(self.nsd_msg.vnffgd), self.id))
2294
2295 self.record_event("begin-vnffg-instantiation", event_descr)
2296
2297 yield from self.instantiate_vnffgs()
2298
2299 event_descr = ("Finished instantiating %s VNFFGDs for NSR id %s" %
2300 (len(self.nsd_msg.vnffgd), self.id))
2301 self.record_event("end-vnffg-instantiation", event_descr)
2302
2303 if self.has_scaling_instances():
2304 event_descr = ("Instantiating %s Scaling Groups for NSR id %s" %
2305 (len(self._scaling_groups), self.id))
2306
2307 self.record_event("begin-scaling-group-instantiation", event_descr)
2308 yield from self.instantiate_scaling_instances(config_xact)
2309 self.record_event("end-scaling-group-instantiation", event_descr)
2310
2311 # Give the plugin a chance to deploy the network service now that all
2312 # virtual links and vnfs are instantiated
2313 yield from self.nsm_plugin.deploy(self._nsr_msg)
2314
2315 self._log.debug("Publishing NSR...... nsr[%s], nsd[%s]",
2316 self.id, self.nsd_id)
2317
2318 # Publish the NSR to DTS
2319 yield from self.publish()
2320
2321 self._log.debug("Published NSR...... nsr[%s], nsd[%s]",
2322 self.id, self.nsd_id)
2323
2324 def on_instantiate_done(fut):
2325 # If the do_instantiate fails, then publish NSR with failed result
2326 if fut.exception() is not None:
2327 self._log.error("NSR instantiation failed for NSR id %s: %s", self.id, str(fut.exception()))
2328 self._loop.create_task(self.instantiation_failed(failed_reason=str(fut.exception())))
2329
2330 instantiate_task = self._loop.create_task(do_instantiate())
2331 instantiate_task.add_done_callback(on_instantiate_done)
2332
2333 @asyncio.coroutine
2334 def set_config_status(self, status, status_details=None):
2335 if self.config_status != status:
2336 self._log.debug("Updating NSR {} status for {} to {}".
2337 format(self.name, self.config_status, status))
2338 self._config_status = status
2339 self._config_status_details = status_details
2340
2341 if self._config_status == NsrYang.ConfigStates.FAILED:
2342 self.record_event("config-failed", "NS configuration failed",
2343 evt_details=self._config_status_details)
2344
2345 yield from self.publish()
2346
2347 @asyncio.coroutine
2348 def is_active(self):
2349 """ This NS is active """
2350 self.set_state(NetworkServiceRecordState.RUNNING)
2351 if self._is_active:
2352 return
2353
2354 # Publish the NSR to DTS
2355 self._log.debug("Network service %s is active ", self.id)
2356 self._is_active = True
2357
2358 event_descr = "NSR in running state for NSR id %s" % self.id
2359 self.record_event("ns-running", event_descr)
2360
2361 yield from self.publish()
2362
2363 @asyncio.coroutine
2364 def instantiation_failed(self, failed_reason=None):
2365 """ The NS instantiation failed"""
2366 self._log.error("Network service id:%s, name:%s instantiation failed",
2367 self.id, self.name)
2368 self.set_state(NetworkServiceRecordState.FAILED)
2369
2370 event_descr = "Instantiation of NS %s failed" % self.id
2371 self.record_event("ns-failed", event_descr, evt_details=failed_reason)
2372
2373 # Publish the NSR to DTS
2374 yield from self.publish()
2375
2376 @asyncio.coroutine
2377 def terminate_vnfrs(self, vnfrs):
2378 """ Terminate VNFRS in this network service """
2379 self._log.debug("Terminating VNFs in network service %s", self.id)
2380 for vnfr in vnfrs:
2381 yield from self.nsm_plugin.terminate_vnf(vnfr)
2382
2383 @asyncio.coroutine
2384 def terminate(self):
2385 """ Terminate a NetworkServiceRecord."""
2386 def terminate_vnffgrs():
2387 """ Terminate VNFFGRS in this network service """
2388 self._log.debug("Terminating VNFFGRs in network service %s", self.id)
2389 for vnffgr in self.vnffgrs.values():
2390 yield from vnffgr.terminate()
2391
2392 def terminate_vlrs():
2393 """ Terminate VLRs in this netork service """
2394 self._log.debug("Terminating VLs in network service %s", self.id)
2395 for vlr in self.vlrs:
2396 yield from self.nsm_plugin.terminate_vl(vlr)
2397 vlr.state = VlRecordState.TERMINATED
2398
2399 self._log.debug("Terminating network service id %s", self.id)
2400
2401 # Move the state to TERMINATE
2402 self.set_state(NetworkServiceRecordState.TERMINATE)
2403 event_descr = "Terminate being processed for NS Id:%s" % self.id
2404 self.record_event("terminate", event_descr)
2405
2406 # Move the state to VNF_TERMINATE_PHASE
2407 self._log.debug("Terminating VNFFGs in NS ID: %s", self.id)
2408 self.set_state(NetworkServiceRecordState.VNFFG_TERMINATE_PHASE)
2409 event_descr = "Terminating VNFFGS in NS Id:%s" % self.id
2410 self.record_event("terminating-vnffgss", event_descr)
2411 yield from terminate_vnffgrs()
2412
2413 # Move the state to VNF_TERMINATE_PHASE
2414 self.set_state(NetworkServiceRecordState.VNF_TERMINATE_PHASE)
2415 event_descr = "Terminating VNFS in NS Id:%s" % self.id
2416 self.record_event("terminating-vnfs", event_descr)
2417 yield from self.terminate_vnfrs(self.vnfrs.values())
2418
2419 # Move the state to VL_TERMINATE_PHASE
2420 self.set_state(NetworkServiceRecordState.VL_TERMINATE_PHASE)
2421 event_descr = "Terminating VLs in NS Id:%s" % self.id
2422 self.record_event("terminating-vls", event_descr)
2423 yield from terminate_vlrs()
2424
2425 yield from self.nsm_plugin.terminate_ns(self)
2426
2427 # Move the state to TERMINATED
2428 self.set_state(NetworkServiceRecordState.TERMINATED)
2429 event_descr = "Terminated NS Id:%s" % self.id
2430 self.record_event("terminated", event_descr)
2431
2432 def enable(self):
2433 """"Enable a NetworkServiceRecord."""
2434 pass
2435
2436 def disable(self):
2437 """"Disable a NetworkServiceRecord."""
2438 pass
2439
2440 def map_config_status(self):
2441 self._log.debug("Config status for ns {} is {}".
2442 format(self.name, self._config_status))
2443 if self._config_status == NsrYang.ConfigStates.CONFIGURING:
2444 return 'configuring'
2445 if self._config_status == NsrYang.ConfigStates.FAILED:
2446 return 'failed'
2447 return 'configured'
2448
2449 def vl_phase_completed(self):
2450 """ Are VLs created in this NS?"""
2451 return self._vl_phase_completed
2452
2453 def vnf_phase_completed(self):
2454 """ Are VLs created in this NS?"""
2455 return self._vnf_phase_completed
2456
2457 def create_msg(self):
2458 """ The network serice record as a message """
2459 nsr_dict = {"ns_instance_config_ref": self.id}
2460 nsr = RwNsrYang.YangData_Nsr_NsInstanceOpdata_Nsr.from_dict(nsr_dict)
2461 #nsr.cloud_account = self.cloud_account_name
2462 nsr.sdn_account = self._sdn_account_name
2463 nsr.name_ref = self.name
2464 nsr.nsd_ref = self.nsd_id
2465 nsr.nsd_name_ref = self.nsd_msg.name
2466 nsr.operational_events = self._op_status.msg
2467 nsr.operational_status = self._op_status.yang_str()
2468 nsr.config_status = self.map_config_status()
2469 nsr.config_status_details = self._config_status_details
2470 nsr.create_time = self._create_time
2471
2472 for cfg_prim in self.nsd_msg.service_primitive:
2473 cfg_prim = NsrYang.YangData_Nsr_NsInstanceOpdata_Nsr_ServicePrimitive.from_dict(
2474 cfg_prim.as_dict())
2475 nsr.service_primitive.append(cfg_prim)
2476
2477 for init_cfg in self.nsd_msg.initial_config_primitive:
2478 prim = NsrYang.NsrInitialConfigPrimitive.from_dict(
2479 init_cfg.as_dict())
2480 nsr.initial_config_primitive.append(prim)
2481
2482 if self.vl_phase_completed():
2483 for vlr in self.vlrs:
2484 nsr.vlr.append(vlr.create_nsr_vlr_msg(self.vnfrs.values()))
2485
2486 if self.vnf_phase_completed():
2487 for vnfr_id in self.vnfrs:
2488 nsr.constituent_vnfr_ref.append(self.vnfrs[vnfr_id].const_vnfr_msg)
2489 for vnffgr in self.vnffgrs.values():
2490 nsr.vnffgr.append(vnffgr.fetch_vnffgr())
2491 for scaling_group in self._scaling_groups.values():
2492 nsr.scaling_group_record.append(scaling_group.create_record_msg())
2493
2494 return nsr
2495
2496 def all_vnfs_active(self):
2497 """ Are all VNFS in this NS active? """
2498 for _, vnfr in self.vnfrs.items():
2499 if vnfr.active is not True:
2500 return False
2501 return True
2502
2503 @asyncio.coroutine
2504 def update_state(self):
2505 """ Re-evaluate this NS's state """
2506 curr_state = self._op_status.state
2507
2508 if curr_state == NetworkServiceRecordState.TERMINATED:
2509 self._log.debug("NS (%s) in terminated state, not updating state", self.id)
2510 return
2511
2512 new_state = NetworkServiceRecordState.RUNNING
2513 self._log.info("Received update_state for nsr: %s, curr-state: %s",
2514 self.id, curr_state)
2515
2516 # Check all the VNFRs are present
2517 for _, vnfr in self.vnfrs.items():
2518 if vnfr.state in [VnfRecordState.ACTIVE, VnfRecordState.TERMINATED]:
2519 pass
2520 elif vnfr.state == VnfRecordState.FAILED:
2521 if vnfr._prev_state != vnfr.state:
2522 event_descr = "Instantiation of VNF %s failed" % vnfr.id
2523 event_error_details = vnfr.state_failed_reason
2524 self.record_event("vnf-failed", event_descr, evt_details=event_error_details)
2525 vnfr.set_state(VnfRecordState.FAILED)
2526 else:
2527 self._log.info("VNF state did not change, curr=%s, prev=%s",
2528 vnfr.state, vnfr._prev_state)
2529 new_state = NetworkServiceRecordState.FAILED
2530 break
2531 else:
2532 self._log.info("VNF %s in NSR %s is still not active; current state is: %s",
2533 vnfr.id, self.id, vnfr.state)
2534 new_state = curr_state
2535
2536 # If new state is RUNNING; check all VLs
2537 if new_state == NetworkServiceRecordState.RUNNING:
2538 for vl in self.vlrs:
2539
2540 if vl.state in [VlRecordState.ACTIVE, VlRecordState.TERMINATED]:
2541 pass
2542 elif vl.state == VlRecordState.FAILED:
2543 if vl.prev_state != vl.state:
2544 event_descr = "Instantiation of VL %s failed" % vl.id
2545 event_error_details = vl.state_failed_reason
2546 self.record_event("vl-failed", event_descr, evt_details=event_error_details)
2547 vl.prev_state = vl.state
2548 else:
2549 self._log.debug("VL %s already in failed state")
2550 else:
2551 if vl.state in [VlRecordState.INSTANTIATION_PENDING, VlRecordState.INIT]:
2552 new_state = NetworkServiceRecordState.VL_INSTANTIATE
2553 break
2554
2555 if vl.state in [VlRecordState.TERMINATE_PENDING]:
2556 new_state = NetworkServiceRecordState.VL_TERMINATE
2557 break
2558
2559 # If new state is RUNNING; check VNFFGRs are also active
2560 if new_state == NetworkServiceRecordState.RUNNING:
2561 for _, vnffgr in self.vnffgrs.items():
2562 self._log.info("Checking vnffgr state for nsr %s is: %s",
2563 self.id, vnffgr.state)
2564 if vnffgr.state == VnffgRecordState.ACTIVE:
2565 pass
2566 elif vnffgr.state == VnffgRecordState.FAILED:
2567 event_descr = "Instantiation of VNFFGR %s failed" % vnffgr.id
2568 self.record_event("vnffg-failed", event_descr)
2569 new_state = NetworkServiceRecordState.FAILED
2570 break
2571 else:
2572 self._log.info("VNFFGR %s in NSR %s is still not active; current state is: %s",
2573 vnffgr.id, self.id, vnffgr.state)
2574 new_state = curr_state
2575
2576 # Update all the scaling group instance operational status to
2577 # reflect the state of all VNFR within that instance
2578 yield from self._update_scale_group_instances_status()
2579
2580 for _, group in self._scaling_groups.items():
2581 if group.state == scale_group.ScaleGroupState.SCALING_OUT:
2582 new_state = NetworkServiceRecordState.SCALING_OUT
2583 break
2584 elif group.state == scale_group.ScaleGroupState.SCALING_IN:
2585 new_state = NetworkServiceRecordState.SCALING_IN
2586 break
2587
2588 if new_state != curr_state:
2589 self._log.debug("Changing state of Network service %s from %s to %s",
2590 self.id, curr_state, new_state)
2591 if new_state == NetworkServiceRecordState.RUNNING:
2592 yield from self.is_active()
2593 elif new_state == NetworkServiceRecordState.FAILED:
2594 # If the NS is already active and we entered scaling_in, scaling_out,
2595 # do not mark the NS as failing if scaling operation failed.
2596 if curr_state in [NetworkServiceRecordState.SCALING_OUT,
2597 NetworkServiceRecordState.SCALING_IN] and self._is_active:
2598 new_state = NetworkServiceRecordState.RUNNING
2599 self.set_state(new_state)
2600 else:
2601 yield from self.instantiation_failed()
2602 else:
2603 self.set_state(new_state)
2604
2605 yield from self.publish()
2606
2607
2608 class InputParameterSubstitution(object):
2609 """
2610 This class is responsible for substituting input parameters into an NSD.
2611 """
2612
2613 def __init__(self, log):
2614 """Create an instance of InputParameterSubstitution
2615
2616 Arguments:
2617 log - a logger for this object to use
2618
2619 """
2620 self.log = log
2621
2622 def __call__(self, nsd, nsr_config):
2623 """Substitutes input parameters from the NSR config into the NSD
2624
2625 This call modifies the provided NSD with the input parameters that are
2626 contained in the NSR config.
2627
2628 Arguments:
2629 nsd - a GI NSD object
2630 nsr_config - a GI NSR config object
2631
2632 """
2633 if nsd is None or nsr_config is None:
2634 return
2635
2636 # Create a lookup of the xpath elements that this descriptor allows
2637 # to be modified
2638 optional_input_parameters = set()
2639 for input_parameter in nsd.input_parameter_xpath:
2640 optional_input_parameters.add(input_parameter.xpath)
2641
2642 # Apply the input parameters to the descriptor
2643 if nsr_config.input_parameter:
2644 for param in nsr_config.input_parameter:
2645 if param.xpath not in optional_input_parameters:
2646 msg = "tried to set an invalid input parameter ({})"
2647 self.log.error(msg.format(param.xpath))
2648 continue
2649
2650 self.log.debug(
2651 "input-parameter:{} = {}".format(
2652 param.xpath,
2653 param.value,
2654 )
2655 )
2656
2657 try:
2658 xpath.setxattr(nsd, param.xpath, param.value)
2659
2660 except Exception as e:
2661 self.log.exception(e)
2662
2663
2664 class NetworkServiceDescriptor(object):
2665 """
2666 Network service descriptor class
2667 """
2668
2669 def __init__(self, dts, log, loop, nsd, nsm):
2670 self._dts = dts
2671 self._log = log
2672 self._loop = loop
2673
2674 self._nsd = nsd
2675 self._ref_count = 0
2676
2677 self._nsm = nsm
2678
2679 @property
2680 def id(self):
2681 """ Returns nsd id """
2682 return self._nsd.id
2683
2684 @property
2685 def name(self):
2686 """ Returns name of nsd """
2687 return self._nsd.name
2688
2689 @property
2690 def ref_count(self):
2691 """ Returns reference count"""
2692 return self._ref_count
2693
2694 def in_use(self):
2695 """ Returns whether nsd is in use or not """
2696 return True if self.ref_count > 0 else False
2697
2698 def ref(self):
2699 """ Take a reference on this object """
2700 self._ref_count += 1
2701
2702 def unref(self):
2703 """ Release reference on this object """
2704 if self.ref_count < 1:
2705 msg = ("Unref on a NSD object - nsd id %s, ref_count = %s" %
2706 (self.id, self.ref_count))
2707 self._log.critical(msg)
2708 raise NetworkServiceDescriptorError(msg)
2709 self._ref_count -= 1
2710
2711 @property
2712 def msg(self):
2713 """ Return the message associated with this NetworkServiceDescriptor"""
2714 return self._nsd
2715
2716 @staticmethod
2717 def path_for_id(nsd_id):
2718 """ Return path for the passed nsd_id"""
2719 return "C,/nsd:nsd-catalog/nsd:nsd[nsd:id = '{}'".format(nsd_id)
2720
2721 def path(self):
2722 """ Return the message associated with this NetworkServiceDescriptor"""
2723 return NetworkServiceDescriptor.path_for_id(self.id)
2724
2725 def update(self, nsd):
2726 """ Update the NSD descriptor """
2727 self._nsd = nsd
2728
2729
2730 class NsdDtsHandler(object):
2731 """ The network service descriptor DTS handler """
2732 XPATH = "C,/nsd:nsd-catalog/nsd:nsd"
2733
2734 def __init__(self, dts, log, loop, nsm):
2735 self._dts = dts
2736 self._log = log
2737 self._loop = loop
2738 self._nsm = nsm
2739
2740 self._regh = None
2741
2742 @property
2743 def regh(self):
2744 """ Return registration handle """
2745 return self._regh
2746
2747 @asyncio.coroutine
2748 def register(self):
2749 """ Register for Nsd create/update/delete/read requests from dts """
2750
2751 def on_apply(dts, acg, xact, action, scratch):
2752 """Apply the configuration"""
2753 is_recovery = xact.xact is None and action == rwdts.AppconfAction.INSTALL
2754 self._log.debug("Got nsd apply cfg (xact:%s) (action:%s)",
2755 xact, action)
2756 # Create/Update an NSD record
2757 for cfg in self._regh.get_xact_elements(xact):
2758 # Only interested in those NSD cfgs whose ID was received in prepare callback
2759 if cfg.id in scratch.get('nsds', []) or is_recovery:
2760 self._nsm.update_nsd(cfg)
2761
2762 scratch.pop('nsds', None)
2763
2764 return RwTypes.RwStatus.SUCCESS
2765
2766 @asyncio.coroutine
2767 def delete_nsd_libs(nsd_id):
2768 """ Remove any files uploaded with NSD and stored under $RIFT_ARTIFACTS/libs/<id> """
2769 try:
2770 rift_artifacts_dir = os.environ['RIFT_ARTIFACTS']
2771 nsd_dir = os.path.join(rift_artifacts_dir, 'launchpad/libs', nsd_id)
2772
2773 if os.path.exists (nsd_dir):
2774 shutil.rmtree(nsd_dir, ignore_errors=True)
2775 except Exception as e:
2776 self._log.error("Exception in cleaning up NSD libs {}: {}".
2777 format(nsd_id, e))
2778 self._log.excpetion(e)
2779
2780 @asyncio.coroutine
2781 def on_prepare(dts, acg, xact, xact_info, ks_path, msg, scratch):
2782 """ Prepare callback from DTS for NSD config """
2783
2784 self._log.info("Got nsd prepare - config received nsd id %s, msg %s",
2785 msg.id, msg)
2786
2787 fref = ProtobufC.FieldReference.alloc()
2788 fref.goto_whole_message(msg.to_pbcm())
2789
2790 if fref.is_field_deleted():
2791 # Delete an NSD record
2792 self._log.debug("Deleting NSD with id %s", msg.id)
2793 if self._nsm.nsd_in_use(msg.id):
2794 self._log.debug("Cannot delete NSD in use - %s", msg.id)
2795 err = "Cannot delete an NSD in use - %s" % msg.id
2796 raise NetworkServiceDescriptorRefCountExists(err)
2797
2798 yield from delete_nsd_libs(msg.id)
2799 self._nsm.delete_nsd(msg.id)
2800 else:
2801 # Add this NSD to scratch to create/update in apply callback
2802 nsds = scratch.setdefault('nsds', [])
2803 nsds.append(msg.id)
2804 # acg._scratch['nsds'].append(msg.id)
2805
2806 xact_info.respond_xpath(rwdts.XactRspCode.ACK)
2807
2808 self._log.debug(
2809 "Registering for NSD config using xpath: %s",
2810 NsdDtsHandler.XPATH,
2811 )
2812
2813 acg_hdl = rift.tasklets.AppConfGroup.Handler(on_apply=on_apply)
2814 with self._dts.appconf_group_create(handler=acg_hdl) as acg:
2815 # Need a list in scratch to store NSDs to create/update later
2816 # acg._scratch['nsds'] = list()
2817 self._regh = acg.register(
2818 xpath=NsdDtsHandler.XPATH,
2819 flags=rwdts.Flag.SUBSCRIBER | rwdts.Flag.DELTA_READY | rwdts.Flag.CACHE,
2820 on_prepare=on_prepare)
2821
2822
2823 class VnfdDtsHandler(object):
2824 """ DTS handler for VNFD config changes """
2825 XPATH = "C,/vnfd:vnfd-catalog/vnfd:vnfd"
2826
2827 def __init__(self, dts, log, loop, nsm):
2828 self._dts = dts
2829 self._log = log
2830 self._loop = loop
2831 self._nsm = nsm
2832 self._regh = None
2833
2834 @property
2835 def regh(self):
2836 """ DTS registration handle """
2837 return self._regh
2838
2839 @asyncio.coroutine
2840 def register(self):
2841 """ Register for VNFD configuration"""
2842
2843 @asyncio.coroutine
2844 def on_apply(dts, acg, xact, action, scratch):
2845 """Apply the configuration"""
2846 self._log.debug("Got NSM VNFD apply (xact: %s) (action: %s)(scr: %s)",
2847 xact, action, scratch)
2848
2849 # Create/Update a VNFD record
2850 for cfg in self._regh.get_xact_elements(xact):
2851 # Only interested in those VNFD cfgs whose ID was received in prepare callback
2852 if cfg.id in scratch.get('vnfds', []):
2853 self._nsm.update_vnfd(cfg)
2854
2855 for cfg in self._regh.elements:
2856 if cfg.id in scratch.get('deleted_vnfds', []):
2857 yield from self._nsm.delete_vnfd(cfg.id)
2858
2859 scratch.pop('vnfds', None)
2860 scratch.pop('deleted_vnfds', None)
2861
2862 @asyncio.coroutine
2863 def on_prepare(dts, acg, xact, xact_info, ks_path, msg, scratch):
2864 """ on prepare callback """
2865 self._log.debug("Got on prepare for VNFD (path: %s) (action: %s) (msg: %s)",
2866 ks_path.to_xpath(RwNsmYang.get_schema()), xact_info.query_action, msg)
2867
2868 fref = ProtobufC.FieldReference.alloc()
2869 fref.goto_whole_message(msg.to_pbcm())
2870
2871 # Handle deletes in prepare_callback, but adds/updates in apply_callback
2872 if fref.is_field_deleted():
2873 self._log.debug("Adding msg to deleted field")
2874 deleted_vnfds = scratch.setdefault('deleted_vnfds', [])
2875 deleted_vnfds.append(msg.id)
2876 else:
2877 # Add this VNFD to scratch to create/update in apply callback
2878 vnfds = scratch.setdefault('vnfds', [])
2879 vnfds.append(msg.id)
2880
2881 xact_info.respond_xpath(rwdts.XactRspCode.ACK)
2882
2883 self._log.debug(
2884 "Registering for VNFD config using xpath: %s",
2885 VnfdDtsHandler.XPATH,
2886 )
2887 acg_hdl = rift.tasklets.AppConfGroup.Handler(on_apply=on_apply)
2888 with self._dts.appconf_group_create(handler=acg_hdl) as acg:
2889 # Need a list in scratch to store VNFDs to create/update later
2890 # acg._scratch['vnfds'] = list()
2891 # acg._scratch['deleted_vnfds'] = list()
2892 self._regh = acg.register(
2893 xpath=VnfdDtsHandler.XPATH,
2894 flags=rwdts.Flag.SUBSCRIBER | rwdts.Flag.DELTA_READY,
2895 on_prepare=on_prepare)
2896
2897 class NsrRpcDtsHandler(object):
2898 """ The network service instantiation RPC DTS handler """
2899 EXEC_NSR_CONF_XPATH = "I,/nsr:start-network-service"
2900 EXEC_NSR_CONF_O_XPATH = "O,/nsr:start-network-service"
2901 NETCONF_IP_ADDRESS = "127.0.0.1"
2902 NETCONF_PORT = 2022
2903 RESTCONF_PORT = 8888
2904 NETCONF_USER = "admin"
2905 NETCONF_PW = "admin"
2906 REST_BASE_V2_URL = 'https://{}:{}/v2/api/'.format("127.0.0.1",8888)
2907
2908 def __init__(self, dts, log, loop, nsm):
2909 self._dts = dts
2910 self._log = log
2911 self._loop = loop
2912 self._nsm = nsm
2913 self._nsd = None
2914
2915 self._ns_regh = None
2916
2917 self._manager = None
2918 self._nsr_config_url = NsrRpcDtsHandler.REST_BASE_V2_URL + 'config/ns-instance-config'
2919
2920 self._model = RwYang.Model.create_libncx()
2921 self._model.load_schema_ypbc(RwNsrYang.get_schema())
2922
2923 @property
2924 def nsm(self):
2925 """ Return the NS manager instance """
2926 return self._nsm
2927
2928 @staticmethod
2929 def wrap_netconf_config_xml(xml):
2930 xml = '<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">{}</config>'.format(xml)
2931 return xml
2932
2933 @asyncio.coroutine
2934 def _connect(self, timeout_secs=240):
2935
2936 start_time = time.time()
2937 while (time.time() - start_time) < timeout_secs:
2938
2939 try:
2940 self._log.debug("Attemping NsmTasklet netconf connection.")
2941
2942 manager = yield from ncclient.asyncio_manager.asyncio_connect(
2943 loop=self._loop,
2944 host=NsrRpcDtsHandler.NETCONF_IP_ADDRESS,
2945 port=NsrRpcDtsHandler.NETCONF_PORT,
2946 username=NsrRpcDtsHandler.NETCONF_USER,
2947 password=NsrRpcDtsHandler.NETCONF_PW,
2948 allow_agent=False,
2949 look_for_keys=False,
2950 hostkey_verify=False,
2951 )
2952
2953 return manager
2954
2955 except ncclient.transport.errors.SSHError as e:
2956 self._log.warning("Netconf connection to launchpad %s failed: %s",
2957 NsrRpcDtsHandler.NETCONF_IP_ADDRESS, str(e))
2958
2959 yield from asyncio.sleep(5, loop=self._loop)
2960
2961 raise NsrInstantiationFailed("Failed to connect to Launchpad within %s seconds" %
2962 timeout_secs)
2963
2964 def _apply_ns_instance_config(self,payload_dict):
2965 #self._log.debug("At apply NS instance config with payload %s",payload_dict)
2966 req_hdr= {'accept':'application/vnd.yang.data+json','content-type':'application/vnd.yang.data+json'}
2967 response=requests.post(self._nsr_config_url, headers=req_hdr, auth=('admin', 'admin'),data=payload_dict,verify=False)
2968 return response
2969
2970 @asyncio.coroutine
2971 def register(self):
2972 """ Register for NS monitoring read from dts """
2973 @asyncio.coroutine
2974 def on_ns_config_prepare(xact_info, action, ks_path, msg):
2975 """ prepare callback from dts start-network-service"""
2976 assert action == rwdts.QueryAction.RPC
2977 rpc_ip = msg
2978 rpc_op = NsrYang.YangOutput_Nsr_StartNetworkService.from_dict({
2979 "nsr_id":str(uuid.uuid4())
2980 })
2981
2982 if not ('name' in rpc_ip and 'nsd_ref' in rpc_ip and ('cloud_account' in rpc_ip or 'om_datacenter' in rpc_ip)):
2983 self._log.error("Mandatory parameters name or nsd_ref or cloud account not found in start-network-service {}".format(rpc_ip))
2984
2985
2986 self._log.debug("start-network-service RPC input: {}".format(rpc_ip))
2987
2988 try:
2989 # Add used value to the pool
2990 self._log.debug("RPC output: {}".format(rpc_op))
2991
2992 nsd_copy = self.nsm.get_nsd(rpc_ip.nsd_ref)
2993
2994 #if not self._manager:
2995 # self._manager = yield from self._connect()
2996
2997 self._log.debug("Configuring ns-instance-config with name %s nsd-ref: %s",
2998 rpc_ip.name, rpc_ip.nsd_ref)
2999
3000 ns_instance_config_dict = {"id":rpc_op.nsr_id, "admin_status":"ENABLED"}
3001 ns_instance_config_copy_dict = {k:v for k, v in rpc_ip.as_dict().items()
3002 if k in RwNsrYang.YangData_Nsr_NsInstanceConfig_Nsr().fields}
3003 ns_instance_config_dict.update(ns_instance_config_copy_dict)
3004
3005 ns_instance_config = RwNsrYang.YangData_Nsr_NsInstanceConfig_Nsr.from_dict(ns_instance_config_dict)
3006 ns_instance_config.nsd = NsrYang.YangData_Nsr_NsInstanceConfig_Nsr_Nsd()
3007 ns_instance_config.nsd.from_dict(nsd_copy.msg.as_dict())
3008
3009 payload_dict = ns_instance_config.to_json(self._model)
3010 #xml = ns_instance_config.to_xml_v2(self._model)
3011 #netconf_xml = self.wrap_netconf_config_xml(xml)
3012
3013 #self._log.debug("Sending configure ns-instance-config xml to %s: %s",
3014 # netconf_xml, NsrRpcDtsHandler.NETCONF_IP_ADDRESS)
3015 self._log.debug("Sending configure ns-instance-config json to %s: %s",
3016 self._nsr_config_url,ns_instance_config)
3017
3018 #response = yield from self._manager.edit_config(
3019 # target="running",
3020 # config=netconf_xml,
3021 # )
3022 response = yield from self._loop.run_in_executor(
3023 None,
3024 self._apply_ns_instance_config,
3025 payload_dict
3026 )
3027 response.raise_for_status()
3028 self._log.debug("Received edit config response: %s", response.json())
3029
3030 xact_info.respond_xpath(rwdts.XactRspCode.ACK,
3031 NsrRpcDtsHandler.EXEC_NSR_CONF_O_XPATH,
3032 rpc_op)
3033 except Exception as e:
3034 self._log.error("Exception processing the "
3035 "start-network-service: {}".format(e))
3036 self._log.exception(e)
3037 xact_info.respond_xpath(rwdts.XactRspCode.NACK,
3038 NsrRpcDtsHandler.EXEC_NSR_CONF_O_XPATH)
3039
3040
3041 hdl_ns = rift.tasklets.DTS.RegistrationHandler(on_prepare=on_ns_config_prepare,)
3042
3043 with self._dts.group_create() as group:
3044 self._ns_regh = group.register(xpath=NsrRpcDtsHandler.EXEC_NSR_CONF_XPATH,
3045 handler=hdl_ns,
3046 flags=rwdts.Flag.PUBLISHER,
3047 )
3048
3049
3050 class NsrDtsHandler(object):
3051 """ The network service DTS handler """
3052 NSR_XPATH = "C,/nsr:ns-instance-config/nsr:nsr"
3053 SCALE_INSTANCE_XPATH = "C,/nsr:ns-instance-config/nsr:nsr/nsr:scaling-group/nsr:instance"
3054 KEY_PAIR_XPATH = "C,/nsr:key-pair"
3055
3056 def __init__(self, dts, log, loop, nsm):
3057 self._dts = dts
3058 self._log = log
3059 self._loop = loop
3060 self._nsm = nsm
3061
3062 self._nsr_regh = None
3063 self._scale_regh = None
3064 self._key_pair_regh = None
3065
3066 @property
3067 def nsm(self):
3068 """ Return the NS manager instance """
3069 return self._nsm
3070
3071 @asyncio.coroutine
3072 def register(self):
3073 """ Register for Nsr create/update/delete/read requests from dts """
3074
3075 def nsr_id_from_keyspec(ks):
3076 nsr_path_entry = NsrYang.YangData_Nsr_NsInstanceConfig_Nsr.schema().keyspec_to_entry(ks)
3077 nsr_id = nsr_path_entry.key00.id
3078 return nsr_id
3079
3080 def group_name_from_keyspec(ks):
3081 group_path_entry = NsrYang.YangData_Nsr_NsInstanceConfig_Nsr_ScalingGroup.schema().keyspec_to_entry(ks)
3082 group_name = group_path_entry.key00.scaling_group_name_ref
3083 return group_name
3084
3085 def is_instance_in_reg_elements(nsr_id, group_name, instance_id):
3086 """ Return boolean indicating if scaling group instance was already commited previously.
3087
3088 By looking at the existing elements in this registration handle (elements not part
3089 of this current xact), we can tell if the instance was configured previously without
3090 keeping any application state.
3091 """
3092 for instance_cfg, keyspec in self._nsr_regh.get_xact_elements(include_keyspec=True):
3093 elem_nsr_id = nsr_id_from_keyspec(keyspec)
3094 elem_group_name = group_name_from_keyspec(keyspec)
3095
3096 if elem_nsr_id != nsr_id or group_name != elem_group_name:
3097 continue
3098
3099 if instance_cfg.id == instance_id:
3100 return True
3101
3102 return False
3103
3104 def get_scale_group_instance_delta(nsr_id, group_name, xact):
3105 delta = {"added": [], "deleted": []}
3106 for instance_cfg, keyspec in self._scale_regh.get_xact_elements(xact, include_keyspec=True):
3107 elem_nsr_id = nsr_id_from_keyspec(keyspec)
3108 if elem_nsr_id != nsr_id:
3109 continue
3110
3111 elem_group_name = group_name_from_keyspec(keyspec)
3112 if elem_group_name != group_name:
3113 continue
3114
3115 delta["added"].append(instance_cfg.id)
3116
3117 for instance_cfg, keyspec in self._scale_regh.get_xact_elements(include_keyspec=True):
3118 elem_nsr_id = nsr_id_from_keyspec(keyspec)
3119 if elem_nsr_id != nsr_id:
3120 continue
3121
3122 elem_group_name = group_name_from_keyspec(keyspec)
3123 if elem_group_name != group_name:
3124 continue
3125
3126 if instance_cfg.id in delta["added"]:
3127 delta["added"].remove(instance_cfg.id)
3128 else:
3129 delta["deleted"].append(instance_cfg.id)
3130
3131 return delta
3132
3133 @asyncio.coroutine
3134 def update_nsr_nsd(nsr_id, xact, scratch):
3135
3136 @asyncio.coroutine
3137 def get_nsr_vl_delta(nsr_id, xact, scratch):
3138 delta = {"added": [], "deleted": []}
3139 for instance_cfg, keyspec in self._nsr_regh.get_xact_elements(xact, include_keyspec=True):
3140 elem_nsr_id = nsr_id_from_keyspec(keyspec)
3141 if elem_nsr_id != nsr_id:
3142 continue
3143
3144 if 'vld' in instance_cfg.nsd:
3145 for vld in instance_cfg.nsd.vld:
3146 delta["added"].append(vld)
3147
3148 for instance_cfg, keyspec in self._nsr_regh.get_xact_elements(include_keyspec=True):
3149 self._log.debug("NSR update: %s", instance_cfg)
3150 elem_nsr_id = nsr_id_from_keyspec(keyspec)
3151 if elem_nsr_id != nsr_id:
3152 continue
3153
3154 if 'vld' in instance_cfg.nsd:
3155 for vld in instance_cfg.nsd.vld:
3156 if vld in delta["added"]:
3157 delta["added"].remove(vld)
3158 else:
3159 delta["deleted"].append(vld)
3160
3161 return delta
3162
3163 vl_delta = yield from get_nsr_vl_delta(nsr_id, xact, scratch)
3164 self._log.debug("Got NSR:%s VL instance delta: %s", nsr_id, vl_delta)
3165
3166 for vld in vl_delta["added"]:
3167 yield from self._nsm.nsr_instantiate_vl(nsr_id, vld)
3168
3169 for vld in vl_delta["deleted"]:
3170 yield from self._nsm.nsr_terminate_vl(nsr_id, vld)
3171
3172 def get_add_delete_update_cfgs(dts_member_reg, xact, key_name, scratch):
3173 # Unfortunately, it is currently difficult to figure out what has exactly
3174 # changed in this xact without Pbdelta support (RIFT-4916)
3175 # As a workaround, we can fetch the pre and post xact elements and
3176 # perform a comparison to figure out adds/deletes/updates
3177 xact_cfgs = list(dts_member_reg.get_xact_elements(xact))
3178 curr_cfgs = list(dts_member_reg.elements)
3179
3180 xact_key_map = {getattr(cfg, key_name): cfg for cfg in xact_cfgs}
3181 curr_key_map = {getattr(cfg, key_name): cfg for cfg in curr_cfgs}
3182
3183 # Find Adds
3184 added_keys = set(xact_key_map) - set(curr_key_map)
3185 added_cfgs = [xact_key_map[key] for key in added_keys]
3186
3187 # Find Deletes
3188 deleted_keys = set(curr_key_map) - set(xact_key_map)
3189 deleted_cfgs = [curr_key_map[key] for key in deleted_keys]
3190
3191 # Find Updates
3192 updated_keys = set(curr_key_map) & set(xact_key_map)
3193 updated_cfgs = [xact_key_map[key] for key in updated_keys
3194 if xact_key_map[key] != curr_key_map[key]]
3195
3196 return added_cfgs, deleted_cfgs, updated_cfgs
3197
3198 def get_nsr_key_pairs(dts_member_reg, xact):
3199 key_pairs = {}
3200 for instance_cfg, keyspec in dts_member_reg.get_xact_elements(xact, include_keyspec=True):
3201 self._log.debug("Key pair received is {} KS: {}".format(instance_cfg, keyspec))
3202 xpath = keyspec.to_xpath(RwNsrYang.get_schema())
3203 key_pairs[instance_cfg.name] = instance_cfg
3204 return key_pairs
3205
3206 def on_apply(dts, acg, xact, action, scratch):
3207 """Apply the configuration"""
3208 self._log.debug("Got nsr apply (xact: %s) (action: %s)(scr: %s)",
3209 xact, action, scratch)
3210
3211 def handle_create_nsr(msg, key_pairs=None, restart_mode=False):
3212 # Handle create nsr requests """
3213 # Do some validations
3214 if not msg.has_field("nsd"):
3215 err = "NSD not provided"
3216 self._log.error(err)
3217 raise NetworkServiceRecordError(err)
3218
3219 self._log.debug("Creating NetworkServiceRecord %s from nsr config %s",
3220 msg.id, msg.as_dict())
3221 nsr = self.nsm.create_nsr(msg, key_pairs=key_pairs, restart_mode=restart_mode)
3222 return nsr
3223
3224 def handle_delete_nsr(msg):
3225 @asyncio.coroutine
3226 def delete_instantiation(ns_id):
3227 """ Delete instantiation """
3228 with self._dts.transaction() as xact:
3229 yield from self._nsm.terminate_ns(ns_id, xact)
3230
3231 # Handle delete NSR requests
3232 self._log.info("Delete req for NSR Id: %s received", msg.id)
3233 # Terminate the NSR instance
3234 nsr = self._nsm.get_ns_by_nsr_id(msg.id)
3235
3236 nsr.set_state(NetworkServiceRecordState.TERMINATE_RCVD)
3237 event_descr = "Terminate rcvd for NS Id:%s" % msg.id
3238 nsr.record_event("terminate-rcvd", event_descr)
3239
3240 self._loop.create_task(delete_instantiation(msg.id))
3241
3242 @asyncio.coroutine
3243 def begin_instantiation(nsr):
3244 # Begin instantiation
3245 self._log.info("Beginning NS instantiation: %s", nsr.id)
3246 yield from self._nsm.instantiate_ns(nsr.id, xact)
3247
3248 self._log.debug("Got nsr apply (xact: %s) (action: %s)(scr: %s)",
3249 xact, action, scratch)
3250
3251 if action == rwdts.AppconfAction.INSTALL and xact.id is None:
3252 key_pairs = []
3253 for element in self._key_pair_regh.elements:
3254 key_pairs.append(element)
3255 for element in self._nsr_regh.elements:
3256 nsr = handle_create_nsr(element, key_pairs, restart_mode=True)
3257 self._loop.create_task(begin_instantiation(nsr))
3258
3259
3260 (added_msgs, deleted_msgs, updated_msgs) = get_add_delete_update_cfgs(self._nsr_regh,
3261 xact,
3262 "id",
3263 scratch)
3264 self._log.debug("Added: %s, Deleted: %s, Updated: %s", added_msgs,
3265 deleted_msgs, updated_msgs)
3266
3267 for msg in added_msgs:
3268 if msg.id not in self._nsm.nsrs:
3269 self._log.info("Create NSR received in on_apply to instantiate NS:%s", msg.id)
3270 key_pairs = get_nsr_key_pairs(self._key_pair_regh, xact)
3271 nsr = handle_create_nsr(msg,key_pairs)
3272 self._loop.create_task(begin_instantiation(nsr))
3273
3274 for msg in deleted_msgs:
3275 self._log.info("Delete NSR received in on_apply to terminate NS:%s", msg.id)
3276 try:
3277 handle_delete_nsr(msg)
3278 except Exception:
3279 self._log.exception("Failed to terminate NS:%s", msg.id)
3280
3281 for msg in updated_msgs:
3282 self._log.info("Update NSR received in on_apply: %s", msg)
3283
3284 self._nsm.nsr_update_cfg(msg.id, msg)
3285
3286 if 'nsd' in msg:
3287 self._loop.create_task(update_nsr_nsd(msg.id, xact, scratch))
3288
3289 for group in msg.scaling_group:
3290 instance_delta = get_scale_group_instance_delta(msg.id, group.scaling_group_name_ref, xact)
3291 self._log.debug("Got NSR:%s scale group instance delta: %s", msg.id, instance_delta)
3292
3293 for instance_id in instance_delta["added"]:
3294 self._nsm.scale_nsr_out(msg.id, group.scaling_group_name_ref, instance_id, xact)
3295
3296 for instance_id in instance_delta["deleted"]:
3297 self._nsm.scale_nsr_in(msg.id, group.scaling_group_name_ref, instance_id)
3298
3299
3300 return RwTypes.RwStatus.SUCCESS
3301
3302 @asyncio.coroutine
3303 def on_prepare(dts, acg, xact, xact_info, ks_path, msg, scratch):
3304 """ Prepare calllback from DTS for NSR """
3305
3306 xpath = ks_path.to_xpath(RwNsrYang.get_schema())
3307 action = xact_info.query_action
3308 self._log.debug(
3309 "Got Nsr prepare callback (xact: %s) (action: %s) (info: %s), %s:%s)",
3310 xact, action, xact_info, xpath, msg
3311 )
3312
3313 @asyncio.coroutine
3314 def delete_instantiation(ns_id):
3315 """ Delete instantiation """
3316 yield from self._nsm.terminate_ns(ns_id, None)
3317
3318 def handle_delete_nsr():
3319 """ Handle delete NSR requests """
3320 self._log.info("Delete req for NSR Id: %s received", msg.id)
3321 # Terminate the NSR instance
3322 nsr = self._nsm.get_ns_by_nsr_id(msg.id)
3323
3324 nsr.set_state(NetworkServiceRecordState.TERMINATE_RCVD)
3325 event_descr = "Terminate rcvd for NS Id:%s" % msg.id
3326 nsr.record_event("terminate-rcvd", event_descr)
3327
3328 self._loop.create_task(delete_instantiation(msg.id))
3329
3330 fref = ProtobufC.FieldReference.alloc()
3331 fref.goto_whole_message(msg.to_pbcm())
3332
3333 if action in [rwdts.QueryAction.CREATE, rwdts.QueryAction.UPDATE, rwdts.QueryAction.DELETE]:
3334 # if this is an NSR create
3335 if action != rwdts.QueryAction.DELETE and msg.id not in self._nsm.nsrs:
3336 # Ensure the Cloud account/datacenter has been specified
3337 if not msg.has_field("cloud_account") and not msg.has_field("om_datacenter"):
3338 raise NsrInstantiationFailed("Cloud account or datacenter not specified in NSR")
3339
3340 # Check if nsd is specified
3341 if not msg.has_field("nsd"):
3342 raise NsrInstantiationFailed("NSD not specified in NSR")
3343
3344 else:
3345 nsr = self._nsm.nsrs[msg.id]
3346
3347 if msg.has_field("nsd"):
3348 if nsr.state != NetworkServiceRecordState.RUNNING:
3349 raise NsrVlUpdateError("Unable to update VL when NSR not in running state")
3350 if 'vld' not in msg.nsd or len(msg.nsd.vld) == 0:
3351 raise NsrVlUpdateError("NS config NSD should have atleast 1 VLD defined")
3352
3353 if msg.has_field("scaling_group"):
3354 if nsr.state != NetworkServiceRecordState.RUNNING:
3355 raise ScalingOperationError("Unable to perform scaling action when NS is not in running state")
3356
3357 if len(msg.scaling_group) > 1:
3358 raise ScalingOperationError("Only a single scaling group can be configured at a time")
3359
3360 for group_msg in msg.scaling_group:
3361 num_new_group_instances = len(group_msg.instance)
3362 if num_new_group_instances > 1:
3363 raise ScalingOperationError("Only a single scaling instance can be modified at a time")
3364
3365 elif num_new_group_instances == 1:
3366 scale_group = nsr.scaling_groups[group_msg.scaling_group_name_ref]
3367 if action in [rwdts.QueryAction.CREATE, rwdts.QueryAction.UPDATE]:
3368 if len(scale_group.instances) == scale_group.max_instance_count:
3369 raise ScalingOperationError("Max instances for %s reached" % scale_group)
3370
3371 acg.handle.prepare_complete_ok(xact_info.handle)
3372
3373
3374 self._log.debug("Registering for NSR config using xpath: %s",
3375 NsrDtsHandler.NSR_XPATH)
3376
3377 acg_hdl = rift.tasklets.AppConfGroup.Handler(on_apply=on_apply)
3378 with self._dts.appconf_group_create(handler=acg_hdl) as acg:
3379 self._nsr_regh = acg.register(xpath=NsrDtsHandler.NSR_XPATH,
3380 flags=rwdts.Flag.SUBSCRIBER | rwdts.Flag.DELTA_READY | rwdts.Flag.CACHE,
3381 on_prepare=on_prepare)
3382
3383 self._scale_regh = acg.register(
3384 xpath=NsrDtsHandler.SCALE_INSTANCE_XPATH,
3385 flags=rwdts.Flag.SUBSCRIBER | rwdts.Flag.DELTA_READY| rwdts.Flag.CACHE,
3386 )
3387
3388 self._key_pair_regh = acg.register(
3389 xpath=NsrDtsHandler.KEY_PAIR_XPATH,
3390 flags=rwdts.Flag.SUBSCRIBER | rwdts.Flag.DELTA_READY | rwdts.Flag.CACHE,
3391 )
3392
3393
3394 class NsrOpDataDtsHandler(object):
3395 """ The network service op data DTS handler """
3396 XPATH = "D,/nsr:ns-instance-opdata/nsr:nsr"
3397
3398 def __init__(self, dts, log, loop, nsm):
3399 self._dts = dts
3400 self._log = log
3401 self._loop = loop
3402 self._nsm = nsm
3403 self._regh = None
3404
3405 @property
3406 def regh(self):
3407 """ Return the registration handle"""
3408 return self._regh
3409
3410 @property
3411 def nsm(self):
3412 """ Return the NS manager instance """
3413 return self._nsm
3414
3415 @asyncio.coroutine
3416 def register(self):
3417 """ Register for Nsr op data publisher registration"""
3418 self._log.debug("Registering Nsr op data path %s as publisher",
3419 NsrOpDataDtsHandler.XPATH)
3420
3421 hdl = rift.tasklets.DTS.RegistrationHandler()
3422 handlers = rift.tasklets.Group.Handler()
3423 with self._dts.group_create(handler=handlers) as group:
3424 self._regh = group.register(xpath=NsrOpDataDtsHandler.XPATH,
3425 handler=hdl,
3426 flags=rwdts.Flag.PUBLISHER | rwdts.Flag.NO_PREP_READ | rwdts.Flag.DATASTORE)
3427
3428 @asyncio.coroutine
3429 def create(self, path, msg):
3430 """
3431 Create an NS record in DTS with the path and message
3432 """
3433 self._log.debug("Creating NSR %s:%s", path, msg)
3434 self.regh.create_element(path, msg)
3435 self._log.debug("Created NSR, %s:%s", path, msg)
3436
3437 @asyncio.coroutine
3438 def update(self, path, msg, flags=rwdts.XactFlag.REPLACE):
3439 """
3440 Update an NS record in DTS with the path and message
3441 """
3442 self._log.debug("Updating NSR, %s:%s regh = %s", path, msg, self.regh)
3443 self.regh.update_element(path, msg, flags)
3444 self._log.debug("Updated NSR, %s:%s", path, msg)
3445
3446 @asyncio.coroutine
3447 def delete(self, path):
3448 """
3449 Update an NS record in DTS with the path and message
3450 """
3451 self._log.debug("Deleting NSR path:%s", path)
3452 self.regh.delete_element(path)
3453 self._log.debug("Deleted NSR path:%s", path)
3454
3455
3456 class VnfrDtsHandler(object):
3457 """ The virtual network service DTS handler """
3458 XPATH = "D,/vnfr:vnfr-catalog/vnfr:vnfr"
3459
3460 def __init__(self, dts, log, loop, nsm):
3461 self._dts = dts
3462 self._log = log
3463 self._loop = loop
3464 self._nsm = nsm
3465
3466 self._regh = None
3467
3468 @property
3469 def regh(self):
3470 """ Return registration handle """
3471 return self._regh
3472
3473 @property
3474 def nsm(self):
3475 """ Return the NS manager instance """
3476 return self._nsm
3477
3478 @asyncio.coroutine
3479 def register(self):
3480 """ Register for vnfr create/update/delete/ advises from dts """
3481
3482 def on_commit(xact_info):
3483 """ The transaction has been committed """
3484 self._log.debug("Got vnfr commit (xact_info: %s)", xact_info)
3485 return rwdts.MemberRspCode.ACTION_OK
3486
3487 @asyncio.coroutine
3488 def on_prepare(xact_info, action, ks_path, msg):
3489 """ prepare callback from dts """
3490 xpath = ks_path.to_xpath(RwNsrYang.get_schema())
3491 self._log.debug(
3492 "Got vnfr on_prepare cb (xact_info: %s, action: %s): %s:%s",
3493 xact_info, action, ks_path, msg
3494 )
3495
3496 schema = VnfrYang.YangData_Vnfr_VnfrCatalog_Vnfr.schema()
3497 path_entry = schema.keyspec_to_entry(ks_path)
3498 if path_entry.key00.id not in self._nsm._vnfrs:
3499 self._log.error("%s request for non existent record path %s",
3500 action, xpath)
3501 xact_info.respond_xpath(rwdts.XactRspCode.NA, xpath)
3502
3503 return
3504
3505 self._log.debug("Deleting VNFR with id %s", path_entry.key00.id)
3506 if action == rwdts.QueryAction.CREATE or action == rwdts.QueryAction.UPDATE:
3507 yield from self._nsm.update_vnfr(msg)
3508 elif action == rwdts.QueryAction.DELETE:
3509 self._log.debug("Deleting VNFR with id %s", path_entry.key00.id)
3510 self._nsm.delete_vnfr(path_entry.key00.id)
3511
3512 xact_info.respond_xpath(rwdts.XactRspCode.ACK, xpath)
3513
3514 self._log.debug("Registering for VNFR using xpath: %s",
3515 VnfrDtsHandler.XPATH,)
3516
3517 hdl = rift.tasklets.DTS.RegistrationHandler(on_commit=on_commit,
3518 on_prepare=on_prepare,)
3519 with self._dts.group_create() as group:
3520 self._regh = group.register(xpath=VnfrDtsHandler.XPATH,
3521 handler=hdl,
3522 flags=(rwdts.Flag.SUBSCRIBER),)
3523
3524
3525 class NsdRefCountDtsHandler(object):
3526 """ The NSD Ref Count DTS handler """
3527 XPATH = "D,/nsr:ns-instance-opdata/rw-nsr:nsd-ref-count"
3528
3529 def __init__(self, dts, log, loop, nsm):
3530 self._dts = dts
3531 self._log = log
3532 self._loop = loop
3533 self._nsm = nsm
3534
3535 self._regh = None
3536
3537 @property
3538 def regh(self):
3539 """ Return registration handle """
3540 return self._regh
3541
3542 @property
3543 def nsm(self):
3544 """ Return the NS manager instance """
3545 return self._nsm
3546
3547 @asyncio.coroutine
3548 def register(self):
3549 """ Register for NSD ref count read from dts """
3550
3551 @asyncio.coroutine
3552 def on_prepare(xact_info, action, ks_path, msg):
3553 """ prepare callback from dts """
3554 xpath = ks_path.to_xpath(RwNsrYang.get_schema())
3555
3556 if action == rwdts.QueryAction.READ:
3557 schema = RwNsrYang.YangData_Nsr_NsInstanceOpdata_NsdRefCount.schema()
3558 path_entry = schema.keyspec_to_entry(ks_path)
3559 nsd_list = yield from self._nsm.get_nsd_refcount(path_entry.key00.nsd_id_ref)
3560 for xpath, msg in nsd_list:
3561 xact_info.respond_xpath(rsp_code=rwdts.XactRspCode.MORE,
3562 xpath=xpath,
3563 msg=msg)
3564 xact_info.respond_xpath(rwdts.XactRspCode.ACK)
3565 else:
3566 raise NetworkServiceRecordError("Not supported operation %s" % action)
3567
3568 hdl = rift.tasklets.DTS.RegistrationHandler(on_prepare=on_prepare,)
3569 with self._dts.group_create() as group:
3570 self._regh = group.register(xpath=NsdRefCountDtsHandler.XPATH,
3571 handler=hdl,
3572 flags=rwdts.Flag.PUBLISHER,)
3573
3574
3575 class NsManager(object):
3576 """ The Network Service Manager class"""
3577 def __init__(self, dts, log, loop,
3578 nsr_handler, vnfr_handler, vlr_handler, ro_plugin_selector,
3579 vnffgmgr, vnfd_pub_handler, cloud_account_handler):
3580 self._dts = dts
3581 self._log = log
3582 self._loop = loop
3583 self._nsr_handler = nsr_handler
3584 self._vnfr_pub_handler = vnfr_handler
3585 self._vlr_pub_handler = vlr_handler
3586 self._vnffgmgr = vnffgmgr
3587 self._vnfd_pub_handler = vnfd_pub_handler
3588 self._cloud_account_handler = cloud_account_handler
3589
3590 self._ro_plugin_selector = ro_plugin_selector
3591 self._ncclient = rift.mano.ncclient.NcClient(
3592 host="127.0.0.1",
3593 port=2022,
3594 username="admin",
3595 password="admin",
3596 loop=self._loop)
3597
3598 self._nsrs = {}
3599 self._nsds = {}
3600 self._vnfds = {}
3601 self._vnfrs = {}
3602
3603 self.cfgmgr_obj = conman.ROConfigManager(log, loop, dts, self)
3604
3605 # TODO: All these handlers should move to tasklet level.
3606 # Passing self is often an indication of bad design
3607 self._nsd_dts_handler = NsdDtsHandler(dts, log, loop, self)
3608 self._vnfd_dts_handler = VnfdDtsHandler(dts, log, loop, self)
3609 self._dts_handlers = [self._nsd_dts_handler,
3610 VnfrDtsHandler(dts, log, loop, self),
3611 NsdRefCountDtsHandler(dts, log, loop, self),
3612 NsrDtsHandler(dts, log, loop, self),
3613 ScalingRpcHandler(log, dts, loop, self.scale_rpc_callback),
3614 NsrRpcDtsHandler(dts,log,loop,self),
3615 self._vnfd_dts_handler,
3616 self.cfgmgr_obj,
3617 ]
3618
3619
3620 @property
3621 def log(self):
3622 """ Log handle """
3623 return self._log
3624
3625 @property
3626 def loop(self):
3627 """ Loop """
3628 return self._loop
3629
3630 @property
3631 def dts(self):
3632 """ DTS handle """
3633 return self._dts
3634
3635 @property
3636 def nsr_handler(self):
3637 """" NSR handler """
3638 return self._nsr_handler
3639
3640 @property
3641 def so_obj(self):
3642 """" So Obj handler """
3643 return self._so_obj
3644
3645 @property
3646 def nsrs(self):
3647 """ NSRs in this NSM"""
3648 return self._nsrs
3649
3650 @property
3651 def nsds(self):
3652 """ NSDs in this NSM"""
3653 return self._nsds
3654
3655 @property
3656 def vnfds(self):
3657 """ VNFDs in this NSM"""
3658 return self._vnfds
3659
3660 @property
3661 def vnfrs(self):
3662 """ VNFRs in this NSM"""
3663 return self._vnfrs
3664
3665 @property
3666 def nsr_pub_handler(self):
3667 """ NSR publication handler """
3668 return self._nsr_handler
3669
3670 @property
3671 def vnfr_pub_handler(self):
3672 """ VNFR publication handler """
3673 return self._vnfr_pub_handler
3674
3675 @property
3676 def vlr_pub_handler(self):
3677 """ VLR publication handler """
3678 return self._vlr_pub_handler
3679
3680 @property
3681 def vnfd_pub_handler(self):
3682 return self._vnfd_pub_handler
3683
3684 @asyncio.coroutine
3685 def register(self):
3686 """ Register all static DTS handlers """
3687 for dts_handle in self._dts_handlers:
3688 yield from dts_handle.register()
3689
3690
3691 def get_ns_by_nsr_id(self, nsr_id):
3692 """ get NSR by nsr id """
3693 if nsr_id not in self._nsrs:
3694 raise NetworkServiceRecordError("NSR id %s not found" % nsr_id)
3695
3696 return self._nsrs[nsr_id]
3697
3698 def scale_nsr_out(self, nsr_id, scale_group_name, instance_id, config_xact):
3699 self.log.debug("Scale out NetworkServiceRecord (nsr_id: %s) (scaling group: %s) (instance_id: %s)",
3700 nsr_id,
3701 scale_group_name,
3702 instance_id
3703 )
3704 nsr = self._nsrs[nsr_id]
3705 if nsr.state != NetworkServiceRecordState.RUNNING:
3706 raise ScalingOperationError("Cannot perform scaling operation if NSR is not in running state")
3707
3708 self._loop.create_task(nsr.create_scale_group_instance(scale_group_name, instance_id, config_xact))
3709
3710 def scale_nsr_in(self, nsr_id, scale_group_name, instance_id):
3711 self.log.debug("Scale in NetworkServiceRecord (nsr_id: %s) (scaling group: %s) (instance_id: %s)",
3712 nsr_id,
3713 scale_group_name,
3714 instance_id,
3715 )
3716 nsr = self._nsrs[nsr_id]
3717 if nsr.state != NetworkServiceRecordState.RUNNING:
3718 raise ScalingOperationError("Cannot perform scaling operation if NSR is not in running state")
3719
3720 self._loop.create_task(nsr.delete_scale_group_instance(scale_group_name, instance_id))
3721
3722 def scale_rpc_callback(self, xact, msg, action):
3723 """Callback handler for RPC calls
3724 Args:
3725 xact : Transaction Handler
3726 msg : RPC input
3727 action : Scaling Action
3728 """
3729 ScalingGroupInstance = NsrYang.YangData_Nsr_NsInstanceConfig_Nsr_ScalingGroup_Instance
3730 ScalingGroup = NsrYang.YangData_Nsr_NsInstanceConfig_Nsr_ScalingGroup
3731
3732 xpath = ('C,/nsr:ns-instance-config/nsr:nsr[nsr:id="{}"]').format(
3733 msg.nsr_id_ref)
3734 instance = ScalingGroupInstance.from_dict({"id": msg.instance_id})
3735
3736 @asyncio.coroutine
3737 def get_nsr_scaling_group():
3738 results = yield from self._dts.query_read(xpath, rwdts.XactFlag.MERGE)
3739
3740 for result in results:
3741 res = yield from result
3742 nsr_config = res.result
3743
3744 for scaling_group in nsr_config.scaling_group:
3745 if scaling_group.scaling_group_name_ref == msg.scaling_group_name_ref:
3746 break
3747 else:
3748 scaling_group = nsr_config.scaling_group.add()
3749 scaling_group.scaling_group_name_ref = msg.scaling_group_name_ref
3750
3751 return (nsr_config, scaling_group)
3752
3753 @asyncio.coroutine
3754 def update_config(nsr_config):
3755 xml = self._ncclient.convert_to_xml(RwNsrYang, nsr_config)
3756 xml = '<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">{}</config>'.format(xml)
3757 yield from self._ncclient.connect()
3758 yield from self._ncclient.manager.edit_config(target="running", config=xml, default_operation="replace")
3759
3760 @asyncio.coroutine
3761 def scale_out():
3762 nsr_config, scaling_group = yield from get_nsr_scaling_group()
3763 scaling_group.instance.append(instance)
3764 yield from update_config(nsr_config)
3765
3766 @asyncio.coroutine
3767 def scale_in():
3768 nsr_config, scaling_group = yield from get_nsr_scaling_group()
3769 scaling_group.instance.remove(instance)
3770 yield from update_config(nsr_config)
3771
3772 if action == ScalingRpcHandler.ACTION.SCALE_OUT:
3773 self._loop.create_task(scale_out())
3774 else:
3775 self._loop.create_task(scale_in())
3776
3777 # Opdata based calls, disabled for now!
3778 # if action == ScalingRpcHandler.ACTION.SCALE_OUT:
3779 # self.scale_nsr_out(
3780 # msg.nsr_id_ref,
3781 # msg.scaling_group_name_ref,
3782 # msg.instance_id,
3783 # xact)
3784 # else:
3785 # self.scale_nsr_in(
3786 # msg.nsr_id_ref,
3787 # msg.scaling_group_name_ref,
3788 # msg.instance_id)
3789
3790 def nsr_update_cfg(self, nsr_id, msg):
3791 nsr = self._nsrs[nsr_id]
3792 nsr.nsr_cfg_msg= msg
3793
3794 def nsr_instantiate_vl(self, nsr_id, vld):
3795 self.log.debug("NSR {} create VL {}".format(nsr_id, vld))
3796 nsr = self._nsrs[nsr_id]
3797 if nsr.state != NetworkServiceRecordState.RUNNING:
3798 raise NsrVlUpdateError("Cannot perform VL instantiate if NSR is not in running state")
3799
3800 # Not calling in a separate task as this is called from a separate task
3801 yield from nsr.create_vl_instance(vld)
3802
3803 def nsr_terminate_vl(self, nsr_id, vld):
3804 self.log.debug("NSR {} delete VL {}".format(nsr_id, vld.id))
3805 nsr = self._nsrs[nsr_id]
3806 if nsr.state != NetworkServiceRecordState.RUNNING:
3807 raise NsrVlUpdateError("Cannot perform VL terminate if NSR is not in running state")
3808
3809 # Not calling in a separate task as this is called from a separate task
3810 yield from nsr.delete_vl_instance(vld)
3811
3812 def create_nsr(self, nsr_msg, key_pairs=None,restart_mode=False):
3813 """ Create an NSR instance """
3814 if nsr_msg.id in self._nsrs:
3815 msg = "NSR id %s already exists" % nsr_msg.id
3816 self._log.error(msg)
3817 raise NetworkServiceRecordError(msg)
3818
3819 self._log.info("Create NetworkServiceRecord nsr id %s from nsd_id %s",
3820 nsr_msg.id,
3821 nsr_msg.nsd.id)
3822
3823 nsm_plugin = self._ro_plugin_selector.ro_plugin
3824 sdn_account_name = self._cloud_account_handler.get_cloud_account_sdn_name(nsr_msg.cloud_account)
3825
3826 nsr = NetworkServiceRecord(self._dts,
3827 self._log,
3828 self._loop,
3829 self,
3830 nsm_plugin,
3831 nsr_msg,
3832 sdn_account_name,
3833 key_pairs,
3834 restart_mode=restart_mode
3835 )
3836 self._nsrs[nsr_msg.id] = nsr
3837 nsm_plugin.create_nsr(nsr_msg, nsr_msg.nsd, key_pairs)
3838
3839 return nsr
3840
3841 def delete_nsr(self, nsr_id):
3842 """
3843 Delete NSR with the passed nsr id
3844 """
3845 del self._nsrs[nsr_id]
3846
3847 @asyncio.coroutine
3848 def instantiate_ns(self, nsr_id, config_xact):
3849 """ Instantiate an NS instance """
3850 self._log.debug("Instantiating Network service id %s", nsr_id)
3851 if nsr_id not in self._nsrs:
3852 err = "NSR id %s not found " % nsr_id
3853 self._log.error(err)
3854 raise NetworkServiceRecordError(err)
3855
3856 nsr = self._nsrs[nsr_id]
3857 yield from nsr.nsm_plugin.instantiate_ns(nsr, config_xact)
3858
3859 @asyncio.coroutine
3860 def update_vnfr(self, vnfr):
3861 """Create/Update an VNFR """
3862
3863 vnfr_state = self._vnfrs[vnfr.id].state
3864 self._log.debug("Updating VNFR with state %s: vnfr %s", vnfr_state, vnfr)
3865
3866 yield from self._vnfrs[vnfr.id].update_state(vnfr)
3867 nsr = self.find_nsr_for_vnfr(vnfr.id)
3868 yield from nsr.update_state()
3869
3870 def find_nsr_for_vnfr(self, vnfr_id):
3871 """ Find the NSR which )has the passed vnfr id"""
3872 for nsr in list(self.nsrs.values()):
3873 for vnfr in list(nsr.vnfrs.values()):
3874 if vnfr.id == vnfr_id:
3875 return nsr
3876 return None
3877
3878 def delete_vnfr(self, vnfr_id):
3879 """ Delete VNFR with the passed id"""
3880 del self._vnfrs[vnfr_id]
3881
3882 def get_nsd_ref(self, nsd_id):
3883 """ Get network service descriptor for the passed nsd_id
3884 with a reference"""
3885 nsd = self.get_nsd(nsd_id)
3886 nsd.ref()
3887 return nsd
3888
3889 @asyncio.coroutine
3890 def get_nsr_config(self, nsd_id):
3891 xpath = "C,/nsr:ns-instance-config"
3892 results = yield from self._dts.query_read(xpath, rwdts.XactFlag.MERGE)
3893
3894 for result in results:
3895 entry = yield from result
3896 ns_instance_config = entry.result
3897
3898 for nsr in ns_instance_config.nsr:
3899 if nsr.nsd.id == nsd_id:
3900 return nsr
3901
3902 return None
3903
3904 @asyncio.coroutine
3905 def nsd_unref_by_nsr_id(self, nsr_id):
3906 """ Unref the network service descriptor based on NSR id """
3907 self._log.debug("NSR Unref called for Nsr Id:%s", nsr_id)
3908 if nsr_id in self._nsrs:
3909 nsr = self._nsrs[nsr_id]
3910
3911 try:
3912 nsd = self.get_nsd(nsr.nsd_id)
3913 self._log.debug("Releasing ref on NSD %s held by NSR %s - Curr %d",
3914 nsd.id, nsr.id, nsd.ref_count)
3915 nsd.unref()
3916 except NetworkServiceDescriptorError:
3917 # We store a copy of NSD in NSR and the NSD in nsd-catalog
3918 # could be deleted
3919 pass
3920
3921 else:
3922 self._log.error("Cannot find NSR with id %s", nsr_id)
3923 raise NetworkServiceDescriptorUnrefError("No NSR with id" % nsr_id)
3924
3925 @asyncio.coroutine
3926 def nsd_unref(self, nsd_id):
3927 """ Unref the network service descriptor associated with the id """
3928 nsd = self.get_nsd(nsd_id)
3929 nsd.unref()
3930
3931 def get_nsd(self, nsd_id):
3932 """ Get network service descriptor for the passed nsd_id"""
3933 if nsd_id not in self._nsds:
3934 self._log.error("Cannot find NSD id:%s", nsd_id)
3935 raise NetworkServiceDescriptorError("Cannot find NSD id:%s", nsd_id)
3936
3937 return self._nsds[nsd_id]
3938
3939 def create_nsd(self, nsd_msg):
3940 """ Create a network service descriptor """
3941 self._log.debug("Create network service descriptor - %s", nsd_msg)
3942 if nsd_msg.id in self._nsds:
3943 self._log.error("Cannot create NSD %s -NSD ID already exists", nsd_msg)
3944 raise NetworkServiceDescriptorError("NSD already exists-%s", nsd_msg.id)
3945
3946 nsd = NetworkServiceDescriptor(
3947 self._dts,
3948 self._log,
3949 self._loop,
3950 nsd_msg,
3951 self
3952 )
3953 self._nsds[nsd_msg.id] = nsd
3954
3955 return nsd
3956
3957 def update_nsd(self, nsd):
3958 """ update the Network service descriptor """
3959 self._log.debug("Update network service descriptor - %s", nsd)
3960 if nsd.id not in self._nsds:
3961 self._log.debug("No NSD found - creating NSD id = %s", nsd.id)
3962 self.create_nsd(nsd)
3963 else:
3964 self._log.debug("Updating NSD id = %s, nsd = %s", nsd.id, nsd)
3965 self._nsds[nsd.id].update(nsd)
3966
3967 def delete_nsd(self, nsd_id):
3968 """ Delete the Network service descriptor with the passed id """
3969 self._log.debug("Deleting the network service descriptor - %s", nsd_id)
3970 if nsd_id not in self._nsds:
3971 self._log.debug("Delete NSD failed - cannot find nsd-id %s", nsd_id)
3972 raise NetworkServiceDescriptorNotFound("Cannot find %s", nsd_id)
3973
3974 if nsd_id not in self._nsds:
3975 self._log.debug("Cannot delete NSD id %s reference exists %s",
3976 nsd_id,
3977 self._nsds[nsd_id].ref_count)
3978 raise NetworkServiceDescriptorRefCountExists(
3979 "Cannot delete :%s, ref_count:%s",
3980 nsd_id,
3981 self._nsds[nsd_id].ref_count)
3982
3983 del self._nsds[nsd_id]
3984
3985 def get_vnfd_config(self, xact):
3986 vnfd_dts_reg = self._vnfd_dts_handler.regh
3987 for cfg in vnfd_dts_reg.get_xact_elements(xact):
3988 if cfg.id not in self._vnfds:
3989 self.create_vnfd(cfg)
3990
3991 def get_vnfd(self, vnfd_id, xact):
3992 """ Get virtual network function descriptor for the passed vnfd_id"""
3993 if vnfd_id not in self._vnfds:
3994 self._log.error("Cannot find VNFD id:%s", vnfd_id)
3995 self.get_vnfd_config(xact)
3996
3997 if vnfd_id not in self._vnfds:
3998 self._log.error("Cannot find VNFD id:%s", vnfd_id)
3999 raise VnfDescriptorError("Cannot find VNFD id:%s", vnfd_id)
4000
4001 return self._vnfds[vnfd_id]
4002
4003 def create_vnfd(self, vnfd):
4004 """ Create a virtual network function descriptor """
4005 self._log.debug("Create virtual network function descriptor - %s", vnfd)
4006 if vnfd.id in self._vnfds:
4007 self._log.error("Cannot create VNFD %s -VNFD ID already exists", vnfd)
4008 raise VnfDescriptorError("VNFD already exists-%s", vnfd.id)
4009
4010 self._vnfds[vnfd.id] = vnfd
4011 return self._vnfds[vnfd.id]
4012
4013 def update_vnfd(self, vnfd):
4014 """ Update the virtual network function descriptor """
4015 self._log.debug("Update virtual network function descriptor- %s", vnfd)
4016
4017
4018 if vnfd.id not in self._vnfds:
4019 self._log.debug("No VNFD found - creating VNFD id = %s", vnfd.id)
4020 self.create_vnfd(vnfd)
4021 else:
4022 self._log.debug("Updating VNFD id = %s, vnfd = %s", vnfd.id, vnfd)
4023 self._vnfds[vnfd.id] = vnfd
4024
4025 @asyncio.coroutine
4026 def delete_vnfd(self, vnfd_id):
4027 """ Delete the virtual network function descriptor with the passed id """
4028 self._log.debug("Deleting the virtual network function descriptor - %s", vnfd_id)
4029 if vnfd_id not in self._vnfds:
4030 self._log.debug("Delete VNFD failed - cannot find vnfd-id %s", vnfd_id)
4031 raise VnfDescriptorError("Cannot find %s", vnfd_id)
4032
4033 del self._vnfds[vnfd_id]
4034
4035 def nsd_in_use(self, nsd_id):
4036 """ Is the NSD with the passed id in use """
4037 self._log.debug("Is this NSD in use - msg:%s", nsd_id)
4038 if nsd_id in self._nsds:
4039 return self._nsds[nsd_id].in_use()
4040 return False
4041
4042 @asyncio.coroutine
4043 def publish_nsr(self, xact, path, msg):
4044 """ Publish a NSR """
4045 self._log.debug("Publish NSR with path %s, msg %s",
4046 path, msg)
4047 yield from self.nsr_handler.update(xact, path, msg)
4048
4049 @asyncio.coroutine
4050 def unpublish_nsr(self, xact, path):
4051 """ Un Publish an NSR """
4052 self._log.debug("Publishing delete NSR with path %s", path)
4053 yield from self.nsr_handler.delete(path, xact)
4054
4055 def vnfr_is_ready(self, vnfr_id):
4056 """ VNFR with the id is ready """
4057 self._log.debug("VNFR id %s ready", vnfr_id)
4058 if vnfr_id not in self._vnfds:
4059 err = "Did not find VNFR ID with id %s" % vnfr_id
4060 self._log.critical("err")
4061 raise VirtualNetworkFunctionRecordError(err)
4062 self._vnfrs[vnfr_id].is_ready()
4063
4064 @asyncio.coroutine
4065 def get_nsd_refcount(self, nsd_id):
4066 """ Get the nsd_list from this NSM"""
4067
4068 def nsd_refcount_xpath(nsd_id):
4069 """ xpath for ref count entry """
4070 return (NsdRefCountDtsHandler.XPATH +
4071 "[rw-nsr:nsd-id-ref = '{}']").format(nsd_id)
4072
4073 nsd_list = []
4074 if nsd_id is None or nsd_id == "":
4075 for nsd in self._nsds.values():
4076 nsd_msg = RwNsrYang.YangData_Nsr_NsInstanceOpdata_NsdRefCount()
4077 nsd_msg.nsd_id_ref = nsd.id
4078 nsd_msg.instance_ref_count = nsd.ref_count
4079 nsd_list.append((nsd_refcount_xpath(nsd.id), nsd_msg))
4080 elif nsd_id in self._nsds:
4081 nsd_msg = RwNsrYang.YangData_Nsr_NsInstanceOpdata_NsdRefCount()
4082 nsd_msg.nsd_id_ref = self._nsds[nsd_id].id
4083 nsd_msg.instance_ref_count = self._nsds[nsd_id].ref_count
4084 nsd_list.append((nsd_refcount_xpath(nsd_id), nsd_msg))
4085
4086 return nsd_list
4087
4088 @asyncio.coroutine
4089 def terminate_ns(self, nsr_id, xact):
4090 """
4091 Terminate network service for the given NSR Id
4092 """
4093
4094 # Terminate the instances/networks assocaited with this nw service
4095 self._log.debug("Terminating the network service %s", nsr_id)
4096 try :
4097 yield from self._nsrs[nsr_id].terminate()
4098 except Exception as e:
4099 self.log.exception("Failed to terminate NSR[id=%s]", nsr_id)
4100
4101 # Unref the NSD
4102 yield from self.nsd_unref_by_nsr_id(nsr_id)
4103
4104 # Unpublish the NSR record
4105 self._log.debug("Unpublishing the network service %s", nsr_id)
4106 yield from self._nsrs[nsr_id].unpublish(xact)
4107
4108 # Finaly delete the NS instance from this NS Manager
4109 self._log.debug("Deletng the network service %s", nsr_id)
4110 self.delete_nsr(nsr_id)
4111
4112
4113 class NsmRecordsPublisherProxy(object):
4114 """ This class provides a publisher interface that allows plugin objects
4115 to publish NSR/VNFR/VLR"""
4116
4117 def __init__(self, dts, log, loop, nsr_pub_hdlr, vnfr_pub_hdlr, vlr_pub_hdlr):
4118 self._dts = dts
4119 self._log = log
4120 self._loop = loop
4121 self._nsr_pub_hdlr = nsr_pub_hdlr
4122 self._vlr_pub_hdlr = vlr_pub_hdlr
4123 self._vnfr_pub_hdlr = vnfr_pub_hdlr
4124
4125 @asyncio.coroutine
4126 def publish_nsr(self, xact, nsr):
4127 """ Publish an NSR """
4128 path = NetworkServiceRecord.xpath_from_nsr(nsr)
4129 return (yield from self._nsr_pub_hdlr.update(xact, path, nsr))
4130
4131 @asyncio.coroutine
4132 def unpublish_nsr(self, xact, nsr):
4133 """ Unpublish an NSR """
4134 path = NetworkServiceRecord.xpath_from_nsr(nsr)
4135 return (yield from self._nsr_pub_hdlr.delete(xact, path))
4136
4137 @asyncio.coroutine
4138 def publish_vnfr(self, xact, vnfr):
4139 """ Publish an VNFR """
4140 path = VirtualNetworkFunctionRecord.vnfr_xpath(vnfr)
4141 return (yield from self._vnfr_pub_hdlr.update(xact, path, vnfr))
4142
4143 @asyncio.coroutine
4144 def unpublish_vnfr(self, xact, vnfr):
4145 """ Unpublish a VNFR """
4146 path = VirtualNetworkFunctionRecord.vnfr_xpath(vnfr)
4147 return (yield from self._vnfr_pub_hdlr.delete(xact, path))
4148
4149 @asyncio.coroutine
4150 def publish_vlr(self, xact, vlr):
4151 """ Publish a VLR """
4152 path = VirtualLinkRecord.vlr_xpath(vlr)
4153 return (yield from self._vlr_pub_hdlr.update(xact, path, vlr))
4154
4155 @asyncio.coroutine
4156 def unpublish_vlr(self, xact, vlr):
4157 """ Unpublish a VLR """
4158 path = VirtualLinkRecord.vlr_xpath(vlr)
4159 return (yield from self._vlr_pub_hdlr.delete(xact, path))
4160
4161
4162 class ScalingRpcHandler(mano_dts.DtsHandler):
4163 """ The Network service Monitor DTS handler """
4164 SCALE_IN_INPUT_XPATH = "I,/nsr:exec-scale-in"
4165 SCALE_IN_OUTPUT_XPATH = "O,/nsr:exec-scale-in"
4166
4167 SCALE_OUT_INPUT_XPATH = "I,/nsr:exec-scale-out"
4168 SCALE_OUT_OUTPUT_XPATH = "O,/nsr:exec-scale-out"
4169
4170 ACTION = Enum('ACTION', 'SCALE_IN SCALE_OUT')
4171
4172 def __init__(self, log, dts, loop, callback=None):
4173 super().__init__(log, dts, loop)
4174 self.callback = callback
4175 self.last_instance_id = defaultdict(int)
4176
4177 @asyncio.coroutine
4178 def register(self):
4179
4180 @asyncio.coroutine
4181 def on_scale_in_prepare(xact_info, action, ks_path, msg):
4182 assert action == rwdts.QueryAction.RPC
4183
4184 try:
4185 if self.callback:
4186 self.callback(xact_info.xact, msg, self.ACTION.SCALE_IN)
4187
4188 rpc_op = NsrYang.YangOutput_Nsr_ExecScaleIn.from_dict({
4189 "instance_id": msg.instance_id})
4190
4191 xact_info.respond_xpath(
4192 rwdts.XactRspCode.ACK,
4193 self.__class__.SCALE_IN_OUTPUT_XPATH,
4194 rpc_op)
4195
4196 except Exception as e:
4197 self.log.exception(e)
4198 xact_info.respond_xpath(
4199 rwdts.XactRspCode.NACK,
4200 self.__class__.SCALE_IN_OUTPUT_XPATH)
4201
4202 @asyncio.coroutine
4203 def on_scale_out_prepare(xact_info, action, ks_path, msg):
4204 assert action == rwdts.QueryAction.RPC
4205
4206 try:
4207 scaling_group = msg.scaling_group_name_ref
4208 if not msg.instance_id:
4209 last_instance_id = self.last_instance_id[scale_group]
4210 msg.instance_id = last_instance_id + 1
4211 self.last_instance_id[scale_group] += 1
4212
4213 if self.callback:
4214 self.callback(xact_info.xact, msg, self.ACTION.SCALE_OUT)
4215
4216 rpc_op = NsrYang.YangOutput_Nsr_ExecScaleOut.from_dict({
4217 "instance_id": msg.instance_id})
4218
4219 xact_info.respond_xpath(
4220 rwdts.XactRspCode.ACK,
4221 self.__class__.SCALE_OUT_OUTPUT_XPATH,
4222 rpc_op)
4223
4224 except Exception as e:
4225 self.log.exception(e)
4226 xact_info.respond_xpath(
4227 rwdts.XactRspCode.NACK,
4228 self.__class__.SCALE_OUT_OUTPUT_XPATH)
4229
4230 scale_in_hdl = rift.tasklets.DTS.RegistrationHandler(
4231 on_prepare=on_scale_in_prepare)
4232 scale_out_hdl = rift.tasklets.DTS.RegistrationHandler(
4233 on_prepare=on_scale_out_prepare)
4234
4235 with self.dts.group_create() as group:
4236 group.register(
4237 xpath=self.__class__.SCALE_IN_INPUT_XPATH,
4238 handler=scale_in_hdl,
4239 flags=rwdts.Flag.PUBLISHER)
4240 group.register(
4241 xpath=self.__class__.SCALE_OUT_INPUT_XPATH,
4242 handler=scale_out_hdl,
4243 flags=rwdts.Flag.PUBLISHER)
4244
4245
4246 class NsmTasklet(rift.tasklets.Tasklet):
4247 """
4248 The network service manager tasklet
4249 """
4250 def __init__(self, *args, **kwargs):
4251 super(NsmTasklet, self).__init__(*args, **kwargs)
4252 self.rwlog.set_category("rw-mano-log")
4253 self.rwlog.set_subcategory("nsm")
4254
4255 self._dts = None
4256 self._nsm = None
4257
4258 self._ro_plugin_selector = None
4259 self._vnffgmgr = None
4260
4261 self._nsr_handler = None
4262 self._vnfr_pub_handler = None
4263 self._vlr_pub_handler = None
4264 self._vnfd_pub_handler = None
4265 self._scale_cfg_handler = None
4266
4267 self._records_publisher_proxy = None
4268
4269 def start(self):
4270 """ The task start callback """
4271 super(NsmTasklet, self).start()
4272 self.log.info("Starting NsmTasklet")
4273
4274 self.log.debug("Registering with dts")
4275 self._dts = rift.tasklets.DTS(self.tasklet_info,
4276 RwNsmYang.get_schema(),
4277 self.loop,
4278 self.on_dts_state_change)
4279
4280 self.log.debug("Created DTS Api GI Object: %s", self._dts)
4281
4282 def stop(self):
4283 try:
4284 self._dts.deinit()
4285 except Exception:
4286 print("Caught Exception in NSM stop:", sys.exc_info()[0])
4287 raise
4288
4289 def on_instance_started(self):
4290 """ Task instance started callback """
4291 self.log.debug("Got instance started callback")
4292
4293 @asyncio.coroutine
4294 def init(self):
4295 """ Task init callback """
4296 self.log.debug("Got instance started callback")
4297
4298 self.log.debug("creating config account handler")
4299
4300 self._nsr_pub_handler = publisher.NsrOpDataDtsHandler(self._dts, self.log, self.loop)
4301 yield from self._nsr_pub_handler.register()
4302
4303 self._vnfr_pub_handler = publisher.VnfrPublisherDtsHandler(self._dts, self.log, self.loop)
4304 yield from self._vnfr_pub_handler.register()
4305
4306 self._vlr_pub_handler = publisher.VlrPublisherDtsHandler(self._dts, self.log, self.loop)
4307 yield from self._vlr_pub_handler.register()
4308
4309 manifest = self.tasklet_info.get_pb_manifest()
4310 use_ssl = manifest.bootstrap_phase.rwsecurity.use_ssl
4311 ssl_cert = manifest.bootstrap_phase.rwsecurity.cert
4312 ssl_key = manifest.bootstrap_phase.rwsecurity.key
4313
4314 self._vnfd_pub_handler = publisher.VnfdPublisher(use_ssl, ssl_cert, ssl_key, self.loop)
4315
4316 self._records_publisher_proxy = NsmRecordsPublisherProxy(
4317 self._dts,
4318 self.log,
4319 self.loop,
4320 self._nsr_pub_handler,
4321 self._vnfr_pub_handler,
4322 self._vlr_pub_handler,
4323 )
4324
4325 # Register the NSM to receive the nsm plugin
4326 # when cloud account is configured
4327 self._ro_plugin_selector = cloud.ROAccountPluginSelector(
4328 self._dts,
4329 self.log,
4330 self.loop,
4331 self._records_publisher_proxy,
4332 )
4333 yield from self._ro_plugin_selector.register()
4334
4335 self._cloud_account_handler = cloud.CloudAccountConfigSubscriber(
4336 self._log,
4337 self._dts,
4338 self.log_hdl)
4339
4340 yield from self._cloud_account_handler.register()
4341
4342 self._vnffgmgr = rwvnffgmgr.VnffgMgr(self._dts, self.log, self.log_hdl, self.loop)
4343 yield from self._vnffgmgr.register()
4344
4345 self._nsm = NsManager(
4346 self._dts,
4347 self.log,
4348 self.loop,
4349 self._nsr_pub_handler,
4350 self._vnfr_pub_handler,
4351 self._vlr_pub_handler,
4352 self._ro_plugin_selector,
4353 self._vnffgmgr,
4354 self._vnfd_pub_handler,
4355 self._cloud_account_handler
4356 )
4357
4358 yield from self._nsm.register()
4359
4360 @asyncio.coroutine
4361 def run(self):
4362 """ Task run callback """
4363 pass
4364
4365 @asyncio.coroutine
4366 def on_dts_state_change(self, state):
4367 """Take action according to current dts state to transition
4368 application into the corresponding application state
4369
4370 Arguments
4371 state - current dts state
4372 """
4373 switch = {
4374 rwdts.State.INIT: rwdts.State.REGN_COMPLETE,
4375 rwdts.State.CONFIG: rwdts.State.RUN,
4376 }
4377
4378 handlers = {
4379 rwdts.State.INIT: self.init,
4380 rwdts.State.RUN: self.run,
4381 }
4382
4383 # Transition application to next state
4384 handler = handlers.get(state, None)
4385 if handler is not None:
4386 yield from handler()
4387
4388 # Transition dts to next state
4389 next_state = switch.get(state, None)
4390 if next_state is not None:
4391 self.log.debug("Changing state to %s", next_state)
4392 self._dts.handle.set_state(next_state)