Avoid database growth by cleaning old vim_actions
[osm/RO.git] / osm_ro / nfvo.py
1 # -*- coding: utf-8 -*-
2
3 ##
4 # Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U.
5 # This file is part of openmano
6 # All Rights Reserved.
7 #
8 # Licensed under the Apache License, Version 2.0 (the "License"); you may
9 # not use this file except in compliance with the License. You may obtain
10 # a copy of the License at
11 #
12 # http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17 # License for the specific language governing permissions and limitations
18 # under the License.
19 #
20 # For those usages not covered by the Apache License, Version 2.0 please
21 # contact with: nfvlabs@tid.es
22 ##
23
24 '''
25 NFVO engine, implementing all the methods for the creation, deletion and management of vnfs, scenarios and instances
26 '''
27 __author__="Alfonso Tierno, Gerardo Garcia, Pablo Montes"
28 __date__ ="$16-sep-2014 22:05:01$"
29
30 # import imp
31 # import json
32 import yaml
33 import utils
34 import vim_thread
35 from db_base import HTTP_Unauthorized, HTTP_Bad_Request, HTTP_Internal_Server_Error, HTTP_Not_Found,\
36 HTTP_Conflict, HTTP_Method_Not_Allowed
37 import console_proxy_thread as cli
38 import vimconn
39 import logging
40 import collections
41 from uuid import uuid4
42 from db_base import db_base_Exception
43
44 import nfvo_db
45 from threading import Lock
46 import time as t
47 from lib_osm_openvim import ovim as ovim_module
48 from lib_osm_openvim.ovim import ovimException
49 from Crypto.PublicKey import RSA
50
51 import osm_im.vnfd as vnfd_catalog
52 import osm_im.nsd as nsd_catalog
53 from pyangbind.lib.serialise import pybindJSONDecoder
54 from itertools import chain
55
56 global global_config
57 global vimconn_imported
58 global logger
59 global default_volume_size
60 default_volume_size = '5' #size in GB
61 global ovim
62 ovim = None
63 global_config = None
64
65 vimconn_imported = {} # dictionary with VIM type as key, loaded module as value
66 vim_threads = {"running":{}, "deleting": {}, "names": []} # threads running for attached-VIMs
67 vim_persistent_info = {}
68 logger = logging.getLogger('openmano.nfvo')
69 task_lock = Lock()
70 last_task_id = 0.0
71 db = None
72 db_lock = Lock()
73
74 class NfvoException(Exception):
75 def __init__(self, message, http_code):
76 self.http_code = http_code
77 Exception.__init__(self, message)
78
79
80 def get_task_id():
81 global last_task_id
82 task_id = t.time()
83 if task_id <= last_task_id:
84 task_id = last_task_id + 0.000001
85 last_task_id = task_id
86 return "ACTION-{:.6f}".format(task_id)
87 # return (t.strftime("%Y%m%dT%H%M%S.{}%Z", t.localtime(task_id))).format(int((task_id % 1)*1e6))
88
89
90 def new_task(name, params, depends=None):
91 """Deprected!!!"""
92 task_id = get_task_id()
93 task = {"status": "enqueued", "id": task_id, "name": name, "params": params}
94 if depends:
95 task["depends"] = depends
96 return task
97
98
99 def is_task_id(id):
100 return True if id[:5] == "TASK-" else False
101
102
103 def get_non_used_vim_name(datacenter_name, datacenter_id, tenant_name, tenant_id):
104 name = datacenter_name[:16]
105 if name not in vim_threads["names"]:
106 vim_threads["names"].append(name)
107 return name
108 name = datacenter_name[:16] + "." + tenant_name[:16]
109 if name not in vim_threads["names"]:
110 vim_threads["names"].append(name)
111 return name
112 name = datacenter_id + "-" + tenant_id
113 vim_threads["names"].append(name)
114 return name
115
116
117 def start_service(mydb):
118 global db, global_config
119 db = nfvo_db.nfvo_db()
120 db.connect(global_config['db_host'], global_config['db_user'], global_config['db_passwd'], global_config['db_name'])
121 global ovim
122
123 # Initialize openvim for SDN control
124 # TODO: Avoid static configuration by adding new parameters to openmanod.cfg
125 # TODO: review ovim.py to delete not needed configuration
126 ovim_configuration = {
127 'logger_name': 'openmano.ovim',
128 'network_vlan_range_start': 1000,
129 'network_vlan_range_end': 4096,
130 'db_name': global_config["db_ovim_name"],
131 'db_host': global_config["db_ovim_host"],
132 'db_user': global_config["db_ovim_user"],
133 'db_passwd': global_config["db_ovim_passwd"],
134 'bridge_ifaces': {},
135 'mode': 'normal',
136 'network_type': 'bridge',
137 #TODO: log_level_of should not be needed. To be modified in ovim
138 'log_level_of': 'DEBUG'
139 }
140 try:
141 # starts ovim library
142 ovim = ovim_module.ovim(ovim_configuration)
143 ovim.start_service()
144
145 #delete old unneeded vim_actions
146 clean_db(mydb)
147
148 # starts vim_threads
149 from_= 'tenants_datacenters as td join datacenters as d on td.datacenter_id=d.uuid join '\
150 'datacenter_tenants as dt on td.datacenter_tenant_id=dt.uuid'
151 select_ = ('type', 'd.config as config', 'd.uuid as datacenter_id', 'vim_url', 'vim_url_admin',
152 'd.name as datacenter_name', 'dt.uuid as datacenter_tenant_id',
153 'dt.vim_tenant_name as vim_tenant_name', 'dt.vim_tenant_id as vim_tenant_id',
154 'user', 'passwd', 'dt.config as dt_config', 'nfvo_tenant_id')
155 vims = mydb.get_rows(FROM=from_, SELECT=select_)
156 for vim in vims:
157 extra={'datacenter_tenant_id': vim.get('datacenter_tenant_id'),
158 'datacenter_id': vim.get('datacenter_id')}
159 if vim["config"]:
160 extra.update(yaml.load(vim["config"]))
161 if vim.get('dt_config'):
162 extra.update(yaml.load(vim["dt_config"]))
163 if vim["type"] not in vimconn_imported:
164 module_info=None
165 try:
166 module = "vimconn_" + vim["type"]
167 pkg = __import__("osm_ro." + module)
168 vim_conn = getattr(pkg, module)
169 # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]])
170 # vim_conn = imp.load_module(vim["type"], *module_info)
171 vimconn_imported[vim["type"]] = vim_conn
172 except (IOError, ImportError) as e:
173 # if module_info and module_info[0]:
174 # file.close(module_info[0])
175 raise NfvoException("Unknown vim type '{}'. Cannot open file '{}.py'; {}: {}".format(
176 vim["type"], module, type(e).__name__, str(e)), HTTP_Bad_Request)
177
178 thread_id = vim['datacenter_tenant_id']
179 vim_persistent_info[thread_id] = {}
180 try:
181 #if not tenant:
182 # return -HTTP_Bad_Request, "You must provide a valid tenant name or uuid for VIM %s" % ( vim["type"])
183 myvim = vimconn_imported[ vim["type"] ].vimconnector(
184 uuid=vim['datacenter_id'], name=vim['datacenter_name'],
185 tenant_id=vim['vim_tenant_id'], tenant_name=vim['vim_tenant_name'],
186 url=vim['vim_url'], url_admin=vim['vim_url_admin'],
187 user=vim['user'], passwd=vim['passwd'],
188 config=extra, persistent_info=vim_persistent_info[thread_id]
189 )
190 except vimconn.vimconnException as e:
191 myvim = e
192 logger.error("Cannot launch thread for VIM {} '{}': {}".format(vim['datacenter_name'],
193 vim['datacenter_id'], e))
194 except Exception as e:
195 raise NfvoException("Error at VIM {}; {}: {}".format(vim["type"], type(e).__name__, e),
196 HTTP_Internal_Server_Error)
197 thread_name = get_non_used_vim_name(vim['datacenter_name'], vim['vim_tenant_id'], vim['vim_tenant_name'],
198 vim['vim_tenant_id'])
199 new_thread = vim_thread.vim_thread(myvim, task_lock, thread_name, vim['datacenter_name'],
200 vim['datacenter_tenant_id'], db=db, db_lock=db_lock, ovim=ovim)
201 new_thread.start()
202 vim_threads["running"][thread_id] = new_thread
203 except db_base_Exception as e:
204 raise NfvoException(str(e) + " at nfvo.get_vim", e.http_code)
205 except ovim_module.ovimException as e:
206 message = str(e)
207 if message[:22] == "DATABASE wrong version":
208 message = "DATABASE wrong version of lib_osm_openvim {msg} -d{dbname} -u{dbuser} -p{dbpass} {ver}' "\
209 "at host {dbhost}".format(
210 msg=message[22:-3], dbname=global_config["db_ovim_name"],
211 dbuser=global_config["db_ovim_user"], dbpass=global_config["db_ovim_passwd"],
212 ver=message[-3:-1], dbhost=global_config["db_ovim_host"])
213 raise NfvoException(message, HTTP_Bad_Request)
214
215
216 def stop_service():
217 global ovim, global_config
218 if ovim:
219 ovim.stop_service()
220 for thread_id,thread in vim_threads["running"].items():
221 thread.insert_task("exit")
222 vim_threads["deleting"][thread_id] = thread
223 vim_threads["running"] = {}
224 if global_config and global_config.get("console_thread"):
225 for thread in global_config["console_thread"]:
226 thread.terminate = True
227
228 def get_version():
229 return ("openmanod version {} {}\n(c) Copyright Telefonica".format(global_config["version"],
230 global_config["version_date"] ))
231
232 def clean_db(mydb):
233 """
234 Clean unused or old entries at database to avoid unlimited growing
235 :param mydb: database connector
236 :return: None
237 """
238 # get and delete unused vim_actions: all elements deleted, one week before, instance not present
239 now = t.time()-3600*24*7
240 instance_action_id = None
241 nb_deleted = 0
242 while True:
243 actions_to_delete = mydb.get_rows(
244 SELECT=("item", "item_id", "instance_action_id"),
245 FROM="vim_actions as va join instance_actions as ia on va.instance_action_id=ia.uuid "
246 "left join instance_scenarios as i on ia.instance_id=i.uuid",
247 WHERE={"va.action": "DELETE", "va.modified_at<": now, "i.uuid": None,
248 "va.status": ("DONE", "SUPERSEDED")},
249 LIMIT=100
250 )
251 for to_delete in actions_to_delete:
252 mydb.delete_row(FROM="vim_actions", WHERE=to_delete)
253 if instance_action_id != to_delete["instance_action_id"]:
254 instance_action_id = to_delete["instance_action_id"]
255 mydb.delete_row(FROM="instance_actions", WHERE={"uuid": instance_action_id})
256 nb_deleted += len(actions_to_delete)
257 if len(actions_to_delete) < 100:
258 break
259 if nb_deleted:
260 logger.debug("Removed {} unused vim_actions".format(nb_deleted))
261
262
263
264 def get_flavorlist(mydb, vnf_id, nfvo_tenant=None):
265 '''Obtain flavorList
266 return result, content:
267 <0, error_text upon error
268 nb_records, flavor_list on success
269 '''
270 WHERE_dict={}
271 WHERE_dict['vnf_id'] = vnf_id
272 if nfvo_tenant is not None:
273 WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
274
275 #result, content = mydb.get_table(FROM='vms join vnfs on vms.vnf_id = vnfs.uuid',SELECT=('uuid'),WHERE=WHERE_dict )
276 #result, content = mydb.get_table(FROM='vms',SELECT=('vim_flavor_id',),WHERE=WHERE_dict )
277 flavors = mydb.get_rows(FROM='vms join flavors on vms.flavor_id=flavors.uuid',SELECT=('flavor_id',),WHERE=WHERE_dict )
278 #print "get_flavor_list result:", result
279 #print "get_flavor_list content:", content
280 flavorList=[]
281 for flavor in flavors:
282 flavorList.append(flavor['flavor_id'])
283 return flavorList
284
285
286 def get_imagelist(mydb, vnf_id, nfvo_tenant=None):
287 '''Obtain imageList
288 return result, content:
289 <0, error_text upon error
290 nb_records, flavor_list on success
291 '''
292 WHERE_dict={}
293 WHERE_dict['vnf_id'] = vnf_id
294 if nfvo_tenant is not None:
295 WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
296
297 #result, content = mydb.get_table(FROM='vms join vnfs on vms-vnf_id = vnfs.uuid',SELECT=('uuid'),WHERE=WHERE_dict )
298 images = mydb.get_rows(FROM='vms join images on vms.image_id=images.uuid',SELECT=('image_id',),WHERE=WHERE_dict )
299 imageList=[]
300 for image in images:
301 imageList.append(image['image_id'])
302 return imageList
303
304
305 def get_vim(mydb, nfvo_tenant=None, datacenter_id=None, datacenter_name=None, datacenter_tenant_id=None,
306 vim_tenant=None, vim_tenant_name=None, vim_user=None, vim_passwd=None):
307 '''Obtain a dictionary of VIM (datacenter) classes with some of the input parameters
308 return dictionary with {datacenter_id: vim_class, ... }. vim_class contain:
309 'nfvo_tenant_id','datacenter_id','vim_tenant_id','vim_url','vim_url_admin','datacenter_name','type','user','passwd'
310 raise exception upon error
311 '''
312 WHERE_dict={}
313 if nfvo_tenant is not None: WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
314 if datacenter_id is not None: WHERE_dict['d.uuid'] = datacenter_id
315 if datacenter_tenant_id is not None: WHERE_dict['datacenter_tenant_id'] = datacenter_tenant_id
316 if datacenter_name is not None: WHERE_dict['d.name'] = datacenter_name
317 if vim_tenant is not None: WHERE_dict['dt.vim_tenant_id'] = vim_tenant
318 if vim_tenant_name is not None: WHERE_dict['vim_tenant_name'] = vim_tenant_name
319 if nfvo_tenant or vim_tenant or vim_tenant_name or datacenter_tenant_id:
320 from_= 'tenants_datacenters as td join datacenters as d on td.datacenter_id=d.uuid join datacenter_tenants as dt on td.datacenter_tenant_id=dt.uuid'
321 select_ = ('type','d.config as config','d.uuid as datacenter_id', 'vim_url', 'vim_url_admin', 'd.name as datacenter_name',
322 'dt.uuid as datacenter_tenant_id','dt.vim_tenant_name as vim_tenant_name','dt.vim_tenant_id as vim_tenant_id',
323 'user','passwd', 'dt.config as dt_config')
324 else:
325 from_ = 'datacenters as d'
326 select_ = ('type','config','d.uuid as datacenter_id', 'vim_url', 'vim_url_admin', 'd.name as datacenter_name')
327 try:
328 vims = mydb.get_rows(FROM=from_, SELECT=select_, WHERE=WHERE_dict )
329 vim_dict={}
330 for vim in vims:
331 extra={'datacenter_tenant_id': vim.get('datacenter_tenant_id'),
332 'datacenter_id': vim.get('datacenter_id')}
333 if vim["config"]:
334 extra.update(yaml.load(vim["config"]))
335 if vim.get('dt_config'):
336 extra.update(yaml.load(vim["dt_config"]))
337 if vim["type"] not in vimconn_imported:
338 module_info=None
339 try:
340 module = "vimconn_" + vim["type"]
341 pkg = __import__("osm_ro." + module)
342 vim_conn = getattr(pkg, module)
343 # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]])
344 # vim_conn = imp.load_module(vim["type"], *module_info)
345 vimconn_imported[vim["type"]] = vim_conn
346 except (IOError, ImportError) as e:
347 # if module_info and module_info[0]:
348 # file.close(module_info[0])
349 raise NfvoException("Unknown vim type '{}'. Can not open file '{}.py'; {}: {}".format(
350 vim["type"], module, type(e).__name__, str(e)), HTTP_Bad_Request)
351
352 try:
353 if 'datacenter_tenant_id' in vim:
354 thread_id = vim["datacenter_tenant_id"]
355 if thread_id not in vim_persistent_info:
356 vim_persistent_info[thread_id] = {}
357 persistent_info = vim_persistent_info[thread_id]
358 else:
359 persistent_info = {}
360 #if not tenant:
361 # return -HTTP_Bad_Request, "You must provide a valid tenant name or uuid for VIM %s" % ( vim["type"])
362 vim_dict[ vim['datacenter_id'] ] = vimconn_imported[ vim["type"] ].vimconnector(
363 uuid=vim['datacenter_id'], name=vim['datacenter_name'],
364 tenant_id=vim.get('vim_tenant_id',vim_tenant),
365 tenant_name=vim.get('vim_tenant_name',vim_tenant_name),
366 url=vim['vim_url'], url_admin=vim['vim_url_admin'],
367 user=vim.get('user',vim_user), passwd=vim.get('passwd',vim_passwd),
368 config=extra, persistent_info=persistent_info
369 )
370 except Exception as e:
371 raise NfvoException("Error at VIM {}; {}: {}".format(vim["type"], type(e).__name__, str(e)), HTTP_Internal_Server_Error)
372 return vim_dict
373 except db_base_Exception as e:
374 raise NfvoException(str(e) + " at nfvo.get_vim", e.http_code)
375
376
377 def rollback(mydb, vims, rollback_list):
378 undeleted_items=[]
379 #delete things by reverse order
380 for i in range(len(rollback_list)-1, -1, -1):
381 item = rollback_list[i]
382 if item["where"]=="vim":
383 if item["vim_id"] not in vims:
384 continue
385 if is_task_id(item["uuid"]):
386 continue
387 vim = vims[item["vim_id"]]
388 try:
389 if item["what"]=="image":
390 vim.delete_image(item["uuid"])
391 mydb.delete_row(FROM="datacenters_images", WHERE={"datacenter_vim_id": vim["id"], "vim_id":item["uuid"]})
392 elif item["what"]=="flavor":
393 vim.delete_flavor(item["uuid"])
394 mydb.delete_row(FROM="datacenters_flavors", WHERE={"datacenter_id": vim["id"], "vim_id":item["uuid"]})
395 elif item["what"]=="network":
396 vim.delete_network(item["uuid"])
397 elif item["what"]=="vm":
398 vim.delete_vminstance(item["uuid"])
399 except vimconn.vimconnException as e:
400 logger.error("Error in rollback. Not possible to delete VIM %s '%s'. Message: %s", item['what'], item["uuid"], str(e))
401 undeleted_items.append("{} {} from VIM {}".format(item['what'], item["uuid"], vim["name"]))
402 except db_base_Exception as e:
403 logger.error("Error in rollback. Not possible to delete %s '%s' from DB.datacenters Message: %s", item['what'], item["uuid"], str(e))
404
405 else: # where==mano
406 try:
407 if item["what"]=="image":
408 mydb.delete_row(FROM="images", WHERE={"uuid": item["uuid"]})
409 elif item["what"]=="flavor":
410 mydb.delete_row(FROM="flavors", WHERE={"uuid": item["uuid"]})
411 except db_base_Exception as e:
412 logger.error("Error in rollback. Not possible to delete %s '%s' from DB. Message: %s", item['what'], item["uuid"], str(e))
413 undeleted_items.append("{} '{}'".format(item['what'], item["uuid"]))
414 if len(undeleted_items)==0:
415 return True," Rollback successful."
416 else:
417 return False," Rollback fails to delete: " + str(undeleted_items)
418
419
420 def check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=1):
421 global global_config
422 #create a dictionary with vnfc-name: vnfc:interface-list key:values pairs
423 vnfc_interfaces={}
424 for vnfc in vnf_descriptor["vnf"]["VNFC"]:
425 name_dict = {}
426 #dataplane interfaces
427 for numa in vnfc.get("numas",() ):
428 for interface in numa.get("interfaces",()):
429 if interface["name"] in name_dict:
430 raise NfvoException(
431 "Error at vnf:VNFC[name:'{}']:numas:interfaces:name, interface name '{}' already used in this VNFC".format(
432 vnfc["name"], interface["name"]),
433 HTTP_Bad_Request)
434 name_dict[ interface["name"] ] = "underlay"
435 #bridge interfaces
436 for interface in vnfc.get("bridge-ifaces",() ):
437 if interface["name"] in name_dict:
438 raise NfvoException(
439 "Error at vnf:VNFC[name:'{}']:bridge-ifaces:name, interface name '{}' already used in this VNFC".format(
440 vnfc["name"], interface["name"]),
441 HTTP_Bad_Request)
442 name_dict[ interface["name"] ] = "overlay"
443 vnfc_interfaces[ vnfc["name"] ] = name_dict
444 # check bood-data info
445 # if "boot-data" in vnfc:
446 # # check that user-data is incompatible with users and config-files
447 # if (vnfc["boot-data"].get("users") or vnfc["boot-data"].get("config-files")) and vnfc["boot-data"].get("user-data"):
448 # raise NfvoException(
449 # "Error at vnf:VNFC:boot-data, fields 'users' and 'config-files' are not compatible with 'user-data'",
450 # HTTP_Bad_Request)
451
452 #check if the info in external_connections matches with the one in the vnfcs
453 name_list=[]
454 for external_connection in vnf_descriptor["vnf"].get("external-connections",() ):
455 if external_connection["name"] in name_list:
456 raise NfvoException(
457 "Error at vnf:external-connections:name, value '{}' already used as an external-connection".format(
458 external_connection["name"]),
459 HTTP_Bad_Request)
460 name_list.append(external_connection["name"])
461 if external_connection["VNFC"] not in vnfc_interfaces:
462 raise NfvoException(
463 "Error at vnf:external-connections[name:'{}']:VNFC, value '{}' does not match any VNFC".format(
464 external_connection["name"], external_connection["VNFC"]),
465 HTTP_Bad_Request)
466
467 if external_connection["local_iface_name"] not in vnfc_interfaces[ external_connection["VNFC"] ]:
468 raise NfvoException(
469 "Error at vnf:external-connections[name:'{}']:local_iface_name, value '{}' does not match any interface of this VNFC".format(
470 external_connection["name"],
471 external_connection["local_iface_name"]),
472 HTTP_Bad_Request )
473
474 #check if the info in internal_connections matches with the one in the vnfcs
475 name_list=[]
476 for internal_connection in vnf_descriptor["vnf"].get("internal-connections",() ):
477 if internal_connection["name"] in name_list:
478 raise NfvoException(
479 "Error at vnf:internal-connections:name, value '%s' already used as an internal-connection".format(
480 internal_connection["name"]),
481 HTTP_Bad_Request)
482 name_list.append(internal_connection["name"])
483 #We should check that internal-connections of type "ptp" have only 2 elements
484
485 if len(internal_connection["elements"])>2 and (internal_connection.get("type") == "ptp" or internal_connection.get("type") == "e-line"):
486 raise NfvoException(
487 "Error at 'vnf:internal-connections[name:'{}']:elements', size must be 2 for a '{}' type. Consider change it to '{}' type".format(
488 internal_connection["name"],
489 'ptp' if vnf_descriptor_version==1 else 'e-line',
490 'data' if vnf_descriptor_version==1 else "e-lan"),
491 HTTP_Bad_Request)
492 for port in internal_connection["elements"]:
493 vnf = port["VNFC"]
494 iface = port["local_iface_name"]
495 if vnf not in vnfc_interfaces:
496 raise NfvoException(
497 "Error at vnf:internal-connections[name:'{}']:elements[]:VNFC, value '{}' does not match any VNFC".format(
498 internal_connection["name"], vnf),
499 HTTP_Bad_Request)
500 if iface not in vnfc_interfaces[ vnf ]:
501 raise NfvoException(
502 "Error at vnf:internal-connections[name:'{}']:elements[]:local_iface_name, value '{}' does not match any interface of this VNFC".format(
503 internal_connection["name"], iface),
504 HTTP_Bad_Request)
505 return -HTTP_Bad_Request,
506 if vnf_descriptor_version==1 and "type" not in internal_connection:
507 if vnfc_interfaces[vnf][iface] == "overlay":
508 internal_connection["type"] = "bridge"
509 else:
510 internal_connection["type"] = "data"
511 if vnf_descriptor_version==2 and "implementation" not in internal_connection:
512 if vnfc_interfaces[vnf][iface] == "overlay":
513 internal_connection["implementation"] = "overlay"
514 else:
515 internal_connection["implementation"] = "underlay"
516 if (internal_connection.get("type") == "data" or internal_connection.get("type") == "ptp" or \
517 internal_connection.get("implementation") == "underlay") and vnfc_interfaces[vnf][iface] == "overlay":
518 raise NfvoException(
519 "Error at vnf:internal-connections[name:'{}']:elements[]:{}, interface of type {} connected to an {} network".format(
520 internal_connection["name"],
521 iface, 'bridge' if vnf_descriptor_version==1 else 'overlay',
522 'data' if vnf_descriptor_version==1 else 'underlay'),
523 HTTP_Bad_Request)
524 if (internal_connection.get("type") == "bridge" or internal_connection.get("implementation") == "overlay") and \
525 vnfc_interfaces[vnf][iface] == "underlay":
526 raise NfvoException(
527 "Error at vnf:internal-connections[name:'{}']:elements[]:{}, interface of type {} connected to an {} network".format(
528 internal_connection["name"], iface,
529 'data' if vnf_descriptor_version==1 else 'underlay',
530 'bridge' if vnf_descriptor_version==1 else 'overlay'),
531 HTTP_Bad_Request)
532
533
534 def create_or_use_image(mydb, vims, image_dict, rollback_list, only_create_at_vim=False, return_on_error=None):
535 #look if image exist
536 if only_create_at_vim:
537 image_mano_id = image_dict['uuid']
538 if return_on_error == None:
539 return_on_error = True
540 else:
541 if image_dict['location']:
542 images = mydb.get_rows(FROM="images", WHERE={'location':image_dict['location'], 'metadata':image_dict['metadata']})
543 else:
544 images = mydb.get_rows(FROM="images", WHERE={'universal_name':image_dict['universal_name'], 'checksum':image_dict['checksum']})
545 if len(images)>=1:
546 image_mano_id = images[0]['uuid']
547 else:
548 #create image in MANO DB
549 temp_image_dict={'name':image_dict['name'], 'description':image_dict.get('description',None),
550 'location':image_dict['location'], 'metadata':image_dict.get('metadata',None),
551 'universal_name':image_dict['universal_name'] , 'checksum':image_dict['checksum']
552 }
553 #temp_image_dict['location'] = image_dict.get('new_location') if image_dict['location'] is None
554 image_mano_id = mydb.new_row('images', temp_image_dict, add_uuid=True)
555 rollback_list.append({"where":"mano", "what":"image","uuid":image_mano_id})
556 #create image at every vim
557 for vim_id,vim in vims.iteritems():
558 datacenter_vim_id = vim["config"]["datacenter_tenant_id"]
559 image_created="false"
560 #look at database
561 image_db = mydb.get_rows(FROM="datacenters_images",
562 WHERE={'datacenter_vim_id': datacenter_vim_id, 'image_id': image_mano_id})
563 #look at VIM if this image exist
564 try:
565 if image_dict['location'] is not None:
566 image_vim_id = vim.get_image_id_from_path(image_dict['location'])
567 else:
568 filter_dict = {}
569 filter_dict['name'] = image_dict['universal_name']
570 if image_dict.get('checksum') != None:
571 filter_dict['checksum'] = image_dict['checksum']
572 #logger.debug('>>>>>>>> Filter dict: %s', str(filter_dict))
573 vim_images = vim.get_image_list(filter_dict)
574 #logger.debug('>>>>>>>> VIM images: %s', str(vim_images))
575 if len(vim_images) > 1:
576 raise vimconn.vimconnException("More than one candidate VIM image found for filter: {}".format(str(filter_dict)), HTTP_Conflict)
577 elif len(vim_images) == 0:
578 raise vimconn.vimconnNotFoundException("Image not found at VIM with filter: '{}'".format(str(filter_dict)))
579 else:
580 #logger.debug('>>>>>>>> VIM image 0: %s', str(vim_images[0]))
581 image_vim_id = vim_images[0]['id']
582
583 except vimconn.vimconnNotFoundException as e:
584 #Create the image in VIM only if image_dict['location'] or image_dict['new_location'] is not None
585 try:
586 #image_dict['location']=image_dict.get('new_location') if image_dict['location'] is None
587 if image_dict['location']:
588 image_vim_id = vim.new_image(image_dict)
589 rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"image","uuid":image_vim_id})
590 image_created="true"
591 else:
592 #If we reach this point, then the image has image name, and optionally checksum, and could not be found
593 raise vimconn.vimconnException(str(e))
594 except vimconn.vimconnException as e:
595 if return_on_error:
596 logger.error("Error creating image at VIM '%s': %s", vim["name"], str(e))
597 raise
598 image_vim_id = None
599 logger.warn("Error creating image at VIM '%s': %s", vim["name"], str(e))
600 continue
601 except vimconn.vimconnException as e:
602 if return_on_error:
603 logger.error("Error contacting VIM to know if the image exists at VIM: %s", str(e))
604 raise
605 logger.warn("Error contacting VIM to know if the image exists at VIM: %s", str(e))
606 image_vim_id = None
607 continue
608 #if we reach here, the image has been created or existed
609 if len(image_db)==0:
610 #add new vim_id at datacenters_images
611 mydb.new_row('datacenters_images', {'datacenter_vim_id': datacenter_vim_id,
612 'image_id':image_mano_id,
613 'vim_id': image_vim_id,
614 'created':image_created})
615 elif image_db[0]["vim_id"]!=image_vim_id:
616 #modify existing vim_id at datacenters_images
617 mydb.update_rows('datacenters_images', UPDATE={'vim_id':image_vim_id}, WHERE={'datacenter_vim_id':vim_id, 'image_id':image_mano_id})
618
619 return image_vim_id if only_create_at_vim else image_mano_id
620
621
622 def create_or_use_flavor(mydb, vims, flavor_dict, rollback_list, only_create_at_vim=False, return_on_error = None):
623 temp_flavor_dict= {'disk':flavor_dict.get('disk',1),
624 'ram':flavor_dict.get('ram'),
625 'vcpus':flavor_dict.get('vcpus'),
626 }
627 if 'extended' in flavor_dict and flavor_dict['extended']==None:
628 del flavor_dict['extended']
629 if 'extended' in flavor_dict:
630 temp_flavor_dict['extended']=yaml.safe_dump(flavor_dict['extended'],default_flow_style=True,width=256)
631
632 #look if flavor exist
633 if only_create_at_vim:
634 flavor_mano_id = flavor_dict['uuid']
635 if return_on_error == None:
636 return_on_error = True
637 else:
638 flavors = mydb.get_rows(FROM="flavors", WHERE=temp_flavor_dict)
639 if len(flavors)>=1:
640 flavor_mano_id = flavors[0]['uuid']
641 else:
642 #create flavor
643 #create one by one the images of aditional disks
644 dev_image_list=[] #list of images
645 if 'extended' in flavor_dict and flavor_dict['extended']!=None:
646 dev_nb=0
647 for device in flavor_dict['extended'].get('devices',[]):
648 if "image" not in device and "image name" not in device:
649 continue
650 image_dict={}
651 image_dict['name']=device.get('image name',flavor_dict['name']+str(dev_nb)+"-img")
652 image_dict['universal_name']=device.get('image name')
653 image_dict['description']=flavor_dict['name']+str(dev_nb)+"-img"
654 image_dict['location']=device.get('image')
655 #image_dict['new_location']=vnfc.get('image location')
656 image_dict['checksum']=device.get('image checksum')
657 image_metadata_dict = device.get('image metadata', None)
658 image_metadata_str = None
659 if image_metadata_dict != None:
660 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
661 image_dict['metadata']=image_metadata_str
662 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
663 #print "Additional disk image id for VNFC %s: %s" % (flavor_dict['name']+str(dev_nb)+"-img", image_id)
664 dev_image_list.append(image_id)
665 dev_nb += 1
666 temp_flavor_dict['name'] = flavor_dict['name']
667 temp_flavor_dict['description'] = flavor_dict.get('description',None)
668 content = mydb.new_row('flavors', temp_flavor_dict, add_uuid=True)
669 flavor_mano_id= content
670 rollback_list.append({"where":"mano", "what":"flavor","uuid":flavor_mano_id})
671 #create flavor at every vim
672 if 'uuid' in flavor_dict:
673 del flavor_dict['uuid']
674 flavor_vim_id=None
675 for vim_id,vim in vims.items():
676 datacenter_vim_id = vim["config"]["datacenter_tenant_id"]
677 flavor_created="false"
678 #look at database
679 flavor_db = mydb.get_rows(FROM="datacenters_flavors",
680 WHERE={'datacenter_vim_id': datacenter_vim_id, 'flavor_id': flavor_mano_id})
681 #look at VIM if this flavor exist SKIPPED
682 #res_vim, flavor_vim_id = vim.get_flavor_id_from_path(flavor_dict['location'])
683 #if res_vim < 0:
684 # print "Error contacting VIM to know if the flavor %s existed previously." %flavor_vim_id
685 # continue
686 #elif res_vim==0:
687
688 # Create the flavor in VIM
689 # Translate images at devices from MANO id to VIM id
690 disk_list = []
691 if 'extended' in flavor_dict and flavor_dict['extended']!=None and "devices" in flavor_dict['extended']:
692 # make a copy of original devices
693 devices_original=[]
694
695 for device in flavor_dict["extended"].get("devices",[]):
696 dev={}
697 dev.update(device)
698 devices_original.append(dev)
699 if 'image' in device:
700 del device['image']
701 if 'image metadata' in device:
702 del device['image metadata']
703 if 'image checksum' in device:
704 del device['image checksum']
705 dev_nb = 0
706 for index in range(0,len(devices_original)) :
707 device=devices_original[index]
708 if "image" not in device and "image name" not in device:
709 if 'size' in device:
710 disk_list.append({'size': device.get('size', default_volume_size)})
711 continue
712 image_dict={}
713 image_dict['name']=device.get('image name',flavor_dict['name']+str(dev_nb)+"-img")
714 image_dict['universal_name']=device.get('image name')
715 image_dict['description']=flavor_dict['name']+str(dev_nb)+"-img"
716 image_dict['location']=device.get('image')
717 # image_dict['new_location']=device.get('image location')
718 image_dict['checksum']=device.get('image checksum')
719 image_metadata_dict = device.get('image metadata', None)
720 image_metadata_str = None
721 if image_metadata_dict != None:
722 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
723 image_dict['metadata']=image_metadata_str
724 image_mano_id=create_or_use_image(mydb, vims, image_dict, rollback_list, only_create_at_vim=False, return_on_error=return_on_error )
725 image_dict["uuid"]=image_mano_id
726 image_vim_id=create_or_use_image(mydb, vims, image_dict, rollback_list, only_create_at_vim=True, return_on_error=return_on_error)
727
728 #save disk information (image must be based on and size
729 disk_list.append({'image_id': image_vim_id, 'size': device.get('size', default_volume_size)})
730
731 flavor_dict["extended"]["devices"][index]['imageRef']=image_vim_id
732 dev_nb += 1
733 if len(flavor_db)>0:
734 #check that this vim_id exist in VIM, if not create
735 flavor_vim_id=flavor_db[0]["vim_id"]
736 try:
737 vim.get_flavor(flavor_vim_id)
738 continue #flavor exist
739 except vimconn.vimconnException:
740 pass
741 #create flavor at vim
742 logger.debug("nfvo.create_or_use_flavor() adding flavor to VIM %s", vim["name"])
743 try:
744 flavor_vim_id = None
745 flavor_vim_id=vim.get_flavor_id_from_data(flavor_dict)
746 flavor_create="false"
747 except vimconn.vimconnException as e:
748 pass
749 try:
750 if not flavor_vim_id:
751 flavor_vim_id = vim.new_flavor(flavor_dict)
752 rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"flavor","uuid":flavor_vim_id})
753 flavor_created="true"
754 except vimconn.vimconnException as e:
755 if return_on_error:
756 logger.error("Error creating flavor at VIM %s: %s.", vim["name"], str(e))
757 raise
758 logger.warn("Error creating flavor at VIM %s: %s.", vim["name"], str(e))
759 flavor_vim_id = None
760 continue
761 #if reach here the flavor has been create or exist
762 if len(flavor_db)==0:
763 #add new vim_id at datacenters_flavors
764 extended_devices_yaml = None
765 if len(disk_list) > 0:
766 extended_devices = dict()
767 extended_devices['disks'] = disk_list
768 extended_devices_yaml = yaml.safe_dump(extended_devices,default_flow_style=True,width=256)
769 mydb.new_row('datacenters_flavors',
770 {'datacenter_vim_id': datacenter_vim_id, 'flavor_id': flavor_mano_id, 'vim_id': flavor_vim_id,
771 'created': flavor_created, 'extended': extended_devices_yaml})
772 elif flavor_db[0]["vim_id"]!=flavor_vim_id:
773 #modify existing vim_id at datacenters_flavors
774 mydb.update_rows('datacenters_flavors', UPDATE={'vim_id':flavor_vim_id},
775 WHERE={'datacenter_vim_id': datacenter_vim_id, 'flavor_id': flavor_mano_id})
776
777 return flavor_vim_id if only_create_at_vim else flavor_mano_id
778
779
780 def get_str(obj, field, length):
781 """
782 Obtain the str value,
783 :param obj:
784 :param length:
785 :return:
786 """
787 value = obj.get(field)
788 if value is not None:
789 value = str(value)[:length]
790 return value
791
792 def _lookfor_or_create_image(db_image, mydb, descriptor):
793 """
794 fill image content at db_image dictionary. Check if the image with this image and checksum exist
795 :param db_image: dictionary to insert data
796 :param mydb: database connector
797 :param descriptor: yang descriptor
798 :return: uuid if the image exist at DB, or None if a new image must be created with the data filled at db_image
799 """
800
801 db_image["name"] = get_str(descriptor, "image", 255)
802 db_image["checksum"] = get_str(descriptor, "image-checksum", 32)
803 if not db_image["checksum"]: # Ensure that if empty string, None is stored
804 db_image["checksum"] = None
805 if db_image["name"].startswith("/"):
806 db_image["location"] = db_image["name"]
807 existing_images = mydb.get_rows(FROM="images", WHERE={'location': db_image["location"]})
808 else:
809 db_image["universal_name"] = db_image["name"]
810 existing_images = mydb.get_rows(FROM="images", WHERE={'universal_name': db_image['universal_name'],
811 'checksum': db_image['checksum']})
812 if existing_images:
813 return existing_images[0]["uuid"]
814 else:
815 image_uuid = str(uuid4())
816 db_image["uuid"] = image_uuid
817 return None
818
819 def new_vnfd_v3(mydb, tenant_id, vnf_descriptor):
820 """
821 Parses an OSM IM vnfd_catalog and insert at DB
822 :param mydb:
823 :param tenant_id:
824 :param vnf_descriptor:
825 :return: The list of cretated vnf ids
826 """
827 try:
828 myvnfd = vnfd_catalog.vnfd()
829 try:
830 pybindJSONDecoder.load_ietf_json(vnf_descriptor, None, None, obj=myvnfd)
831 except Exception as e:
832 raise NfvoException("Error. Invalid VNF descriptor format " + str(e), HTTP_Bad_Request)
833 db_vnfs = []
834 db_nets = []
835 db_vms = []
836 db_vms_index = 0
837 db_interfaces = []
838 db_images = []
839 db_flavors = []
840 uuid_list = []
841 vnfd_uuid_list = []
842 vnfd_catalog_descriptor = vnf_descriptor.get("vnfd:vnfd-catalog")
843 if not vnfd_catalog_descriptor:
844 vnfd_catalog_descriptor = vnf_descriptor.get("vnfd-catalog")
845 vnfd_descriptor_list = vnfd_catalog_descriptor.get("vnfd")
846 if not vnfd_descriptor_list:
847 vnfd_descriptor_list = vnfd_catalog_descriptor.get("vnfd:vnfd")
848 for vnfd_yang in myvnfd.vnfd_catalog.vnfd.itervalues():
849 vnfd = vnfd_yang.get()
850
851 # table vnf
852 vnf_uuid = str(uuid4())
853 uuid_list.append(vnf_uuid)
854 vnfd_uuid_list.append(vnf_uuid)
855 db_vnf = {
856 "uuid": vnf_uuid,
857 "osm_id": get_str(vnfd, "id", 255),
858 "name": get_str(vnfd, "name", 255),
859 "description": get_str(vnfd, "description", 255),
860 "tenant_id": tenant_id,
861 "vendor": get_str(vnfd, "vendor", 255),
862 "short_name": get_str(vnfd, "short-name", 255),
863 "descriptor": str(vnf_descriptor)[:60000]
864 }
865
866 for vnfd_descriptor in vnfd_descriptor_list:
867 if vnfd_descriptor["id"] == str(vnfd["id"]):
868 break
869
870 # table nets (internal-vld)
871 net_id2uuid = {} # for mapping interface with network
872 for vld in vnfd.get("internal-vld").itervalues():
873 net_uuid = str(uuid4())
874 uuid_list.append(net_uuid)
875 db_net = {
876 "name": get_str(vld, "name", 255),
877 "vnf_id": vnf_uuid,
878 "uuid": net_uuid,
879 "description": get_str(vld, "description", 255),
880 "type": "bridge", # TODO adjust depending on connection point type
881 }
882 net_id2uuid[vld.get("id")] = net_uuid
883 db_nets.append(db_net)
884
885 # table vms (vdus)
886 vdu_id2uuid = {}
887 vdu_id2db_table_index = {}
888 for vdu in vnfd.get("vdu").itervalues():
889 vm_uuid = str(uuid4())
890 uuid_list.append(vm_uuid)
891 db_vm = {
892 "uuid": vm_uuid,
893 "osm_id": get_str(vdu, "id", 255),
894 "name": get_str(vdu, "name", 255),
895 "description": get_str(vdu, "description", 255),
896 "vnf_id": vnf_uuid,
897 }
898 vdu_id2uuid[db_vm["osm_id"]] = vm_uuid
899 vdu_id2db_table_index[db_vm["osm_id"]] = db_vms_index
900 if vdu.get("count"):
901 db_vm["count"] = int(vdu["count"])
902
903 # table image
904 image_present = False
905 if vdu.get("image"):
906 image_present = True
907 db_image = {}
908 image_uuid = _lookfor_or_create_image(db_image, mydb, vdu)
909 if not image_uuid:
910 image_uuid = db_image["uuid"]
911 db_images.append(db_image)
912 db_vm["image_id"] = image_uuid
913
914 # volumes
915 devices = []
916 if vdu.get("volumes"):
917 for volume_key in sorted(vdu["volumes"]):
918 volume = vdu["volumes"][volume_key]
919 if not image_present:
920 # Convert the first volume to vnfc.image
921 image_present = True
922 db_image = {}
923 image_uuid = _lookfor_or_create_image(db_image, mydb, volume)
924 if not image_uuid:
925 image_uuid = db_image["uuid"]
926 db_images.append(db_image)
927 db_vm["image_id"] = image_uuid
928 else:
929 # Add Openmano devices
930 device = {}
931 device["type"] = str(volume.get("device-type"))
932 if volume.get("size"):
933 device["size"] = int(volume["size"])
934 if volume.get("image"):
935 device["image name"] = str(volume["image"])
936 if volume.get("image-checksum"):
937 device["image checksum"] = str(volume["image-checksum"])
938 devices.append(device)
939
940 # table flavors
941 db_flavor = {
942 "name": get_str(vdu, "name", 250) + "-flv",
943 "vcpus": int(vdu["vm-flavor"].get("vcpu-count", 1)),
944 "ram": int(vdu["vm-flavor"].get("memory-mb", 1)),
945 "disk": int(vdu["vm-flavor"].get("storage-gb", 1)),
946 }
947 # EPA TODO revise
948 extended = {}
949 numa = {}
950 if devices:
951 extended["devices"] = devices
952 if vdu.get("guest-epa"): # TODO or dedicated_int:
953 epa_vcpu_set = False
954 if vdu["guest-epa"].get("numa-node-policy"): # TODO or dedicated_int:
955 numa_node_policy = vdu["guest-epa"].get("numa-node-policy")
956 if numa_node_policy.get("node"):
957 numa_node = numa_node_policy["node"]['0']
958 if numa_node.get("num-cores"):
959 numa["cores"] = numa_node["num-cores"]
960 epa_vcpu_set = True
961 if numa_node.get("paired-threads"):
962 if numa_node["paired-threads"].get("num-paired-threads"):
963 numa["paired-threads"] = int(numa_node["paired-threads"]["num-paired-threads"])
964 epa_vcpu_set = True
965 if len(numa_node["paired-threads"].get("paired-thread-ids")):
966 numa["paired-threads-id"] = []
967 for pair in numa_node["paired-threads"]["paired-thread-ids"].itervalues():
968 numa["paired-threads-id"].append(
969 (str(pair["thread-a"]), str(pair["thread-b"]))
970 )
971 if numa_node.get("num-threads"):
972 numa["threads"] = int(numa_node["num-threads"])
973 epa_vcpu_set = True
974 if numa_node.get("memory-mb"):
975 numa["memory"] = max(int(numa_node["memory-mb"] / 1024), 1)
976 if vdu["guest-epa"].get("mempage-size"):
977 if vdu["guest-epa"]["mempage-size"] != "SMALL":
978 numa["memory"] = max(int(db_flavor["ram"] / 1024), 1)
979 if vdu["guest-epa"].get("cpu-pinning-policy") and not epa_vcpu_set:
980 if vdu["guest-epa"]["cpu-pinning-policy"] == "DEDICATED":
981 if vdu["guest-epa"].get("cpu-thread-pinning-policy") and \
982 vdu["guest-epa"]["cpu-thread-pinning-policy"] != "PREFER":
983 numa["cores"] = max(db_flavor["vcpus"], 1)
984 else:
985 numa["threads"] = max(db_flavor["vcpus"], 1)
986 if numa:
987 extended["numas"] = [numa]
988 if extended:
989 extended_text = yaml.safe_dump(extended, default_flow_style=True, width=256)
990 db_flavor["extended"] = extended_text
991 # look if flavor exist
992
993 temp_flavor_dict = {'disk': db_flavor.get('disk', 1),
994 'ram': db_flavor.get('ram'),
995 'vcpus': db_flavor.get('vcpus'),
996 'extended': db_flavor.get('extended')
997 }
998 existing_flavors = mydb.get_rows(FROM="flavors", WHERE=temp_flavor_dict)
999 if existing_flavors:
1000 flavor_uuid = existing_flavors[0]["uuid"]
1001 else:
1002 flavor_uuid = str(uuid4())
1003 uuid_list.append(flavor_uuid)
1004 db_flavor["uuid"] = flavor_uuid
1005 db_flavors.append(db_flavor)
1006 db_vm["flavor_id"] = flavor_uuid
1007
1008 # cloud-init
1009 boot_data = {}
1010 if vdu.get("cloud-init"):
1011 boot_data["user-data"] = str(vdu["cloud-init"])
1012 elif vdu.get("cloud-init-file"):
1013 # TODO Where this file content is present???
1014 # boot_data["user-data"] = vnfd_yang.files[vdu["cloud-init-file"]]
1015 boot_data["user-data"] = str(vdu["cloud-init-file"])
1016
1017 if vdu.get("supplemental-boot-data"):
1018 if vdu["supplemental-boot-data"].get('boot-data-drive'):
1019 boot_data['boot-data-drive'] = True
1020 if vdu["supplemental-boot-data"].get('config-file'):
1021 om_cfgfile_list = list()
1022 for custom_config_file in vdu["supplemental-boot-data"]['config-file'].itervalues():
1023 # TODO Where this file content is present???
1024 cfg_source = str(custom_config_file["source"])
1025 om_cfgfile_list.append({"dest": custom_config_file["dest"],
1026 "content": cfg_source})
1027 boot_data['config-files'] = om_cfgfile_list
1028 if boot_data:
1029 db_vm["boot_data"] = yaml.safe_dump(boot_data, default_flow_style=True, width=256)
1030
1031 db_vms.append(db_vm)
1032 db_vms_index += 1
1033
1034 # table interfaces (internal/external interfaces)
1035 cp_name2iface_uuid = {}
1036 cp_name2vm_uuid = {}
1037 cp_name2db_interface = {}
1038 # for iface in chain(vdu.get("internal-interface").itervalues(), vdu.get("external-interface").itervalues()):
1039 for iface in vdu.get("interface").itervalues():
1040 iface_uuid = str(uuid4())
1041 uuid_list.append(iface_uuid)
1042 db_interface = {
1043 "uuid": iface_uuid,
1044 "internal_name": get_str(iface, "name", 255),
1045 "vm_id": vm_uuid,
1046 }
1047 if iface.get("virtual-interface").get("vpci"):
1048 db_interface["vpci"] = get_str(iface.get("virtual-interface"), "vpci", 12)
1049
1050 if iface.get("virtual-interface").get("bandwidth"):
1051 bps = int(iface.get("virtual-interface").get("bandwidth"))
1052 db_interface["bw"] = bps/1000
1053
1054 if iface.get("virtual-interface").get("type") == "OM-MGMT":
1055 db_interface["type"] = "mgmt"
1056 elif iface.get("virtual-interface").get("type") in ("VIRTIO", "E1000"):
1057 db_interface["type"] = "bridge"
1058 db_interface["model"] = get_str(iface.get("virtual-interface"), "type", 12)
1059 elif iface.get("virtual-interface").get("type") in ("SR-IOV", "PCI-PASSTHROUGH"):
1060 db_interface["type"] = "data"
1061 db_interface["model"] = get_str(iface.get("virtual-interface"), "type", 12)
1062 else:
1063 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{}]':'vdu[{}]':'interface':'virtual"
1064 "-interface':'type':'{}'. Interface type is not supported".format(
1065 str(vnfd["id"])[:255], str(vdu["id"])[:255],
1066 iface.get("virtual-interface").get("type")),
1067 HTTP_Bad_Request)
1068
1069 if iface.get("external-connection-point-ref"):
1070 try:
1071 cp = vnfd.get("connection-point")[iface.get("external-connection-point-ref")]
1072 db_interface["external_name"] = get_str(cp, "name", 255)
1073 cp_name2iface_uuid[db_interface["external_name"]] = iface_uuid
1074 cp_name2vm_uuid[db_interface["external_name"]] = vm_uuid
1075 cp_name2db_interface[db_interface["external_name"]] = db_interface
1076 for cp_descriptor in vnfd_descriptor["connection-point"]:
1077 if cp_descriptor["name"] == db_interface["external_name"]:
1078 break
1079 if str(cp_descriptor.get("port-security-enabled")).lower() == "false":
1080 db_interface["port_security"] = 0
1081 elif str(cp_descriptor.get("port-security-enabled")).lower() == "true":
1082 db_interface["port_security"] = 1
1083 except KeyError:
1084 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{vnf}]':'vdu[{vdu}]':"
1085 "'interface[{iface}]':'vnfd-connection-point-ref':'{cp}' is not present"
1086 " at connection-point".format(
1087 vnf=vnfd["id"], vdu=vdu["id"], iface=iface["name"],
1088 cp=iface.get("vnfd-connection-point-ref")),
1089 HTTP_Bad_Request)
1090 elif iface.get("internal-connection-point-ref"):
1091 try:
1092 for vld in vnfd.get("internal-vld").itervalues():
1093 for cp in vld.get("internal-connection-point").itervalues():
1094 if cp.get("id-ref") == iface.get("internal-connection-point-ref"):
1095 db_interface["net_id"] = net_id2uuid[vld.get("id")]
1096 for cp_descriptor in vnfd_descriptor["connection-point"]:
1097 if cp_descriptor["name"] == db_interface["external_name"]:
1098 break
1099 if str(cp_descriptor.get("port-security-enabled")).lower() == "false":
1100 db_interface["port_security"] = 0
1101 elif str(cp_descriptor.get("port-security-enabled")).lower() == "true":
1102 db_interface["port_security"] = 1
1103 break
1104 except KeyError:
1105 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{vnf}]':'vdu[{vdu}]':"
1106 "'interface[{iface}]':'vdu-internal-connection-point-ref':'{cp}' is not"
1107 " referenced by any internal-vld".format(
1108 vnf=vnfd["id"], vdu=vdu["id"], iface=iface["name"],
1109 cp=iface.get("vdu-internal-connection-point-ref")),
1110 HTTP_Bad_Request)
1111 if iface.get("position") is not None:
1112 db_interface["created_at"] = int(iface.get("position")) - 1000
1113 db_interfaces.append(db_interface)
1114
1115 # VNF affinity and antiaffinity
1116 for pg in vnfd.get("placement-groups").itervalues():
1117 pg_name = get_str(pg, "name", 255)
1118 for vdu in pg.get("member-vdus").itervalues():
1119 vdu_id = get_str(vdu, "member-vdu-ref", 255)
1120 if vdu_id not in vdu_id2db_table_index:
1121 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{vnf}]':'placement-groups[{pg}]':"
1122 "'member-vdus':'{vdu}'. Reference to a non-existing vdu".format(
1123 vnf=vnfd["id"], pg=pg_name, vdu=vdu_id),
1124 HTTP_Bad_Request)
1125 db_vms[vdu_id2db_table_index[vdu_id]]["availability_zone"] = pg_name
1126 # TODO consider the case of isolation and not colocation
1127 # if pg.get("strategy") == "ISOLATION":
1128
1129 # VNF mgmt configuration
1130 mgmt_access = {}
1131 if vnfd["mgmt-interface"].get("vdu-id"):
1132 if vnfd["mgmt-interface"]["vdu-id"] not in vdu_id2uuid:
1133 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{vnf}]':'mgmt-interface':'vdu-id':"
1134 "'{vdu}'. Reference to a non-existing vdu".format(
1135 vnf=vnfd["id"], vdu=vnfd["mgmt-interface"]["vdu-id"]),
1136 HTTP_Bad_Request)
1137 mgmt_access["vm_id"] = vdu_id2uuid[vnfd["mgmt-interface"]["vdu-id"]]
1138 if vnfd["mgmt-interface"].get("ip-address"):
1139 mgmt_access["ip-address"] = str(vnfd["mgmt-interface"].get("ip-address"))
1140 if vnfd["mgmt-interface"].get("cp"):
1141 if vnfd["mgmt-interface"]["cp"] not in cp_name2iface_uuid:
1142 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{vnf}]':'mgmt-interface':'cp':'{cp}'. "
1143 "Reference to a non-existing connection-point".format(
1144 vnf=vnfd["id"], cp=vnfd["mgmt-interface"]["cp"]),
1145 HTTP_Bad_Request)
1146 mgmt_access["vm_id"] = cp_name2vm_uuid[vnfd["mgmt-interface"]["cp"]]
1147 mgmt_access["interface_id"] = cp_name2iface_uuid[vnfd["mgmt-interface"]["cp"]]
1148 # mark this interface as of type mgmt
1149 cp_name2db_interface[vnfd["mgmt-interface"]["cp"]]["type"] = "mgmt"
1150
1151 default_user = get_str(vnfd.get("vnf-configuration", {}).get("config-access", {}).get("ssh-access", {}),
1152 "default-user", 64)
1153
1154 if default_user:
1155 mgmt_access["default_user"] = default_user
1156 required = get_str(vnfd.get("vnf-configuration", {}).get("config-access", {}).get("ssh-access", {}),
1157 "required", 6)
1158 if required:
1159 mgmt_access["required"] = required
1160
1161 if mgmt_access:
1162 db_vnf["mgmt_access"] = yaml.safe_dump(mgmt_access, default_flow_style=True, width=256)
1163
1164
1165
1166 db_vnfs.append(db_vnf)
1167 db_tables=[
1168 {"vnfs": db_vnfs},
1169 {"nets": db_nets},
1170 {"images": db_images},
1171 {"flavors": db_flavors},
1172 {"vms": db_vms},
1173 {"interfaces": db_interfaces},
1174 ]
1175
1176 logger.debug("create_vnf Deployment done vnfDict: %s",
1177 yaml.safe_dump(db_tables, indent=4, default_flow_style=False) )
1178 mydb.new_rows(db_tables, uuid_list)
1179 return vnfd_uuid_list
1180 except NfvoException:
1181 raise
1182 except Exception as e:
1183 logger.error("Exception {}".format(e))
1184 raise # NfvoException("Exception {}".format(e), HTTP_Bad_Request)
1185
1186
1187 def new_vnf(mydb, tenant_id, vnf_descriptor):
1188 global global_config
1189
1190 # Step 1. Check the VNF descriptor
1191 check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=1)
1192 # Step 2. Check tenant exist
1193 vims = {}
1194 if tenant_id != "any":
1195 check_tenant(mydb, tenant_id)
1196 if "tenant_id" in vnf_descriptor["vnf"]:
1197 if vnf_descriptor["vnf"]["tenant_id"] != tenant_id:
1198 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id),
1199 HTTP_Unauthorized)
1200 else:
1201 vnf_descriptor['vnf']['tenant_id'] = tenant_id
1202 # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter
1203 if global_config["auto_push_VNF_to_VIMs"]:
1204 vims = get_vim(mydb, tenant_id)
1205
1206 # Step 4. Review the descriptor and add missing fields
1207 #print vnf_descriptor
1208 #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)")
1209 vnf_name = vnf_descriptor['vnf']['name']
1210 vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name)
1211 if "physical" in vnf_descriptor['vnf']:
1212 del vnf_descriptor['vnf']['physical']
1213 #print vnf_descriptor
1214
1215 # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM
1216 logger.debug('BEGIN creation of VNF "%s"' % vnf_name)
1217 logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC'])))
1218
1219 #For each VNFC, we add it to the VNFCDict and we create a flavor.
1220 VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database
1221 rollback_list = [] # It will contain the new images created in mano. It is used for rollback
1222 try:
1223 logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC")
1224 for vnfc in vnf_descriptor['vnf']['VNFC']:
1225 VNFCitem={}
1226 VNFCitem["name"] = vnfc['name']
1227 VNFCitem["availability_zone"] = vnfc.get('availability_zone')
1228 VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name))
1229
1230 #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"])
1231
1232 myflavorDict = {}
1233 myflavorDict["name"] = vnfc['name']+"-flv" #Maybe we could rename the flavor by using the field "image name" if exists
1234 myflavorDict["description"] = VNFCitem["description"]
1235 myflavorDict["ram"] = vnfc.get("ram", 0)
1236 myflavorDict["vcpus"] = vnfc.get("vcpus", 0)
1237 myflavorDict["disk"] = vnfc.get("disk", 1)
1238 myflavorDict["extended"] = {}
1239
1240 devices = vnfc.get("devices")
1241 if devices != None:
1242 myflavorDict["extended"]["devices"] = devices
1243
1244 # TODO:
1245 # Mapping from processor models to rankings should be available somehow in the NFVO. They could be taken from VIM or directly from a new database table
1246 # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host
1247
1248 # Previous code has been commented
1249 #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" :
1250 # myflavorDict["flavor"]['extended']['processor_ranking'] = 200
1251 #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" :
1252 # myflavorDict["flavor"]['extended']['processor_ranking'] = 300
1253 #else:
1254 # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList)
1255 # if result2:
1256 # print "Error creating flavor: unknown processor model. Rollback successful."
1257 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful."
1258 # else:
1259 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message
1260 myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done
1261
1262 if 'numas' in vnfc and len(vnfc['numas'])>0:
1263 myflavorDict['extended']['numas'] = vnfc['numas']
1264
1265 #print myflavorDict
1266
1267 # Step 6.2 New flavors are created in the VIM
1268 flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list)
1269
1270 #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id)
1271 VNFCitem["flavor_id"] = flavor_id
1272 VNFCDict[vnfc['name']] = VNFCitem
1273
1274 logger.debug("Creating new images in the VIM for each VNFC")
1275 # Step 6.3 New images are created in the VIM
1276 #For each VNFC, we must create the appropriate image.
1277 #This "for" loop might be integrated with the previous one
1278 #In case this integration is made, the VNFCDict might become a VNFClist.
1279 for vnfc in vnf_descriptor['vnf']['VNFC']:
1280 #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description'])
1281 image_dict={}
1282 image_dict['name']=vnfc.get('image name',vnf_name+"-"+vnfc['name']+"-img")
1283 image_dict['universal_name']=vnfc.get('image name')
1284 image_dict['description']=vnfc.get('image name', VNFCDict[vnfc['name']]['description'])
1285 image_dict['location']=vnfc.get('VNFC image')
1286 #image_dict['new_location']=vnfc.get('image location')
1287 image_dict['checksum']=vnfc.get('image checksum')
1288 image_metadata_dict = vnfc.get('image metadata', None)
1289 image_metadata_str = None
1290 if image_metadata_dict is not None:
1291 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
1292 image_dict['metadata']=image_metadata_str
1293 #print "create_or_use_image", mydb, vims, image_dict, rollback_list
1294 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
1295 #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id)
1296 VNFCDict[vnfc['name']]["image_id"] = image_id
1297 VNFCDict[vnfc['name']]["image_path"] = vnfc.get('VNFC image')
1298 VNFCDict[vnfc['name']]["count"] = vnfc.get('count', 1)
1299 if vnfc.get("boot-data"):
1300 VNFCDict[vnfc['name']]["boot_data"] = yaml.safe_dump(vnfc["boot-data"], default_flow_style=True, width=256)
1301
1302
1303 # Step 7. Storing the VNF descriptor in the repository
1304 if "descriptor" not in vnf_descriptor["vnf"]:
1305 vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False)
1306
1307 # Step 8. Adding the VNF to the NFVO DB
1308 vnf_id = mydb.new_vnf_as_a_whole(tenant_id,vnf_name,vnf_descriptor,VNFCDict)
1309 return vnf_id
1310 except (db_base_Exception, vimconn.vimconnException, KeyError) as e:
1311 _, message = rollback(mydb, vims, rollback_list)
1312 if isinstance(e, db_base_Exception):
1313 error_text = "Exception at database"
1314 elif isinstance(e, KeyError):
1315 error_text = "KeyError exception "
1316 e.http_code = HTTP_Internal_Server_Error
1317 else:
1318 error_text = "Exception at VIM"
1319 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
1320 #logger.error("start_scenario %s", error_text)
1321 raise NfvoException(error_text, e.http_code)
1322
1323
1324 def new_vnf_v02(mydb, tenant_id, vnf_descriptor):
1325 global global_config
1326
1327 # Step 1. Check the VNF descriptor
1328 check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=2)
1329 # Step 2. Check tenant exist
1330 vims = {}
1331 if tenant_id != "any":
1332 check_tenant(mydb, tenant_id)
1333 if "tenant_id" in vnf_descriptor["vnf"]:
1334 if vnf_descriptor["vnf"]["tenant_id"] != tenant_id:
1335 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id),
1336 HTTP_Unauthorized)
1337 else:
1338 vnf_descriptor['vnf']['tenant_id'] = tenant_id
1339 # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter
1340 if global_config["auto_push_VNF_to_VIMs"]:
1341 vims = get_vim(mydb, tenant_id)
1342
1343 # Step 4. Review the descriptor and add missing fields
1344 #print vnf_descriptor
1345 #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)")
1346 vnf_name = vnf_descriptor['vnf']['name']
1347 vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name)
1348 if "physical" in vnf_descriptor['vnf']:
1349 del vnf_descriptor['vnf']['physical']
1350 #print vnf_descriptor
1351
1352 # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM
1353 logger.debug('BEGIN creation of VNF "%s"' % vnf_name)
1354 logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC'])))
1355
1356 #For each VNFC, we add it to the VNFCDict and we create a flavor.
1357 VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database
1358 rollback_list = [] # It will contain the new images created in mano. It is used for rollback
1359 try:
1360 logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC")
1361 for vnfc in vnf_descriptor['vnf']['VNFC']:
1362 VNFCitem={}
1363 VNFCitem["name"] = vnfc['name']
1364 VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name))
1365
1366 #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"])
1367
1368 myflavorDict = {}
1369 myflavorDict["name"] = vnfc['name']+"-flv" #Maybe we could rename the flavor by using the field "image name" if exists
1370 myflavorDict["description"] = VNFCitem["description"]
1371 myflavorDict["ram"] = vnfc.get("ram", 0)
1372 myflavorDict["vcpus"] = vnfc.get("vcpus", 0)
1373 myflavorDict["disk"] = vnfc.get("disk", 1)
1374 myflavorDict["extended"] = {}
1375
1376 devices = vnfc.get("devices")
1377 if devices != None:
1378 myflavorDict["extended"]["devices"] = devices
1379
1380 # TODO:
1381 # Mapping from processor models to rankings should be available somehow in the NFVO. They could be taken from VIM or directly from a new database table
1382 # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host
1383
1384 # Previous code has been commented
1385 #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" :
1386 # myflavorDict["flavor"]['extended']['processor_ranking'] = 200
1387 #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" :
1388 # myflavorDict["flavor"]['extended']['processor_ranking'] = 300
1389 #else:
1390 # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList)
1391 # if result2:
1392 # print "Error creating flavor: unknown processor model. Rollback successful."
1393 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful."
1394 # else:
1395 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message
1396 myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done
1397
1398 if 'numas' in vnfc and len(vnfc['numas'])>0:
1399 myflavorDict['extended']['numas'] = vnfc['numas']
1400
1401 #print myflavorDict
1402
1403 # Step 6.2 New flavors are created in the VIM
1404 flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list)
1405
1406 #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id)
1407 VNFCitem["flavor_id"] = flavor_id
1408 VNFCDict[vnfc['name']] = VNFCitem
1409
1410 logger.debug("Creating new images in the VIM for each VNFC")
1411 # Step 6.3 New images are created in the VIM
1412 #For each VNFC, we must create the appropriate image.
1413 #This "for" loop might be integrated with the previous one
1414 #In case this integration is made, the VNFCDict might become a VNFClist.
1415 for vnfc in vnf_descriptor['vnf']['VNFC']:
1416 #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description'])
1417 image_dict={}
1418 image_dict['name']=vnfc.get('image name',vnf_name+"-"+vnfc['name']+"-img")
1419 image_dict['universal_name']=vnfc.get('image name')
1420 image_dict['description']=vnfc.get('image name', VNFCDict[vnfc['name']]['description'])
1421 image_dict['location']=vnfc.get('VNFC image')
1422 #image_dict['new_location']=vnfc.get('image location')
1423 image_dict['checksum']=vnfc.get('image checksum')
1424 image_metadata_dict = vnfc.get('image metadata', None)
1425 image_metadata_str = None
1426 if image_metadata_dict is not None:
1427 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
1428 image_dict['metadata']=image_metadata_str
1429 #print "create_or_use_image", mydb, vims, image_dict, rollback_list
1430 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
1431 #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id)
1432 VNFCDict[vnfc['name']]["image_id"] = image_id
1433 VNFCDict[vnfc['name']]["image_path"] = vnfc.get('VNFC image')
1434 VNFCDict[vnfc['name']]["count"] = vnfc.get('count', 1)
1435 if vnfc.get("boot-data"):
1436 VNFCDict[vnfc['name']]["boot_data"] = yaml.safe_dump(vnfc["boot-data"], default_flow_style=True, width=256)
1437
1438 # Step 7. Storing the VNF descriptor in the repository
1439 if "descriptor" not in vnf_descriptor["vnf"]:
1440 vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False)
1441
1442 # Step 8. Adding the VNF to the NFVO DB
1443 vnf_id = mydb.new_vnf_as_a_whole2(tenant_id,vnf_name,vnf_descriptor,VNFCDict)
1444 return vnf_id
1445 except (db_base_Exception, vimconn.vimconnException, KeyError) as e:
1446 _, message = rollback(mydb, vims, rollback_list)
1447 if isinstance(e, db_base_Exception):
1448 error_text = "Exception at database"
1449 elif isinstance(e, KeyError):
1450 error_text = "KeyError exception "
1451 e.http_code = HTTP_Internal_Server_Error
1452 else:
1453 error_text = "Exception at VIM"
1454 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
1455 #logger.error("start_scenario %s", error_text)
1456 raise NfvoException(error_text, e.http_code)
1457
1458
1459 def get_vnf_id(mydb, tenant_id, vnf_id):
1460 #check valid tenant_id
1461 check_tenant(mydb, tenant_id)
1462 #obtain data
1463 where_or = {}
1464 if tenant_id != "any":
1465 where_or["tenant_id"] = tenant_id
1466 where_or["public"] = True
1467 vnf = mydb.get_table_by_uuid_name('vnfs', vnf_id, "VNF", WHERE_OR=where_or, WHERE_AND_OR="AND")
1468
1469 vnf_id = vnf["uuid"]
1470 filter_keys = ('uuid', 'name', 'description', 'public', "tenant_id", "osm_id", "created_at")
1471 filtered_content = dict( (k,v) for k,v in vnf.iteritems() if k in filter_keys )
1472 #change_keys_http2db(filtered_content, http2db_vnf, reverse=True)
1473 data={'vnf' : filtered_content}
1474 #GET VM
1475 content = mydb.get_rows(FROM='vnfs join vms on vnfs.uuid=vms.vnf_id',
1476 SELECT=('vms.uuid as uuid', 'vms.osm_id as osm_id', 'vms.name as name', 'vms.description as description',
1477 'boot_data'),
1478 WHERE={'vnfs.uuid': vnf_id} )
1479 if len(content)==0:
1480 raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found)
1481 # change boot_data into boot-data
1482 for vm in content:
1483 if vm.get("boot_data"):
1484 vm["boot-data"] = yaml.safe_load(vm["boot_data"])
1485 del vm["boot_data"]
1486
1487 data['vnf']['VNFC'] = content
1488 #TODO: GET all the information from a VNFC and include it in the output.
1489
1490 #GET NET
1491 content = mydb.get_rows(FROM='vnfs join nets on vnfs.uuid=nets.vnf_id',
1492 SELECT=('nets.uuid as uuid','nets.name as name','nets.description as description', 'nets.type as type', 'nets.multipoint as multipoint'),
1493 WHERE={'vnfs.uuid': vnf_id} )
1494 data['vnf']['nets'] = content
1495
1496 #GET ip-profile for each net
1497 for net in data['vnf']['nets']:
1498 ipprofiles = mydb.get_rows(FROM='ip_profiles',
1499 SELECT=('ip_version','subnet_address','gateway_address','dns_address','dhcp_enabled','dhcp_start_address','dhcp_count'),
1500 WHERE={'net_id': net["uuid"]} )
1501 if len(ipprofiles)==1:
1502 net["ip_profile"] = ipprofiles[0]
1503 elif len(ipprofiles)>1:
1504 raise NfvoException("More than one ip-profile found with this criteria: net_id='{}'".format(net['uuid']), HTTP_Bad_Request)
1505
1506
1507 #TODO: For each net, GET its elements and relevant info per element (VNFC, iface, ip_address) and include them in the output.
1508
1509 #GET External Interfaces
1510 content = mydb.get_rows(FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces on vms.uuid=interfaces.vm_id',\
1511 SELECT=('interfaces.uuid as uuid','interfaces.external_name as external_name', 'vms.name as vm_name', 'interfaces.vm_id as vm_id', \
1512 'interfaces.internal_name as internal_name', 'interfaces.type as type', 'interfaces.vpci as vpci','interfaces.bw as bw'),\
1513 WHERE={'vnfs.uuid': vnf_id, 'interfaces.external_name<>': None} )
1514 #print content
1515 data['vnf']['external-connections'] = content
1516
1517 return data
1518
1519
1520 def delete_vnf(mydb,tenant_id,vnf_id,datacenter=None,vim_tenant=None):
1521 # Check tenant exist
1522 if tenant_id != "any":
1523 check_tenant(mydb, tenant_id)
1524 # Get the URL of the VIM from the nfvo_tenant and the datacenter
1525 vims = get_vim(mydb, tenant_id)
1526 else:
1527 vims={}
1528
1529 # Checking if it is a valid uuid and, if not, getting the uuid assuming that the name was provided"
1530 where_or = {}
1531 if tenant_id != "any":
1532 where_or["tenant_id"] = tenant_id
1533 where_or["public"] = True
1534 vnf = mydb.get_table_by_uuid_name('vnfs', vnf_id, "VNF", WHERE_OR=where_or, WHERE_AND_OR="AND")
1535 vnf_id = vnf["uuid"]
1536
1537 # "Getting the list of flavors and tenants of the VNF"
1538 flavorList = get_flavorlist(mydb, vnf_id)
1539 if len(flavorList)==0:
1540 logger.warn("delete_vnf error. No flavors found for the VNF id '%s'", vnf_id)
1541
1542 imageList = get_imagelist(mydb, vnf_id)
1543 if len(imageList)==0:
1544 logger.warn( "delete_vnf error. No images found for the VNF id '%s'", vnf_id)
1545
1546 deleted = mydb.delete_row_by_id('vnfs', vnf_id)
1547 if deleted == 0:
1548 raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found)
1549
1550 undeletedItems = []
1551 for flavor in flavorList:
1552 #check if flavor is used by other vnf
1553 try:
1554 c = mydb.get_rows(FROM='vms', WHERE={'flavor_id':flavor} )
1555 if len(c) > 0:
1556 logger.debug("Flavor '%s' not deleted because it is being used by another VNF", flavor)
1557 continue
1558 #flavor not used, must be deleted
1559 #delelte at VIM
1560 c = mydb.get_rows(FROM='datacenters_flavors', WHERE={'flavor_id':flavor})
1561 for flavor_vim in c:
1562 if flavor_vim["datacenter_vim_id"] not in vims: # TODO change to datacenter_tenant_id
1563 continue
1564 if flavor_vim['created']=='false': #skip this flavor because not created by openmano
1565 continue
1566 myvim=vims[ flavor_vim["datacenter_id"] ]
1567 try:
1568 myvim.delete_flavor(flavor_vim["vim_id"])
1569 except vimconn.vimconnNotFoundException as e:
1570 logger.warn("VIM flavor %s not exist at datacenter %s", flavor_vim["vim_id"], flavor_vim["datacenter_id"] )
1571 except vimconn.vimconnException as e:
1572 logger.error("Not possible to delete VIM flavor %s from datacenter %s: %s %s",
1573 flavor_vim["vim_id"], flavor_vim["datacenter_id"], type(e).__name__, str(e))
1574 undeletedItems.append("flavor {} from VIM {}".format(flavor_vim["vim_id"], flavor_vim["datacenter_id"] ))
1575 #delete flavor from Database, using table flavors and with cascade foreign key also at datacenters_flavors
1576 mydb.delete_row_by_id('flavors', flavor)
1577 except db_base_Exception as e:
1578 logger.error("delete_vnf_error. Not possible to get flavor details and delete '%s'. %s", flavor, str(e))
1579 undeletedItems.append("flavor %s" % flavor)
1580
1581
1582 for image in imageList:
1583 try:
1584 #check if image is used by other vnf
1585 c = mydb.get_rows(FROM='vms', WHERE={'image_id':image} )
1586 if len(c) > 0:
1587 logger.debug("Image '%s' not deleted because it is being used by another VNF", image)
1588 continue
1589 #image not used, must be deleted
1590 #delelte at VIM
1591 c = mydb.get_rows(FROM='datacenters_images', WHERE={'image_id':image})
1592 for image_vim in c:
1593 if image_vim["datacenter_vim_id"] not in vims: # TODO change to datacenter_tenant_id
1594 continue
1595 if image_vim['created']=='false': #skip this image because not created by openmano
1596 continue
1597 myvim=vims[ image_vim["datacenter_id"] ]
1598 try:
1599 myvim.delete_image(image_vim["vim_id"])
1600 except vimconn.vimconnNotFoundException as e:
1601 logger.warn("VIM image %s not exist at datacenter %s", image_vim["vim_id"], image_vim["datacenter_id"] )
1602 except vimconn.vimconnException as e:
1603 logger.error("Not possible to delete VIM image %s from datacenter %s: %s %s",
1604 image_vim["vim_id"], image_vim["datacenter_id"], type(e).__name__, str(e))
1605 undeletedItems.append("image {} from VIM {}".format(image_vim["vim_id"], image_vim["datacenter_id"] ))
1606 #delete image from Database, using table images and with cascade foreign key also at datacenters_images
1607 mydb.delete_row_by_id('images', image)
1608 except db_base_Exception as e:
1609 logger.error("delete_vnf_error. Not possible to get image details and delete '%s'. %s", image, str(e))
1610 undeletedItems.append("image %s" % image)
1611
1612 return vnf_id + " " + vnf["name"]
1613 #if undeletedItems:
1614 # return "delete_vnf. Undeleted: %s" %(undeletedItems)
1615
1616
1617 def get_hosts_info(mydb, nfvo_tenant_id, datacenter_name=None):
1618 result, vims = get_vim(mydb, nfvo_tenant_id, None, datacenter_name)
1619 if result < 0:
1620 return result, vims
1621 elif result == 0:
1622 return -HTTP_Not_Found, "datacenter '%s' not found" % datacenter_name
1623 myvim = vims.values()[0]
1624 result,servers = myvim.get_hosts_info()
1625 if result < 0:
1626 return result, servers
1627 topology = {'name':myvim['name'] , 'servers': servers}
1628 return result, topology
1629
1630
1631 def get_hosts(mydb, nfvo_tenant_id):
1632 vims = get_vim(mydb, nfvo_tenant_id)
1633 if len(vims) == 0:
1634 raise NfvoException("No datacenter found for tenant '{}'".format(str(nfvo_tenant_id)), HTTP_Not_Found)
1635 elif len(vims)>1:
1636 #print "nfvo.datacenter_action() error. Several datacenters found"
1637 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
1638 myvim = vims.values()[0]
1639 try:
1640 hosts = myvim.get_hosts()
1641 logger.debug('VIM hosts response: '+ yaml.safe_dump(hosts, indent=4, default_flow_style=False))
1642
1643 datacenter = {'Datacenters': [ {'name':myvim['name'],'servers':[]} ] }
1644 for host in hosts:
1645 server={'name':host['name'], 'vms':[]}
1646 for vm in host['instances']:
1647 #get internal name and model
1648 try:
1649 c = mydb.get_rows(SELECT=('name',), FROM='instance_vms as iv join vms on iv.vm_id=vms.uuid',\
1650 WHERE={'vim_vm_id':vm['id']} )
1651 if len(c) == 0:
1652 logger.warn("nfvo.get_hosts virtual machine at VIM '{}' not found at tidnfvo".format(vm['id']))
1653 continue
1654 server['vms'].append( {'name':vm['name'] , 'model':c[0]['name']} )
1655
1656 except db_base_Exception as e:
1657 logger.warn("nfvo.get_hosts virtual machine at VIM '{}' error {}".format(vm['id'], str(e)))
1658 datacenter['Datacenters'][0]['servers'].append(server)
1659 #return -400, "en construccion"
1660
1661 #print 'datacenters '+ json.dumps(datacenter, indent=4)
1662 return datacenter
1663 except vimconn.vimconnException as e:
1664 raise NfvoException("Not possible to get_host_list from VIM: {}".format(str(e)), e.http_code)
1665
1666
1667 def new_scenario(mydb, tenant_id, topo):
1668
1669 # result, vims = get_vim(mydb, tenant_id)
1670 # if result < 0:
1671 # return result, vims
1672 #1: parse input
1673 if tenant_id != "any":
1674 check_tenant(mydb, tenant_id)
1675 if "tenant_id" in topo:
1676 if topo["tenant_id"] != tenant_id:
1677 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(topo["tenant_id"], tenant_id),
1678 HTTP_Unauthorized)
1679 else:
1680 tenant_id=None
1681
1682 #1.1: get VNFs and external_networks (other_nets).
1683 vnfs={}
1684 other_nets={} #external_networks, bridge_networks and data_networkds
1685 nodes = topo['topology']['nodes']
1686 for k in nodes.keys():
1687 if nodes[k]['type'] == 'VNF':
1688 vnfs[k] = nodes[k]
1689 vnfs[k]['ifaces'] = {}
1690 elif nodes[k]['type'] == 'other_network' or nodes[k]['type'] == 'external_network':
1691 other_nets[k] = nodes[k]
1692 other_nets[k]['external']=True
1693 elif nodes[k]['type'] == 'network':
1694 other_nets[k] = nodes[k]
1695 other_nets[k]['external']=False
1696
1697
1698 #1.2: Check that VNF are present at database table vnfs. Insert uuid, description and external interfaces
1699 for name,vnf in vnfs.items():
1700 where = {"OR": {"tenant_id": tenant_id, 'public': "true"}}
1701 error_text = ""
1702 error_pos = "'topology':'nodes':'" + name + "'"
1703 if 'vnf_id' in vnf:
1704 error_text += " 'vnf_id' " + vnf['vnf_id']
1705 where['uuid'] = vnf['vnf_id']
1706 if 'VNF model' in vnf:
1707 error_text += " 'VNF model' " + vnf['VNF model']
1708 where['name'] = vnf['VNF model']
1709 if len(where) == 1:
1710 raise NfvoException("Descriptor need a 'vnf_id' or 'VNF model' field at " + error_pos, HTTP_Bad_Request)
1711
1712 vnf_db = mydb.get_rows(SELECT=('uuid','name','description'),
1713 FROM='vnfs',
1714 WHERE=where)
1715 if len(vnf_db)==0:
1716 raise NfvoException("unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
1717 elif len(vnf_db)>1:
1718 raise NfvoException("more than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
1719 vnf['uuid']=vnf_db[0]['uuid']
1720 vnf['description']=vnf_db[0]['description']
1721 #get external interfaces
1722 ext_ifaces = mydb.get_rows(SELECT=('external_name as name','i.uuid as iface_uuid', 'i.type as type'),
1723 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
1724 WHERE={'vnfs.uuid':vnf['uuid'], 'external_name<>': None} )
1725 for ext_iface in ext_ifaces:
1726 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type':ext_iface['type']}
1727
1728 #1.4 get list of connections
1729 conections = topo['topology']['connections']
1730 conections_list = []
1731 conections_list_name = []
1732 for k in conections.keys():
1733 if type(conections[k]['nodes'])==dict: #dict with node:iface pairs
1734 ifaces_list = conections[k]['nodes'].items()
1735 elif type(conections[k]['nodes'])==list: #list with dictionary
1736 ifaces_list=[]
1737 conection_pair_list = map(lambda x: x.items(), conections[k]['nodes'] )
1738 for k2 in conection_pair_list:
1739 ifaces_list += k2
1740
1741 con_type = conections[k].get("type", "link")
1742 if con_type != "link":
1743 if k in other_nets:
1744 raise NfvoException("Format error. Reapeted network name at 'topology':'connections':'{}'".format(str(k)), HTTP_Bad_Request)
1745 other_nets[k] = {'external': False}
1746 if conections[k].get("graph"):
1747 other_nets[k]["graph"] = conections[k]["graph"]
1748 ifaces_list.append( (k, None) )
1749
1750
1751 if con_type == "external_network":
1752 other_nets[k]['external'] = True
1753 if conections[k].get("model"):
1754 other_nets[k]["model"] = conections[k]["model"]
1755 else:
1756 other_nets[k]["model"] = k
1757 if con_type == "dataplane_net" or con_type == "bridge_net":
1758 other_nets[k]["model"] = con_type
1759
1760 conections_list_name.append(k)
1761 conections_list.append(set(ifaces_list)) #from list to set to operate as a set (this conversion removes elements that are repeated in a list)
1762 #print set(ifaces_list)
1763 #check valid VNF and iface names
1764 for iface in ifaces_list:
1765 if iface[0] not in vnfs and iface[0] not in other_nets :
1766 raise NfvoException("format error. Invalid VNF name at 'topology':'connections':'{}':'nodes':'{}'".format(
1767 str(k), iface[0]), HTTP_Not_Found)
1768 if iface[0] in vnfs and iface[1] not in vnfs[ iface[0] ]['ifaces']:
1769 raise NfvoException("format error. Invalid interface name at 'topology':'connections':'{}':'nodes':'{}':'{}'".format(
1770 str(k), iface[0], iface[1]), HTTP_Not_Found)
1771
1772 #1.5 unify connections from the pair list to a consolidated list
1773 index=0
1774 while index < len(conections_list):
1775 index2 = index+1
1776 while index2 < len(conections_list):
1777 if len(conections_list[index] & conections_list[index2])>0: #common interface, join nets
1778 conections_list[index] |= conections_list[index2]
1779 del conections_list[index2]
1780 del conections_list_name[index2]
1781 else:
1782 index2 += 1
1783 conections_list[index] = list(conections_list[index]) # from set to list again
1784 index += 1
1785 #for k in conections_list:
1786 # print k
1787
1788
1789
1790 #1.6 Delete non external nets
1791 # for k in other_nets.keys():
1792 # if other_nets[k]['model']=='bridge' or other_nets[k]['model']=='dataplane_net' or other_nets[k]['model']=='bridge_net':
1793 # for con in conections_list:
1794 # delete_indexes=[]
1795 # for index in range(0,len(con)):
1796 # if con[index][0] == k: delete_indexes.insert(0,index) #order from higher to lower
1797 # for index in delete_indexes:
1798 # del con[index]
1799 # del other_nets[k]
1800 #1.7: Check external_ports are present at database table datacenter_nets
1801 for k,net in other_nets.items():
1802 error_pos = "'topology':'nodes':'" + k + "'"
1803 if net['external']==False:
1804 if 'name' not in net:
1805 net['name']=k
1806 if 'model' not in net:
1807 raise NfvoException("needed a 'model' at " + error_pos, HTTP_Bad_Request)
1808 if net['model']=='bridge_net':
1809 net['type']='bridge';
1810 elif net['model']=='dataplane_net':
1811 net['type']='data';
1812 else:
1813 raise NfvoException("unknown 'model' '"+ net['model'] +"' at " + error_pos, HTTP_Not_Found)
1814 else: #external
1815 #IF we do not want to check that external network exist at datacenter
1816 pass
1817 #ELSE
1818 # error_text = ""
1819 # WHERE_={}
1820 # if 'net_id' in net:
1821 # error_text += " 'net_id' " + net['net_id']
1822 # WHERE_['uuid'] = net['net_id']
1823 # if 'model' in net:
1824 # error_text += " 'model' " + net['model']
1825 # WHERE_['name'] = net['model']
1826 # if len(WHERE_) == 0:
1827 # return -HTTP_Bad_Request, "needed a 'net_id' or 'model' at " + error_pos
1828 # r,net_db = mydb.get_table(SELECT=('uuid','name','description','type','shared'),
1829 # FROM='datacenter_nets', WHERE=WHERE_ )
1830 # if r<0:
1831 # print "nfvo.new_scenario Error getting datacenter_nets",r,net_db
1832 # elif r==0:
1833 # print "nfvo.new_scenario Error" +error_text+ " is not present at database"
1834 # return -HTTP_Bad_Request, "unknown " +error_text+ " at " + error_pos
1835 # elif r>1:
1836 # print "nfvo.new_scenario Error more than one external_network for " +error_text+ " is present at database"
1837 # return -HTTP_Bad_Request, "more than one external_network for " +error_text+ "at "+ error_pos + " Concrete with 'net_id'"
1838 # other_nets[k].update(net_db[0])
1839 #ENDIF
1840 net_list={}
1841 net_nb=0 #Number of nets
1842 for con in conections_list:
1843 #check if this is connected to a external net
1844 other_net_index=-1
1845 #print
1846 #print "con", con
1847 for index in range(0,len(con)):
1848 #check if this is connected to a external net
1849 for net_key in other_nets.keys():
1850 if con[index][0]==net_key:
1851 if other_net_index>=0:
1852 error_text="There is some interface connected both to net '%s' and net '%s'" % (con[other_net_index][0], net_key)
1853 #print "nfvo.new_scenario " + error_text
1854 raise NfvoException(error_text, HTTP_Bad_Request)
1855 else:
1856 other_net_index = index
1857 net_target = net_key
1858 break
1859 #print "other_net_index", other_net_index
1860 try:
1861 if other_net_index>=0:
1862 del con[other_net_index]
1863 #IF we do not want to check that external network exist at datacenter
1864 if other_nets[net_target]['external'] :
1865 if "name" not in other_nets[net_target]:
1866 other_nets[net_target]['name'] = other_nets[net_target]['model']
1867 if other_nets[net_target]["type"] == "external_network":
1868 if vnfs[ con[0][0] ]['ifaces'][ con[0][1] ]["type"] == "data":
1869 other_nets[net_target]["type"] = "data"
1870 else:
1871 other_nets[net_target]["type"] = "bridge"
1872 #ELSE
1873 # if other_nets[net_target]['external'] :
1874 # type_='data' if len(con)>1 else 'ptp' #an external net is connected to a external port, so it is ptp if only one connection is done to this net
1875 # if type_=='data' and other_nets[net_target]['type']=="ptp":
1876 # error_text = "Error connecting %d nodes on a not multipoint net %s" % (len(con), net_target)
1877 # print "nfvo.new_scenario " + error_text
1878 # return -HTTP_Bad_Request, error_text
1879 #ENDIF
1880 for iface in con:
1881 vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target
1882 else:
1883 #create a net
1884 net_type_bridge=False
1885 net_type_data=False
1886 net_target = "__-__net"+str(net_nb)
1887 net_list[net_target] = {'name': conections_list_name[net_nb], #"net-"+str(net_nb),
1888 'description':"net-%s in scenario %s" %(net_nb,topo['name']),
1889 'external':False}
1890 for iface in con:
1891 vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target
1892 iface_type = vnfs[ iface[0] ]['ifaces'][ iface[1] ]['type']
1893 if iface_type=='mgmt' or iface_type=='bridge':
1894 net_type_bridge = True
1895 else:
1896 net_type_data = True
1897 if net_type_bridge and net_type_data:
1898 error_text = "Error connection interfaces of bridge type with data type. Firs node %s, iface %s" % (iface[0], iface[1])
1899 #print "nfvo.new_scenario " + error_text
1900 raise NfvoException(error_text, HTTP_Bad_Request)
1901 elif net_type_bridge:
1902 type_='bridge'
1903 else:
1904 type_='data' if len(con)>2 else 'ptp'
1905 net_list[net_target]['type'] = type_
1906 net_nb+=1
1907 except Exception:
1908 error_text = "Error connection node %s : %s does not match any VNF or interface" % (iface[0], iface[1])
1909 #print "nfvo.new_scenario " + error_text
1910 #raise e
1911 raise NfvoException(error_text, HTTP_Bad_Request)
1912
1913 #1.8: Connect to management net all not already connected interfaces of type 'mgmt'
1914 #1.8.1 obtain management net
1915 mgmt_net = mydb.get_rows(SELECT=('uuid','name','description','type','shared'),
1916 FROM='datacenter_nets', WHERE={'name':'mgmt'} )
1917 #1.8.2 check all interfaces from all vnfs
1918 if len(mgmt_net)>0:
1919 add_mgmt_net = False
1920 for vnf in vnfs.values():
1921 for iface in vnf['ifaces'].values():
1922 if iface['type']=='mgmt' and 'net_key' not in iface:
1923 #iface not connected
1924 iface['net_key'] = 'mgmt'
1925 add_mgmt_net = True
1926 if add_mgmt_net and 'mgmt' not in net_list:
1927 net_list['mgmt']=mgmt_net[0]
1928 net_list['mgmt']['external']=True
1929 net_list['mgmt']['graph']={'visible':False}
1930
1931 net_list.update(other_nets)
1932 #print
1933 #print 'net_list', net_list
1934 #print
1935 #print 'vnfs', vnfs
1936 #print
1937
1938 #2: insert scenario. filling tables scenarios,sce_vnfs,sce_interfaces,sce_nets
1939 c = mydb.new_scenario( { 'vnfs':vnfs, 'nets':net_list,
1940 'tenant_id':tenant_id, 'name':topo['name'],
1941 'description':topo.get('description',topo['name']),
1942 'public': topo.get('public', False)
1943 })
1944
1945 return c
1946
1947
1948 def new_scenario_v02(mydb, tenant_id, scenario_dict, version):
1949 """ This creates a new scenario for version 0.2 and 0.3"""
1950 scenario = scenario_dict["scenario"]
1951 if tenant_id != "any":
1952 check_tenant(mydb, tenant_id)
1953 if "tenant_id" in scenario:
1954 if scenario["tenant_id"] != tenant_id:
1955 # print "nfvo.new_scenario_v02() tenant '%s' not found" % tenant_id
1956 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(
1957 scenario["tenant_id"], tenant_id), HTTP_Unauthorized)
1958 else:
1959 tenant_id=None
1960
1961 # 1: Check that VNF are present at database table vnfs and update content into scenario dict
1962 for name,vnf in scenario["vnfs"].iteritems():
1963 where = {"OR": {"tenant_id": tenant_id, 'public': "true"}}
1964 error_text = ""
1965 error_pos = "'scenario':'vnfs':'" + name + "'"
1966 if 'vnf_id' in vnf:
1967 error_text += " 'vnf_id' " + vnf['vnf_id']
1968 where['uuid'] = vnf['vnf_id']
1969 if 'vnf_name' in vnf:
1970 error_text += " 'vnf_name' " + vnf['vnf_name']
1971 where['name'] = vnf['vnf_name']
1972 if len(where) == 1:
1973 raise NfvoException("Needed a 'vnf_id' or 'vnf_name' at " + error_pos, HTTP_Bad_Request)
1974 vnf_db = mydb.get_rows(SELECT=('uuid', 'name', 'description'),
1975 FROM='vnfs',
1976 WHERE=where)
1977 if len(vnf_db) == 0:
1978 raise NfvoException("Unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
1979 elif len(vnf_db) > 1:
1980 raise NfvoException("More than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
1981 vnf['uuid'] = vnf_db[0]['uuid']
1982 vnf['description'] = vnf_db[0]['description']
1983 vnf['ifaces'] = {}
1984 # get external interfaces
1985 ext_ifaces = mydb.get_rows(SELECT=('external_name as name', 'i.uuid as iface_uuid', 'i.type as type'),
1986 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
1987 WHERE={'vnfs.uuid':vnf['uuid'], 'external_name<>': None} )
1988 for ext_iface in ext_ifaces:
1989 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type': ext_iface['type']}
1990 # TODO? get internal-connections from db.nets and their profiles, and update scenario[vnfs][internal-connections] accordingly
1991
1992 # 2: Insert net_key and ip_address at every vnf interface
1993 for net_name, net in scenario["networks"].items():
1994 net_type_bridge = False
1995 net_type_data = False
1996 for iface_dict in net["interfaces"]:
1997 if version == "0.2":
1998 temp_dict = iface_dict
1999 ip_address = None
2000 elif version == "0.3":
2001 temp_dict = {iface_dict["vnf"] : iface_dict["vnf_interface"]}
2002 ip_address = iface_dict.get('ip_address', None)
2003 for vnf, iface in temp_dict.items():
2004 if vnf not in scenario["vnfs"]:
2005 error_text = "Error at 'networks':'{}':'interfaces' VNF '{}' not match any VNF at 'vnfs'".format(
2006 net_name, vnf)
2007 # logger.debug("nfvo.new_scenario_v02 " + error_text)
2008 raise NfvoException(error_text, HTTP_Not_Found)
2009 if iface not in scenario["vnfs"][vnf]['ifaces']:
2010 error_text = "Error at 'networks':'{}':'interfaces':'{}' interface not match any VNF interface"\
2011 .format(net_name, iface)
2012 # logger.debug("nfvo.new_scenario_v02 " + error_text)
2013 raise NfvoException(error_text, HTTP_Bad_Request)
2014 if "net_key" in scenario["vnfs"][vnf]['ifaces'][iface]:
2015 error_text = "Error at 'networks':'{}':'interfaces':'{}' interface already connected at network"\
2016 "'{}'".format(net_name, iface,scenario["vnfs"][vnf]['ifaces'][iface]['net_key'])
2017 # logger.debug("nfvo.new_scenario_v02 " + error_text)
2018 raise NfvoException(error_text, HTTP_Bad_Request)
2019 scenario["vnfs"][vnf]['ifaces'][ iface ]['net_key'] = net_name
2020 scenario["vnfs"][vnf]['ifaces'][iface]['ip_address'] = ip_address
2021 iface_type = scenario["vnfs"][vnf]['ifaces'][iface]['type']
2022 if iface_type == 'mgmt' or iface_type == 'bridge':
2023 net_type_bridge = True
2024 else:
2025 net_type_data = True
2026
2027 if net_type_bridge and net_type_data:
2028 error_text = "Error connection interfaces of 'bridge' type and 'data' type at 'networks':'{}':'interfaces'"\
2029 .format(net_name)
2030 # logger.debug("nfvo.new_scenario " + error_text)
2031 raise NfvoException(error_text, HTTP_Bad_Request)
2032 elif net_type_bridge:
2033 type_ = 'bridge'
2034 else:
2035 type_ = 'data' if len(net["interfaces"]) > 2 else 'ptp'
2036
2037 if net.get("implementation"): # for v0.3
2038 if type_ == "bridge" and net["implementation"] == "underlay":
2039 error_text = "Error connecting interfaces of data type to a network declared as 'underlay' at "\
2040 "'network':'{}'".format(net_name)
2041 # logger.debug(error_text)
2042 raise NfvoException(error_text, HTTP_Bad_Request)
2043 elif type_ != "bridge" and net["implementation"] == "overlay":
2044 error_text = "Error connecting interfaces of data type to a network declared as 'overlay' at "\
2045 "'network':'{}'".format(net_name)
2046 # logger.debug(error_text)
2047 raise NfvoException(error_text, HTTP_Bad_Request)
2048 net.pop("implementation")
2049 if "type" in net and version == "0.3": # for v0.3
2050 if type_ == "data" and net["type"] == "e-line":
2051 error_text = "Error connecting more than 2 interfaces of data type to a network declared as type "\
2052 "'e-line' at 'network':'{}'".format(net_name)
2053 # logger.debug(error_text)
2054 raise NfvoException(error_text, HTTP_Bad_Request)
2055 elif type_ == "ptp" and net["type"] == "e-lan":
2056 type_ = "data"
2057
2058 net['type'] = type_
2059 net['name'] = net_name
2060 net['external'] = net.get('external', False)
2061
2062 # 3: insert at database
2063 scenario["nets"] = scenario["networks"]
2064 scenario['tenant_id'] = tenant_id
2065 scenario_id = mydb.new_scenario(scenario)
2066 return scenario_id
2067
2068
2069 def new_nsd_v3(mydb, tenant_id, nsd_descriptor):
2070 """
2071 Parses an OSM IM nsd_catalog and insert at DB
2072 :param mydb:
2073 :param tenant_id:
2074 :param nsd_descriptor:
2075 :return: The list of cretated NSD ids
2076 """
2077 try:
2078 mynsd = nsd_catalog.nsd()
2079 try:
2080 pybindJSONDecoder.load_ietf_json(nsd_descriptor, None, None, obj=mynsd)
2081 except Exception as e:
2082 raise NfvoException("Error. Invalid NS descriptor format: " + str(e), HTTP_Bad_Request)
2083 db_scenarios = []
2084 db_sce_nets = []
2085 db_sce_vnfs = []
2086 db_sce_interfaces = []
2087 db_ip_profiles = []
2088 db_ip_profiles_index = 0
2089 uuid_list = []
2090 nsd_uuid_list = []
2091 for nsd_yang in mynsd.nsd_catalog.nsd.itervalues():
2092 nsd = nsd_yang.get()
2093
2094 # table sceanrios
2095 scenario_uuid = str(uuid4())
2096 uuid_list.append(scenario_uuid)
2097 nsd_uuid_list.append(scenario_uuid)
2098 db_scenario = {
2099 "uuid": scenario_uuid,
2100 "osm_id": get_str(nsd, "id", 255),
2101 "name": get_str(nsd, "name", 255),
2102 "description": get_str(nsd, "description", 255),
2103 "tenant_id": tenant_id,
2104 "vendor": get_str(nsd, "vendor", 255),
2105 "short_name": get_str(nsd, "short-name", 255),
2106 "descriptor": str(nsd_descriptor)[:60000],
2107 }
2108 db_scenarios.append(db_scenario)
2109
2110 # table sce_vnfs (constituent-vnfd)
2111 vnf_index2scevnf_uuid = {}
2112 vnf_index2vnf_uuid = {}
2113 for vnf in nsd.get("constituent-vnfd").itervalues():
2114 existing_vnf = mydb.get_rows(FROM="vnfs", WHERE={'osm_id': str(vnf["vnfd-id-ref"])[:255],
2115 'tenant_id': tenant_id})
2116 if not existing_vnf:
2117 raise NfvoException("Error. Invalid NS descriptor at 'nsd[{}]':'constituent-vnfd':'vnfd-id-ref':"
2118 "'{}'. Reference to a non-existing VNFD in the catalog".format(
2119 str(nsd["id"]), str(vnf["vnfd-id-ref"])[:255]),
2120 HTTP_Bad_Request)
2121 sce_vnf_uuid = str(uuid4())
2122 uuid_list.append(sce_vnf_uuid)
2123 db_sce_vnf = {
2124 "uuid": sce_vnf_uuid,
2125 "scenario_id": scenario_uuid,
2126 "name": existing_vnf[0]["name"][:200] + "." + get_str(vnf, "member-vnf-index", 5),
2127 "vnf_id": existing_vnf[0]["uuid"],
2128 "member_vnf_index": int(vnf["member-vnf-index"]),
2129 # TODO 'start-by-default': True
2130 }
2131 vnf_index2scevnf_uuid[int(vnf['member-vnf-index'])] = sce_vnf_uuid
2132 vnf_index2vnf_uuid[int(vnf['member-vnf-index'])] = existing_vnf[0]["uuid"]
2133 db_sce_vnfs.append(db_sce_vnf)
2134
2135 # table ip_profiles (ip-profiles)
2136 ip_profile_name2db_table_index = {}
2137 for ip_profile in nsd.get("ip-profiles").itervalues():
2138 db_ip_profile = {
2139 "ip_version": str(ip_profile["ip-profile-params"].get("ip-version", "ipv4")),
2140 "subnet_address": str(ip_profile["ip-profile-params"].get("subnet-address")),
2141 "gateway_address": str(ip_profile["ip-profile-params"].get("gateway-address")),
2142 "dhcp_enabled": str(ip_profile["ip-profile-params"]["dhcp-params"].get("enabled", True)),
2143 "dhcp_start_address": str(ip_profile["ip-profile-params"]["dhcp-params"].get("start-address")),
2144 "dhcp_count": str(ip_profile["ip-profile-params"]["dhcp-params"].get("count")),
2145 }
2146 dns_list = []
2147 for dns in ip_profile["ip-profile-params"]["dns-server"].itervalues():
2148 dns_list.append(str(dns.get("address")))
2149 db_ip_profile["dns_address"] = ";".join(dns_list)
2150 if ip_profile["ip-profile-params"].get('security-group'):
2151 db_ip_profile["security_group"] = ip_profile["ip-profile-params"]['security-group']
2152 ip_profile_name2db_table_index[str(ip_profile["name"])] = db_ip_profiles_index
2153 db_ip_profiles_index += 1
2154 db_ip_profiles.append(db_ip_profile)
2155
2156 # table sce_nets (internal-vld)
2157 for vld in nsd.get("vld").itervalues():
2158 sce_net_uuid = str(uuid4())
2159 uuid_list.append(sce_net_uuid)
2160 db_sce_net = {
2161 "uuid": sce_net_uuid,
2162 "name": get_str(vld, "name", 255),
2163 "scenario_id": scenario_uuid,
2164 # "type": #TODO
2165 "multipoint": not vld.get("type") == "ELINE",
2166 # "external": #TODO
2167 "description": get_str(vld, "description", 255),
2168 }
2169 # guess type of network
2170 if vld.get("mgmt-network"):
2171 db_sce_net["type"] = "bridge"
2172 db_sce_net["external"] = True
2173 elif vld.get("provider-network").get("overlay-type") == "VLAN":
2174 db_sce_net["type"] = "data"
2175 else:
2176 db_sce_net["type"] = "bridge"
2177 db_sce_nets.append(db_sce_net)
2178
2179 # ip-profile, link db_ip_profile with db_sce_net
2180 if vld.get("ip-profile-ref"):
2181 ip_profile_name = vld.get("ip-profile-ref")
2182 if ip_profile_name not in ip_profile_name2db_table_index:
2183 raise NfvoException("Error. Invalid NS descriptor at 'nsd[{}]':'vld[{}]':'ip-profile-ref':'{}'."
2184 " Reference to a non-existing 'ip_profiles'".format(
2185 str(nsd["id"]), str(vld["id"]), str(vld["ip-profile-ref"])),
2186 HTTP_Bad_Request)
2187 db_ip_profiles[ip_profile_name2db_table_index[ip_profile_name]]["sce_net_id"] = sce_net_uuid
2188
2189 # table sce_interfaces (vld:vnfd-connection-point-ref)
2190 for iface in vld.get("vnfd-connection-point-ref").itervalues():
2191 vnf_index = int(iface['member-vnf-index-ref'])
2192 # check correct parameters
2193 if vnf_index not in vnf_index2vnf_uuid:
2194 raise NfvoException("Error. Invalid NS descriptor at 'nsd[{}]':'vld[{}]':'vnfd-connection-point"
2195 "-ref':'member-vnf-index-ref':'{}'. Reference to a non-existing index at "
2196 "'nsd':'constituent-vnfd'".format(
2197 str(nsd["id"]), str(vld["id"]), str(iface["member-vnf-index-ref"])),
2198 HTTP_Bad_Request)
2199
2200 existing_ifaces = mydb.get_rows(SELECT=('i.uuid as uuid',),
2201 FROM="interfaces as i join vms on i.vm_id=vms.uuid",
2202 WHERE={'vnf_id': vnf_index2vnf_uuid[vnf_index],
2203 'external_name': get_str(iface, "vnfd-connection-point-ref",
2204 255)})
2205 if not existing_ifaces:
2206 raise NfvoException("Error. Invalid NS descriptor at 'nsd[{}]':'vld[{}]':'vnfd-connection-point"
2207 "-ref':'vnfd-connection-point-ref':'{}'. Reference to a non-existing "
2208 "connection-point name at VNFD '{}'".format(
2209 str(nsd["id"]), str(vld["id"]), str(iface["vnfd-connection-point-ref"]),
2210 str(iface.get("vnfd-id-ref"))[:255]),
2211 HTTP_Bad_Request)
2212 interface_uuid = existing_ifaces[0]["uuid"]
2213 sce_interface_uuid = str(uuid4())
2214 uuid_list.append(sce_net_uuid)
2215 db_sce_interface = {
2216 "uuid": sce_interface_uuid,
2217 "sce_vnf_id": vnf_index2scevnf_uuid[vnf_index],
2218 "sce_net_id": sce_net_uuid,
2219 "interface_id": interface_uuid,
2220 # "ip_address": #TODO
2221 }
2222 db_sce_interfaces.append(db_sce_interface)
2223
2224 db_tables = [
2225 {"scenarios": db_scenarios},
2226 {"sce_nets": db_sce_nets},
2227 {"ip_profiles": db_ip_profiles},
2228 {"sce_vnfs": db_sce_vnfs},
2229 {"sce_interfaces": db_sce_interfaces},
2230 ]
2231
2232 logger.debug("create_vnf Deployment done vnfDict: %s",
2233 yaml.safe_dump(db_tables, indent=4, default_flow_style=False) )
2234 mydb.new_rows(db_tables, uuid_list)
2235 return nsd_uuid_list
2236 except NfvoException:
2237 raise
2238 except Exception as e:
2239 logger.error("Exception {}".format(e))
2240 raise # NfvoException("Exception {}".format(e), HTTP_Bad_Request)
2241
2242
2243 def edit_scenario(mydb, tenant_id, scenario_id, data):
2244 data["uuid"] = scenario_id
2245 data["tenant_id"] = tenant_id
2246 c = mydb.edit_scenario( data )
2247 return c
2248
2249
2250 def start_scenario(mydb, tenant_id, scenario_id, instance_scenario_name, instance_scenario_description, datacenter=None,vim_tenant=None, startvms=True):
2251 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
2252 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter, vim_tenant=vim_tenant)
2253 vims = {datacenter_id: myvim}
2254 myvim_tenant = myvim['tenant_id']
2255 datacenter_name = myvim['name']
2256
2257 rollbackList=[]
2258 try:
2259 #print "Checking that the scenario_id exists and getting the scenario dictionary"
2260 scenarioDict = mydb.get_scenario(scenario_id, tenant_id, datacenter_id=datacenter_id)
2261 scenarioDict['datacenter2tenant'] = { datacenter_id: myvim['config']['datacenter_tenant_id'] }
2262 scenarioDict['datacenter_id'] = datacenter_id
2263 #print '================scenarioDict======================='
2264 #print json.dumps(scenarioDict, indent=4)
2265 #print 'BEGIN launching instance scenario "%s" based on "%s"' % (instance_scenario_name,scenarioDict['name'])
2266
2267 logger.debug("start_scenario Scenario %s: consisting of %d VNF(s)", scenarioDict['name'],len(scenarioDict['vnfs']))
2268 #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
2269
2270 auxNetDict = {} #Auxiliar dictionary. First key:'scenario' or sce_vnf uuid. Second Key: uuid of the net/sce_net. Value: vim_net_id
2271 auxNetDict['scenario'] = {}
2272
2273 logger.debug("start_scenario 1. Creating new nets (sce_nets) in the VIM")
2274 for sce_net in scenarioDict['nets']:
2275 #print "Net name: %s. Description: %s" % (sce_net["name"], sce_net["description"])
2276
2277 myNetName = "%s.%s" % (instance_scenario_name, sce_net['name'])
2278 myNetName = myNetName[0:255] #limit length
2279 myNetType = sce_net['type']
2280 myNetDict = {}
2281 myNetDict["name"] = myNetName
2282 myNetDict["type"] = myNetType
2283 myNetDict["tenant_id"] = myvim_tenant
2284 myNetIPProfile = sce_net.get('ip_profile', None)
2285 #TODO:
2286 #We should use the dictionary as input parameter for new_network
2287 #print myNetDict
2288 if not sce_net["external"]:
2289 network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile)
2290 #print "New VIM network created for scenario %s. Network id: %s" % (scenarioDict['name'],network_id)
2291 sce_net['vim_id'] = network_id
2292 auxNetDict['scenario'][sce_net['uuid']] = network_id
2293 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
2294 sce_net["created"] = True
2295 else:
2296 if sce_net['vim_id'] == None:
2297 error_text = "Error, datacenter '%s' does not have external network '%s'." % (datacenter_name, sce_net['name'])
2298 _, message = rollback(mydb, vims, rollbackList)
2299 logger.error("nfvo.start_scenario: %s", error_text)
2300 raise NfvoException(error_text, HTTP_Bad_Request)
2301 logger.debug("Using existent VIM network for scenario %s. Network id %s", scenarioDict['name'],sce_net['vim_id'])
2302 auxNetDict['scenario'][sce_net['uuid']] = sce_net['vim_id']
2303
2304 logger.debug("start_scenario 2. Creating new nets (vnf internal nets) in the VIM")
2305 #For each vnf net, we create it and we add it to instanceNetlist.
2306
2307 for sce_vnf in scenarioDict['vnfs']:
2308 for net in sce_vnf['nets']:
2309 #print "Net name: %s. Description: %s" % (net["name"], net["description"])
2310
2311 myNetName = "%s.%s" % (instance_scenario_name,net['name'])
2312 myNetName = myNetName[0:255] #limit length
2313 myNetType = net['type']
2314 myNetDict = {}
2315 myNetDict["name"] = myNetName
2316 myNetDict["type"] = myNetType
2317 myNetDict["tenant_id"] = myvim_tenant
2318 myNetIPProfile = net.get('ip_profile', None)
2319 #print myNetDict
2320 #TODO:
2321 #We should use the dictionary as input parameter for new_network
2322 network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile)
2323 #print "VIM network id for scenario %s: %s" % (scenarioDict['name'],network_id)
2324 net['vim_id'] = network_id
2325 if sce_vnf['uuid'] not in auxNetDict:
2326 auxNetDict[sce_vnf['uuid']] = {}
2327 auxNetDict[sce_vnf['uuid']][net['uuid']] = network_id
2328 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
2329 net["created"] = True
2330
2331 #print "auxNetDict:"
2332 #print yaml.safe_dump(auxNetDict, indent=4, default_flow_style=False)
2333
2334 logger.debug("start_scenario 3. Creating new vm instances in the VIM")
2335 #myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict)
2336 i = 0
2337 for sce_vnf in scenarioDict['vnfs']:
2338 vnf_availability_zones = []
2339 for vm in sce_vnf['vms']:
2340 vm_av = vm.get('availability_zone')
2341 if vm_av and vm_av not in vnf_availability_zones:
2342 vnf_availability_zones.append(vm_av)
2343
2344 # check if there is enough availability zones available at vim level.
2345 if myvims[datacenter_id].availability_zone and vnf_availability_zones:
2346 if len(vnf_availability_zones) > len(myvims[datacenter_id].availability_zone):
2347 raise NfvoException('No enough availability zones at VIM for this deployment', HTTP_Bad_Request)
2348
2349 for vm in sce_vnf['vms']:
2350 i += 1
2351 myVMDict = {}
2352 #myVMDict['name'] = "%s-%s-%s" % (scenarioDict['name'],sce_vnf['name'], vm['name'])
2353 myVMDict['name'] = "{}.{}.{}".format(instance_scenario_name,sce_vnf['name'],chr(96+i))
2354 #myVMDict['description'] = vm['description']
2355 myVMDict['description'] = myVMDict['name'][0:99]
2356 if not startvms:
2357 myVMDict['start'] = "no"
2358 myVMDict['name'] = myVMDict['name'][0:255] #limit name length
2359 #print "VM name: %s. Description: %s" % (myVMDict['name'], myVMDict['name'])
2360
2361 #create image at vim in case it not exist
2362 image_dict = mydb.get_table_by_uuid_name("images", vm['image_id'])
2363 image_id = create_or_use_image(mydb, vims, image_dict, [], True)
2364 vm['vim_image_id'] = image_id
2365
2366 #create flavor at vim in case it not exist
2367 flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id'])
2368 if flavor_dict['extended']!=None:
2369 flavor_dict['extended']= yaml.load(flavor_dict['extended'])
2370 flavor_id = create_or_use_flavor(mydb, vims, flavor_dict, [], True)
2371 vm['vim_flavor_id'] = flavor_id
2372
2373
2374 myVMDict['imageRef'] = vm['vim_image_id']
2375 myVMDict['flavorRef'] = vm['vim_flavor_id']
2376 myVMDict['networks'] = []
2377 for iface in vm['interfaces']:
2378 netDict = {}
2379 if iface['type']=="data":
2380 netDict['type'] = iface['model']
2381 elif "model" in iface and iface["model"]!=None:
2382 netDict['model']=iface['model']
2383 #TODO in future, remove this because mac_address will not be set, and the type of PV,VF is obtained from iterface table model
2384 #discover type of interface looking at flavor
2385 for numa in flavor_dict.get('extended',{}).get('numas',[]):
2386 for flavor_iface in numa.get('interfaces',[]):
2387 if flavor_iface.get('name') == iface['internal_name']:
2388 if flavor_iface['dedicated'] == 'yes':
2389 netDict['type']="PF" #passthrough
2390 elif flavor_iface['dedicated'] == 'no':
2391 netDict['type']="VF" #siov
2392 elif flavor_iface['dedicated'] == 'yes:sriov':
2393 netDict['type']="VFnotShared" #sriov but only one sriov on the PF
2394 netDict["mac_address"] = flavor_iface.get("mac_address")
2395 break;
2396 netDict["use"]=iface['type']
2397 if netDict["use"]=="data" and not netDict.get("type"):
2398 #print "netDict", netDict
2399 #print "iface", iface
2400 e_text = "Cannot determine the interface type PF or VF of VNF '%s' VM '%s' iface '%s'" %(sce_vnf['name'], vm['name'], iface['internal_name'])
2401 if flavor_dict.get('extended')==None:
2402 raise NfvoException(e_text + "After database migration some information is not available. \
2403 Try to delete and create the scenarios and VNFs again", HTTP_Conflict)
2404 else:
2405 raise NfvoException(e_text, HTTP_Internal_Server_Error)
2406 if netDict["use"]=="mgmt" or netDict["use"]=="bridge":
2407 netDict["type"]="virtual"
2408 if "vpci" in iface and iface["vpci"] is not None:
2409 netDict['vpci'] = iface['vpci']
2410 if "mac" in iface and iface["mac"] is not None:
2411 netDict['mac_address'] = iface['mac']
2412 if "port-security" in iface and iface["port-security"] is not None:
2413 netDict['port_security'] = iface['port-security']
2414 if "floating-ip" in iface and iface["floating-ip"] is not None:
2415 netDict['floating_ip'] = iface['floating-ip']
2416 netDict['name'] = iface['internal_name']
2417 if iface['net_id'] is None:
2418 for vnf_iface in sce_vnf["interfaces"]:
2419 #print iface
2420 #print vnf_iface
2421 if vnf_iface['interface_id']==iface['uuid']:
2422 netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ]
2423 break
2424 else:
2425 netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ]
2426 #skip bridge ifaces not connected to any net
2427 #if 'net_id' not in netDict or netDict['net_id']==None:
2428 # continue
2429 myVMDict['networks'].append(netDict)
2430 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
2431 #print myVMDict['name']
2432 #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
2433 #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
2434 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
2435
2436 if 'availability_zone' in myVMDict:
2437 av_index = vnf_availability_zones.index(myVMDict['availability_zone'])
2438 else:
2439 av_index = None
2440
2441 vm_id, _ = myvim.new_vminstance(myVMDict['name'], myVMDict['description'], myVMDict.get('start', None),
2442 myVMDict['imageRef'], myVMDict['flavorRef'], myVMDict['networks'],
2443 availability_zone_index=av_index,
2444 availability_zone_list=vnf_availability_zones)
2445 #print "VIM vm instance id (server id) for scenario %s: %s" % (scenarioDict['name'],vm_id)
2446 vm['vim_id'] = vm_id
2447 rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id})
2448 #put interface uuid back to scenario[vnfs][vms[[interfaces]
2449 for net in myVMDict['networks']:
2450 if "vim_id" in net:
2451 for iface in vm['interfaces']:
2452 if net["name"]==iface["internal_name"]:
2453 iface["vim_id"]=net["vim_id"]
2454 break
2455
2456 logger.debug("start scenario Deployment done")
2457 #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
2458 #r,c = mydb.new_instance_scenario_as_a_whole(nfvo_tenant,scenarioDict['name'],scenarioDict)
2459 instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_scenario_name, instance_scenario_description, scenarioDict)
2460 return mydb.get_instance_scenario(instance_id)
2461
2462 except (db_base_Exception, vimconn.vimconnException) as e:
2463 _, message = rollback(mydb, vims, rollbackList)
2464 if isinstance(e, db_base_Exception):
2465 error_text = "Exception at database"
2466 else:
2467 error_text = "Exception at VIM"
2468 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
2469 #logger.error("start_scenario %s", error_text)
2470 raise NfvoException(error_text, e.http_code)
2471
2472 def unify_cloud_config(cloud_config_preserve, cloud_config):
2473 """ join the cloud config information into cloud_config_preserve.
2474 In case of conflict cloud_config_preserve preserves
2475 None is allowed
2476 """
2477 if not cloud_config_preserve and not cloud_config:
2478 return None
2479
2480 new_cloud_config = {"key-pairs":[], "users":[]}
2481 # key-pairs
2482 if cloud_config_preserve:
2483 for key in cloud_config_preserve.get("key-pairs", () ):
2484 if key not in new_cloud_config["key-pairs"]:
2485 new_cloud_config["key-pairs"].append(key)
2486 if cloud_config:
2487 for key in cloud_config.get("key-pairs", () ):
2488 if key not in new_cloud_config["key-pairs"]:
2489 new_cloud_config["key-pairs"].append(key)
2490 if not new_cloud_config["key-pairs"]:
2491 del new_cloud_config["key-pairs"]
2492
2493 # users
2494 if cloud_config:
2495 new_cloud_config["users"] += cloud_config.get("users", () )
2496 if cloud_config_preserve:
2497 new_cloud_config["users"] += cloud_config_preserve.get("users", () )
2498 index_to_delete = []
2499 users = new_cloud_config.get("users", [])
2500 for index0 in range(0,len(users)):
2501 if index0 in index_to_delete:
2502 continue
2503 for index1 in range(index0+1,len(users)):
2504 if index1 in index_to_delete:
2505 continue
2506 if users[index0]["name"] == users[index1]["name"]:
2507 index_to_delete.append(index1)
2508 for key in users[index1].get("key-pairs",()):
2509 if "key-pairs" not in users[index0]:
2510 users[index0]["key-pairs"] = [key]
2511 elif key not in users[index0]["key-pairs"]:
2512 users[index0]["key-pairs"].append(key)
2513 index_to_delete.sort(reverse=True)
2514 for index in index_to_delete:
2515 del users[index]
2516 if not new_cloud_config["users"]:
2517 del new_cloud_config["users"]
2518
2519 #boot-data-drive
2520 if cloud_config and cloud_config.get("boot-data-drive") != None:
2521 new_cloud_config["boot-data-drive"] = cloud_config["boot-data-drive"]
2522 if cloud_config_preserve and cloud_config_preserve.get("boot-data-drive") != None:
2523 new_cloud_config["boot-data-drive"] = cloud_config_preserve["boot-data-drive"]
2524
2525 # user-data
2526 new_cloud_config["user-data"] = []
2527 if cloud_config and cloud_config.get("user-data"):
2528 if isinstance(cloud_config["user-data"], list):
2529 new_cloud_config["user-data"] += cloud_config["user-data"]
2530 else:
2531 new_cloud_config["user-data"].append(cloud_config["user-data"])
2532 if cloud_config_preserve and cloud_config_preserve.get("user-data"):
2533 if isinstance(cloud_config_preserve["user-data"], list):
2534 new_cloud_config["user-data"] += cloud_config_preserve["user-data"]
2535 else:
2536 new_cloud_config["user-data"].append(cloud_config_preserve["user-data"])
2537 if not new_cloud_config["user-data"]:
2538 del new_cloud_config["user-data"]
2539
2540 # config files
2541 new_cloud_config["config-files"] = []
2542 if cloud_config and cloud_config.get("config-files") != None:
2543 new_cloud_config["config-files"] += cloud_config["config-files"]
2544 if cloud_config_preserve:
2545 for file in cloud_config_preserve.get("config-files", ()):
2546 for index in range(0, len(new_cloud_config["config-files"])):
2547 if new_cloud_config["config-files"][index]["dest"] == file["dest"]:
2548 new_cloud_config["config-files"][index] = file
2549 break
2550 else:
2551 new_cloud_config["config-files"].append(file)
2552 if not new_cloud_config["config-files"]:
2553 del new_cloud_config["config-files"]
2554 return new_cloud_config
2555
2556
2557 def get_vim_thread(mydb, tenant_id, datacenter_id_name=None, datacenter_tenant_id=None):
2558 datacenter_id = None
2559 datacenter_name = None
2560 thread = None
2561 try:
2562 if datacenter_tenant_id:
2563 thread_id = datacenter_tenant_id
2564 thread = vim_threads["running"].get(datacenter_tenant_id)
2565 else:
2566 where_={"td.nfvo_tenant_id": tenant_id}
2567 if datacenter_id_name:
2568 if utils.check_valid_uuid(datacenter_id_name):
2569 datacenter_id = datacenter_id_name
2570 where_["dt.datacenter_id"] = datacenter_id
2571 else:
2572 datacenter_name = datacenter_id_name
2573 where_["d.name"] = datacenter_name
2574 if datacenter_tenant_id:
2575 where_["dt.uuid"] = datacenter_tenant_id
2576 datacenters = mydb.get_rows(
2577 SELECT=("dt.uuid as datacenter_tenant_id",),
2578 FROM="datacenter_tenants as dt join tenants_datacenters as td on dt.uuid=td.datacenter_tenant_id "
2579 "join datacenters as d on d.uuid=dt.datacenter_id",
2580 WHERE=where_)
2581 if len(datacenters) > 1:
2582 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
2583 elif datacenters:
2584 thread_id = datacenters[0]["datacenter_tenant_id"]
2585 thread = vim_threads["running"].get(thread_id)
2586 if not thread:
2587 raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found)
2588 return thread_id, thread
2589 except db_base_Exception as e:
2590 raise NfvoException("{} {}".format(type(e).__name__ , str(e)), e.http_code)
2591
2592
2593 def get_datacenter_uuid(mydb, tenant_id, datacenter_id_name):
2594 WHERE_dict={}
2595 if utils.check_valid_uuid(datacenter_id_name):
2596 WHERE_dict['d.uuid'] = datacenter_id_name
2597 else:
2598 WHERE_dict['d.name'] = datacenter_id_name
2599
2600 if tenant_id:
2601 WHERE_dict['nfvo_tenant_id'] = tenant_id
2602 from_= "tenants_datacenters as td join datacenters as d on td.datacenter_id=d.uuid join datacenter_tenants as" \
2603 " dt on td.datacenter_tenant_id=dt.uuid"
2604 else:
2605 from_ = 'datacenters as d'
2606 vimaccounts = mydb.get_rows(FROM=from_, SELECT=("d.uuid as uuid",), WHERE=WHERE_dict )
2607 if len(vimaccounts) == 0:
2608 raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found)
2609 elif len(vimaccounts)>1:
2610 #print "nfvo.datacenter_action() error. Several datacenters found"
2611 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
2612 return vimaccounts[0]["uuid"]
2613
2614
2615 def get_datacenter_by_name_uuid(mydb, tenant_id, datacenter_id_name=None, **extra_filter):
2616 datacenter_id = None
2617 datacenter_name = None
2618 if datacenter_id_name:
2619 if utils.check_valid_uuid(datacenter_id_name):
2620 datacenter_id = datacenter_id_name
2621 else:
2622 datacenter_name = datacenter_id_name
2623 vims = get_vim(mydb, tenant_id, datacenter_id, datacenter_name, **extra_filter)
2624 if len(vims) == 0:
2625 raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found)
2626 elif len(vims)>1:
2627 #print "nfvo.datacenter_action() error. Several datacenters found"
2628 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
2629 return vims.keys()[0], vims.values()[0]
2630
2631
2632 def update(d, u):
2633 '''Takes dict d and updates it with the values in dict u.'''
2634 '''It merges all depth levels'''
2635 for k, v in u.iteritems():
2636 if isinstance(v, collections.Mapping):
2637 r = update(d.get(k, {}), v)
2638 d[k] = r
2639 else:
2640 d[k] = u[k]
2641 return d
2642
2643 def create_instance(mydb, tenant_id, instance_dict):
2644 # print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
2645 # logger.debug("Creating instance...")
2646 scenario = instance_dict["scenario"]
2647
2648 # find main datacenter
2649 myvims = {}
2650 myvim_threads_id = {}
2651 datacenter = instance_dict.get("datacenter")
2652 default_datacenter_id, vim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
2653 myvims[default_datacenter_id] = vim
2654 myvim_threads_id[default_datacenter_id], _ = get_vim_thread(mydb, tenant_id, default_datacenter_id)
2655 tenant = mydb.get_rows_by_id('nfvo_tenants', tenant_id)
2656 # myvim_tenant = myvim['tenant_id']
2657
2658 rollbackList=[]
2659
2660 # print "Checking that the scenario exists and getting the scenario dictionary"
2661 scenarioDict = mydb.get_scenario(scenario, tenant_id, datacenter_vim_id=myvim_threads_id[default_datacenter_id],
2662 datacenter_id=default_datacenter_id)
2663
2664 # logger.debug(">>>>>> Dictionaries before merging")
2665 # logger.debug(">>>>>> InstanceDict:\n{}".format(yaml.safe_dump(instance_dict,default_flow_style=False, width=256)))
2666 # logger.debug(">>>>>> ScenarioDict:\n{}".format(yaml.safe_dump(scenarioDict,default_flow_style=False, width=256)))
2667
2668 db_instance_vnfs = []
2669 db_instance_vms = []
2670 db_instance_interfaces = []
2671 db_ip_profiles = []
2672 db_vim_actions = []
2673 uuid_list = []
2674 task_index = 0
2675 instance_name = instance_dict["name"]
2676 instance_uuid = str(uuid4())
2677 uuid_list.append(instance_uuid)
2678 db_instance_scenario = {
2679 "uuid": instance_uuid,
2680 "name": instance_name,
2681 "tenant_id": tenant_id,
2682 "scenario_id": scenarioDict['uuid'],
2683 "datacenter_id": default_datacenter_id,
2684 # filled bellow 'datacenter_tenant_id'
2685 "description": instance_dict.get("description"),
2686 }
2687 if scenarioDict.get("cloud-config"):
2688 db_instance_scenario["cloud_config"] = yaml.safe_dump(scenarioDict["cloud-config"],
2689 default_flow_style=True, width=256)
2690 instance_action_id = get_task_id()
2691 db_instance_action = {
2692 "uuid": instance_action_id, # same uuid for the instance and the action on create
2693 "tenant_id": tenant_id,
2694 "instance_id": instance_uuid,
2695 "description": "CREATE",
2696 }
2697
2698 # Auxiliary dictionaries from x to y
2699 vnf_net2instance = {}
2700 sce_net2instance = {}
2701 net2task_id = {'scenario': {}}
2702
2703 # logger.debug("Creating instance from scenario-dict:\n%s",
2704 # yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False))
2705 try:
2706 # 0 check correct parameters
2707 for net_name, net_instance_desc in instance_dict.get("networks", {}).iteritems():
2708 found = False
2709 for scenario_net in scenarioDict['nets']:
2710 if net_name == scenario_net["name"]:
2711 found = True
2712 break
2713 if not found:
2714 raise NfvoException("Invalid scenario network name '{}' at instance:networks".format(net_name),
2715 HTTP_Bad_Request)
2716 if "sites" not in net_instance_desc:
2717 net_instance_desc["sites"] = [ {} ]
2718 site_without_datacenter_field = False
2719 for site in net_instance_desc["sites"]:
2720 if site.get("datacenter"):
2721 site["datacenter"] = get_datacenter_uuid(mydb, tenant_id, site["datacenter"])
2722 if site["datacenter"] not in myvims:
2723 # Add this datacenter to myvims
2724 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, site["datacenter"])
2725 myvims[d] = v
2726 myvim_threads_id[d], _ = get_vim_thread(mydb, tenant_id, site["datacenter"])
2727 site["datacenter"] = d # change name to id
2728 else:
2729 if site_without_datacenter_field:
2730 raise NfvoException("Found more than one entries without datacenter field at "
2731 "instance:networks:{}:sites".format(net_name), HTTP_Bad_Request)
2732 site_without_datacenter_field = True
2733 site["datacenter"] = default_datacenter_id # change name to id
2734
2735 for vnf_name, vnf_instance_desc in instance_dict.get("vnfs",{}).iteritems():
2736 found = False
2737 for scenario_vnf in scenarioDict['vnfs']:
2738 if vnf_name == scenario_vnf['name']:
2739 found = True
2740 break
2741 if not found:
2742 raise NfvoException("Invalid vnf name '{}' at instance:vnfs".format(vnf_instance_desc), HTTP_Bad_Request)
2743 if "datacenter" in vnf_instance_desc:
2744 # Add this datacenter to myvims
2745 vnf_instance_desc["datacenter"] = get_datacenter_uuid(mydb, tenant_id, vnf_instance_desc["datacenter"])
2746 if vnf_instance_desc["datacenter"] not in myvims:
2747 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, vnf_instance_desc["datacenter"])
2748 myvims[d] = v
2749 myvim_threads_id[d], _ = get_vim_thread(mydb, tenant_id, vnf_instance_desc["datacenter"])
2750 scenario_vnf["datacenter"] = vnf_instance_desc["datacenter"]
2751
2752 # 0.1 parse cloud-config parameters
2753 cloud_config = unify_cloud_config(instance_dict.get("cloud-config"), scenarioDict.get("cloud-config"))
2754 # We add the RO key to cloud_config
2755 if tenant[0].get('RO_pub_key'):
2756 RO_key = {"key-pairs": [tenant[0]['RO_pub_key']]}
2757 cloud_config = unify_cloud_config(cloud_config, RO_key)
2758
2759 # 0.2 merge instance information into scenario
2760 # Ideally, the operation should be as simple as: update(scenarioDict,instance_dict)
2761 # However, this is not possible yet.
2762 for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems():
2763 for scenario_net in scenarioDict['nets']:
2764 if net_name == scenario_net["name"]:
2765 if 'ip-profile' in net_instance_desc:
2766 # translate from input format to database format
2767 ipprofile_in = net_instance_desc['ip-profile']
2768 ipprofile_db = {}
2769 ipprofile_db['subnet_address'] = ipprofile_in.get('subnet-address')
2770 ipprofile_db['ip_version'] = ipprofile_in.get('ip-version', 'IPv4')
2771 ipprofile_db['gateway_address'] = ipprofile_in.get('gateway-address')
2772 ipprofile_db['dns_address'] = ipprofile_in.get('dns-address')
2773 if isinstance(ipprofile_db['dns_address'], (list, tuple)):
2774 ipprofile_db['dns_address'] = ";".join(ipprofile_db['dns_address'])
2775 if 'dhcp' in ipprofile_in:
2776 ipprofile_db['dhcp_start_address'] = ipprofile_in['dhcp'].get('start-address')
2777 ipprofile_db['dhcp_enabled'] = ipprofile_in['dhcp'].get('enabled', True)
2778 ipprofile_db['dhcp_count'] = ipprofile_in['dhcp'].get('count' )
2779 if 'ip_profile' not in scenario_net:
2780 scenario_net['ip_profile'] = ipprofile_db
2781 else:
2782 update(scenario_net['ip_profile'], ipprofile_db)
2783 for interface in net_instance_desc.get('interfaces', () ):
2784 if 'ip_address' in interface:
2785 for vnf in scenarioDict['vnfs']:
2786 if interface['vnf'] == vnf['name']:
2787 for vnf_interface in vnf['interfaces']:
2788 if interface['vnf_interface'] == vnf_interface['external_name']:
2789 vnf_interface['ip_address']=interface['ip_address']
2790
2791 # logger.debug(">>>>>>>> Merged dictionary")
2792 # logger.debug("Creating instance scenario-dict MERGED:\n%s",
2793 # yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False))
2794
2795 # 1. Creating new nets (sce_nets) in the VIM"
2796 db_instance_nets = []
2797 for sce_net in scenarioDict['nets']:
2798 descriptor_net = instance_dict.get("networks", {}).get(sce_net["name"], {})
2799 net_name = descriptor_net.get("vim-network-name")
2800 sce_net2instance[sce_net['uuid']] = {}
2801 net2task_id['scenario'][sce_net['uuid']] = {}
2802
2803 sites = descriptor_net.get("sites", [ {} ])
2804 for site in sites:
2805 if site.get("datacenter"):
2806 vim = myvims[ site["datacenter"] ]
2807 datacenter_id = site["datacenter"]
2808 myvim_thread_id = myvim_threads_id[ site["datacenter"] ]
2809 else:
2810 vim = myvims[ default_datacenter_id ]
2811 datacenter_id = default_datacenter_id
2812 myvim_thread_id = myvim_threads_id[default_datacenter_id]
2813 net_type = sce_net['type']
2814 lookfor_filter = {'admin_state_up': True, 'status': 'ACTIVE'} # 'shared': True
2815
2816 if not net_name:
2817 if sce_net["external"]:
2818 net_name = sce_net["name"]
2819 else:
2820 net_name = "{}.{}".format(instance_name, sce_net["name"])
2821 net_name = net_name[:255] # limit length
2822
2823 if "netmap-use" in site or "netmap-create" in site:
2824 create_network = False
2825 lookfor_network = False
2826 if "netmap-use" in site:
2827 lookfor_network = True
2828 if utils.check_valid_uuid(site["netmap-use"]):
2829 filter_text = "scenario id '%s'" % site["netmap-use"]
2830 lookfor_filter["id"] = site["netmap-use"]
2831 else:
2832 filter_text = "scenario name '%s'" % site["netmap-use"]
2833 lookfor_filter["name"] = site["netmap-use"]
2834 if "netmap-create" in site:
2835 create_network = True
2836 net_vim_name = net_name
2837 if site["netmap-create"]:
2838 net_vim_name = site["netmap-create"]
2839 elif sce_net["external"]:
2840 if sce_net['vim_id'] != None:
2841 # there is a netmap at datacenter_nets database # TODO REVISE!!!!
2842 create_network = False
2843 lookfor_network = True
2844 lookfor_filter["id"] = sce_net['vim_id']
2845 filter_text = "vim_id '{}' datacenter_netmap name '{}'. Try to reload vims with "\
2846 "datacenter-net-update".format(sce_net['vim_id'], sce_net["name"])
2847 # look for network at datacenter and return error
2848 else:
2849 # There is not a netmap, look at datacenter for a net with this name and create if not found
2850 create_network = True
2851 lookfor_network = True
2852 lookfor_filter["name"] = sce_net["name"]
2853 net_vim_name = sce_net["name"]
2854 filter_text = "scenario name '%s'" % sce_net["name"]
2855 else:
2856 net_vim_name = net_name
2857 create_network = True
2858 lookfor_network = False
2859
2860 task_extra = {}
2861 if create_network:
2862 task_action = "CREATE"
2863 task_extra["params"] = (net_vim_name, net_type, sce_net.get('ip_profile', None))
2864 if lookfor_network:
2865 task_extra["find"] = (lookfor_filter,)
2866 elif lookfor_network:
2867 task_action = "FIND"
2868 task_extra["params"] = (lookfor_filter,)
2869
2870 # fill database content
2871 net_uuid = str(uuid4())
2872 uuid_list.append(net_uuid)
2873 sce_net2instance[sce_net['uuid']][datacenter_id] = net_uuid
2874 db_net = {
2875 "uuid": net_uuid,
2876 'vim_net_id': None,
2877 "instance_scenario_id": instance_uuid,
2878 "sce_net_id": sce_net["uuid"],
2879 "created": create_network,
2880 'datacenter_id': datacenter_id,
2881 'datacenter_tenant_id': myvim_thread_id,
2882 'status': 'BUILD' if create_network else "ACTIVE"
2883 }
2884 db_instance_nets.append(db_net)
2885 db_vim_action = {
2886 "instance_action_id": instance_action_id,
2887 "status": "SCHEDULED",
2888 "task_index": task_index,
2889 "datacenter_vim_id": myvim_thread_id,
2890 "action": task_action,
2891 "item": "instance_nets",
2892 "item_id": net_uuid,
2893 "extra": yaml.safe_dump(task_extra, default_flow_style=True, width=256)
2894 }
2895 net2task_id['scenario'][sce_net['uuid']][datacenter_id] = task_index
2896 task_index += 1
2897 db_vim_actions.append(db_vim_action)
2898
2899 if 'ip_profile' in sce_net:
2900 db_ip_profile={
2901 'instance_net_id': net_uuid,
2902 'ip_version': sce_net['ip_profile']['ip_version'],
2903 'subnet_address': sce_net['ip_profile']['subnet_address'],
2904 'gateway_address': sce_net['ip_profile']['gateway_address'],
2905 'dns_address': sce_net['ip_profile']['dns_address'],
2906 'dhcp_enabled': sce_net['ip_profile']['dhcp_enabled'],
2907 'dhcp_start_address': sce_net['ip_profile']['dhcp_start_address'],
2908 'dhcp_count': sce_net['ip_profile']['dhcp_count'],
2909 }
2910 db_ip_profiles.append(db_ip_profile)
2911
2912 # 2. Creating new nets (vnf internal nets) in the VIM"
2913 # For each vnf net, we create it and we add it to instanceNetlist.
2914 for sce_vnf in scenarioDict['vnfs']:
2915 for net in sce_vnf['nets']:
2916 if sce_vnf.get("datacenter"):
2917 datacenter_id = sce_vnf["datacenter"]
2918 myvim_thread_id = myvim_threads_id[sce_vnf["datacenter"]]
2919 else:
2920 datacenter_id = default_datacenter_id
2921 myvim_thread_id = myvim_threads_id[default_datacenter_id]
2922 descriptor_net = instance_dict.get("vnfs", {}).get(sce_vnf["name"], {})
2923 net_name = descriptor_net.get("name")
2924 if not net_name:
2925 net_name = "{}.{}".format(instance_name, net["name"])
2926 net_name = net_name[:255] # limit length
2927 net_type = net['type']
2928
2929 if sce_vnf['uuid'] not in vnf_net2instance:
2930 vnf_net2instance[sce_vnf['uuid']] = {}
2931 if sce_vnf['uuid'] not in net2task_id:
2932 net2task_id[sce_vnf['uuid']] = {}
2933 net2task_id[sce_vnf['uuid']][net['uuid']] = task_index
2934
2935 # fill database content
2936 net_uuid = str(uuid4())
2937 uuid_list.append(net_uuid)
2938 vnf_net2instance[sce_vnf['uuid']][net['uuid']] = net_uuid
2939 db_net = {
2940 "uuid": net_uuid,
2941 'vim_net_id': None,
2942 "instance_scenario_id": instance_uuid,
2943 "net_id": net["uuid"],
2944 "created": True,
2945 'datacenter_id': datacenter_id,
2946 'datacenter_tenant_id': myvim_thread_id,
2947 }
2948 db_instance_nets.append(db_net)
2949
2950 db_vim_action = {
2951 "instance_action_id": instance_action_id,
2952 "task_index": task_index,
2953 "datacenter_vim_id": myvim_thread_id,
2954 "status": "SCHEDULED",
2955 "action": "CREATE",
2956 "item": "instance_nets",
2957 "item_id": net_uuid,
2958 "extra": yaml.safe_dump({"params": (net_name, net_type, net.get('ip_profile',None))},
2959 default_flow_style=True, width=256)
2960 }
2961 task_index += 1
2962 db_vim_actions.append(db_vim_action)
2963
2964 if 'ip_profile' in net:
2965 db_ip_profile = {
2966 'instance_net_id': net_uuid,
2967 'ip_version': net['ip_profile']['ip_version'],
2968 'subnet_address': net['ip_profile']['subnet_address'],
2969 'gateway_address': net['ip_profile']['gateway_address'],
2970 'dns_address': net['ip_profile']['dns_address'],
2971 'dhcp_enabled': net['ip_profile']['dhcp_enabled'],
2972 'dhcp_start_address': net['ip_profile']['dhcp_start_address'],
2973 'dhcp_count': net['ip_profile']['dhcp_count'],
2974 }
2975 db_ip_profiles.append(db_ip_profile)
2976
2977 # print "vnf_net2instance:"
2978 # print yaml.safe_dump(vnf_net2instance, indent=4, default_flow_style=False)
2979
2980 # 3. Creating new vm instances in the VIM
2981 # myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict)
2982 sce_vnf_list = sorted(scenarioDict['vnfs'], key=lambda k: k['name'])
2983 for sce_vnf in sce_vnf_list:
2984 vnf_availability_zones = []
2985 for vm in sce_vnf['vms']:
2986 vm_av = vm.get('availability_zone')
2987 if vm_av and vm_av not in vnf_availability_zones:
2988 vnf_availability_zones.append(vm_av)
2989
2990 # check if there is enough availability zones available at vim level.
2991 if myvims[datacenter_id].availability_zone and vnf_availability_zones:
2992 if len(vnf_availability_zones) > len(myvims[datacenter_id].availability_zone):
2993 raise NfvoException('No enough availability zones at VIM for this deployment', HTTP_Bad_Request)
2994
2995 if sce_vnf.get("datacenter"):
2996 vim = myvims[ sce_vnf["datacenter"] ]
2997 myvim_thread_id = myvim_threads_id[ sce_vnf["datacenter"] ]
2998 datacenter_id = sce_vnf["datacenter"]
2999 else:
3000 vim = myvims[ default_datacenter_id ]
3001 myvim_thread_id = myvim_threads_id[ default_datacenter_id ]
3002 datacenter_id = default_datacenter_id
3003 sce_vnf["datacenter_id"] = datacenter_id
3004 i = 0
3005
3006 vnf_uuid = str(uuid4())
3007 uuid_list.append(vnf_uuid)
3008 db_instance_vnf = {
3009 'uuid': vnf_uuid,
3010 'instance_scenario_id': instance_uuid,
3011 'vnf_id': sce_vnf['vnf_id'],
3012 'sce_vnf_id': sce_vnf['uuid'],
3013 'datacenter_id': datacenter_id,
3014 'datacenter_tenant_id': myvim_thread_id,
3015 }
3016 db_instance_vnfs.append(db_instance_vnf)
3017
3018 for vm in sce_vnf['vms']:
3019 myVMDict = {}
3020 myVMDict['name'] = "{}.{}.{}".format(instance_name[:64], sce_vnf['name'][:64], vm["name"][:64])
3021 myVMDict['description'] = myVMDict['name'][0:99]
3022 # if not startvms:
3023 # myVMDict['start'] = "no"
3024 myVMDict['name'] = myVMDict['name'][0:255] # limit name length
3025 #create image at vim in case it not exist
3026 image_dict = mydb.get_table_by_uuid_name("images", vm['image_id'])
3027 image_id = create_or_use_image(mydb, {datacenter_id: vim}, image_dict, [], True)
3028 vm['vim_image_id'] = image_id
3029
3030 # create flavor at vim in case it not exist
3031 flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id'])
3032 if flavor_dict['extended']!=None:
3033 flavor_dict['extended'] = yaml.load(flavor_dict['extended'])
3034 flavor_id = create_or_use_flavor(mydb, {datacenter_id: vim}, flavor_dict, rollbackList, True)
3035
3036 # Obtain information for additional disks
3037 extended_flavor_dict = mydb.get_rows(FROM='datacenters_flavors', SELECT=('extended',), WHERE={'vim_id': flavor_id})
3038 if not extended_flavor_dict:
3039 raise NfvoException("flavor '{}' not found".format(flavor_id), HTTP_Not_Found)
3040 return
3041
3042 # extended_flavor_dict_yaml = yaml.load(extended_flavor_dict[0])
3043 myVMDict['disks'] = None
3044 extended_info = extended_flavor_dict[0]['extended']
3045 if extended_info != None:
3046 extended_flavor_dict_yaml = yaml.load(extended_info)
3047 if 'disks' in extended_flavor_dict_yaml:
3048 myVMDict['disks'] = extended_flavor_dict_yaml['disks']
3049
3050 vm['vim_flavor_id'] = flavor_id
3051 myVMDict['imageRef'] = vm['vim_image_id']
3052 myVMDict['flavorRef'] = vm['vim_flavor_id']
3053 myVMDict['availability_zone'] = vm.get('availability_zone')
3054 myVMDict['networks'] = []
3055 task_depends_on = []
3056 # TODO ALF. connect_mgmt_interfaces. Connect management interfaces if this is true
3057 db_vm_ifaces = []
3058 for iface in vm['interfaces']:
3059 netDict = {}
3060 if iface['type']=="data":
3061 netDict['type'] = iface['model']
3062 elif "model" in iface and iface["model"]!=None:
3063 netDict['model']=iface['model']
3064 # TODO in future, remove this because mac_address will not be set, and the type of PV,VF
3065 # is obtained from iterface table model
3066 # discover type of interface looking at flavor
3067 for numa in flavor_dict.get('extended',{}).get('numas',[]):
3068 for flavor_iface in numa.get('interfaces',[]):
3069 if flavor_iface.get('name') == iface['internal_name']:
3070 if flavor_iface['dedicated'] == 'yes':
3071 netDict['type']="PF" #passthrough
3072 elif flavor_iface['dedicated'] == 'no':
3073 netDict['type']="VF" #siov
3074 elif flavor_iface['dedicated'] == 'yes:sriov':
3075 netDict['type']="VFnotShared" #sriov but only one sriov on the PF
3076 netDict["mac_address"] = flavor_iface.get("mac_address")
3077 break;
3078 netDict["use"]=iface['type']
3079 if netDict["use"]=="data" and not netDict.get("type"):
3080 #print "netDict", netDict
3081 #print "iface", iface
3082 e_text = "Cannot determine the interface type PF or VF of VNF '%s' VM '%s' iface '%s'" %(sce_vnf['name'], vm['name'], iface['internal_name'])
3083 if flavor_dict.get('extended')==None:
3084 raise NfvoException(e_text + "After database migration some information is not available. \
3085 Try to delete and create the scenarios and VNFs again", HTTP_Conflict)
3086 else:
3087 raise NfvoException(e_text, HTTP_Internal_Server_Error)
3088 if netDict["use"]=="mgmt" or netDict["use"]=="bridge":
3089 netDict["type"]="virtual"
3090 if "vpci" in iface and iface["vpci"] is not None:
3091 netDict['vpci'] = iface['vpci']
3092 if "mac" in iface and iface["mac"] is not None:
3093 netDict['mac_address'] = iface['mac']
3094 if "port-security" in iface and iface["port-security"] is not None:
3095 netDict['port_security'] = iface['port-security']
3096 if "floating-ip" in iface and iface["floating-ip"] is not None:
3097 netDict['floating_ip'] = iface['floating-ip']
3098 netDict['name'] = iface['internal_name']
3099 if iface['net_id'] is None:
3100 for vnf_iface in sce_vnf["interfaces"]:
3101 # print iface
3102 # print vnf_iface
3103 if vnf_iface['interface_id']==iface['uuid']:
3104 netDict['net_id'] = "TASK-{}".format(net2task_id['scenario'][ vnf_iface['sce_net_id'] ][datacenter_id])
3105 instance_net_id = sce_net2instance[ vnf_iface['sce_net_id'] ][datacenter_id]
3106 task_depends_on.append(net2task_id['scenario'][ vnf_iface['sce_net_id'] ][datacenter_id])
3107 break
3108 else:
3109 netDict['net_id'] = "TASK-{}".format(net2task_id[ sce_vnf['uuid'] ][ iface['net_id'] ])
3110 instance_net_id = vnf_net2instance[ sce_vnf['uuid'] ][ iface['net_id'] ]
3111 task_depends_on.append(net2task_id[sce_vnf['uuid'] ][ iface['net_id']])
3112 # skip bridge ifaces not connected to any net
3113 if 'net_id' not in netDict or netDict['net_id']==None:
3114 continue
3115 myVMDict['networks'].append(netDict)
3116 db_vm_iface={
3117 # "uuid"
3118 # 'instance_vm_id': instance_vm_uuid,
3119 "instance_net_id": instance_net_id,
3120 'interface_id': iface['uuid'],
3121 # 'vim_interface_id': ,
3122 'type': 'external' if iface['external_name'] is not None else 'internal',
3123 'ip_address': iface.get('ip_address'),
3124 'floating_ip': int(iface.get('floating-ip', False)),
3125 'port_security': int(iface.get('port-security', True))
3126 }
3127 db_vm_ifaces.append(db_vm_iface)
3128 # print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
3129 # print myVMDict['name']
3130 # print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
3131 # print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
3132 # print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
3133 if vm.get("boot_data"):
3134 cloud_config_vm = unify_cloud_config(vm["boot_data"], cloud_config)
3135 else:
3136 cloud_config_vm = cloud_config
3137 if myVMDict.get('availability_zone'):
3138 av_index = vnf_availability_zones.index(myVMDict['availability_zone'])
3139 else:
3140 av_index = None
3141 for vm_index in range(0, vm.get('count', 1)):
3142 vm_index_name = ""
3143 if vm.get('count', 1) > 1:
3144 vm_index_name += "." + chr(97 + vm_index)
3145 task_params = (myVMDict['name']+vm_index_name, myVMDict['description'], myVMDict.get('start', None),
3146 myVMDict['imageRef'], myVMDict['flavorRef'], myVMDict['networks'], cloud_config_vm,
3147 myVMDict['disks'], av_index, vnf_availability_zones)
3148 # put interface uuid back to scenario[vnfs][vms[[interfaces]
3149 for net in myVMDict['networks']:
3150 if "vim_id" in net:
3151 for iface in vm['interfaces']:
3152 if net["name"]==iface["internal_name"]:
3153 iface["vim_id"]=net["vim_id"]
3154 break
3155 vm_uuid = str(uuid4())
3156 uuid_list.append(vm_uuid)
3157 db_vm = {
3158 "uuid": vm_uuid,
3159 'instance_vnf_id': vnf_uuid,
3160 #TODO delete "vim_vm_id": vm_id,
3161 "vm_id": vm["uuid"],
3162 # "status":
3163 }
3164 db_instance_vms.append(db_vm)
3165
3166 iface_index = 0
3167 for db_vm_iface in db_vm_ifaces:
3168 iface_uuid = str(uuid4())
3169 uuid_list.append(iface_uuid)
3170 db_vm_iface_instance = {
3171 "uuid": iface_uuid,
3172 "instance_vm_id": vm_uuid
3173 }
3174 db_vm_iface_instance.update(db_vm_iface)
3175 if db_vm_iface_instance.get("ip_address"): # increment ip_address
3176 ip = db_vm_iface_instance.get("ip_address")
3177 i = ip.rfind(".")
3178 if i > 0:
3179 try:
3180 i += 1
3181 ip = ip[i:] + str(int(ip[:i]) +1)
3182 db_vm_iface_instance["ip_address"] = ip
3183 except:
3184 db_vm_iface_instance["ip_address"] = None
3185 db_instance_interfaces.append(db_vm_iface_instance)
3186 myVMDict['networks'][iface_index]["uuid"] = iface_uuid
3187 iface_index += 1
3188
3189 db_vim_action = {
3190 "instance_action_id": instance_action_id,
3191 "task_index": task_index,
3192 "datacenter_vim_id": myvim_thread_id,
3193 "action": "CREATE",
3194 "status": "SCHEDULED",
3195 "item": "instance_vms",
3196 "item_id": vm_uuid,
3197 "extra": yaml.safe_dump({"params": task_params, "depends_on": task_depends_on},
3198 default_flow_style=True, width=256)
3199 }
3200 task_index += 1
3201 db_vim_actions.append(db_vim_action)
3202
3203 scenarioDict["datacenter2tenant"] = myvim_threads_id
3204
3205 db_instance_action["number_tasks"] = task_index
3206 db_instance_scenario['datacenter_tenant_id'] = myvim_threads_id[default_datacenter_id]
3207 db_instance_scenario['datacenter_id'] = default_datacenter_id
3208 db_tables=[
3209 {"instance_scenarios": db_instance_scenario},
3210 {"instance_vnfs": db_instance_vnfs},
3211 {"instance_nets": db_instance_nets},
3212 {"ip_profiles": db_ip_profiles},
3213 {"instance_vms": db_instance_vms},
3214 {"instance_interfaces": db_instance_interfaces},
3215 {"instance_actions": db_instance_action},
3216 {"vim_actions": db_vim_actions}
3217 ]
3218
3219 logger.debug("create_instance done DB tables: %s",
3220 yaml.safe_dump(db_tables, indent=4, default_flow_style=False) )
3221 mydb.new_rows(db_tables, uuid_list)
3222 for myvim_thread_id in myvim_threads_id.values():
3223 vim_threads["running"][myvim_thread_id].insert_task(db_vim_actions)
3224
3225 returned_instance = mydb.get_instance_scenario(instance_uuid)
3226 returned_instance["action_id"] = instance_action_id
3227 return returned_instance
3228 except (NfvoException, vimconn.vimconnException, db_base_Exception) as e:
3229 message = rollback(mydb, myvims, rollbackList)
3230 if isinstance(e, db_base_Exception):
3231 error_text = "database Exception"
3232 elif isinstance(e, vimconn.vimconnException):
3233 error_text = "VIM Exception"
3234 else:
3235 error_text = "Exception"
3236 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
3237 # logger.error("create_instance: %s", error_text)
3238 raise NfvoException(error_text, e.http_code)
3239
3240
3241 def delete_instance(mydb, tenant_id, instance_id):
3242 # print "Checking that the instance_id exists and getting the instance dictionary"
3243 instanceDict = mydb.get_instance_scenario(instance_id, tenant_id)
3244 # print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
3245 tenant_id = instanceDict["tenant_id"]
3246 # print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
3247
3248 # 1. Delete from Database
3249 message = mydb.delete_instance_scenario(instance_id, tenant_id)
3250
3251 # 2. delete from VIM
3252 error_msg = ""
3253 myvims = {}
3254 myvim_threads = {}
3255 vimthread_affected = {}
3256 net2vm_dependencies = {}
3257
3258 task_index = 0
3259 instance_action_id = get_task_id()
3260 db_vim_actions = []
3261 db_instance_action = {
3262 "uuid": instance_action_id, # same uuid for the instance and the action on create
3263 "tenant_id": tenant_id,
3264 "instance_id": instance_id,
3265 "description": "DELETE",
3266 # "number_tasks": 0 # filled bellow
3267 }
3268
3269 # 2.1 deleting VMs
3270 # vm_fail_list=[]
3271 for sce_vnf in instanceDict['vnfs']:
3272 datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
3273 vimthread_affected[sce_vnf["datacenter_tenant_id"]] = None
3274 if datacenter_key not in myvims:
3275 try:
3276 _,myvim_thread = get_vim_thread(mydb, tenant_id, sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
3277 except NfvoException as e:
3278 logger.error(str(e))
3279 myvim_thread = None
3280 myvim_threads[datacenter_key] = myvim_thread
3281 vims = get_vim(mydb, tenant_id, datacenter_id=sce_vnf["datacenter_id"],
3282 datacenter_tenant_id=sce_vnf["datacenter_tenant_id"])
3283 if len(vims) == 0:
3284 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"],
3285 sce_vnf["datacenter_tenant_id"]))
3286 myvims[datacenter_key] = None
3287 else:
3288 myvims[datacenter_key] = vims.values()[0]
3289 myvim = myvims[datacenter_key]
3290 myvim_thread = myvim_threads[datacenter_key]
3291 for vm in sce_vnf['vms']:
3292 if not myvim:
3293 error_msg += "\n VM id={} cannot be deleted because datacenter={} not found".format(vm['vim_vm_id'], sce_vnf["datacenter_id"])
3294 continue
3295 db_vim_action = {
3296 "instance_action_id": instance_action_id,
3297 "task_index": task_index,
3298 "datacenter_vim_id": sce_vnf["datacenter_tenant_id"],
3299 "action": "DELETE",
3300 "status": "SCHEDULED",
3301 "item": "instance_vms",
3302 "item_id": vm["uuid"],
3303 "extra": yaml.safe_dump({"params": vm["interfaces"]},
3304 default_flow_style=True, width=256)
3305 }
3306 db_vim_actions.append(db_vim_action)
3307 for interface in vm["interfaces"]:
3308 if not interface.get("instance_net_id"):
3309 continue
3310 if interface["instance_net_id"] not in net2vm_dependencies:
3311 net2vm_dependencies[interface["instance_net_id"]] = []
3312 net2vm_dependencies[interface["instance_net_id"]].append(task_index)
3313 task_index += 1
3314
3315 # 2.2 deleting NETS
3316 # net_fail_list=[]
3317 for net in instanceDict['nets']:
3318 vimthread_affected[net["datacenter_tenant_id"]] = None
3319 datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"])
3320 if datacenter_key not in myvims:
3321 try:
3322 _,myvim_thread = get_vim_thread(mydb, tenant_id, sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
3323 except NfvoException as e:
3324 logger.error(str(e))
3325 myvim_thread = None
3326 myvim_threads[datacenter_key] = myvim_thread
3327 vims = get_vim(mydb, tenant_id, datacenter_id=net["datacenter_id"],
3328 datacenter_tenant_id=net["datacenter_tenant_id"])
3329 if len(vims) == 0:
3330 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]))
3331 myvims[datacenter_key] = None
3332 else:
3333 myvims[datacenter_key] = vims.values()[0]
3334 myvim = myvims[datacenter_key]
3335 myvim_thread = myvim_threads[datacenter_key]
3336
3337 if not myvim:
3338 error_msg += "\n Net VIM_id={} cannot be deleted because datacenter={} not found".format(net['vim_net_id'], net["datacenter_id"])
3339 continue
3340 extra = {"params": (net['vim_net_id'], net['sdn_net_id'])}
3341 if net2vm_dependencies.get(net["uuid"]):
3342 extra["depends_on"] = net2vm_dependencies[net["uuid"]]
3343 db_vim_action = {
3344 "instance_action_id": instance_action_id,
3345 "task_index": task_index,
3346 "datacenter_vim_id": net["datacenter_tenant_id"],
3347 "action": "DELETE",
3348 "status": "SCHEDULED",
3349 "item": "instance_nets",
3350 "item_id": net["uuid"],
3351 "extra": yaml.safe_dump(extra, default_flow_style=True, width=256)
3352 }
3353 task_index += 1
3354 db_vim_actions.append(db_vim_action)
3355
3356 db_instance_action["number_tasks"] = task_index
3357 db_tables = [
3358 {"instance_actions": db_instance_action},
3359 {"vim_actions": db_vim_actions}
3360 ]
3361
3362 logger.debug("delete_instance done DB tables: %s",
3363 yaml.safe_dump(db_tables, indent=4, default_flow_style=False))
3364 mydb.new_rows(db_tables, ())
3365 for myvim_thread_id in vimthread_affected.keys():
3366 vim_threads["running"][myvim_thread_id].insert_task(db_vim_actions)
3367
3368 if len(error_msg) > 0:
3369 return 'action_id={} instance {} deleted but some elements could not be deleted, or already deleted '\
3370 '(error: 404) from VIM: {}'.format(instance_action_id, message, error_msg)
3371 else:
3372 return "action_id={} instance {} deleted".format(instance_action_id, message)
3373
3374
3375 def refresh_instance(mydb, nfvo_tenant, instanceDict, datacenter=None, vim_tenant=None):
3376 '''Refreshes a scenario instance. It modifies instanceDict'''
3377 '''Returns:
3378 - result: <0 if there is any unexpected error, n>=0 if no errors where n is the number of vms and nets that couldn't be updated in the database
3379 - error_msg
3380 '''
3381 # # Assumption: nfvo_tenant and instance_id were checked before entering into this function
3382 # #print "nfvo.refresh_instance begins"
3383 # #print json.dumps(instanceDict, indent=4)
3384 #
3385 # #print "Getting the VIM URL and the VIM tenant_id"
3386 # myvims={}
3387 #
3388 # # 1. Getting VIM vm and net list
3389 # vms_updated = [] #List of VM instance uuids in openmano that were updated
3390 # vms_notupdated=[]
3391 # vm_list = {}
3392 # for sce_vnf in instanceDict['vnfs']:
3393 # datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
3394 # if datacenter_key not in vm_list:
3395 # vm_list[datacenter_key] = []
3396 # if datacenter_key not in myvims:
3397 # vims = get_vim(mydb, nfvo_tenant, datacenter_id=sce_vnf["datacenter_id"],
3398 # datacenter_tenant_id=sce_vnf["datacenter_tenant_id"])
3399 # if len(vims) == 0:
3400 # logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"]))
3401 # myvims[datacenter_key] = None
3402 # else:
3403 # myvims[datacenter_key] = vims.values()[0]
3404 # for vm in sce_vnf['vms']:
3405 # vm_list[datacenter_key].append(vm['vim_vm_id'])
3406 # vms_notupdated.append(vm["uuid"])
3407 #
3408 # nets_updated = [] #List of VM instance uuids in openmano that were updated
3409 # nets_notupdated=[]
3410 # net_list = {}
3411 # for net in instanceDict['nets']:
3412 # datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"])
3413 # if datacenter_key not in net_list:
3414 # net_list[datacenter_key] = []
3415 # if datacenter_key not in myvims:
3416 # vims = get_vim(mydb, nfvo_tenant, datacenter_id=net["datacenter_id"],
3417 # datacenter_tenant_id=net["datacenter_tenant_id"])
3418 # if len(vims) == 0:
3419 # logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]))
3420 # myvims[datacenter_key] = None
3421 # else:
3422 # myvims[datacenter_key] = vims.values()[0]
3423 #
3424 # net_list[datacenter_key].append(net['vim_net_id'])
3425 # nets_notupdated.append(net["uuid"])
3426 #
3427 # # 1. Getting the status of all VMs
3428 # vm_dict={}
3429 # for datacenter_key in myvims:
3430 # if not vm_list.get(datacenter_key):
3431 # continue
3432 # failed = True
3433 # failed_message=""
3434 # if not myvims[datacenter_key]:
3435 # failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])
3436 # else:
3437 # try:
3438 # vm_dict.update(myvims[datacenter_key].refresh_vms_status(vm_list[datacenter_key]) )
3439 # failed = False
3440 # except vimconn.vimconnException as e:
3441 # logger.error("VIM exception %s %s", type(e).__name__, str(e))
3442 # failed_message = str(e)
3443 # if failed:
3444 # for vm in vm_list[datacenter_key]:
3445 # vm_dict[vm] = {'status': "VIM_ERROR", 'error_msg': failed_message}
3446 #
3447 # # 2. Update the status of VMs in the instanceDict, while collects the VMs whose status changed
3448 # for sce_vnf in instanceDict['vnfs']:
3449 # for vm in sce_vnf['vms']:
3450 # vm_id = vm['vim_vm_id']
3451 # interfaces = vm_dict[vm_id].pop('interfaces', [])
3452 # #2.0 look if contain manamgement interface, and if not change status from ACTIVE:NoMgmtIP to ACTIVE
3453 # has_mgmt_iface = False
3454 # for iface in vm["interfaces"]:
3455 # if iface["type"]=="mgmt":
3456 # has_mgmt_iface = True
3457 # if vm_dict[vm_id]['status'] == "ACTIVE:NoMgmtIP" and not has_mgmt_iface:
3458 # vm_dict[vm_id]['status'] = "ACTIVE"
3459 # if vm_dict[vm_id].get('error_msg') and len(vm_dict[vm_id]['error_msg']) >= 1024:
3460 # vm_dict[vm_id]['error_msg'] = vm_dict[vm_id]['error_msg'][:516] + " ... " + vm_dict[vm_id]['error_msg'][-500:]
3461 # if vm['status'] != vm_dict[vm_id]['status'] or vm.get('error_msg')!=vm_dict[vm_id].get('error_msg') or vm.get('vim_info')!=vm_dict[vm_id].get('vim_info'):
3462 # vm['status'] = vm_dict[vm_id]['status']
3463 # vm['error_msg'] = vm_dict[vm_id].get('error_msg')
3464 # vm['vim_info'] = vm_dict[vm_id].get('vim_info')
3465 # # 2.1. Update in openmano DB the VMs whose status changed
3466 # try:
3467 # updates = mydb.update_rows('instance_vms', UPDATE=vm_dict[vm_id], WHERE={'uuid':vm["uuid"]})
3468 # vms_notupdated.remove(vm["uuid"])
3469 # if updates>0:
3470 # vms_updated.append(vm["uuid"])
3471 # except db_base_Exception as e:
3472 # logger.error("nfvo.refresh_instance error database update: %s", str(e))
3473 # # 2.2. Update in openmano DB the interface VMs
3474 # for interface in interfaces:
3475 # #translate from vim_net_id to instance_net_id
3476 # network_id_list=[]
3477 # for net in instanceDict['nets']:
3478 # if net["vim_net_id"] == interface["vim_net_id"]:
3479 # network_id_list.append(net["uuid"])
3480 # if not network_id_list:
3481 # continue
3482 # del interface["vim_net_id"]
3483 # try:
3484 # for network_id in network_id_list:
3485 # mydb.update_rows('instance_interfaces', UPDATE=interface, WHERE={'instance_vm_id':vm["uuid"], "instance_net_id":network_id})
3486 # except db_base_Exception as e:
3487 # logger.error( "nfvo.refresh_instance error with vm=%s, interface_net_id=%s", vm["uuid"], network_id)
3488 #
3489 # # 3. Getting the status of all nets
3490 # net_dict = {}
3491 # for datacenter_key in myvims:
3492 # if not net_list.get(datacenter_key):
3493 # continue
3494 # failed = True
3495 # failed_message = ""
3496 # if not myvims[datacenter_key]:
3497 # failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])
3498 # else:
3499 # try:
3500 # net_dict.update(myvims[datacenter_key].refresh_nets_status(net_list[datacenter_key]) )
3501 # failed = False
3502 # except vimconn.vimconnException as e:
3503 # logger.error("VIM exception %s %s", type(e).__name__, str(e))
3504 # failed_message = str(e)
3505 # if failed:
3506 # for net in net_list[datacenter_key]:
3507 # net_dict[net] = {'status': "VIM_ERROR", 'error_msg': failed_message}
3508 #
3509 # # 4. Update the status of nets in the instanceDict, while collects the nets whose status changed
3510 # # TODO: update nets inside a vnf
3511 # for net in instanceDict['nets']:
3512 # net_id = net['vim_net_id']
3513 # if net_dict[net_id].get('error_msg') and len(net_dict[net_id]['error_msg']) >= 1024:
3514 # net_dict[net_id]['error_msg'] = net_dict[net_id]['error_msg'][:516] + " ... " + net_dict[vm_id]['error_msg'][-500:]
3515 # if net['status'] != net_dict[net_id]['status'] or net.get('error_msg')!=net_dict[net_id].get('error_msg') or net.get('vim_info')!=net_dict[net_id].get('vim_info'):
3516 # net['status'] = net_dict[net_id]['status']
3517 # net['error_msg'] = net_dict[net_id].get('error_msg')
3518 # net['vim_info'] = net_dict[net_id].get('vim_info')
3519 # # 5.1. Update in openmano DB the nets whose status changed
3520 # try:
3521 # updated = mydb.update_rows('instance_nets', UPDATE=net_dict[net_id], WHERE={'uuid':net["uuid"]})
3522 # nets_notupdated.remove(net["uuid"])
3523 # if updated>0:
3524 # nets_updated.append(net["uuid"])
3525 # except db_base_Exception as e:
3526 # logger.error("nfvo.refresh_instance error database update: %s", str(e))
3527 #
3528 # # Returns appropriate output
3529 # #print "nfvo.refresh_instance finishes"
3530 # logger.debug("VMs updated in the database: %s; nets updated in the database %s; VMs not updated: %s; nets not updated: %s",
3531 # str(vms_updated), str(nets_updated), str(vms_notupdated), str(nets_notupdated))
3532 instance_id = instanceDict['uuid']
3533 # if len(vms_notupdated)+len(nets_notupdated)>0:
3534 # error_msg = "VMs not updated: " + str(vms_notupdated) + "; nets not updated: " + str(nets_notupdated)
3535 # return len(vms_notupdated)+len(nets_notupdated), 'Scenario instance ' + instance_id + ' refreshed but some elements could not be updated in the database: ' + error_msg
3536
3537 return 0, 'Scenario instance ' + instance_id + ' refreshed.'
3538
3539 def instance_action(mydb,nfvo_tenant,instance_id, action_dict):
3540 #print "Checking that the instance_id exists and getting the instance dictionary"
3541 instanceDict = mydb.get_instance_scenario(instance_id, nfvo_tenant)
3542 #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
3543
3544 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
3545 vims = get_vim(mydb, nfvo_tenant, instanceDict['datacenter_id'])
3546 if len(vims) == 0:
3547 raise NfvoException("datacenter '{}' not found".format(str(instanceDict['datacenter_id'])), HTTP_Not_Found)
3548 myvim = vims.values()[0]
3549
3550 if action_dict.get("create-vdu"):
3551 for vdu in action_dict["create-vdu"]:
3552 vdu_id = vdu.get("vdu-id")
3553 vdu_count = vdu.get("count", 1)
3554 # get from database TODO
3555 # insert tasks TODO
3556 pass
3557
3558 input_vnfs = action_dict.pop("vnfs", [])
3559 input_vms = action_dict.pop("vms", [])
3560 action_over_all = True if len(input_vnfs)==0 and len (input_vms)==0 else False
3561 vm_result = {}
3562 vm_error = 0
3563 vm_ok = 0
3564 for sce_vnf in instanceDict['vnfs']:
3565 for vm in sce_vnf['vms']:
3566 if not action_over_all:
3567 if sce_vnf['uuid'] not in input_vnfs and sce_vnf['vnf_name'] not in input_vnfs and \
3568 vm['uuid'] not in input_vms and vm['name'] not in input_vms:
3569 continue
3570 try:
3571 if "add_public_key" in action_dict:
3572 mgmt_access = {}
3573 if sce_vnf.get('mgmt_access'):
3574 mgmt_access = yaml.load(sce_vnf['mgmt_access'])
3575 ssh_access = mgmt_access['config-access']['ssh-access']
3576 tenant = mydb.get_rows_by_id('nfvo_tenants', nfvo_tenant)
3577 try:
3578 if ssh_access['required'] and ssh_access['default-user']:
3579 if 'ip_address' in vm:
3580 mgmt_ip = vm['ip_address'].split(';')
3581 password = mgmt_access['config-access'].get('password')
3582 priv_RO_key = decrypt_key(tenant[0]['encrypted_RO_priv_key'], tenant[0]['uuid'])
3583 myvim.inject_user_key(mgmt_ip[0], ssh_access['default-user'],
3584 action_dict['add_public_key'],
3585 password=password, ro_key=priv_RO_key)
3586 else:
3587 raise NfvoException("Unable to inject ssh key in vm: {} - Aborting".format(vm['uuid']),
3588 HTTP_Internal_Server_Error)
3589 except KeyError:
3590 raise NfvoException("Unable to inject ssh key in vm: {} - Aborting".format(vm['uuid']),
3591 HTTP_Internal_Server_Error)
3592 else:
3593 raise NfvoException("Unable to inject ssh key in vm: {} - Aborting".format(vm['uuid']),
3594 HTTP_Internal_Server_Error)
3595 else:
3596 data = myvim.action_vminstance(vm['vim_vm_id'], action_dict)
3597 if "console" in action_dict:
3598 if not global_config["http_console_proxy"]:
3599 vm_result[ vm['uuid'] ] = {"vim_result": 200,
3600 "description": "{protocol}//{ip}:{port}/{suffix}".format(
3601 protocol=data["protocol"],
3602 ip = data["server"],
3603 port = data["port"],
3604 suffix = data["suffix"]),
3605 "name":vm['name']
3606 }
3607 vm_ok +=1
3608 elif data["server"]=="127.0.0.1" or data["server"]=="localhost":
3609 vm_result[ vm['uuid'] ] = {"vim_result": -HTTP_Unauthorized,
3610 "description": "this console is only reachable by local interface",
3611 "name":vm['name']
3612 }
3613 vm_error+=1
3614 else:
3615 #print "console data", data
3616 try:
3617 console_thread = create_or_use_console_proxy_thread(data["server"], data["port"])
3618 vm_result[ vm['uuid'] ] = {"vim_result": 200,
3619 "description": "{protocol}//{ip}:{port}/{suffix}".format(
3620 protocol=data["protocol"],
3621 ip = global_config["http_console_host"],
3622 port = console_thread.port,
3623 suffix = data["suffix"]),
3624 "name":vm['name']
3625 }
3626 vm_ok +=1
3627 except NfvoException as e:
3628 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
3629 vm_error+=1
3630
3631 else:
3632 vm_result[ vm['uuid'] ] = {"vim_result": 200, "description": "ok", "name":vm['name']}
3633 vm_ok +=1
3634 except vimconn.vimconnException as e:
3635 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
3636 vm_error+=1
3637
3638 if vm_ok==0: #all goes wrong
3639 return vm_result
3640 else:
3641 return vm_result
3642
3643 def instance_action_get(mydb, nfvo_tenant, instance_id, action_id):
3644 filter={}
3645 if nfvo_tenant and nfvo_tenant != "any":
3646 filter["tenant_id"] = nfvo_tenant
3647 if instance_id and instance_id != "any":
3648 filter["instance_id"] = instance_id
3649 if action_id:
3650 filter["uuid"] = action_id
3651 rows = mydb.get_rows(FROM="instance_actions", WHERE=filter)
3652 if not rows and action_id:
3653 raise NfvoException("Not found any action with this criteria", HTTP_Not_Found)
3654 return {"ations": rows}
3655
3656
3657 def create_or_use_console_proxy_thread(console_server, console_port):
3658 #look for a non-used port
3659 console_thread_key = console_server + ":" + str(console_port)
3660 if console_thread_key in global_config["console_thread"]:
3661 #global_config["console_thread"][console_thread_key].start_timeout()
3662 return global_config["console_thread"][console_thread_key]
3663
3664 for port in global_config["console_port_iterator"]():
3665 #print "create_or_use_console_proxy_thread() port:", port
3666 if port in global_config["console_ports"]:
3667 continue
3668 try:
3669 clithread = cli.ConsoleProxyThread(global_config['http_host'], port, console_server, console_port)
3670 clithread.start()
3671 global_config["console_thread"][console_thread_key] = clithread
3672 global_config["console_ports"][port] = console_thread_key
3673 return clithread
3674 except cli.ConsoleProxyExceptionPortUsed as e:
3675 #port used, try with onoher
3676 continue
3677 except cli.ConsoleProxyException as e:
3678 raise NfvoException(str(e), HTTP_Bad_Request)
3679 raise NfvoException("Not found any free 'http_console_ports'", HTTP_Conflict)
3680
3681
3682 def check_tenant(mydb, tenant_id):
3683 '''check that tenant exists at database'''
3684 tenant = mydb.get_rows(FROM='nfvo_tenants', SELECT=('uuid',), WHERE={'uuid': tenant_id})
3685 if not tenant:
3686 raise NfvoException("tenant '{}' not found".format(tenant_id), HTTP_Not_Found)
3687 return
3688
3689 def new_tenant(mydb, tenant_dict):
3690
3691 tenant_uuid = str(uuid4())
3692 tenant_dict['uuid'] = tenant_uuid
3693 try:
3694 pub_key, priv_key = create_RO_keypair(tenant_uuid)
3695 tenant_dict['RO_pub_key'] = pub_key
3696 tenant_dict['encrypted_RO_priv_key'] = priv_key
3697 mydb.new_row("nfvo_tenants", tenant_dict, confidential_data=True)
3698 except db_base_Exception as e:
3699 raise NfvoException("Error creating the new tenant: {} ".format(tenant_dict['name']) + str(e), HTTP_Internal_Server_Error)
3700 return tenant_uuid
3701
3702 def delete_tenant(mydb, tenant):
3703 #get nfvo_tenant info
3704
3705 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant, 'tenant')
3706 mydb.delete_row_by_id("nfvo_tenants", tenant_dict['uuid'])
3707 return tenant_dict['uuid'] + " " + tenant_dict["name"]
3708
3709
3710 def new_datacenter(mydb, datacenter_descriptor):
3711 if "config" in datacenter_descriptor:
3712 datacenter_descriptor["config"]=yaml.safe_dump(datacenter_descriptor["config"],default_flow_style=True,width=256)
3713 #Check that datacenter-type is correct
3714 datacenter_type = datacenter_descriptor.get("type", "openvim");
3715 module_info = None
3716 try:
3717 module = "vimconn_" + datacenter_type
3718 pkg = __import__("osm_ro." + module)
3719 vim_conn = getattr(pkg, module)
3720 # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]])
3721 except (IOError, ImportError):
3722 # if module_info and module_info[0]:
3723 # file.close(module_info[0])
3724 raise NfvoException("Incorrect datacenter type '{}'. Plugin '{}'.py not installed".format(datacenter_type, module), HTTP_Bad_Request)
3725
3726 datacenter_id = mydb.new_row("datacenters", datacenter_descriptor, add_uuid=True, confidential_data=True)
3727 return datacenter_id
3728
3729
3730 def edit_datacenter(mydb, datacenter_id_name, datacenter_descriptor):
3731 # obtain data, check that only one exist
3732 datacenter = mydb.get_table_by_uuid_name('datacenters', datacenter_id_name)
3733
3734 # edit data
3735 datacenter_id = datacenter['uuid']
3736 where={'uuid': datacenter['uuid']}
3737 remove_port_mapping = False
3738 if "config" in datacenter_descriptor:
3739 if datacenter_descriptor['config'] != None:
3740 try:
3741 new_config_dict = datacenter_descriptor["config"]
3742 #delete null fields
3743 to_delete=[]
3744 for k in new_config_dict:
3745 if new_config_dict[k] == None:
3746 to_delete.append(k)
3747 if k == 'sdn-controller':
3748 remove_port_mapping = True
3749
3750 config_text = datacenter.get("config")
3751 if not config_text:
3752 config_text = '{}'
3753 config_dict = yaml.load(config_text)
3754 config_dict.update(new_config_dict)
3755 #delete null fields
3756 for k in to_delete:
3757 del config_dict[k]
3758 except Exception as e:
3759 raise NfvoException("Bad format at datacenter:config " + str(e), HTTP_Bad_Request)
3760 if config_dict:
3761 datacenter_descriptor["config"] = yaml.safe_dump(config_dict, default_flow_style=True, width=256)
3762 else:
3763 datacenter_descriptor["config"] = None
3764 if remove_port_mapping:
3765 try:
3766 datacenter_sdn_port_mapping_delete(mydb, None, datacenter_id)
3767 except ovimException as e:
3768 logger.error("Error deleting datacenter-port-mapping " + str(e))
3769
3770 mydb.update_rows('datacenters', datacenter_descriptor, where)
3771 return datacenter_id
3772
3773
3774 def delete_datacenter(mydb, datacenter):
3775 #get nfvo_tenant info
3776 datacenter_dict = mydb.get_table_by_uuid_name('datacenters', datacenter, 'datacenter')
3777 mydb.delete_row_by_id("datacenters", datacenter_dict['uuid'])
3778 try:
3779 datacenter_sdn_port_mapping_delete(mydb, None, datacenter_dict['uuid'])
3780 except ovimException as e:
3781 logger.error("Error deleting datacenter-port-mapping " + str(e))
3782 return datacenter_dict['uuid'] + " " + datacenter_dict['name']
3783
3784
3785 def associate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter, vim_tenant_id=None, vim_tenant_name=None, vim_username=None, vim_password=None, config=None):
3786 # get datacenter info
3787 try:
3788 datacenter_id = get_datacenter_uuid(mydb, None, datacenter)
3789
3790 create_vim_tenant = True if not vim_tenant_id and not vim_tenant_name else False
3791
3792 # get nfvo_tenant info
3793 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', nfvo_tenant)
3794 if vim_tenant_name==None:
3795 vim_tenant_name=tenant_dict['name']
3796
3797 #check that this association does not exist before
3798 tenants_datacenter_dict={"nfvo_tenant_id":tenant_dict['uuid'], "datacenter_id":datacenter_id }
3799 tenants_datacenters = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
3800 if len(tenants_datacenters)>0:
3801 raise NfvoException("datacenter '{}' and tenant'{}' are already attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Conflict)
3802
3803 vim_tenant_id_exist_atdb=False
3804 if not create_vim_tenant:
3805 where_={"datacenter_id": datacenter_id}
3806 if vim_tenant_id!=None:
3807 where_["vim_tenant_id"] = vim_tenant_id
3808 if vim_tenant_name!=None:
3809 where_["vim_tenant_name"] = vim_tenant_name
3810 #check if vim_tenant_id is already at database
3811 datacenter_tenants_dict = mydb.get_rows(FROM='datacenter_tenants', WHERE=where_)
3812 if len(datacenter_tenants_dict)>=1:
3813 datacenter_tenants_dict = datacenter_tenants_dict[0]
3814 vim_tenant_id_exist_atdb=True
3815 #TODO check if a field has changed and edit entry at datacenter_tenants at DB
3816 else: #result=0
3817 datacenter_tenants_dict = {}
3818 #insert at table datacenter_tenants
3819 else: #if vim_tenant_id==None:
3820 #create tenant at VIM if not provided
3821 try:
3822 _, myvim = get_datacenter_by_name_uuid(mydb, None, datacenter, vim_user=vim_username,
3823 vim_passwd=vim_password)
3824 datacenter_name = myvim["name"]
3825 vim_tenant_id = myvim.new_tenant(vim_tenant_name, "created by openmano for datacenter "+datacenter_name)
3826 except vimconn.vimconnException as e:
3827 raise NfvoException("Not possible to create vim_tenant {} at VIM: {}".format(vim_tenant_id, str(e)), HTTP_Internal_Server_Error)
3828 datacenter_tenants_dict = {}
3829 datacenter_tenants_dict["created"]="true"
3830
3831 #fill datacenter_tenants table
3832 if not vim_tenant_id_exist_atdb:
3833 datacenter_tenants_dict["vim_tenant_id"] = vim_tenant_id
3834 datacenter_tenants_dict["vim_tenant_name"] = vim_tenant_name
3835 datacenter_tenants_dict["user"] = vim_username
3836 datacenter_tenants_dict["passwd"] = vim_password
3837 datacenter_tenants_dict["datacenter_id"] = datacenter_id
3838 if config:
3839 datacenter_tenants_dict["config"] = yaml.safe_dump(config, default_flow_style=True, width=256)
3840 id_ = mydb.new_row('datacenter_tenants', datacenter_tenants_dict, add_uuid=True, confidential_data=True)
3841 datacenter_tenants_dict["uuid"] = id_
3842
3843 #fill tenants_datacenters table
3844 datacenter_tenant_id = datacenter_tenants_dict["uuid"]
3845 tenants_datacenter_dict["datacenter_tenant_id"] = datacenter_tenant_id
3846 mydb.new_row('tenants_datacenters', tenants_datacenter_dict)
3847 # create thread
3848 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_dict['uuid'], datacenter_id) # reload data
3849 datacenter_name = myvim["name"]
3850 thread_name = get_non_used_vim_name(datacenter_name, datacenter_id, tenant_dict['name'], tenant_dict['uuid'])
3851 new_thread = vim_thread.vim_thread(myvim, task_lock, thread_name, datacenter_name, datacenter_tenant_id,
3852 db=db, db_lock=db_lock, ovim=ovim)
3853 new_thread.start()
3854 thread_id = datacenter_tenants_dict["uuid"]
3855 vim_threads["running"][thread_id] = new_thread
3856 return datacenter_id
3857 except vimconn.vimconnException as e:
3858 raise NfvoException(str(e), HTTP_Bad_Request)
3859
3860
3861 def edit_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=None, vim_tenant_name=None,
3862 vim_username=None, vim_password=None, config=None):
3863 #Obtain the data of this datacenter_tenant_id
3864 vim_data = mydb.get_rows(
3865 SELECT=("datacenter_tenants.vim_tenant_name", "datacenter_tenants.vim_tenant_id", "datacenter_tenants.user",
3866 "datacenter_tenants.passwd", "datacenter_tenants.config"),
3867 FROM="datacenter_tenants JOIN tenants_datacenters ON datacenter_tenants.uuid=tenants_datacenters.datacenter_tenant_id",
3868 WHERE={"tenants_datacenters.nfvo_tenant_id": nfvo_tenant,
3869 "tenants_datacenters.datacenter_id": datacenter_id})
3870
3871 logger.debug(str(vim_data))
3872 if len(vim_data) < 1:
3873 raise NfvoException("Datacenter {} is not attached for tenant {}".format(datacenter_id, nfvo_tenant), HTTP_Conflict)
3874
3875 v = vim_data[0]
3876 if v['config']:
3877 v['config'] = yaml.load(v['config'])
3878
3879 if vim_tenant_id:
3880 v['vim_tenant_id'] = vim_tenant_id
3881 if vim_tenant_name:
3882 v['vim_tenant_name'] = vim_tenant_name
3883 if vim_username:
3884 v['user'] = vim_username
3885 if vim_password:
3886 v['passwd'] = vim_password
3887 if config:
3888 if not v['config']:
3889 v['config'] = {}
3890 v['config'].update(config)
3891
3892 logger.debug(str(v))
3893 deassociate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=v['vim_tenant_id'])
3894 associate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=v['vim_tenant_id'], vim_tenant_name=v['vim_tenant_name'],
3895 vim_username=v['user'], vim_password=v['passwd'], config=v['config'])
3896
3897 return datacenter_id
3898
3899 def deassociate_datacenter_to_tenant(mydb, tenant_id, datacenter, vim_tenant_id=None):
3900 #get nfvo_tenant info
3901 if not tenant_id or tenant_id=="any":
3902 tenant_uuid = None
3903 else:
3904 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant_id)
3905 tenant_uuid = tenant_dict['uuid']
3906
3907 datacenter_id = get_datacenter_uuid(mydb, tenant_uuid, datacenter)
3908 #check that this association exist before
3909 tenants_datacenter_dict={"datacenter_id": datacenter_id }
3910 if tenant_uuid:
3911 tenants_datacenter_dict["nfvo_tenant_id"] = tenant_uuid
3912 tenant_datacenter_list = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
3913 if len(tenant_datacenter_list)==0 and tenant_uuid:
3914 raise NfvoException("datacenter '{}' and tenant '{}' are not attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Not_Found)
3915
3916 #delete this association
3917 mydb.delete_row(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
3918
3919 #get vim_tenant info and deletes
3920 warning=''
3921 for tenant_datacenter_item in tenant_datacenter_list:
3922 vim_tenant_dict = mydb.get_table_by_uuid_name('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
3923 #try to delete vim:tenant
3924 try:
3925 mydb.delete_row_by_id('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
3926 if vim_tenant_dict['created']=='true':
3927 #delete tenant at VIM if created by NFVO
3928 try:
3929 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
3930 myvim.delete_tenant(vim_tenant_dict['vim_tenant_id'])
3931 except vimconn.vimconnException as e:
3932 warning = "Not possible to delete vim_tenant_id {} from VIM: {} ".format(vim_tenant_dict['vim_tenant_id'], str(e))
3933 logger.warn(warning)
3934 except db_base_Exception as e:
3935 logger.error("Cannot delete datacenter_tenants " + str(e))
3936 pass # the error will be caused because dependencies, vim_tenant can not be deleted
3937 thread_id = tenant_datacenter_item["datacenter_tenant_id"]
3938 thread = vim_threads["running"][thread_id]
3939 thread.insert_task("exit")
3940 vim_threads["deleting"][thread_id] = thread
3941 return "datacenter {} detached. {}".format(datacenter_id, warning)
3942
3943
3944 def datacenter_action(mydb, tenant_id, datacenter, action_dict):
3945 #DEPRECATED
3946 #get datacenter info
3947 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
3948
3949 if 'net-update' in action_dict:
3950 try:
3951 nets = myvim.get_network_list(filter_dict={'shared': True, 'admin_state_up': True, 'status': 'ACTIVE'})
3952 #print content
3953 except vimconn.vimconnException as e:
3954 #logger.error("nfvo.datacenter_action() Not possible to get_network_list from VIM: %s ", str(e))
3955 raise NfvoException(str(e), HTTP_Internal_Server_Error)
3956 #update nets Change from VIM format to NFVO format
3957 net_list=[]
3958 for net in nets:
3959 net_nfvo={'datacenter_id': datacenter_id}
3960 net_nfvo['name'] = net['name']
3961 #net_nfvo['description']= net['name']
3962 net_nfvo['vim_net_id'] = net['id']
3963 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
3964 net_nfvo['shared'] = net['shared']
3965 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
3966 net_list.append(net_nfvo)
3967 inserted, deleted = mydb.update_datacenter_nets(datacenter_id, net_list)
3968 logger.info("Inserted %d nets, deleted %d old nets", inserted, deleted)
3969 return inserted
3970 elif 'net-edit' in action_dict:
3971 net = action_dict['net-edit'].pop('net')
3972 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
3973 result = mydb.update_rows('datacenter_nets', action_dict['net-edit'],
3974 WHERE={'datacenter_id':datacenter_id, what: net})
3975 return result
3976 elif 'net-delete' in action_dict:
3977 net = action_dict['net-deelte'].get('net')
3978 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
3979 result = mydb.delete_row(FROM='datacenter_nets',
3980 WHERE={'datacenter_id':datacenter_id, what: net})
3981 return result
3982
3983 else:
3984 raise NfvoException("Unknown action " + str(action_dict), HTTP_Bad_Request)
3985
3986
3987 def datacenter_edit_netmap(mydb, tenant_id, datacenter, netmap, action_dict):
3988 #get datacenter info
3989 datacenter_id, _ = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
3990
3991 what = 'uuid' if utils.check_valid_uuid(netmap) else 'name'
3992 result = mydb.update_rows('datacenter_nets', action_dict['netmap'],
3993 WHERE={'datacenter_id':datacenter_id, what: netmap})
3994 return result
3995
3996
3997 def datacenter_new_netmap(mydb, tenant_id, datacenter, action_dict=None):
3998 #get datacenter info
3999 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
4000 filter_dict={}
4001 if action_dict:
4002 action_dict = action_dict["netmap"]
4003 if 'vim_id' in action_dict:
4004 filter_dict["id"] = action_dict['vim_id']
4005 if 'vim_name' in action_dict:
4006 filter_dict["name"] = action_dict['vim_name']
4007 else:
4008 filter_dict["shared"] = True
4009
4010 try:
4011 vim_nets = myvim.get_network_list(filter_dict=filter_dict)
4012 except vimconn.vimconnException as e:
4013 #logger.error("nfvo.datacenter_new_netmap() Not possible to get_network_list from VIM: %s ", str(e))
4014 raise NfvoException(str(e), HTTP_Internal_Server_Error)
4015 if len(vim_nets)>1 and action_dict:
4016 raise NfvoException("more than two networks found, specify with vim_id", HTTP_Conflict)
4017 elif len(vim_nets)==0: # and action_dict:
4018 raise NfvoException("Not found a network at VIM with " + str(filter_dict), HTTP_Not_Found)
4019 net_list=[]
4020 for net in vim_nets:
4021 net_nfvo={'datacenter_id': datacenter_id}
4022 if action_dict and "name" in action_dict:
4023 net_nfvo['name'] = action_dict['name']
4024 else:
4025 net_nfvo['name'] = net['name']
4026 #net_nfvo['description']= net['name']
4027 net_nfvo['vim_net_id'] = net['id']
4028 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
4029 net_nfvo['shared'] = net['shared']
4030 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
4031 try:
4032 net_id = mydb.new_row("datacenter_nets", net_nfvo, add_uuid=True)
4033 net_nfvo["status"] = "OK"
4034 net_nfvo["uuid"] = net_id
4035 except db_base_Exception as e:
4036 if action_dict:
4037 raise
4038 else:
4039 net_nfvo["status"] = "FAIL: " + str(e)
4040 net_list.append(net_nfvo)
4041 return net_list
4042
4043 def get_sdn_net_id(mydb, tenant_id, datacenter, network_id):
4044 # obtain all network data
4045 try:
4046 if utils.check_valid_uuid(network_id):
4047 filter_dict = {"id": network_id}
4048 else:
4049 filter_dict = {"name": network_id}
4050
4051 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
4052 network = myvim.get_network_list(filter_dict=filter_dict)
4053 except vimconn.vimconnException as e:
4054 raise NfvoException("Not possible to get_sdn_net_id from VIM: {}".format(str(e)), e.http_code)
4055
4056 # ensure the network is defined
4057 if len(network) == 0:
4058 raise NfvoException("Network {} is not present in the system".format(network_id),
4059 HTTP_Bad_Request)
4060
4061 # ensure there is only one network with the provided name
4062 if len(network) > 1:
4063 raise NfvoException("Multiple networks present in vim identified by {}".format(network_id), HTTP_Bad_Request)
4064
4065 # ensure it is a dataplane network
4066 if network[0]['type'] != 'data':
4067 return None
4068
4069 # ensure we use the id
4070 network_id = network[0]['id']
4071
4072 # search in dabase mano_db in table instance nets for the sdn_net_id that corresponds to the vim_net_id==network_id
4073 # and with instance_scenario_id==NULL
4074 #search_dict = {'vim_net_id': network_id, 'instance_scenario_id': None}
4075 search_dict = {'vim_net_id': network_id}
4076
4077 try:
4078 #sdn_network_id = mydb.get_rows(SELECT=('sdn_net_id',), FROM='instance_nets', WHERE=search_dict)[0]['sdn_net_id']
4079 result = mydb.get_rows(SELECT=('sdn_net_id',), FROM='instance_nets', WHERE=search_dict)
4080 except db_base_Exception as e:
4081 raise NfvoException("db_base_Exception obtaining SDN network to associated to vim network {}".format(
4082 network_id) + str(e), HTTP_Internal_Server_Error)
4083
4084 sdn_net_counter = 0
4085 for net in result:
4086 if net['sdn_net_id'] != None:
4087 sdn_net_counter+=1
4088 sdn_net_id = net['sdn_net_id']
4089
4090 if sdn_net_counter == 0:
4091 return None
4092 elif sdn_net_counter == 1:
4093 return sdn_net_id
4094 else:
4095 raise NfvoException("More than one SDN network is associated to vim network {}".format(
4096 network_id), HTTP_Internal_Server_Error)
4097
4098 def get_sdn_controller_id(mydb, datacenter):
4099 # Obtain sdn controller id
4100 config = mydb.get_rows(SELECT=('config',), FROM='datacenters', WHERE={'uuid': datacenter})[0].get('config', '{}')
4101 if not config:
4102 return None
4103
4104 return yaml.load(config).get('sdn-controller')
4105
4106 def vim_net_sdn_attach(mydb, tenant_id, datacenter, network_id, descriptor):
4107 try:
4108 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, network_id)
4109 if not sdn_network_id:
4110 raise NfvoException("No SDN network is associated to vim-network {}".format(network_id), HTTP_Internal_Server_Error)
4111
4112 #Obtain sdn controller id
4113 controller_id = get_sdn_controller_id(mydb, datacenter)
4114 if not controller_id:
4115 raise NfvoException("No SDN controller is set for datacenter {}".format(datacenter), HTTP_Internal_Server_Error)
4116
4117 #Obtain sdn controller info
4118 sdn_controller = ovim.show_of_controller(controller_id)
4119
4120 port_data = {
4121 'name': 'external_port',
4122 'net_id': sdn_network_id,
4123 'ofc_id': controller_id,
4124 'switch_dpid': sdn_controller['dpid'],
4125 'switch_port': descriptor['port']
4126 }
4127
4128 if 'vlan' in descriptor:
4129 port_data['vlan'] = descriptor['vlan']
4130 if 'mac' in descriptor:
4131 port_data['mac'] = descriptor['mac']
4132
4133 result = ovim.new_port(port_data)
4134 except ovimException as e:
4135 raise NfvoException("ovimException attaching SDN network {} to vim network {}".format(
4136 sdn_network_id, network_id) + str(e), HTTP_Internal_Server_Error)
4137 except db_base_Exception as e:
4138 raise NfvoException("db_base_Exception attaching SDN network to vim network {}".format(
4139 network_id) + str(e), HTTP_Internal_Server_Error)
4140
4141 return 'Port uuid: '+ result
4142
4143 def vim_net_sdn_detach(mydb, tenant_id, datacenter, network_id, port_id=None):
4144 if port_id:
4145 filter = {'uuid': port_id}
4146 else:
4147 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, network_id)
4148 if not sdn_network_id:
4149 raise NfvoException("No SDN network is associated to vim-network {}".format(network_id),
4150 HTTP_Internal_Server_Error)
4151 #in case no port_id is specified only ports marked as 'external_port' will be detached
4152 filter = {'name': 'external_port', 'net_id': sdn_network_id}
4153
4154 try:
4155 port_list = ovim.get_ports(columns={'uuid'}, filter=filter)
4156 except ovimException as e:
4157 raise NfvoException("ovimException obtaining external ports for net {}. ".format(network_id) + str(e),
4158 HTTP_Internal_Server_Error)
4159
4160 if len(port_list) == 0:
4161 raise NfvoException("No ports attached to the network {} were found with the requested criteria".format(network_id),
4162 HTTP_Bad_Request)
4163
4164 port_uuid_list = []
4165 for port in port_list:
4166 try:
4167 port_uuid_list.append(port['uuid'])
4168 ovim.delete_port(port['uuid'])
4169 except ovimException as e:
4170 raise NfvoException("ovimException deleting port {} for net {}. ".format(port['uuid'], network_id) + str(e), HTTP_Internal_Server_Error)
4171
4172 return 'Detached ports uuid: {}'.format(','.join(port_uuid_list))
4173
4174 def vim_action_get(mydb, tenant_id, datacenter, item, name):
4175 #get datacenter info
4176 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
4177 filter_dict={}
4178 if name:
4179 if utils.check_valid_uuid(name):
4180 filter_dict["id"] = name
4181 else:
4182 filter_dict["name"] = name
4183 try:
4184 if item=="networks":
4185 #filter_dict['tenant_id'] = myvim['tenant_id']
4186 content = myvim.get_network_list(filter_dict=filter_dict)
4187
4188 if len(content) == 0:
4189 raise NfvoException("Network {} is not present in the system. ".format(name),
4190 HTTP_Bad_Request)
4191
4192 #Update the networks with the attached ports
4193 for net in content:
4194 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, net['id'])
4195 if sdn_network_id != None:
4196 try:
4197 #port_list = ovim.get_ports(columns={'uuid', 'switch_port', 'vlan'}, filter={'name': 'external_port', 'net_id': sdn_network_id})
4198 port_list = ovim.get_ports(columns={'uuid', 'switch_port', 'vlan','name'}, filter={'net_id': sdn_network_id})
4199 except ovimException as e:
4200 raise NfvoException("ovimException obtaining external ports for net {}. ".format(network_id) + str(e), HTTP_Internal_Server_Error)
4201 #Remove field name and if port name is external_port save it as 'type'
4202 for port in port_list:
4203 if port['name'] == 'external_port':
4204 port['type'] = "External"
4205 del port['name']
4206 net['sdn_network_id'] = sdn_network_id
4207 net['sdn_attached_ports'] = port_list
4208
4209 elif item=="tenants":
4210 content = myvim.get_tenant_list(filter_dict=filter_dict)
4211 elif item == "images":
4212
4213 content = myvim.get_image_list(filter_dict=filter_dict)
4214 else:
4215 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
4216 logger.debug("vim_action response %s", content) #update nets Change from VIM format to NFVO format
4217 if name and len(content)==1:
4218 return {item[:-1]: content[0]}
4219 elif name and len(content)==0:
4220 raise NfvoException("No {} found with ".format(item[:-1]) + " and ".join(map(lambda x: str(x[0])+": "+str(x[1]), filter_dict.iteritems())),
4221 datacenter)
4222 else:
4223 return {item: content}
4224 except vimconn.vimconnException as e:
4225 print "vim_action Not possible to get_%s_list from VIM: %s " % (item, str(e))
4226 raise NfvoException("Not possible to get_{}_list from VIM: {}".format(item, str(e)), e.http_code)
4227
4228
4229 def vim_action_delete(mydb, tenant_id, datacenter, item, name):
4230 #get datacenter info
4231 if tenant_id == "any":
4232 tenant_id=None
4233
4234 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
4235 #get uuid name
4236 content = vim_action_get(mydb, tenant_id, datacenter, item, name)
4237 logger.debug("vim_action_delete vim response: " + str(content))
4238 items = content.values()[0]
4239 if type(items)==list and len(items)==0:
4240 raise NfvoException("Not found " + item, HTTP_Not_Found)
4241 elif type(items)==list and len(items)>1:
4242 raise NfvoException("Found more than one {} with this name. Use uuid.".format(item), HTTP_Not_Found)
4243 else: # it is a dict
4244 item_id = items["id"]
4245 item_name = str(items.get("name"))
4246
4247 try:
4248 if item=="networks":
4249 # If there is a SDN network associated to the vim-network, proceed to clear the relationship and delete it
4250 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, item_id)
4251 if sdn_network_id != None:
4252 #Delete any port attachment to this network
4253 try:
4254 port_list = ovim.get_ports(columns={'uuid'}, filter={'net_id': sdn_network_id})
4255 except ovimException as e:
4256 raise NfvoException(
4257 "ovimException obtaining external ports for net {}. ".format(network_id) + str(e),
4258 HTTP_Internal_Server_Error)
4259
4260 # By calling one by one all ports to be detached we ensure that not only the external_ports get detached
4261 for port in port_list:
4262 vim_net_sdn_detach(mydb, tenant_id, datacenter, item_id, port['uuid'])
4263
4264 #Delete from 'instance_nets' the correspondence between the vim-net-id and the sdn-net-id
4265 try:
4266 mydb.delete_row(FROM='instance_nets', WHERE={'instance_scenario_id': None, 'sdn_net_id': sdn_network_id, 'vim_net_id': item_id})
4267 except db_base_Exception as e:
4268 raise NfvoException("Error deleting correspondence for VIM/SDN dataplane networks{}: ".format(correspondence) +
4269 str(e), HTTP_Internal_Server_Error)
4270
4271 #Delete the SDN network
4272 try:
4273 ovim.delete_network(sdn_network_id)
4274 except ovimException as e:
4275 logger.error("ovimException deleting SDN network={} ".format(sdn_network_id) + str(e), exc_info=True)
4276 raise NfvoException("ovimException deleting SDN network={} ".format(sdn_network_id) + str(e),
4277 HTTP_Internal_Server_Error)
4278
4279 content = myvim.delete_network(item_id)
4280 elif item=="tenants":
4281 content = myvim.delete_tenant(item_id)
4282 elif item == "images":
4283 content = myvim.delete_image(item_id)
4284 else:
4285 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
4286 except vimconn.vimconnException as e:
4287 #logger.error( "vim_action Not possible to delete_{} {}from VIM: {} ".format(item, name, str(e)))
4288 raise NfvoException("Not possible to delete_{} {} from VIM: {}".format(item, name, str(e)), e.http_code)
4289
4290 return "{} {} {} deleted".format(item[:-1], item_id,item_name)
4291
4292
4293 def vim_action_create(mydb, tenant_id, datacenter, item, descriptor):
4294 #get datacenter info
4295 logger.debug("vim_action_create descriptor %s", str(descriptor))
4296 if tenant_id == "any":
4297 tenant_id=None
4298 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
4299 try:
4300 if item=="networks":
4301 net = descriptor["network"]
4302 net_name = net.pop("name")
4303 net_type = net.pop("type", "bridge")
4304 net_public = net.pop("shared", False)
4305 net_ipprofile = net.pop("ip_profile", None)
4306 net_vlan = net.pop("vlan", None)
4307 content = myvim.new_network(net_name, net_type, net_ipprofile, shared=net_public, vlan=net_vlan) #, **net)
4308
4309 #If the datacenter has a SDN controller defined and the network is of dataplane type, then create the sdn network
4310 if get_sdn_controller_id(mydb, datacenter) != None and (net_type == 'data' or net_type == 'ptp'):
4311 try:
4312 sdn_network = {}
4313 sdn_network['vlan'] = net_vlan
4314 sdn_network['type'] = net_type
4315 sdn_network['name'] = net_name
4316 ovim_content = ovim.new_network(sdn_network)
4317 except ovimException as e:
4318 self.logger.error("ovimException creating SDN network={} ".format(
4319 sdn_network) + str(e), exc_info=True)
4320 raise NfvoException("ovimException creating SDN network={} ".format(sdn_network) + str(e),
4321 HTTP_Internal_Server_Error)
4322
4323 # Save entry in in dabase mano_db in table instance_nets to stablish a dictionary vim_net_id <->sdn_net_id
4324 # use instance_scenario_id=None to distinguish from real instaces of nets
4325 correspondence = {'instance_scenario_id': None, 'sdn_net_id': ovim_content, 'vim_net_id': content}
4326 #obtain datacenter_tenant_id
4327 correspondence['datacenter_tenant_id'] = mydb.get_rows(SELECT=('uuid',), FROM='datacenter_tenants', WHERE={'datacenter_id': datacenter})[0]['uuid']
4328
4329 try:
4330 mydb.new_row('instance_nets', correspondence, add_uuid=True)
4331 except db_base_Exception as e:
4332 raise NfvoException("Error saving correspondence for VIM/SDN dataplane networks{}: ".format(correspondence) +
4333 str(e), HTTP_Internal_Server_Error)
4334 elif item=="tenants":
4335 tenant = descriptor["tenant"]
4336 content = myvim.new_tenant(tenant["name"], tenant.get("description"))
4337 else:
4338 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
4339 except vimconn.vimconnException as e:
4340 raise NfvoException("Not possible to create {} at VIM: {}".format(item, str(e)), e.http_code)
4341
4342 return vim_action_get(mydb, tenant_id, datacenter, item, content)
4343
4344 def sdn_controller_create(mydb, tenant_id, sdn_controller):
4345 data = ovim.new_of_controller(sdn_controller)
4346 logger.debug('New SDN controller created with uuid {}'.format(data))
4347 return data
4348
4349 def sdn_controller_update(mydb, tenant_id, controller_id, sdn_controller):
4350 data = ovim.edit_of_controller(controller_id, sdn_controller)
4351 msg = 'SDN controller {} updated'.format(data)
4352 logger.debug(msg)
4353 return msg
4354
4355 def sdn_controller_list(mydb, tenant_id, controller_id=None):
4356 if controller_id == None:
4357 data = ovim.get_of_controllers()
4358 else:
4359 data = ovim.show_of_controller(controller_id)
4360
4361 msg = 'SDN controller list:\n {}'.format(data)
4362 logger.debug(msg)
4363 return data
4364
4365 def sdn_controller_delete(mydb, tenant_id, controller_id):
4366 select_ = ('uuid', 'config')
4367 datacenters = mydb.get_rows(FROM='datacenters', SELECT=select_)
4368 for datacenter in datacenters:
4369 if datacenter['config']:
4370 config = yaml.load(datacenter['config'])
4371 if 'sdn-controller' in config and config['sdn-controller'] == controller_id:
4372 raise NfvoException("SDN controller {} is in use by datacenter {}".format(controller_id, datacenter['uuid']), HTTP_Conflict)
4373
4374 data = ovim.delete_of_controller(controller_id)
4375 msg = 'SDN controller {} deleted'.format(data)
4376 logger.debug(msg)
4377 return msg
4378
4379 def datacenter_sdn_port_mapping_set(mydb, tenant_id, datacenter_id, sdn_port_mapping):
4380 controller = mydb.get_rows(FROM="datacenters", SELECT=("config",), WHERE={"uuid":datacenter_id})
4381 if len(controller) < 1:
4382 raise NfvoException("Datacenter {} not present in the database".format(datacenter_id), HTTP_Not_Found)
4383
4384 try:
4385 sdn_controller_id = yaml.load(controller[0]["config"])["sdn-controller"]
4386 except:
4387 raise NfvoException("The datacenter {} has not an SDN controller associated".format(datacenter_id), HTTP_Bad_Request)
4388
4389 sdn_controller = ovim.show_of_controller(sdn_controller_id)
4390 switch_dpid = sdn_controller["dpid"]
4391
4392 maps = list()
4393 for compute_node in sdn_port_mapping:
4394 #element = {"ofc_id": sdn_controller_id, "region": datacenter_id, "switch_dpid": switch_dpid}
4395 element = dict()
4396 element["compute_node"] = compute_node["compute_node"]
4397 for port in compute_node["ports"]:
4398 element["pci"] = port.get("pci")
4399 element["switch_port"] = port.get("switch_port")
4400 element["switch_mac"] = port.get("switch_mac")
4401 if not element["pci"] or not (element["switch_port"] or element["switch_mac"]):
4402 raise NfvoException ("The mapping must contain the 'pci' and at least one of the elements 'switch_port'"
4403 " or 'switch_mac'", HTTP_Bad_Request)
4404 maps.append(dict(element))
4405
4406 return ovim.set_of_port_mapping(maps, ofc_id=sdn_controller_id, switch_dpid=switch_dpid, region=datacenter_id)
4407
4408 def datacenter_sdn_port_mapping_list(mydb, tenant_id, datacenter_id):
4409 maps = ovim.get_of_port_mappings(db_filter={"region": datacenter_id})
4410
4411 result = {
4412 "sdn-controller": None,
4413 "datacenter-id": datacenter_id,
4414 "dpid": None,
4415 "ports_mapping": list()
4416 }
4417
4418 datacenter = mydb.get_table_by_uuid_name('datacenters', datacenter_id)
4419 if datacenter['config']:
4420 config = yaml.load(datacenter['config'])
4421 if 'sdn-controller' in config:
4422 controller_id = config['sdn-controller']
4423 sdn_controller = sdn_controller_list(mydb, tenant_id, controller_id)
4424 result["sdn-controller"] = controller_id
4425 result["dpid"] = sdn_controller["dpid"]
4426
4427 if result["sdn-controller"] == None:
4428 raise NfvoException("SDN controller is not defined for datacenter {}".format(datacenter_id), HTTP_Bad_Request)
4429 if result["dpid"] == None:
4430 raise NfvoException("It was not possible to determine DPID for SDN controller {}".format(result["sdn-controller"]),
4431 HTTP_Internal_Server_Error)
4432
4433 if len(maps) == 0:
4434 return result
4435
4436 ports_correspondence_dict = dict()
4437 for link in maps:
4438 if result["sdn-controller"] != link["ofc_id"]:
4439 raise NfvoException("The sdn-controller specified for different port mappings differ", HTTP_Internal_Server_Error)
4440 if result["dpid"] != link["switch_dpid"]:
4441 raise NfvoException("The dpid specified for different port mappings differ", HTTP_Internal_Server_Error)
4442 element = dict()
4443 element["pci"] = link["pci"]
4444 if link["switch_port"]:
4445 element["switch_port"] = link["switch_port"]
4446 if link["switch_mac"]:
4447 element["switch_mac"] = link["switch_mac"]
4448
4449 if not link["compute_node"] in ports_correspondence_dict:
4450 content = dict()
4451 content["compute_node"] = link["compute_node"]
4452 content["ports"] = list()
4453 ports_correspondence_dict[link["compute_node"]] = content
4454
4455 ports_correspondence_dict[link["compute_node"]]["ports"].append(element)
4456
4457 for key in sorted(ports_correspondence_dict):
4458 result["ports_mapping"].append(ports_correspondence_dict[key])
4459
4460 return result
4461
4462 def datacenter_sdn_port_mapping_delete(mydb, tenant_id, datacenter_id):
4463 return ovim.clear_of_port_mapping(db_filter={"region":datacenter_id})
4464
4465 def create_RO_keypair(tenant_id):
4466 """
4467 Creates a public / private keys for a RO tenant and returns their values
4468 Params:
4469 tenant_id: ID of the tenant
4470 Return:
4471 public_key: Public key for the RO tenant
4472 private_key: Encrypted private key for RO tenant
4473 """
4474
4475 bits = 2048
4476 key = RSA.generate(bits)
4477 try:
4478 public_key = key.publickey().exportKey('OpenSSH')
4479 if isinstance(public_key, ValueError):
4480 raise NfvoException("Unable to create public key: {}".format(public_key), HTTP_Internal_Server_Error)
4481 private_key = key.exportKey(passphrase=tenant_id, pkcs=8)
4482 except (ValueError, NameError) as e:
4483 raise NfvoException("Unable to create private key: {}".format(e), HTTP_Internal_Server_Error)
4484 return public_key, private_key
4485
4486 def decrypt_key (key, tenant_id):
4487 """
4488 Decrypts an encrypted RSA key
4489 Params:
4490 key: Private key to be decrypted
4491 tenant_id: ID of the tenant
4492 Return:
4493 unencrypted_key: Unencrypted private key for RO tenant
4494 """
4495 try:
4496 key = RSA.importKey(key,tenant_id)
4497 unencrypted_key = key.exportKey('PEM')
4498 if isinstance(unencrypted_key, ValueError):
4499 raise NfvoException("Unable to decrypt the private key: {}".format(unencrypted_key), HTTP_Internal_Server_Error)
4500 except ValueError as e:
4501 raise NfvoException("Unable to decrypt the private key: {}".format(e), HTTP_Internal_Server_Error)
4502 return unencrypted_key