blob: c27c51e1d3e086caf92faf74eb56edefeef6fb7c [file] [log] [blame]
tierno7edb6752016-03-21 17:37:52 +01001# -*- 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'''
25NFVO 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
30import imp
31#import json
32import yaml
tierno42fcc3b2016-07-06 17:20:40 +020033import utils
tiernof97fd272016-07-11 14:32:37 +020034from db_base import HTTP_Unauthorized, HTTP_Bad_Request, HTTP_Internal_Server_Error, HTTP_Not_Found,\
tierno7edb6752016-03-21 17:37:52 +010035 HTTP_Conflict, HTTP_Method_Not_Allowed
36import console_proxy_thread as cli
tiernoae4a8d12016-07-08 12:30:39 +020037import vimconn
38import logging
garciadeblas9f8456e2016-09-05 05:02:59 +020039import collections
tiernof97fd272016-07-11 14:32:37 +020040from db_base import db_base_Exception
tierno7edb6752016-03-21 17:37:52 +010041
42global global_config
43global vimconn_imported
tierno73ad9e42016-09-12 18:11:11 +020044global logger
tierno7edb6752016-03-21 17:37:52 +010045
tiernoae4a8d12016-07-08 12:30:39 +020046
tierno7edb6752016-03-21 17:37:52 +010047vimconn_imported={} #dictionary with VIM type as key, loaded module as value
tierno73ad9e42016-09-12 18:11:11 +020048logger = logging.getLogger('openmano.nfvo')
tierno7edb6752016-03-21 17:37:52 +010049
50class NfvoException(Exception):
tiernoae4a8d12016-07-08 12:30:39 +020051 def __init__(self, message, http_code):
52 self.http_code = http_code
53 Exception.__init__(self, message)
tierno7edb6752016-03-21 17:37:52 +010054
55
56def get_flavorlist(mydb, vnf_id, nfvo_tenant=None):
57 '''Obtain flavorList
58 return result, content:
59 <0, error_text upon error
60 nb_records, flavor_list on success
61 '''
62 WHERE_dict={}
63 WHERE_dict['vnf_id'] = vnf_id
64 if nfvo_tenant is not None:
65 WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
66
67 #result, content = mydb.get_table(FROM='vms join vnfs on vms.vnf_id = vnfs.uuid',SELECT=('uuid'),WHERE=WHERE_dict )
68 #result, content = mydb.get_table(FROM='vms',SELECT=('vim_flavor_id',),WHERE=WHERE_dict )
tiernof97fd272016-07-11 14:32:37 +020069 flavors = mydb.get_rows(FROM='vms join flavors on vms.flavor_id=flavors.uuid',SELECT=('flavor_id',),WHERE=WHERE_dict )
70 #print "get_flavor_list result:", result
71 #print "get_flavor_list content:", content
tierno7edb6752016-03-21 17:37:52 +010072 flavorList=[]
tiernof97fd272016-07-11 14:32:37 +020073 for flavor in flavors:
tierno7edb6752016-03-21 17:37:52 +010074 flavorList.append(flavor['flavor_id'])
tiernof97fd272016-07-11 14:32:37 +020075 return flavorList
tierno7edb6752016-03-21 17:37:52 +010076
77def get_imagelist(mydb, vnf_id, nfvo_tenant=None):
78 '''Obtain imageList
79 return result, content:
80 <0, error_text upon error
81 nb_records, flavor_list on success
82 '''
83 WHERE_dict={}
84 WHERE_dict['vnf_id'] = vnf_id
85 if nfvo_tenant is not None:
86 WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
87
88 #result, content = mydb.get_table(FROM='vms join vnfs on vms-vnf_id = vnfs.uuid',SELECT=('uuid'),WHERE=WHERE_dict )
tiernof97fd272016-07-11 14:32:37 +020089 images = mydb.get_rows(FROM='vms join images on vms.image_id=images.uuid',SELECT=('image_id',),WHERE=WHERE_dict )
tierno7edb6752016-03-21 17:37:52 +010090 imageList=[]
tiernof97fd272016-07-11 14:32:37 +020091 for image in images:
tierno7edb6752016-03-21 17:37:52 +010092 imageList.append(image['image_id'])
tiernof97fd272016-07-11 14:32:37 +020093 return imageList
tierno7edb6752016-03-21 17:37:52 +010094
tierno3ae39742016-09-07 12:17:51 +020095def get_vim(mydb, nfvo_tenant=None, datacenter_id=None, datacenter_name=None, vim_tenant=None, vim_tenant_name=None, vim_user=None, vim_passwd=None):
tierno7edb6752016-03-21 17:37:52 +010096 '''Obtain a dictionary of VIM (datacenter) classes with some of the input parameters
tiernobe41e222016-09-02 15:16:13 +020097 return dictionary with {datacenter_id: vim_class, ... }. vim_class contain:
tierno7edb6752016-03-21 17:37:52 +010098 'nfvo_tenant_id','datacenter_id','vim_tenant_id','vim_url','vim_url_admin','datacenter_name','type','user','passwd'
tiernobe41e222016-09-02 15:16:13 +020099 raise exception upon error
tierno7edb6752016-03-21 17:37:52 +0100100 '''
101 WHERE_dict={}
102 if nfvo_tenant is not None: WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
103 if datacenter_id is not None: WHERE_dict['d.uuid'] = datacenter_id
104 if datacenter_name is not None: WHERE_dict['d.name'] = datacenter_name
105 if vim_tenant is not None: WHERE_dict['dt.vim_tenant_id'] = vim_tenant
106 if nfvo_tenant or vim_tenant:
107 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'
108 select_ = ('type','config','d.uuid as datacenter_id', 'vim_url', 'vim_url_admin', 'd.name as datacenter_name',
109 'dt.uuid as datacenter_tenant_id','dt.vim_tenant_name as vim_tenant_name','dt.vim_tenant_id as vim_tenant_id',
110 'user','passwd')
111 else:
112 from_ = 'datacenters as d'
113 select_ = ('type','config','d.uuid as datacenter_id', 'vim_url', 'vim_url_admin', 'd.name as datacenter_name')
tiernof97fd272016-07-11 14:32:37 +0200114 try:
115 vims = mydb.get_rows(FROM=from_, SELECT=select_, WHERE=WHERE_dict )
116 vim_dict={}
117 for vim in vims:
118 extra={'datacenter_tenant_id': vim.get('datacenter_tenant_id')}
119 if vim["config"] != None:
120 extra.update(yaml.load(vim["config"]))
121 if vim["type"] not in vimconn_imported:
122 module_info=None
123 try:
124 module = "vimconn_" + vim["type"]
125 module_info = imp.find_module(module)
126 vim_conn = imp.load_module(vim["type"], *module_info)
127 vimconn_imported[vim["type"]] = vim_conn
128 except (IOError, ImportError) as e:
129 if module_info and module_info[0]:
130 file.close(module_info[0])
131 raise NfvoException("Unknown vim type '{}'. Can not open file '{}.py'; {}: {}".format(
132 vim["type"], module, type(e).__name__, str(e)), HTTP_Bad_Request)
133
tierno7edb6752016-03-21 17:37:52 +0100134 try:
tiernof97fd272016-07-11 14:32:37 +0200135 #if not tenant:
136 # return -HTTP_Bad_Request, "You must provide a valid tenant name or uuid for VIM %s" % ( vim["type"])
137 vim_dict[ vim['datacenter_id'] ] = vimconn_imported[ vim["type"] ].vimconnector(
138 uuid=vim['datacenter_id'], name=vim['datacenter_name'],
tierno3ae39742016-09-07 12:17:51 +0200139 tenant_id=vim.get('vim_tenant_id',vim_tenant), tenant_name=vim.get('vim_tenant_name',vim_tenant_name),
tiernof97fd272016-07-11 14:32:37 +0200140 url=vim['vim_url'], url_admin=vim['vim_url_admin'],
tierno3ae39742016-09-07 12:17:51 +0200141 user=vim.get('user',vim_user), passwd=vim.get('passwd',vim_passwd),
tiernof97fd272016-07-11 14:32:37 +0200142 config=extra
143 )
144 except Exception as e:
145 raise NfvoException("Error at VIM {}; {}: {}".format(vim["type"], type(e).__name__, str(e)), HTTP_Internal_Server_Error)
146 return vim_dict
147 except db_base_Exception as e:
148 raise NfvoException(str(e) + " at nfvo.get_vim", e.http_code)
149
tierno7edb6752016-03-21 17:37:52 +0100150def rollback(mydb, vims, rollback_list):
151 undeleted_items=[]
152 #delete things by reverse order
153 for i in range(len(rollback_list)-1, -1, -1):
154 item = rollback_list[i]
155 if item["where"]=="vim":
156 if item["vim_id"] not in vims:
157 continue
158 vim=vims[ item["vim_id"] ]
tiernoae4a8d12016-07-08 12:30:39 +0200159 try:
160 if item["what"]=="image":
161 vim.delete_image(item["uuid"])
tiernof97fd272016-07-11 14:32:37 +0200162 mydb.delete_row(FROM="datacenters_images", WHERE={"datacenter_id": vim["id"], "vim_id":item["uuid"]})
tiernoae4a8d12016-07-08 12:30:39 +0200163 elif item["what"]=="flavor":
164 vim.delete_flavor(item["uuid"])
garciadeblas9f8456e2016-09-05 05:02:59 +0200165 mydb.delete_row(FROM="datacenters_flavors", WHERE={"datacenter_id": vim["id"], "vim_id":item["uuid"]})
tiernoae4a8d12016-07-08 12:30:39 +0200166 elif item["what"]=="network":
167 vim.delete_network(item["uuid"])
168 elif item["what"]=="vm":
169 vim.delete_vminstance(item["uuid"])
170 except vimconn.vimconnException as e:
171 logger.error("Error in rollback. Not possible to delete VIM %s '%s'. Message: %s", item['what'], item["uuid"], str(e))
172 undeleted_items.append("{} {} from VIM {}".format(item['what'], item["uuid"], vim["name"]))
tiernof97fd272016-07-11 14:32:37 +0200173 except db_base_Exception as e:
174 logger.error("Error in rollback. Not possible to delete %s '%s' from DB.datacenters Message: %s", item['what'], item["uuid"], str(e))
tiernoae4a8d12016-07-08 12:30:39 +0200175
tierno7edb6752016-03-21 17:37:52 +0100176 else: # where==mano
tiernof97fd272016-07-11 14:32:37 +0200177 try:
178 if item["what"]=="image":
179 mydb.delete_row(FROM="images", WHERE={"uuid": item["uuid"]})
180 elif item["what"]=="flavor":
181 mydb.delete_row(FROM="flavors", WHERE={"uuid": item["uuid"]})
182 except db_base_Exception as e:
183 logger.error("Error in rollback. Not possible to delete %s '%s' from DB. Message: %s", item['what'], item["uuid"], str(e))
184 undeleted_items.append("{} '{}'".format(item['what'], item["uuid"]))
tierno7edb6752016-03-21 17:37:52 +0100185 if len(undeleted_items)==0:
186 return True," Rollback successful."
187 else:
188 return False," Rollback fails to delete: " + str(undeleted_items)
189
190def check_vnf_descriptor(vnf_descriptor):
191 global global_config
192 #create a dictionary with vnfc-name: vnfc:interface-list key:values pairs
193 vnfc_interfaces={}
194 for vnfc in vnf_descriptor["vnf"]["VNFC"]:
195 name_list = []
196 #dataplane interfaces
197 for numa in vnfc.get("numas",() ):
198 for interface in numa.get("interfaces",()):
199 if interface["name"] in name_list:
tiernof97fd272016-07-11 14:32:37 +0200200 raise NfvoException("Error at vnf:VNFC[name:'{}']:numas:interfaces:name, interface name '{}' already used in this VNFC"\
201 .format(vnfc["name"], interface["name"]),
202 HTTP_Bad_Request)
203 name_list.append( interface["name"] )
tierno7edb6752016-03-21 17:37:52 +0100204 #bridge interfaces
205 for interface in vnfc.get("bridge-ifaces",() ):
206 if interface["name"] in name_list:
tiernof97fd272016-07-11 14:32:37 +0200207 raise NfvoException("Error at vnf:VNFC[name:'{}']:bridge-ifaces:name, interface name '{}' already used in this VNFC"\
208 .format(vnfc["name"], interface["name"]),
209 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100210 name_list.append( interface["name"] )
211 vnfc_interfaces[ vnfc["name"] ] = name_list
212
213 #check if the info in external_connections matches with the one in the vnfcs
214 name_list=[]
215 for external_connection in vnf_descriptor["vnf"].get("external-connections",() ):
216 if external_connection["name"] in name_list:
tiernof97fd272016-07-11 14:32:37 +0200217 raise NfvoException("Error at vnf:external-connections:name, value '{}' already used as an external-connection"\
218 .format(external_connection["name"]),
219 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100220 name_list.append(external_connection["name"])
221 if external_connection["VNFC"] not in vnfc_interfaces:
tiernof97fd272016-07-11 14:32:37 +0200222 raise NfvoException("Error at vnf:external-connections[name:'{}']:VNFC, value '{}' does not match any VNFC"\
223 .format(external_connection["name"], external_connection["VNFC"]),
224 HTTP_Bad_Request)
225
tierno7edb6752016-03-21 17:37:52 +0100226 if external_connection["local_iface_name"] not in vnfc_interfaces[ external_connection["VNFC"] ]:
tiernof97fd272016-07-11 14:32:37 +0200227 raise NfvoException("Error at vnf:external-connections[name:'{}']:local_iface_name, value '{}' does not match any interface of this VNFC"\
228 .format(external_connection["name"], external_connection["local_iface_name"]),
229 HTTP_Bad_Request )
tierno7edb6752016-03-21 17:37:52 +0100230
231 #check if the info in internal_connections matches with the one in the vnfcs
232 name_list=[]
233 for internal_connection in vnf_descriptor["vnf"].get("internal-connections",() ):
234 if internal_connection["name"] in name_list:
tiernof97fd272016-07-11 14:32:37 +0200235 raise NfvoException("Error at vnf:internal-connections:name, value '%s' already used as an internal-connection"\
236 .format(internal_connection["name"]),
237 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100238 name_list.append(internal_connection["name"])
239 #We should check that internal-connections of type "ptp" have only 2 elements
240 if len(internal_connection["elements"])>2 and internal_connection["type"] == "ptp":
tiernof97fd272016-07-11 14:32:37 +0200241 raise NfvoException("Error at vnf:internal-connections[name:'{}']:elements, size must be 2 for a type:'ptp'"\
242 .format(internal_connection["name"]),
243 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100244 for port in internal_connection["elements"]:
245 if port["VNFC"] not in vnfc_interfaces:
tiernof97fd272016-07-11 14:32:37 +0200246 raise NfvoException("Error at vnf:internal-connections[name:'{}']:elements[]:VNFC, value '{}' does not match any VNFC"\
247 .format(internal_connection["name"], port["VNFC"]),
248 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100249 if port["local_iface_name"] not in vnfc_interfaces[ port["VNFC"] ]:
tiernof97fd272016-07-11 14:32:37 +0200250 raise NfvoException("Error at vnf:internal-connections[name:'{}']:elements[]:local_iface_name, value '{}' does not match any interface of this VNFC"\
251 .format(internal_connection["name"], port["local_iface_name"]),
252 HTTP_Bad_Request)
253 return -HTTP_Bad_Request,
tierno7edb6752016-03-21 17:37:52 +0100254
255def create_or_use_image(mydb, vims, image_dict, rollback_list, only_create_at_vim=False, return_on_error = False):
256 #look if image exist
257 if only_create_at_vim:
258 image_mano_id = image_dict['uuid']
259 else:
tiernof97fd272016-07-11 14:32:37 +0200260 images = mydb.get_rows(FROM="images", WHERE={'location':image_dict['location'], 'metadata':image_dict['metadata']})
261 if len(images)>=1:
262 image_mano_id = images[0]['uuid']
tierno7edb6752016-03-21 17:37:52 +0100263 else:
264 #create image
265 temp_image_dict={'name':image_dict['name'], 'description':image_dict.get('description',None),
266 'location':image_dict['location'], 'metadata':image_dict.get('metadata',None)
267 }
tiernof97fd272016-07-11 14:32:37 +0200268 image_mano_id = mydb.new_row('images', temp_image_dict, add_uuid=True)
269 rollback_list.append({"where":"mano", "what":"image","uuid":image_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100270 #create image at every vim
271 for vim_id,vim in vims.iteritems():
272 image_created="false"
273 #look at database
tiernof97fd272016-07-11 14:32:37 +0200274 image_db = mydb.get_rows(FROM="datacenters_images", WHERE={'datacenter_id':vim_id, 'image_id':image_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100275 #look at VIM if this image exist
tiernoae4a8d12016-07-08 12:30:39 +0200276 try:
277 image_vim_id = vim.get_image_id_from_path(image_dict['location'])
278 except vimconn.vimconnNotFoundException as e:
tierno7edb6752016-03-21 17:37:52 +0100279 #Create the image in VIM
tiernoae4a8d12016-07-08 12:30:39 +0200280 try:
281 image_vim_id = vim.new_image(image_dict)
tierno7edb6752016-03-21 17:37:52 +0100282 rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"image","uuid":image_vim_id})
283 image_created="true"
tiernoae4a8d12016-07-08 12:30:39 +0200284 except vimconn.vimconnException as e:
285 if return_on_error:
286 logger.error("Error creating image at VIM: %s", str(e))
tiernof97fd272016-07-11 14:32:37 +0200287 raise
tiernoae4a8d12016-07-08 12:30:39 +0200288 image_vim_id = str(e)
289 logger.warn("Error creating image at VIM: %s", str(e))
290 continue
291 except vimconn.vimconnException as e:
292 logger.warn("Error contacting VIM to know if the image exist at VIM: %s", str(e))
293 image_vim_id = str(e)
294 continue
tierno7edb6752016-03-21 17:37:52 +0100295 #if reach here the image has been create or exist
tiernof97fd272016-07-11 14:32:37 +0200296 if len(image_db)==0:
tierno7edb6752016-03-21 17:37:52 +0100297 #add new vim_id at datacenters_images
298 mydb.new_row('datacenters_images', {'datacenter_id':vim_id, 'image_id':image_mano_id, 'vim_id': image_vim_id, 'created':image_created})
299 elif image_db[0]["vim_id"]!=image_vim_id:
300 #modify existing vim_id at datacenters_images
301 mydb.update_rows('datacenters_images', UPDATE={'vim_id':image_vim_id}, WHERE={'datacenter_id':vim_id, 'image_id':image_mano_id})
302
tiernof97fd272016-07-11 14:32:37 +0200303 return image_vim_id if only_create_at_vim else image_mano_id
tierno7edb6752016-03-21 17:37:52 +0100304
305def create_or_use_flavor(mydb, vims, flavor_dict, rollback_list, only_create_at_vim=False, return_on_error = False):
306 temp_flavor_dict= {'disk':flavor_dict.get('disk',1),
307 'ram':flavor_dict.get('ram'),
308 'vcpus':flavor_dict.get('vcpus'),
309 }
310 if 'extended' in flavor_dict and flavor_dict['extended']==None:
311 del flavor_dict['extended']
312 if 'extended' in flavor_dict:
313 temp_flavor_dict['extended']=yaml.safe_dump(flavor_dict['extended'],default_flow_style=True,width=256)
314
315 #look if flavor exist
316 if only_create_at_vim:
317 flavor_mano_id = flavor_dict['uuid']
318 else:
tiernof97fd272016-07-11 14:32:37 +0200319 flavors = mydb.get_rows(FROM="flavors", WHERE=temp_flavor_dict)
320 if len(flavors)>=1:
321 flavor_mano_id = flavors[0]['uuid']
tierno7edb6752016-03-21 17:37:52 +0100322 else:
323 #create flavor
324 #create one by one the images of aditional disks
325 dev_image_list=[] #list of images
326 if 'extended' in flavor_dict and flavor_dict['extended']!=None:
327 dev_nb=0
328 for device in flavor_dict['extended'].get('devices',[]):
329 if "image" not in device:
330 continue
331 image_dict={'location':device['image'], 'name':flavor_dict['name']+str(dev_nb)+"-img", 'description':flavor_dict.get('description')}
332 image_metadata_dict = device.get('image metadata', None)
333 image_metadata_str = None
334 if image_metadata_dict != None:
335 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
336 image_dict['metadata']=image_metadata_str
tiernof97fd272016-07-11 14:32:37 +0200337 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
338 #print "Additional disk image id for VNFC %s: %s" % (flavor_dict['name']+str(dev_nb)+"-img", image_id)
tierno7edb6752016-03-21 17:37:52 +0100339 dev_image_list.append(image_id)
340 dev_nb += 1
341 temp_flavor_dict['name'] = flavor_dict['name']
342 temp_flavor_dict['description'] = flavor_dict.get('description',None)
tiernof97fd272016-07-11 14:32:37 +0200343 content = mydb.new_row('flavors', temp_flavor_dict, add_uuid=True)
344 flavor_mano_id= content
345 rollback_list.append({"where":"mano", "what":"flavor","uuid":flavor_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100346 #create flavor at every vim
347 if 'uuid' in flavor_dict:
348 del flavor_dict['uuid']
349 flavor_vim_id=None
350 for vim_id,vim in vims.items():
351 flavor_created="false"
352 #look at database
tiernof97fd272016-07-11 14:32:37 +0200353 flavor_db = mydb.get_rows(FROM="datacenters_flavors", WHERE={'datacenter_id':vim_id, 'flavor_id':flavor_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100354 #look at VIM if this flavor exist SKIPPED
355 #res_vim, flavor_vim_id = vim.get_flavor_id_from_path(flavor_dict['location'])
356 #if res_vim < 0:
357 # print "Error contacting VIM to know if the flavor %s existed previously." %flavor_vim_id
358 # continue
359 #elif res_vim==0:
360
361 #Create the flavor in VIM
362 #Translate images at devices from MANO id to VIM id
tierno7edb6752016-03-21 17:37:52 +0100363 if 'extended' in flavor_dict and flavor_dict['extended']!=None and "devices" in flavor_dict['extended']:
364 #make a copy of original devices
365 devices_original=[]
366 for device in flavor_dict["extended"].get("devices",[]):
367 dev={}
368 dev.update(device)
369 devices_original.append(dev)
370 if 'image' in device:
371 del device['image']
372 if 'image metadata' in device:
373 del device['image metadata']
374 dev_nb=0
375 for index in range(0,len(devices_original)) :
376 device=devices_original[index]
377 if "image" not in device:
378 continue
379 image_dict={'location':device['image'], 'name':flavor_dict['name']+str(dev_nb)+"-img", 'description':flavor_dict.get('description')}
380 image_metadata_dict = device.get('image metadata', None)
381 image_metadata_str = None
382 if image_metadata_dict != None:
383 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
384 image_dict['metadata']=image_metadata_str
tiernof97fd272016-07-11 14:32:37 +0200385 image_mano_id=create_or_use_image(mydb, vims, image_dict, rollback_list, only_create_at_vim=False, return_on_error=return_on_error )
tierno7edb6752016-03-21 17:37:52 +0100386 image_dict["uuid"]=image_mano_id
tiernof97fd272016-07-11 14:32:37 +0200387 image_vim_id=create_or_use_image(mydb, vims, image_dict, rollback_list, only_create_at_vim=True, return_on_error=return_on_error)
tierno7edb6752016-03-21 17:37:52 +0100388 flavor_dict["extended"]["devices"][index]['imageRef']=image_vim_id
389 dev_nb += 1
tiernof97fd272016-07-11 14:32:37 +0200390 if len(flavor_db)>0:
tierno7edb6752016-03-21 17:37:52 +0100391 #check that this vim_id exist in VIM, if not create
392 flavor_vim_id=flavor_db[0]["vim_id"]
tiernoae4a8d12016-07-08 12:30:39 +0200393 try:
394 vim.get_flavor(flavor_vim_id)
395 continue #flavor exist
396 except vimconn.vimconnException:
397 pass
tierno7edb6752016-03-21 17:37:52 +0100398 #create flavor at vim
tiernoae4a8d12016-07-08 12:30:39 +0200399 logger.debug("nfvo.create_or_use_flavor() adding flavor to VIM %s", vim["name"])
400 try:
401 flavor_vim_id = vim.new_flavor(flavor_dict)
tierno7edb6752016-03-21 17:37:52 +0100402 rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"flavor","uuid":flavor_vim_id})
403 flavor_created="true"
tiernoae4a8d12016-07-08 12:30:39 +0200404 except vimconn.vimconnException as e:
405 if return_on_error:
406 logger.error("Error creating flavor at VIM %s: %s.", vim["name"], str(e))
tiernof97fd272016-07-11 14:32:37 +0200407 raise
tiernoae4a8d12016-07-08 12:30:39 +0200408 logger.warn("Error creating flavor at VIM %s: %s.", vim["name"], str(e))
409 continue
tierno7edb6752016-03-21 17:37:52 +0100410 #if reach here the flavor has been create or exist
tiernof97fd272016-07-11 14:32:37 +0200411 if len(flavor_db)==0:
tierno7edb6752016-03-21 17:37:52 +0100412 #add new vim_id at datacenters_flavors
413 mydb.new_row('datacenters_flavors', {'datacenter_id':vim_id, 'flavor_id':flavor_mano_id, 'vim_id': flavor_vim_id, 'created':flavor_created})
414 elif flavor_db[0]["vim_id"]!=flavor_vim_id:
415 #modify existing vim_id at datacenters_flavors
416 mydb.update_rows('datacenters_flavors', UPDATE={'vim_id':flavor_vim_id}, WHERE={'datacenter_id':vim_id, 'flavor_id':flavor_mano_id})
417
tiernof97fd272016-07-11 14:32:37 +0200418 return flavor_vim_id if only_create_at_vim else flavor_mano_id
tierno7edb6752016-03-21 17:37:52 +0100419
420def new_vnf(mydb, tenant_id, vnf_descriptor):
421 global global_config
422
423 # Step 1. Check the VNF descriptor
tiernof97fd272016-07-11 14:32:37 +0200424 check_vnf_descriptor(vnf_descriptor)
tierno7edb6752016-03-21 17:37:52 +0100425 # Step 2. Check tenant exist
426 if tenant_id != "any":
tiernof97fd272016-07-11 14:32:37 +0200427 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100428 if "tenant_id" in vnf_descriptor["vnf"]:
429 if vnf_descriptor["vnf"]["tenant_id"] != tenant_id:
tiernof97fd272016-07-11 14:32:37 +0200430 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id),
431 HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +0100432 else:
433 vnf_descriptor['vnf']['tenant_id'] = tenant_id
434 # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter
tiernof97fd272016-07-11 14:32:37 +0200435 vims = get_vim(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100436 else:
437 vims={}
438
439 # Step 4. Review the descriptor and add missing fields
440 #print vnf_descriptor
tiernof97fd272016-07-11 14:32:37 +0200441 #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)")
tierno7edb6752016-03-21 17:37:52 +0100442 vnf_name = vnf_descriptor['vnf']['name']
443 vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name)
444 if "physical" in vnf_descriptor['vnf']:
445 del vnf_descriptor['vnf']['physical']
446 #print vnf_descriptor
447 # Step 5. Check internal connections
448 # TODO: to be moved to step 1????
449 internal_connections=vnf_descriptor['vnf'].get('internal_connections',[])
450 for ic in internal_connections:
451 if len(ic['elements'])>2 and ic['type']=='ptp':
tiernof97fd272016-07-11 14:32:37 +0200452 raise NfvoException("Mismatch 'type':'ptp' with {} elements at 'vnf':'internal-conections'['name':'{}']. Change 'type' to 'data'".format(len(ic), ic['name']),
453 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100454 elif len(ic['elements'])==2 and ic['type']=='data':
tiernof97fd272016-07-11 14:32:37 +0200455 raise NfvoException("Mismatch 'type':'data' with 2 elements at 'vnf':'internal-conections'['name':'{}']. Change 'type' to 'ptp'".format(ic['name']),
456 HTTP_Bad_Request)
457
tierno7edb6752016-03-21 17:37:52 +0100458 # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM
tiernof97fd272016-07-11 14:32:37 +0200459 logger.debug('BEGIN creation of VNF "%s"' % vnf_name)
460 logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC'])))
tierno7edb6752016-03-21 17:37:52 +0100461
462 #For each VNFC, we add it to the VNFCDict and we create a flavor.
463 VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database
464 rollback_list = [] # It will contain the new images created in mano. It is used for rollback
tierno7edb6752016-03-21 17:37:52 +0100465 try:
tiernof97fd272016-07-11 14:32:37 +0200466 logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC")
tierno7edb6752016-03-21 17:37:52 +0100467 for vnfc in vnf_descriptor['vnf']['VNFC']:
468 VNFCitem={}
469 VNFCitem["name"] = vnfc['name']
470 VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name))
471
tiernof97fd272016-07-11 14:32:37 +0200472 #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"])
tierno7edb6752016-03-21 17:37:52 +0100473
474 myflavorDict = {}
475 myflavorDict["name"] = vnfc['name']+"-flv"
476 myflavorDict["description"] = VNFCitem["description"]
477 myflavorDict["ram"] = vnfc.get("ram", 0)
478 myflavorDict["vcpus"] = vnfc.get("vcpus", 0)
479 myflavorDict["disk"] = vnfc.get("disk", 1)
480 myflavorDict["extended"] = {}
481
482 devices = vnfc.get("devices")
483 if devices != None:
484 myflavorDict["extended"]["devices"] = devices
485
486 # TODO:
487 # 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
488 # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host
489
490 # Previous code has been commented
491 #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" :
492 # myflavorDict["flavor"]['extended']['processor_ranking'] = 200
493 #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" :
494 # myflavorDict["flavor"]['extended']['processor_ranking'] = 300
495 #else:
496 # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList)
497 # if result2:
498 # print "Error creating flavor: unknown processor model. Rollback successful."
499 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful."
500 # else:
501 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message
502 myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done
503
504 if 'numas' in vnfc and len(vnfc['numas'])>0:
505 myflavorDict['extended']['numas'] = vnfc['numas']
506
507 #print myflavorDict
508
509 # Step 6.2 New flavors are created in the VIM
tiernof97fd272016-07-11 14:32:37 +0200510 flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list)
tierno7edb6752016-03-21 17:37:52 +0100511
tiernof97fd272016-07-11 14:32:37 +0200512 #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id)
tierno7edb6752016-03-21 17:37:52 +0100513 VNFCitem["flavor_id"] = flavor_id
514 VNFCDict[vnfc['name']] = VNFCitem
515
tiernof97fd272016-07-11 14:32:37 +0200516 logger.debug("Creating new images in the VIM for each VNFC")
tierno7edb6752016-03-21 17:37:52 +0100517 # Step 6.3 New images are created in the VIM
518 #For each VNFC, we must create the appropriate image.
519 #This "for" loop might be integrated with the previous one
520 #In case this integration is made, the VNFCDict might become a VNFClist.
521 for vnfc in vnf_descriptor['vnf']['VNFC']:
tiernof97fd272016-07-11 14:32:37 +0200522 #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description'])
tierno7edb6752016-03-21 17:37:52 +0100523 image_dict={'location':vnfc['VNFC image'], 'name':vnfc['name']+"-img", 'description':VNFCDict[vnfc['name']]['description']}
524 image_metadata_dict = vnfc.get('image metadata', None)
525 image_metadata_str = None
526 if image_metadata_dict is not None:
527 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
528 image_dict['metadata']=image_metadata_str
529 #print "create_or_use_image", mydb, vims, image_dict, rollback_list
tiernof97fd272016-07-11 14:32:37 +0200530 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
531 #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id)
tierno7edb6752016-03-21 17:37:52 +0100532 VNFCDict[vnfc['name']]["image_id"] = image_id
533 VNFCDict[vnfc['name']]["image_path"] = vnfc['VNFC image']
534
tiernof97fd272016-07-11 14:32:37 +0200535
536 # Step 7. Storing the VNF descriptor in the repository
537 if "descriptor" not in vnf_descriptor["vnf"]:
538 vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +0100539
tiernof97fd272016-07-11 14:32:37 +0200540 # Step 8. Adding the VNF to the NFVO DB
541 vnf_id = mydb.new_vnf_as_a_whole(tenant_id,vnf_name,vnf_descriptor,VNFCDict)
542 return vnf_id
543 except (db_base_Exception, vimconn.vimconnException, KeyError) as e:
tierno7edb6752016-03-21 17:37:52 +0100544 _, message = rollback(mydb, vims, rollback_list)
tiernof97fd272016-07-11 14:32:37 +0200545 if isinstance(e, db_base_Exception):
546 error_text = "Exception at database"
547 elif isinstance(e, KeyError):
548 error_text = "KeyError exception "
549 e.http_code = HTTP_Internal_Server_Error
550 else:
551 error_text = "Exception at VIM"
552 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
553 #logger.error("start_scenario %s", error_text)
554 raise NfvoException(error_text, e.http_code)
555
garciadeblas9f8456e2016-09-05 05:02:59 +0200556def new_vnf_v02(mydb, tenant_id, vnf_descriptor):
557 global global_config
558
559 # Step 1. Check the VNF descriptor
560 check_vnf_descriptor(vnf_descriptor)
561 # Step 2. Check tenant exist
562 if tenant_id != "any":
563 check_tenant(mydb, tenant_id)
564 if "tenant_id" in vnf_descriptor["vnf"]:
565 if vnf_descriptor["vnf"]["tenant_id"] != tenant_id:
566 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id),
567 HTTP_Unauthorized)
568 else:
569 vnf_descriptor['vnf']['tenant_id'] = tenant_id
570 # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter
571 vims = get_vim(mydb, tenant_id)
572 else:
573 vims={}
574
575 # Step 4. Review the descriptor and add missing fields
576 #print vnf_descriptor
577 #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)")
578 vnf_name = vnf_descriptor['vnf']['name']
579 vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name)
580 if "physical" in vnf_descriptor['vnf']:
581 del vnf_descriptor['vnf']['physical']
582 #print vnf_descriptor
583 # Step 5. Check internal connections
584 # TODO: to be moved to step 1????
585 internal_connections=vnf_descriptor['vnf'].get('internal_connections',[])
586 for ic in internal_connections:
587 if len(ic['elements'])>2 and ic['type']=='e-line':
588 raise NfvoException("Mismatch 'type':'e-line' with {} elements at 'vnf':'internal-conections'['name':'{}']. Change 'type' to 'e-lan'".format(len(ic), ic['name']),
589 HTTP_Bad_Request)
590
591 # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM
592 logger.debug('BEGIN creation of VNF "%s"' % vnf_name)
593 logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC'])))
594
595 #For each VNFC, we add it to the VNFCDict and we create a flavor.
596 VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database
597 rollback_list = [] # It will contain the new images created in mano. It is used for rollback
598 try:
599 logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC")
600 for vnfc in vnf_descriptor['vnf']['VNFC']:
601 VNFCitem={}
602 VNFCitem["name"] = vnfc['name']
603 VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name))
604
605 #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"])
606
607 myflavorDict = {}
608 myflavorDict["name"] = vnfc['name']+"-flv"
609 myflavorDict["description"] = VNFCitem["description"]
610 myflavorDict["ram"] = vnfc.get("ram", 0)
611 myflavorDict["vcpus"] = vnfc.get("vcpus", 0)
612 myflavorDict["disk"] = vnfc.get("disk", 1)
613 myflavorDict["extended"] = {}
614
615 devices = vnfc.get("devices")
616 if devices != None:
617 myflavorDict["extended"]["devices"] = devices
618
619 # TODO:
620 # 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
621 # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host
622
623 # Previous code has been commented
624 #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" :
625 # myflavorDict["flavor"]['extended']['processor_ranking'] = 200
626 #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" :
627 # myflavorDict["flavor"]['extended']['processor_ranking'] = 300
628 #else:
629 # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList)
630 # if result2:
631 # print "Error creating flavor: unknown processor model. Rollback successful."
632 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful."
633 # else:
634 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message
635 myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done
636
637 if 'numas' in vnfc and len(vnfc['numas'])>0:
638 myflavorDict['extended']['numas'] = vnfc['numas']
639
640 #print myflavorDict
641
642 # Step 6.2 New flavors are created in the VIM
643 flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list)
644
645 #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id)
646 VNFCitem["flavor_id"] = flavor_id
647 VNFCDict[vnfc['name']] = VNFCitem
648
649 logger.debug("Creating new images in the VIM for each VNFC")
650 # Step 6.3 New images are created in the VIM
651 #For each VNFC, we must create the appropriate image.
652 #This "for" loop might be integrated with the previous one
653 #In case this integration is made, the VNFCDict might become a VNFClist.
654 for vnfc in vnf_descriptor['vnf']['VNFC']:
655 #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description'])
656 image_dict={'location':vnfc['VNFC image'], 'name':vnfc['name']+"-img", 'description':VNFCDict[vnfc['name']]['description']}
657 image_metadata_dict = vnfc.get('image metadata', None)
658 image_metadata_str = None
659 if image_metadata_dict is not 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 #print "create_or_use_image", mydb, vims, image_dict, rollback_list
663 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
664 #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id)
665 VNFCDict[vnfc['name']]["image_id"] = image_id
666 VNFCDict[vnfc['name']]["image_path"] = vnfc['VNFC image']
667
668
669 # Step 7. Storing the VNF descriptor in the repository
670 if "descriptor" not in vnf_descriptor["vnf"]:
671 vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False)
672
673 # Step 8. Adding the VNF to the NFVO DB
674 vnf_id = mydb.new_vnf_as_a_whole2(tenant_id,vnf_name,vnf_descriptor,VNFCDict)
675 return vnf_id
676 except (db_base_Exception, vimconn.vimconnException, KeyError) as e:
677 _, message = rollback(mydb, vims, rollback_list)
678 if isinstance(e, db_base_Exception):
679 error_text = "Exception at database"
680 elif isinstance(e, KeyError):
681 error_text = "KeyError exception "
682 e.http_code = HTTP_Internal_Server_Error
683 else:
684 error_text = "Exception at VIM"
685 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
686 #logger.error("start_scenario %s", error_text)
687 raise NfvoException(error_text, e.http_code)
688
tierno7edb6752016-03-21 17:37:52 +0100689def get_vnf_id(mydb, tenant_id, vnf_id):
690 #check valid tenant_id
tiernof97fd272016-07-11 14:32:37 +0200691 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100692 #obtain data
693 where_or = {}
694 if tenant_id != "any":
695 where_or["tenant_id"] = tenant_id
696 where_or["public"] = True
tiernof97fd272016-07-11 14:32:37 +0200697 vnf = mydb.get_table_by_uuid_name('vnfs', vnf_id, "VNF", WHERE_OR=where_or, WHERE_AND_OR="AND")
tierno7edb6752016-03-21 17:37:52 +0100698
tiernof97fd272016-07-11 14:32:37 +0200699 vnf_id=vnf["uuid"]
tierno7edb6752016-03-21 17:37:52 +0100700 filter_keys = ('uuid','name','description','public', "tenant_id", "created_at")
tiernof97fd272016-07-11 14:32:37 +0200701 filtered_content = dict( (k,v) for k,v in vnf.iteritems() if k in filter_keys )
tierno7edb6752016-03-21 17:37:52 +0100702 #change_keys_http2db(filtered_content, http2db_vnf, reverse=True)
703 data={'vnf' : filtered_content}
704 #GET VM
tiernof97fd272016-07-11 14:32:37 +0200705 content = mydb.get_rows(FROM='vnfs join vms on vnfs.uuid=vms.vnf_id',
tierno7edb6752016-03-21 17:37:52 +0100706 SELECT=('vms.uuid as uuid','vms.name as name', 'vms.description as description'),
707 WHERE={'vnfs.uuid': vnf_id} )
tiernof97fd272016-07-11 14:32:37 +0200708 if len(content)==0:
709 raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +0100710
711 data['vnf']['VNFC'] = content
garciadeblas9f8456e2016-09-05 05:02:59 +0200712 #TODO: GET all the information from a VNFC and include it in the output.
713
tierno7edb6752016-03-21 17:37:52 +0100714 #GET NET
tiernof97fd272016-07-11 14:32:37 +0200715 content = mydb.get_rows(FROM='vnfs join nets on vnfs.uuid=nets.vnf_id',
tierno7edb6752016-03-21 17:37:52 +0100716 SELECT=('nets.uuid as uuid','nets.name as name','nets.description as description', 'nets.type as type', 'nets.multipoint as multipoint'),
717 WHERE={'vnfs.uuid': vnf_id} )
tiernof97fd272016-07-11 14:32:37 +0200718 data['vnf']['nets'] = content
garciadeblas9f8456e2016-09-05 05:02:59 +0200719
720 #GET ip-profile for each net
721 for net in data['vnf']['nets']:
722 ipprofiles = mydb.get_rows(FROM='ip_profiles',
723 SELECT=('ip_version','subnet_address','gateway_address','dns_address','dhcp_enabled','dhcp_start_address','dhcp_count'),
724 WHERE={'net_id': net["uuid"]} )
725 if len(ipprofiles)==1:
726 net["ip_profile"] = ipprofiles[0]
727 elif len(ipprofiles)>1:
728 raise NfvoException("More than one ip-profile found with this criteria: net_id='{}'".format(net['uuid']), HTTP_Bad_Request)
729
730
731 #TODO: For each net, GET its elements and relevant info per element (VNFC, iface, ip_address) and include them in the output.
732
733 #GET External Interfaces
tiernof97fd272016-07-11 14:32:37 +0200734 content = mydb.get_rows(FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces on vms.uuid=interfaces.vm_id',\
tierno7edb6752016-03-21 17:37:52 +0100735 SELECT=('interfaces.uuid as uuid','interfaces.external_name as external_name', 'vms.name as vm_name', 'interfaces.vm_id as vm_id', \
736 'interfaces.internal_name as internal_name', 'interfaces.type as type', 'interfaces.vpci as vpci','interfaces.bw as bw'),\
737 WHERE={'vnfs.uuid': vnf_id},
738 WHERE_NOT={'interfaces.external_name': None} )
739 #print content
tiernof97fd272016-07-11 14:32:37 +0200740 data['vnf']['external-connections'] = content
garciadeblas9f8456e2016-09-05 05:02:59 +0200741
tiernof97fd272016-07-11 14:32:37 +0200742 return data
tierno7edb6752016-03-21 17:37:52 +0100743
744
745def delete_vnf(mydb,tenant_id,vnf_id,datacenter=None,vim_tenant=None):
746 # Check tenant exist
747 if tenant_id != "any":
tiernof97fd272016-07-11 14:32:37 +0200748 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100749 # Get the URL of the VIM from the nfvo_tenant and the datacenter
tiernof97fd272016-07-11 14:32:37 +0200750 vims = get_vim(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100751 else:
752 vims={}
753
754 # Checking if it is a valid uuid and, if not, getting the uuid assuming that the name was provided"
755 where_or = {}
756 if tenant_id != "any":
757 where_or["tenant_id"] = tenant_id
758 where_or["public"] = True
tiernof97fd272016-07-11 14:32:37 +0200759 vnf = mydb.get_table_by_uuid_name('vnfs', vnf_id, "VNF", WHERE_OR=where_or, WHERE_AND_OR="AND")
760 vnf_id = vnf["uuid"]
tierno7edb6752016-03-21 17:37:52 +0100761
762 # "Getting the list of flavors and tenants of the VNF"
tiernof97fd272016-07-11 14:32:37 +0200763 flavorList = get_flavorlist(mydb, vnf_id)
764 if len(flavorList)==0:
765 logger.warn("delete_vnf error. No flavors found for the VNF id '%s'", vnf_id)
tierno7edb6752016-03-21 17:37:52 +0100766
tiernof97fd272016-07-11 14:32:37 +0200767 imageList = get_imagelist(mydb, vnf_id)
768 if len(imageList)==0:
769 logger.warn( "delete_vnf error. No images found for the VNF id '%s'", vnf_id)
tierno7edb6752016-03-21 17:37:52 +0100770
tiernof97fd272016-07-11 14:32:37 +0200771 deleted = mydb.delete_row_by_id('vnfs', vnf_id)
772 if deleted == 0:
773 raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +0100774
775 undeletedItems = []
776 for flavor in flavorList:
777 #check if flavor is used by other vnf
tiernof97fd272016-07-11 14:32:37 +0200778 try:
779 c = mydb.get_rows(FROM='vms', WHERE={'flavor_id':flavor} )
780 if len(c) > 0:
781 logger.debug("Flavor '%s' not deleted because it is being used by another VNF", flavor)
782 continue
783 #flavor not used, must be deleted
784 #delelte at VIM
785 c = mydb.get_rows(FROM='datacenters_flavors', WHERE={'flavor_id':flavor})
tierno7edb6752016-03-21 17:37:52 +0100786 for flavor_vim in c:
787 if flavor_vim["datacenter_id"] not in vims:
788 continue
789 if flavor_vim['created']=='false': #skip this flavor because not created by openmano
790 continue
791 myvim=vims[ flavor_vim["datacenter_id"] ]
tiernoae4a8d12016-07-08 12:30:39 +0200792 try:
793 myvim.delete_flavor(flavor_vim["vim_id"])
794 except vimconn.vimconnNotFoundException as e:
795 logger.warn("VIM flavor %s not exist at datacenter %s", flavor_vim["vim_id"], flavor_vim["datacenter_id"] )
796 except vimconn.vimconnException as e:
797 logger.error("Not possible to delete VIM flavor %s from datacenter %s: %s %s",
798 flavor_vim["vim_id"], flavor_vim["datacenter_id"], type(e).__name__, str(e))
799 undeletedItems.append("flavor {} from VIM {}".format(flavor_vim["vim_id"], flavor_vim["datacenter_id"] ))
tiernof97fd272016-07-11 14:32:37 +0200800 #delete flavor from Database, using table flavors and with cascade foreign key also at datacenters_flavors
801 mydb.delete_row_by_id('flavors', flavor)
802 except db_base_Exception as e:
803 logger.error("delete_vnf_error. Not possible to get flavor details and delete '%s'. %s", flavor, str(e))
tierno7edb6752016-03-21 17:37:52 +0100804 undeletedItems.append("flavor %s" % flavor)
tiernof97fd272016-07-11 14:32:37 +0200805
tierno7edb6752016-03-21 17:37:52 +0100806
807 for image in imageList:
tiernof97fd272016-07-11 14:32:37 +0200808 try:
809 #check if image is used by other vnf
810 c = mydb.get_rows(FROM='vms', WHERE={'image_id':image} )
811 if len(c) > 0:
812 logger.debug("Image '%s' not deleted because it is being used by another VNF", image)
813 continue
814 #image not used, must be deleted
815 #delelte at VIM
816 c = mydb.get_rows(FROM='datacenters_images', WHERE={'image_id':image})
tierno7edb6752016-03-21 17:37:52 +0100817 for image_vim in c:
818 if image_vim["datacenter_id"] not in vims:
819 continue
820 if image_vim['created']=='false': #skip this image because not created by openmano
821 continue
822 myvim=vims[ image_vim["datacenter_id"] ]
tiernoae4a8d12016-07-08 12:30:39 +0200823 try:
824 myvim.delete_image(image_vim["vim_id"])
825 except vimconn.vimconnNotFoundException as e:
826 logger.warn("VIM image %s not exist at datacenter %s", image_vim["vim_id"], image_vim["datacenter_id"] )
827 except vimconn.vimconnException as e:
828 logger.error("Not possible to delete VIM image %s from datacenter %s: %s %s",
829 image_vim["vim_id"], image_vim["datacenter_id"], type(e).__name__, str(e))
830 undeletedItems.append("image {} from VIM {}".format(image_vim["vim_id"], image_vim["datacenter_id"] ))
tiernof97fd272016-07-11 14:32:37 +0200831 #delete image from Database, using table images and with cascade foreign key also at datacenters_images
832 mydb.delete_row_by_id('images', image)
833 except db_base_Exception as e:
834 logger.error("delete_vnf_error. Not possible to get image details and delete '%s'. %s", image, str(e))
tierno7edb6752016-03-21 17:37:52 +0100835 undeletedItems.append("image %s" % image)
836
tiernof97fd272016-07-11 14:32:37 +0200837 return vnf_id + " " + vnf["name"]
838 #if undeletedItems:
839 # return "delete_vnf. Undeleted: %s" %(undeletedItems)
tierno7edb6752016-03-21 17:37:52 +0100840
841def get_hosts_info(mydb, nfvo_tenant_id, datacenter_name=None):
842 result, vims = get_vim(mydb, nfvo_tenant_id, None, datacenter_name)
843 if result < 0:
844 return result, vims
845 elif result == 0:
846 return -HTTP_Not_Found, "datacenter '%s' not found" % datacenter_name
847 myvim = vims.values()[0]
848 result,servers = myvim.get_hosts_info()
849 if result < 0:
850 return result, servers
851 topology = {'name':myvim['name'] , 'servers': servers}
852 return result, topology
853
854def get_hosts(mydb, nfvo_tenant_id):
tiernof97fd272016-07-11 14:32:37 +0200855 vims = get_vim(mydb, nfvo_tenant_id)
856 if len(vims) == 0:
857 raise NfvoException("No datacenter found for tenant '{}'".format(str(nfvo_tenant_id)), HTTP_Not_Found)
858 elif len(vims)>1:
859 #print "nfvo.datacenter_action() error. Several datacenters found"
860 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +0100861 myvim = vims.values()[0]
tiernof97fd272016-07-11 14:32:37 +0200862 try:
863 hosts = myvim.get_hosts()
864 logger.debug('VIM hosts response: '+ yaml.safe_dump(hosts, indent=4, default_flow_style=False))
tierno7edb6752016-03-21 17:37:52 +0100865
tiernof97fd272016-07-11 14:32:37 +0200866 datacenter = {'Datacenters': [ {'name':myvim['name'],'servers':[]} ] }
867 for host in hosts:
868 server={'name':host['name'], 'vms':[]}
869 for vm in host['instances']:
870 #get internal name and model
871 try:
872 c = mydb.get_rows(SELECT=('name',), FROM='instance_vms as iv join vms on iv.vm_id=vms.uuid',\
873 WHERE={'vim_vm_id':vm['id']} )
874 if len(c) == 0:
875 logger.warn("nfvo.get_hosts virtual machine at VIM '{}' not found at tidnfvo".format(vm['id']))
876 continue
877 server['vms'].append( {'name':vm['name'] , 'model':c[0]['name']} )
878
879 except db_base_Exception as e:
880 logger.warn("nfvo.get_hosts virtual machine at VIM '{}' error {}".format(vm['id'], str(e)))
881 datacenter['Datacenters'][0]['servers'].append(server)
882 #return -400, "en construccion"
tierno7edb6752016-03-21 17:37:52 +0100883
tiernof97fd272016-07-11 14:32:37 +0200884 #print 'datacenters '+ json.dumps(datacenter, indent=4)
885 return datacenter
886 except vimconn.vimconnException as e:
887 raise NfvoException("Not possible to get_host_list from VIM: {}".format(str(e)), e.http_code)
tierno7edb6752016-03-21 17:37:52 +0100888
889def new_scenario(mydb, tenant_id, topo):
890
891# result, vims = get_vim(mydb, tenant_id)
892# if result < 0:
893# return result, vims
894#1: parse input
895 if tenant_id != "any":
tiernof97fd272016-07-11 14:32:37 +0200896 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100897 if "tenant_id" in topo:
898 if topo["tenant_id"] != tenant_id:
tiernof97fd272016-07-11 14:32:37 +0200899 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(topo["tenant_id"], tenant_id),
900 HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +0100901 else:
902 tenant_id=None
903
904#1.1: get VNFs and external_networks (other_nets).
905 vnfs={}
906 other_nets={} #external_networks, bridge_networks and data_networkds
907 nodes = topo['topology']['nodes']
908 for k in nodes.keys():
909 if nodes[k]['type'] == 'VNF':
910 vnfs[k] = nodes[k]
911 vnfs[k]['ifaces'] = {}
912 elif nodes[k]['type'] == 'other_network' or nodes[k]['type'] == 'external_network':
913 other_nets[k] = nodes[k]
914 other_nets[k]['external']=True
915 elif nodes[k]['type'] == 'network':
916 other_nets[k] = nodes[k]
917 other_nets[k]['external']=False
918
919
920#1.2: Check that VNF are present at database table vnfs. Insert uuid, description and external interfaces
921 for name,vnf in vnfs.items():
tiernocea279c2016-07-18 12:36:49 +0200922 where={}
923 where_or={"tenant_id": tenant_id, 'public': "true"}
tierno7edb6752016-03-21 17:37:52 +0100924 error_text = ""
925 error_pos = "'topology':'nodes':'" + name + "'"
926 if 'vnf_id' in vnf:
927 error_text += " 'vnf_id' " + vnf['vnf_id']
tiernocea279c2016-07-18 12:36:49 +0200928 where['uuid'] = vnf['vnf_id']
tierno7edb6752016-03-21 17:37:52 +0100929 if 'VNF model' in vnf:
930 error_text += " 'VNF model' " + vnf['VNF model']
tiernocea279c2016-07-18 12:36:49 +0200931 where['name'] = vnf['VNF model']
932 if len(where) == 0:
tiernof97fd272016-07-11 14:32:37 +0200933 raise NfvoException("Descriptor need a 'vnf_id' or 'VNF model' field at " + error_pos, HTTP_Bad_Request)
934
tiernocea279c2016-07-18 12:36:49 +0200935 vnf_db = mydb.get_rows(SELECT=('uuid','name','description'),
936 FROM='vnfs',
937 WHERE=where,
938 WHERE_OR=where_or,
939 WHERE_AND_OR="AND")
tiernof97fd272016-07-11 14:32:37 +0200940 if len(vnf_db)==0:
941 raise NfvoException("unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
942 elif len(vnf_db)>1:
943 raise NfvoException("more than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +0100944 vnf['uuid']=vnf_db[0]['uuid']
945 vnf['description']=vnf_db[0]['description']
946 #get external interfaces
tiernof97fd272016-07-11 14:32:37 +0200947 ext_ifaces = mydb.get_rows(SELECT=('external_name as name','i.uuid as iface_uuid', 'i.type as type'),
tierno7edb6752016-03-21 17:37:52 +0100948 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
949 WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name':None} )
tierno7edb6752016-03-21 17:37:52 +0100950 for ext_iface in ext_ifaces:
951 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type':ext_iface['type']}
952
953#1.4 get list of connections
954 conections = topo['topology']['connections']
955 conections_list = []
tiernoefd80c92016-09-16 14:17:46 +0200956 conections_list_name = []
tierno7edb6752016-03-21 17:37:52 +0100957 for k in conections.keys():
958 if type(conections[k]['nodes'])==dict: #dict with node:iface pairs
959 ifaces_list = conections[k]['nodes'].items()
960 elif type(conections[k]['nodes'])==list: #list with dictionary
961 ifaces_list=[]
962 conection_pair_list = map(lambda x: x.items(), conections[k]['nodes'] )
963 for k2 in conection_pair_list:
964 ifaces_list += k2
965
966 con_type = conections[k].get("type", "link")
967 if con_type != "link":
968 if k in other_nets:
tiernof97fd272016-07-11 14:32:37 +0200969 raise NfvoException("Format error. Reapeted network name at 'topology':'connections':'{}'".format(str(k)), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100970 other_nets[k] = {'external': False}
971 if conections[k].get("graph"):
972 other_nets[k]["graph"] = conections[k]["graph"]
973 ifaces_list.append( (k, None) )
974
975
976 if con_type == "external_network":
977 other_nets[k]['external'] = True
978 if conections[k].get("model"):
979 other_nets[k]["model"] = conections[k]["model"]
980 else:
981 other_nets[k]["model"] = k
982 if con_type == "dataplane_net" or con_type == "bridge_net":
983 other_nets[k]["model"] = con_type
984
tiernoefd80c92016-09-16 14:17:46 +0200985 conections_list_name.append(k)
tierno7edb6752016-03-21 17:37:52 +0100986 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)
987 #print set(ifaces_list)
988 #check valid VNF and iface names
989 for iface in ifaces_list:
990 if iface[0] not in vnfs and iface[0] not in other_nets :
tiernof97fd272016-07-11 14:32:37 +0200991 raise NfvoException("format error. Invalid VNF name at 'topology':'connections':'{}':'nodes':'{}'".format(
992 str(k), iface[0]), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +0100993 if iface[0] in vnfs and iface[1] not in vnfs[ iface[0] ]['ifaces']:
tiernof97fd272016-07-11 14:32:37 +0200994 raise NfvoException("format error. Invalid interface name at 'topology':'connections':'{}':'nodes':'{}':'{}'".format(
995 str(k), iface[0], iface[1]), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +0100996
997#1.5 unify connections from the pair list to a consolidated list
998 index=0
999 while index < len(conections_list):
1000 index2 = index+1
1001 while index2 < len(conections_list):
1002 if len(conections_list[index] & conections_list[index2])>0: #common interface, join nets
1003 conections_list[index] |= conections_list[index2]
1004 del conections_list[index2]
tiernoefd80c92016-09-16 14:17:46 +02001005 del conections_list_name[index2]
tierno7edb6752016-03-21 17:37:52 +01001006 else:
1007 index2 += 1
1008 conections_list[index] = list(conections_list[index]) # from set to list again
1009 index += 1
1010 #for k in conections_list:
1011 # print k
1012
1013
1014
1015#1.6 Delete non external nets
1016# for k in other_nets.keys():
1017# if other_nets[k]['model']=='bridge' or other_nets[k]['model']=='dataplane_net' or other_nets[k]['model']=='bridge_net':
1018# for con in conections_list:
1019# delete_indexes=[]
1020# for index in range(0,len(con)):
1021# if con[index][0] == k: delete_indexes.insert(0,index) #order from higher to lower
1022# for index in delete_indexes:
1023# del con[index]
1024# del other_nets[k]
1025#1.7: Check external_ports are present at database table datacenter_nets
1026 for k,net in other_nets.items():
1027 error_pos = "'topology':'nodes':'" + k + "'"
1028 if net['external']==False:
1029 if 'name' not in net:
1030 net['name']=k
1031 if 'model' not in net:
tiernof97fd272016-07-11 14:32:37 +02001032 raise NfvoException("needed a 'model' at " + error_pos, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001033 if net['model']=='bridge_net':
1034 net['type']='bridge';
1035 elif net['model']=='dataplane_net':
1036 net['type']='data';
1037 else:
tiernof97fd272016-07-11 14:32:37 +02001038 raise NfvoException("unknown 'model' '"+ net['model'] +"' at " + error_pos, HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001039 else: #external
1040#IF we do not want to check that external network exist at datacenter
1041 pass
1042#ELSE
1043# error_text = ""
1044# WHERE_={}
1045# if 'net_id' in net:
1046# error_text += " 'net_id' " + net['net_id']
1047# WHERE_['uuid'] = net['net_id']
1048# if 'model' in net:
1049# error_text += " 'model' " + net['model']
1050# WHERE_['name'] = net['model']
1051# if len(WHERE_) == 0:
1052# return -HTTP_Bad_Request, "needed a 'net_id' or 'model' at " + error_pos
1053# r,net_db = mydb.get_table(SELECT=('uuid','name','description','type','shared'),
1054# FROM='datacenter_nets', WHERE=WHERE_ )
1055# if r<0:
1056# print "nfvo.new_scenario Error getting datacenter_nets",r,net_db
1057# elif r==0:
1058# print "nfvo.new_scenario Error" +error_text+ " is not present at database"
1059# return -HTTP_Bad_Request, "unknown " +error_text+ " at " + error_pos
1060# elif r>1:
1061# print "nfvo.new_scenario Error more than one external_network for " +error_text+ " is present at database"
1062# return -HTTP_Bad_Request, "more than one external_network for " +error_text+ "at "+ error_pos + " Concrete with 'net_id'"
1063# other_nets[k].update(net_db[0])
1064#ENDIF
1065 net_list={}
1066 net_nb=0 #Number of nets
1067 for con in conections_list:
1068 #check if this is connected to a external net
1069 other_net_index=-1
1070 #print
1071 #print "con", con
1072 for index in range(0,len(con)):
1073 #check if this is connected to a external net
1074 for net_key in other_nets.keys():
1075 if con[index][0]==net_key:
1076 if other_net_index>=0:
1077 error_text="There is some interface connected both to net '%s' and net '%s'" % (con[other_net_index][0], net_key)
tiernof97fd272016-07-11 14:32:37 +02001078 #print "nfvo.new_scenario " + error_text
1079 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001080 else:
1081 other_net_index = index
1082 net_target = net_key
1083 break
1084 #print "other_net_index", other_net_index
1085 try:
1086 if other_net_index>=0:
1087 del con[other_net_index]
1088#IF we do not want to check that external network exist at datacenter
1089 if other_nets[net_target]['external'] :
1090 if "name" not in other_nets[net_target]:
1091 other_nets[net_target]['name'] = other_nets[net_target]['model']
1092 if other_nets[net_target]["type"] == "external_network":
1093 if vnfs[ con[0][0] ]['ifaces'][ con[0][1] ]["type"] == "data":
1094 other_nets[net_target]["type"] = "data"
1095 else:
1096 other_nets[net_target]["type"] = "bridge"
1097#ELSE
1098# if other_nets[net_target]['external'] :
1099# 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
1100# if type_=='data' and other_nets[net_target]['type']=="ptp":
1101# error_text = "Error connecting %d nodes on a not multipoint net %s" % (len(con), net_target)
1102# print "nfvo.new_scenario " + error_text
1103# return -HTTP_Bad_Request, error_text
1104#ENDIF
1105 for iface in con:
1106 vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target
1107 else:
1108 #create a net
1109 net_type_bridge=False
1110 net_type_data=False
1111 net_target = "__-__net"+str(net_nb)
tiernoefd80c92016-09-16 14:17:46 +02001112 net_list[net_target] = {'name': conections_list_name[net_nb], #"net-"+str(net_nb),
1113 'description':"net-%s in scenario %s" %(net_nb,topo['name']),
tierno7edb6752016-03-21 17:37:52 +01001114 'external':False}
1115 for iface in con:
1116 vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target
1117 iface_type = vnfs[ iface[0] ]['ifaces'][ iface[1] ]['type']
1118 if iface_type=='mgmt' or iface_type=='bridge':
1119 net_type_bridge = True
1120 else:
1121 net_type_data = True
1122 if net_type_bridge and net_type_data:
1123 error_text = "Error connection interfaces of bridge type with data type. Firs node %s, iface %s" % (iface[0], iface[1])
tiernof97fd272016-07-11 14:32:37 +02001124 #print "nfvo.new_scenario " + error_text
1125 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001126 elif net_type_bridge:
1127 type_='bridge'
1128 else:
1129 type_='data' if len(con)>2 else 'ptp'
1130 net_list[net_target]['type'] = type_
1131 net_nb+=1
1132 except Exception:
1133 error_text = "Error connection node %s : %s does not match any VNF or interface" % (iface[0], iface[1])
tiernof97fd272016-07-11 14:32:37 +02001134 #print "nfvo.new_scenario " + error_text
tierno7edb6752016-03-21 17:37:52 +01001135 #raise e
tiernof97fd272016-07-11 14:32:37 +02001136 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001137
1138#1.8: Connect to management net all not already connected interfaces of type 'mgmt'
1139 #1.8.1 obtain management net
tiernof97fd272016-07-11 14:32:37 +02001140 mgmt_net = mydb.get_rows(SELECT=('uuid','name','description','type','shared'),
tierno7edb6752016-03-21 17:37:52 +01001141 FROM='datacenter_nets', WHERE={'name':'mgmt'} )
1142 #1.8.2 check all interfaces from all vnfs
tiernof97fd272016-07-11 14:32:37 +02001143 if len(mgmt_net)>0:
tierno7edb6752016-03-21 17:37:52 +01001144 add_mgmt_net = False
1145 for vnf in vnfs.values():
1146 for iface in vnf['ifaces'].values():
1147 if iface['type']=='mgmt' and 'net_key' not in iface:
1148 #iface not connected
1149 iface['net_key'] = 'mgmt'
1150 add_mgmt_net = True
1151 if add_mgmt_net and 'mgmt' not in net_list:
1152 net_list['mgmt']=mgmt_net[0]
1153 net_list['mgmt']['external']=True
1154 net_list['mgmt']['graph']={'visible':False}
1155
1156 net_list.update(other_nets)
tiernof97fd272016-07-11 14:32:37 +02001157 #print
1158 #print 'net_list', net_list
1159 #print
1160 #print 'vnfs', vnfs
1161 #print
tierno7edb6752016-03-21 17:37:52 +01001162
1163#2: insert scenario. filling tables scenarios,sce_vnfs,sce_interfaces,sce_nets
tiernof97fd272016-07-11 14:32:37 +02001164 c = mydb.new_scenario( { 'vnfs':vnfs, 'nets':net_list,
tierno392f2852016-05-13 12:28:55 +02001165 'tenant_id':tenant_id, 'name':topo['name'],
1166 'description':topo.get('description',topo['name']),
1167 'public': topo.get('public', False)
1168 })
tierno7edb6752016-03-21 17:37:52 +01001169
tiernof97fd272016-07-11 14:32:37 +02001170 return c
tierno7edb6752016-03-21 17:37:52 +01001171
tierno392f2852016-05-13 12:28:55 +02001172def new_scenario_v02(mydb, tenant_id, scenario_dict):
1173 scenario = scenario_dict["scenario"]
tierno7edb6752016-03-21 17:37:52 +01001174 if tenant_id != "any":
tiernof97fd272016-07-11 14:32:37 +02001175 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001176 if "tenant_id" in scenario:
1177 if scenario["tenant_id"] != tenant_id:
1178 print "nfvo.new_scenario_v02() tenant '%s' not found" % tenant_id
tiernof97fd272016-07-11 14:32:37 +02001179 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(
1180 scenario["tenant_id"], tenant_id), HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +01001181 else:
1182 tenant_id=None
1183
1184#1: Check that VNF are present at database table vnfs and update content into scenario dict
1185 for name,vnf in scenario["vnfs"].iteritems():
tiernocea279c2016-07-18 12:36:49 +02001186 where={}
1187 where_or={"tenant_id": tenant_id, 'public': "true"}
tierno7edb6752016-03-21 17:37:52 +01001188 error_text = ""
garciadeblas71781ea2016-09-19 14:41:59 +02001189 error_pos = "'scenario':'vnfs':'" + name + "'"
tierno7edb6752016-03-21 17:37:52 +01001190 if 'vnf_id' in vnf:
1191 error_text += " 'vnf_id' " + vnf['vnf_id']
tiernocea279c2016-07-18 12:36:49 +02001192 where['uuid'] = vnf['vnf_id']
tierno392f2852016-05-13 12:28:55 +02001193 if 'vnf_name' in vnf:
1194 error_text += " 'vnf_name' " + vnf['vnf_name']
tiernocea279c2016-07-18 12:36:49 +02001195 where['name'] = vnf['vnf_name']
1196 if len(where) == 0:
garciadeblas71781ea2016-09-19 14:41:59 +02001197 raise NfvoException("Needed a 'vnf_id' or 'vnf_name' at " + error_pos, HTTP_Bad_Request)
tiernocea279c2016-07-18 12:36:49 +02001198 vnf_db = mydb.get_rows(SELECT=('uuid','name','description'),
1199 FROM='vnfs',
1200 WHERE=where,
1201 WHERE_OR=where_or,
1202 WHERE_AND_OR="AND")
tiernof97fd272016-07-11 14:32:37 +02001203 if len(vnf_db)==0:
1204 raise NfvoException("Unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
1205 elif len(vnf_db)>1:
1206 raise NfvoException("More than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01001207 vnf['uuid']=vnf_db[0]['uuid']
1208 vnf['description']=vnf_db[0]['description']
1209 vnf['ifaces'] = {}
1210 #get external interfaces
tiernof97fd272016-07-11 14:32:37 +02001211 ext_ifaces = mydb.get_rows(SELECT=('external_name as name','i.uuid as iface_uuid', 'i.type as type'),
tierno7edb6752016-03-21 17:37:52 +01001212 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
1213 WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name':None} )
tierno7edb6752016-03-21 17:37:52 +01001214 for ext_iface in ext_ifaces:
1215 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type':ext_iface['type']}
1216
1217#2: Insert net_key at every vnf interface
1218 for net_name,net in scenario["networks"].iteritems():
1219 net_type_bridge=False
1220 net_type_data=False
1221 for iface_dict in net["interfaces"]:
1222 for vnf,iface in iface_dict.iteritems():
1223 if vnf not in scenario["vnfs"]:
1224 error_text = "Error at 'networks':'%s':'interfaces' VNF '%s' not match any VNF at 'vnfs'" % (net_name, vnf)
tiernof97fd272016-07-11 14:32:37 +02001225 #print "nfvo.new_scenario_v02 " + error_text
1226 raise NfvoException(error_text, HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001227 if iface not in scenario["vnfs"][vnf]['ifaces']:
1228 error_text = "Error at 'networks':'%s':'interfaces':'%s' interface not match any VNF interface" % (net_name, iface)
tiernof97fd272016-07-11 14:32:37 +02001229 #print "nfvo.new_scenario_v02 " + error_text
1230 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001231 if "net_key" in scenario["vnfs"][vnf]['ifaces'][iface]:
1232 error_text = "Error at 'networks':'%s':'interfaces':'%s' interface already connected at network '%s'" \
1233 % (net_name, iface,scenario["vnfs"][vnf]['ifaces'][iface]['net_key'])
tiernof97fd272016-07-11 14:32:37 +02001234 #print "nfvo.new_scenario_v02 " + error_text
1235 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001236 scenario["vnfs"][vnf]['ifaces'][ iface ]['net_key'] = net_name
1237 iface_type = scenario["vnfs"][vnf]['ifaces'][iface]['type']
1238 if iface_type=='mgmt' or iface_type=='bridge':
1239 net_type_bridge = True
1240 else:
1241 net_type_data = True
1242 if net_type_bridge and net_type_data:
1243 error_text = "Error connection interfaces of bridge type and data type at 'networks':'%s':'interfaces'" % (net_name)
tiernof97fd272016-07-11 14:32:37 +02001244 #print "nfvo.new_scenario " + error_text
1245 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001246 elif net_type_bridge:
1247 type_='bridge'
1248 else:
1249 type_='data' if len(net["interfaces"])>2 else 'ptp'
1250 net['type'] = type_
1251 net['name'] = net_name
1252 net['external'] = net.get('external', False)
1253
1254#3: insert at database
1255 scenario["nets"] = scenario["networks"]
1256 scenario['tenant_id'] = tenant_id
tiernof97fd272016-07-11 14:32:37 +02001257 scenario_id = mydb.new_scenario( scenario)
1258 return scenario_id
tierno7edb6752016-03-21 17:37:52 +01001259
1260def edit_scenario(mydb, tenant_id, scenario_id, data):
1261 data["uuid"] = scenario_id
1262 data["tenant_id"] = tenant_id
tiernof97fd272016-07-11 14:32:37 +02001263 c = mydb.edit_scenario( data )
1264 return c
tierno7edb6752016-03-21 17:37:52 +01001265
1266def start_scenario(mydb, tenant_id, scenario_id, instance_scenario_name, instance_scenario_description, datacenter=None,vim_tenant=None, startvms=True):
tiernoae4a8d12016-07-08 12:30:39 +02001267 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tierno7edb6752016-03-21 17:37:52 +01001268 datacenter_id = None
1269 datacenter_name=None
1270 if datacenter != None:
tierno42fcc3b2016-07-06 17:20:40 +02001271 if utils.check_valid_uuid(datacenter):
tierno7edb6752016-03-21 17:37:52 +01001272 datacenter_id = datacenter
1273 else:
1274 datacenter_name = datacenter
tiernof97fd272016-07-11 14:32:37 +02001275 vims = get_vim(mydb, tenant_id, datacenter_id, datacenter_name, vim_tenant)
1276 if len(vims) == 0:
1277 raise NfvoException("datacenter '{}' not found".format(datacenter), HTTP_Not_Found)
1278 elif len(vims)>1:
1279 #logger.error("nfvo.datacenter_new_netmap() error. Several datacenters found")
1280 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01001281 myvim = vims.values()[0]
tierno392f2852016-05-13 12:28:55 +02001282 myvim_tenant = myvim['tenant_id']
tierno7edb6752016-03-21 17:37:52 +01001283 datacenter_id = myvim['id']
1284 datacenter_name = myvim['name']
1285 datacenter_tenant_id = myvim['config']['datacenter_tenant_id']
1286 rollbackList=[]
tiernoae4a8d12016-07-08 12:30:39 +02001287 try:
1288 #print "Checking that the scenario_id exists and getting the scenario dictionary"
tiernof97fd272016-07-11 14:32:37 +02001289 scenarioDict = mydb.get_scenario(scenario_id, tenant_id, datacenter_id)
tiernoae4a8d12016-07-08 12:30:39 +02001290 scenarioDict['datacenter_tenant_id'] = datacenter_tenant_id
1291 scenarioDict['datacenter_id'] = datacenter_id
1292 #print '================scenarioDict======================='
1293 #print json.dumps(scenarioDict, indent=4)
1294 #print 'BEGIN launching instance scenario "%s" based on "%s"' % (instance_scenario_name,scenarioDict['name'])
tierno7edb6752016-03-21 17:37:52 +01001295
tiernoae4a8d12016-07-08 12:30:39 +02001296 logger.debug("start_scenario Scenario %s: consisting of %d VNF(s)", scenarioDict['name'],len(scenarioDict['vnfs']))
1297 #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +01001298
tiernoae4a8d12016-07-08 12:30:39 +02001299 auxNetDict = {} #Auxiliar dictionary. First key:'scenario' or sce_vnf uuid. Second Key: uuid of the net/sce_net. Value: vim_net_id
1300 auxNetDict['scenario'] = {}
1301
1302 logger.debug("start_scenario 1. Creating new nets (sce_nets) in the VIM")
1303 for sce_net in scenarioDict['nets']:
1304 #print "Net name: %s. Description: %s" % (sce_net["name"], sce_net["description"])
tierno7edb6752016-03-21 17:37:52 +01001305
tiernoae4a8d12016-07-08 12:30:39 +02001306 myNetName = "%s.%s" % (instance_scenario_name, sce_net['name'])
tierno7edb6752016-03-21 17:37:52 +01001307 myNetName = myNetName[0:255] #limit length
tiernoae4a8d12016-07-08 12:30:39 +02001308 myNetType = sce_net['type']
tierno7edb6752016-03-21 17:37:52 +01001309 myNetDict = {}
1310 myNetDict["name"] = myNetName
1311 myNetDict["type"] = myNetType
1312 myNetDict["tenant_id"] = myvim_tenant
garciadeblas9f8456e2016-09-05 05:02:59 +02001313 myNetIPProfile = sce_net.get('ip_profile', None)
tierno7edb6752016-03-21 17:37:52 +01001314 #TODO:
tiernoae4a8d12016-07-08 12:30:39 +02001315 #We should use the dictionary as input parameter for new_network
tiernof97fd272016-07-11 14:32:37 +02001316 #print myNetDict
tiernoae4a8d12016-07-08 12:30:39 +02001317 if not sce_net["external"]:
garciadeblas9f8456e2016-09-05 05:02:59 +02001318 network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile)
tiernoae4a8d12016-07-08 12:30:39 +02001319 #print "New VIM network created for scenario %s. Network id: %s" % (scenarioDict['name'],network_id)
1320 sce_net['vim_id'] = network_id
1321 auxNetDict['scenario'][sce_net['uuid']] = network_id
1322 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
1323 else:
1324 if sce_net['vim_id'] == None:
1325 error_text = "Error, datacenter '%s' does not have external network '%s'." % (datacenter_name, sce_net['name'])
1326 _, message = rollback(mydb, vims, rollbackList)
1327 logger.error("nfvo.start_scenario: %s", error_text)
tiernof97fd272016-07-11 14:32:37 +02001328 raise NfvoException(error_text, HTTP_Bad_Request)
tiernoae4a8d12016-07-08 12:30:39 +02001329 logger.debug("Using existent VIM network for scenario %s. Network id %s", scenarioDict['name'],sce_net['vim_id'])
1330 auxNetDict['scenario'][sce_net['uuid']] = sce_net['vim_id']
tierno7edb6752016-03-21 17:37:52 +01001331
tiernoae4a8d12016-07-08 12:30:39 +02001332 logger.debug("start_scenario 2. Creating new nets (vnf internal nets) in the VIM")
1333 #For each vnf net, we create it and we add it to instanceNetlist.
1334 for sce_vnf in scenarioDict['vnfs']:
1335 for net in sce_vnf['nets']:
1336 #print "Net name: %s. Description: %s" % (net["name"], net["description"])
1337
1338 myNetName = "%s.%s" % (instance_scenario_name,net['name'])
1339 myNetName = myNetName[0:255] #limit length
1340 myNetType = net['type']
1341 myNetDict = {}
1342 myNetDict["name"] = myNetName
1343 myNetDict["type"] = myNetType
1344 myNetDict["tenant_id"] = myvim_tenant
garciadeblas9f8456e2016-09-05 05:02:59 +02001345 myNetIPProfile = net.get('ip_profile', None)
tiernoae4a8d12016-07-08 12:30:39 +02001346 #print myNetDict
1347 #TODO:
1348 #We should use the dictionary as input parameter for new_network
garciadeblas9f8456e2016-09-05 05:02:59 +02001349 network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile)
tiernoae4a8d12016-07-08 12:30:39 +02001350 #print "VIM network id for scenario %s: %s" % (scenarioDict['name'],network_id)
1351 net['vim_id'] = network_id
1352 if sce_vnf['uuid'] not in auxNetDict:
1353 auxNetDict[sce_vnf['uuid']] = {}
1354 auxNetDict[sce_vnf['uuid']][net['uuid']] = network_id
1355 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
1356
1357 #print "auxNetDict:"
1358 #print yaml.safe_dump(auxNetDict, indent=4, default_flow_style=False)
1359
1360 logger.debug("start_scenario 3. Creating new vm instances in the VIM")
1361 #myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict)
1362 i = 0
1363 for sce_vnf in scenarioDict['vnfs']:
1364 for vm in sce_vnf['vms']:
1365 i += 1
1366 myVMDict = {}
1367 #myVMDict['name'] = "%s-%s-%s" % (scenarioDict['name'],sce_vnf['name'], vm['name'])
1368 myVMDict['name'] = "%s.%s.%d" % (instance_scenario_name,sce_vnf['name'],i)
1369 #myVMDict['description'] = vm['description']
1370 myVMDict['description'] = myVMDict['name'][0:99]
1371 if not startvms:
1372 myVMDict['start'] = "no"
1373 myVMDict['name'] = myVMDict['name'][0:255] #limit name length
1374 #print "VM name: %s. Description: %s" % (myVMDict['name'], myVMDict['name'])
1375
1376 #create image at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001377 image_dict = mydb.get_table_by_uuid_name("images", vm['image_id'])
1378 image_id = create_or_use_image(mydb, vims, image_dict, [], True)
tiernoae4a8d12016-07-08 12:30:39 +02001379 vm['vim_image_id'] = image_id
1380
1381 #create flavor at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001382 flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id'])
tiernoae4a8d12016-07-08 12:30:39 +02001383 if flavor_dict['extended']!=None:
1384 flavor_dict['extended']= yaml.load(flavor_dict['extended'])
tiernof97fd272016-07-11 14:32:37 +02001385 flavor_id = create_or_use_flavor(mydb, vims, flavor_dict, [], True)
tiernoae4a8d12016-07-08 12:30:39 +02001386 vm['vim_flavor_id'] = flavor_id
1387
1388
1389 myVMDict['imageRef'] = vm['vim_image_id']
1390 myVMDict['flavorRef'] = vm['vim_flavor_id']
1391 myVMDict['networks'] = []
1392 for iface in vm['interfaces']:
1393 netDict = {}
1394 if iface['type']=="data":
1395 netDict['type'] = iface['model']
1396 elif "model" in iface and iface["model"]!=None:
1397 netDict['model']=iface['model']
1398 #TODO in future, remove this because mac_address will not be set, and the type of PV,VF is obtained from iterface table model
1399 #discover type of interface looking at flavor
1400 for numa in flavor_dict.get('extended',{}).get('numas',[]):
1401 for flavor_iface in numa.get('interfaces',[]):
1402 if flavor_iface.get('name') == iface['internal_name']:
1403 if flavor_iface['dedicated'] == 'yes':
1404 netDict['type']="PF" #passthrough
1405 elif flavor_iface['dedicated'] == 'no':
1406 netDict['type']="VF" #siov
1407 elif flavor_iface['dedicated'] == 'yes:sriov':
1408 netDict['type']="VFnotShared" #sriov but only one sriov on the PF
1409 netDict["mac_address"] = flavor_iface.get("mac_address")
1410 break;
1411 netDict["use"]=iface['type']
1412 if netDict["use"]=="data" and not netDict.get("type"):
1413 #print "netDict", netDict
1414 #print "iface", iface
1415 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'])
1416 if flavor_dict.get('extended')==None:
tiernof97fd272016-07-11 14:32:37 +02001417 raise NfvoException(e_text + "After database migration some information is not available. \
1418 Try to delete and create the scenarios and VNFs again", HTTP_Conflict)
tiernoae4a8d12016-07-08 12:30:39 +02001419 else:
tiernof97fd272016-07-11 14:32:37 +02001420 raise NfvoException(e_text, HTTP_Internal_Server_Error)
tiernoae4a8d12016-07-08 12:30:39 +02001421 if netDict["use"]=="mgmt" or netDict["use"]=="bridge":
1422 netDict["type"]="virtual"
1423 if "vpci" in iface and iface["vpci"] is not None:
1424 netDict['vpci'] = iface['vpci']
1425 if "mac" in iface and iface["mac"] is not None:
1426 netDict['mac_address'] = iface['mac']
1427 netDict['name'] = iface['internal_name']
1428 if iface['net_id'] is None:
1429 for vnf_iface in sce_vnf["interfaces"]:
tiernof97fd272016-07-11 14:32:37 +02001430 #print iface
1431 #print vnf_iface
tiernoae4a8d12016-07-08 12:30:39 +02001432 if vnf_iface['interface_id']==iface['uuid']:
1433 netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ]
1434 break
1435 else:
1436 netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ]
1437 #skip bridge ifaces not connected to any net
1438 #if 'net_id' not in netDict or netDict['net_id']==None:
1439 # continue
1440 myVMDict['networks'].append(netDict)
1441 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
1442 #print myVMDict['name']
1443 #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
1444 #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
1445 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
1446 vm_id = myvim.new_vminstance(myVMDict['name'],myVMDict['description'],myVMDict.get('start', None),
1447 myVMDict['imageRef'],myVMDict['flavorRef'],myVMDict['networks'])
1448 #print "VIM vm instance id (server id) for scenario %s: %s" % (scenarioDict['name'],vm_id)
1449 vm['vim_id'] = vm_id
1450 rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id})
1451 #put interface uuid back to scenario[vnfs][vms[[interfaces]
1452 for net in myVMDict['networks']:
1453 if "vim_id" in net:
1454 for iface in vm['interfaces']:
1455 if net["name"]==iface["internal_name"]:
1456 iface["vim_id"]=net["vim_id"]
1457 break
1458
1459 logger.debug("start scenario Deployment done")
1460 #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
1461 #r,c = mydb.new_instance_scenario_as_a_whole(nfvo_tenant,scenarioDict['name'],scenarioDict)
tiernof97fd272016-07-11 14:32:37 +02001462 instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_scenario_name, instance_scenario_description, scenarioDict)
1463 return mydb.get_instance_scenario(instance_id)
1464
1465 except (db_base_Exception, vimconn.vimconnException) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001466 _, message = rollback(mydb, vims, rollbackList)
tiernof97fd272016-07-11 14:32:37 +02001467 if isinstance(e, db_base_Exception):
1468 error_text = "Exception at database"
1469 else:
1470 error_text = "Exception at VIM"
1471 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
1472 #logger.error("start_scenario %s", error_text)
1473 raise NfvoException(error_text, e.http_code)
tierno7edb6752016-03-21 17:37:52 +01001474
tiernoa4e1a6e2016-08-31 14:19:40 +02001475def unify_cloud_config(cloud_config):
1476 index_to_delete = []
1477 users = cloud_config.get("users", [])
1478 for index0 in range(0,len(users)):
1479 if index0 in index_to_delete:
1480 continue
1481 for index1 in range(index0+1,len(users)):
1482 if index1 in index_to_delete:
1483 continue
1484 if users[index0]["name"] == users[index1]["name"]:
1485 index_to_delete.append(index1)
1486 for key in users[index1].get("key-pairs",()):
1487 if "key-pairs" not in users[index0]:
1488 users[index0]["key-pairs"] = [key]
1489 elif key not in users[index0]["key-pairs"]:
1490 users[index0]["key-pairs"].append(key)
1491 index_to_delete.sort(reverse=True)
1492 for index in index_to_delete:
1493 del users[index]
1494
tiernobe41e222016-09-02 15:16:13 +02001495def get_datacenter_by_name_uuid(mydb, tenant_id, datacenter_id_name=None):
1496 datacenter_id = None
1497 datacenter_name = None
1498 if datacenter_id_name:
1499 if utils.check_valid_uuid(datacenter_id_name):
1500 datacenter_id = datacenter_id_name
1501 else:
1502 datacenter_name = datacenter_id_name
1503 vims = get_vim(mydb, tenant_id, datacenter_id, datacenter_name, vim_tenant=None)
1504 if len(vims) == 0:
1505 raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found)
1506 elif len(vims)>1:
1507 #print "nfvo.datacenter_action() error. Several datacenters found"
1508 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
1509 return vims.keys()[0], vims.values()[0]
1510
garciadeblas9f8456e2016-09-05 05:02:59 +02001511def new_scenario_v03(mydb, tenant_id, scenario_dict):
1512 scenario = scenario_dict["scenario"]
1513 if tenant_id != "any":
1514 check_tenant(mydb, tenant_id)
1515 if "tenant_id" in scenario:
1516 if scenario["tenant_id"] != tenant_id:
1517 logger("Tenant '%s' not found", tenant_id)
1518 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(
1519 scenario["tenant_id"], tenant_id), HTTP_Unauthorized)
1520 else:
1521 tenant_id=None
1522
1523#1: Check that VNF are present at database table vnfs and update content into scenario dict
1524 for name,vnf in scenario["vnfs"].iteritems():
1525 where={}
1526 where_or={"tenant_id": tenant_id, 'public': "true"}
1527 error_text = ""
garciadeblas71781ea2016-09-19 14:41:59 +02001528 error_pos = "'scenario':'vnfs':'" + name + "'"
garciadeblas9f8456e2016-09-05 05:02:59 +02001529 if 'vnf_id' in vnf:
1530 error_text += " 'vnf_id' " + vnf['vnf_id']
1531 where['uuid'] = vnf['vnf_id']
1532 if 'vnf_name' in vnf:
1533 error_text += " 'vnf_name' " + vnf['vnf_name']
1534 where['name'] = vnf['vnf_name']
1535 if len(where) == 0:
garciadeblas71781ea2016-09-19 14:41:59 +02001536 raise NfvoException("Needed a 'vnf_id' or 'vnf_name' at " + error_pos, HTTP_Bad_Request)
garciadeblas9f8456e2016-09-05 05:02:59 +02001537 vnf_db = mydb.get_rows(SELECT=('uuid','name','description'),
1538 FROM='vnfs',
1539 WHERE=where,
1540 WHERE_OR=where_or,
1541 WHERE_AND_OR="AND")
1542 if len(vnf_db)==0:
1543 raise NfvoException("Unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
1544 elif len(vnf_db)>1:
1545 raise NfvoException("More than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
1546 vnf['uuid']=vnf_db[0]['uuid']
1547 vnf['description']=vnf_db[0]['description']
1548 vnf['ifaces'] = {}
1549 # get external interfaces
1550 ext_ifaces = mydb.get_rows(SELECT=('external_name as name','i.uuid as iface_uuid', 'i.type as type'),
1551 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
1552 WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name':None} )
1553 for ext_iface in ext_ifaces:
1554 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type':ext_iface['type']}
1555
1556 # TODO? get internal-connections from db.nets and their profiles, and update scenario[vnfs][internal-connections] accordingly
1557
1558#2: Insert net_key and ip_address at every vnf interface
1559 for net_name,net in scenario["networks"].iteritems():
1560 net_type_bridge=False
1561 net_type_data=False
1562 for iface_dict in net["interfaces"]:
1563 logger.debug("Iface_dict %s", iface_dict)
1564 vnf = iface_dict["vnf"]
1565 iface = iface_dict["vnf_interface"]
1566 if vnf not in scenario["vnfs"]:
1567 error_text = "Error at 'networks':'%s':'interfaces' VNF '%s' not match any VNF at 'vnfs'" % (net_name, vnf)
1568 #logger.debug(error_text)
1569 raise NfvoException(error_text, HTTP_Not_Found)
1570 if iface not in scenario["vnfs"][vnf]['ifaces']:
1571 error_text = "Error at 'networks':'%s':'interfaces':'%s' interface not match any VNF interface" % (net_name, iface)
1572 #logger.debug(error_text)
1573 raise NfvoException(error_text, HTTP_Bad_Request)
1574 if "net_key" in scenario["vnfs"][vnf]['ifaces'][iface]:
1575 error_text = "Error at 'networks':'%s':'interfaces':'%s' interface already connected at network '%s'" \
1576 % (net_name, iface,scenario["vnfs"][vnf]['ifaces'][iface]['net_key'])
1577 #logger.debug(error_text)
1578 raise NfvoException(error_text, HTTP_Bad_Request)
1579 scenario["vnfs"][vnf]['ifaces'][ iface ]['net_key'] = net_name
1580 scenario["vnfs"][vnf]['ifaces'][ iface ]['ip_address'] = iface_dict.get('ip_address',None)
1581 iface_type = scenario["vnfs"][vnf]['ifaces'][iface]['type']
1582 if iface_type=='mgmt' or iface_type=='bridge':
1583 net_type_bridge = True
1584 else:
1585 net_type_data = True
1586 if net_type_bridge and net_type_data:
1587 error_text = "Error connection interfaces of bridge type and data type at 'networks':'%s':'interfaces'" % (net_name)
1588 #logger.debug(error_text)
1589 raise NfvoException(error_text, HTTP_Bad_Request)
1590 elif net_type_bridge:
1591 type_='bridge'
1592 else:
1593 type_='data' if len(net["interfaces"])>2 else 'ptp'
1594
1595 if ("implementation" in net):
1596 if (type_ == "bridge" and net["implementation"] == "underlay"):
1597 error_text = "Error connecting interfaces of data type to a network declared as 'underlay' at 'network':'%s'" % (net_name)
1598 #logger.debug(error_text)
1599 raise NfvoException(error_text, HTTP_Bad_Request)
1600 elif (type_ <> "bridge" and net["implementation"] == "overlay"):
1601 error_text = "Error connecting interfaces of data type to a network declared as 'overlay' at 'network':'%s'" % (net_name)
1602 #logger.debug(error_text)
1603 raise NfvoException(error_text, HTTP_Bad_Request)
1604 net.pop("implementation")
1605 if ("type" in net):
1606 if (type_ == "data" and net["type"] == "e-line"):
1607 error_text = "Error connecting more than 2 interfaces of data type to a network declared as type 'e-line' at 'network':'%s'" % (net_name)
1608 #logger.debug(error_text)
1609 raise NfvoException(error_text, HTTP_Bad_Request)
1610 elif (type_ == "ptp" and net["type"] == "e-lan"):
1611 type_ = "data"
1612
1613 net['type'] = type_
1614 net['name'] = net_name
1615 net['external'] = net.get('external', False)
1616
1617#3: insert at database
1618 scenario["nets"] = scenario["networks"]
1619 scenario['tenant_id'] = tenant_id
1620 scenario_id = mydb.new_scenario2(scenario)
1621 return scenario_id
1622
1623def update(d, u):
1624 '''Takes dict d and updates it with the values in dict u.'''
1625 '''It merges all depth levels'''
1626 for k, v in u.iteritems():
1627 if isinstance(v, collections.Mapping):
1628 r = update(d.get(k, {}), v)
1629 d[k] = r
1630 else:
1631 d[k] = u[k]
1632 return d
1633
tierno7edb6752016-03-21 17:37:52 +01001634def create_instance(mydb, tenant_id, instance_dict):
tiernoae4a8d12016-07-08 12:30:39 +02001635 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tierno4319dad2016-09-05 12:11:11 +02001636 #logger.debug("Creating instance...")
tierno7edb6752016-03-21 17:37:52 +01001637 scenario = instance_dict["scenario"]
tiernobe41e222016-09-02 15:16:13 +02001638
1639 #find main datacenter
1640 myvims = {}
tierno7edb6752016-03-21 17:37:52 +01001641 datacenter = instance_dict.get("datacenter")
tiernobe41e222016-09-02 15:16:13 +02001642 default_datacenter_id, vim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
1643 myvims[default_datacenter_id] = vim
tierno392f2852016-05-13 12:28:55 +02001644 #myvim_tenant = myvim['tenant_id']
tiernobe41e222016-09-02 15:16:13 +02001645# default_datacenter_name = vim['name']
garciadeblas9f8456e2016-09-05 05:02:59 +02001646 default_datacenter_tenant_id = vim['config']['datacenter_tenant_id'] #TODO review
tierno7edb6752016-03-21 17:37:52 +01001647 rollbackList=[]
tiernoae4a8d12016-07-08 12:30:39 +02001648
1649 #print "Checking that the scenario exists and getting the scenario dictionary"
tiernobe41e222016-09-02 15:16:13 +02001650 scenarioDict = mydb.get_scenario(scenario, tenant_id, default_datacenter_id)
garciadeblas9f8456e2016-09-05 05:02:59 +02001651
1652 #logger.debug("Dictionaries before merging")
1653 #logger.debug("InstanceDict:\n{}".format(yaml.safe_dump(instance_dict,default_flow_style=False, width=256)))
1654 #logger.debug("ScenarioDict:\n{}".format(yaml.safe_dump(scenarioDict,default_flow_style=False, width=256)))
1655
tiernobe41e222016-09-02 15:16:13 +02001656 scenarioDict['datacenter_tenant_id'] = default_datacenter_tenant_id
1657 scenarioDict['datacenter_id'] = default_datacenter_id
garciadeblas9f8456e2016-09-05 05:02:59 +02001658
tierno7edb6752016-03-21 17:37:52 +01001659 auxNetDict = {} #Auxiliar dictionary. First key:'scenario' or sce_vnf uuid. Second Key: uuid of the net/sce_net. Value: vim_net_id
1660 auxNetDict['scenario'] = {}
1661
tierno4319dad2016-09-05 12:11:11 +02001662 logger.debug("Creating instance from scenario-dict:\n%s", yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)) #TODO remove
tierno7edb6752016-03-21 17:37:52 +01001663 instance_name = instance_dict["name"]
1664 instance_description = instance_dict.get("description")
1665 try:
1666 #0 check correct parameters
tiernobe41e222016-09-02 15:16:13 +02001667 for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems():
tierno7edb6752016-03-21 17:37:52 +01001668 found=False
1669 for scenario_net in scenarioDict['nets']:
tiernobe41e222016-09-02 15:16:13 +02001670 if net_name == scenario_net["name"]:
tierno7edb6752016-03-21 17:37:52 +01001671 found = True
1672 break
1673 if not found:
tiernobe41e222016-09-02 15:16:13 +02001674 raise NfvoException("Invalid scenario network name '{}' at instance:networks".format(net_name), HTTP_Bad_Request)
1675 if "sites" not in net_instance_desc:
1676 net_instance_desc["sites"] = [ {} ]
1677 site_without_datacenter_field = False
1678 for site in net_instance_desc["sites"]:
1679 if site.get("datacenter"):
1680 if site["datacenter"] not in myvims:
1681 #Add this datacenter to myvims
1682 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, site["datacenter"])
1683 myvims[d] = v
1684 site["datacenter"] = d #change name to id
1685 else:
1686 if site_without_datacenter_field:
1687 raise NfvoException("Found more than one entries without datacenter field at instance:networks:{}:sites".format(net_name), HTTP_Bad_Request)
1688 site_without_datacenter_field = True
1689 site["datacenter"] = default_datacenter_id #change name to id
1690
1691 for vnf_name, vnf_instance_desc in instance_dict.get("vnfs",{}).iteritems():
tierno7edb6752016-03-21 17:37:52 +01001692 found=False
1693 for scenario_vnf in scenarioDict['vnfs']:
tiernobe41e222016-09-02 15:16:13 +02001694 if vnf_name == scenario_vnf['name']:
tierno7edb6752016-03-21 17:37:52 +01001695 found = True
1696 break
1697 if not found:
tiernobe41e222016-09-02 15:16:13 +02001698 raise NfvoException("Invalid vnf name '{}' at instance:vnfs".format(vnf_instance_desc), HTTP_Bad_Request)
1699 if "datacenter" in vnf_instance_desc:
1700 #Add this datacenter to myvims
1701 if vnf_instance_desc["datacenter"] not in myvims:
1702 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, vnf_instance_desc["datacenter"])
1703 myvims[d] = v
1704 scenario_vnf["datacenter"] = d #change name to id
tiernoa4e1a6e2016-08-31 14:19:40 +02001705 #0.1 parse cloud-config parameters
1706 cloud_config = scenarioDict.get("cloud-config", {})
1707 if instance_dict.get("cloud-config"):
1708 cloud_config.update( instance_dict["cloud-config"])
1709 if not cloud_config:
1710 cloud_config = None
1711 else:
1712 scenarioDict["cloud-config"] = cloud_config
1713 unify_cloud_config(cloud_config)
garciadeblas9f8456e2016-09-05 05:02:59 +02001714
1715 #0.2 merge instance information into scenario
1716 #Ideally, the operation should be as simple as: update(scenarioDict,instance_dict)
1717 #However, this is not possible yet.
1718 for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems():
1719 for scenario_net in scenarioDict['nets']:
1720 if net_name == scenario_net["name"]:
1721 if 'ip-profile' in net_instance_desc:
1722 ipprofile = net_instance_desc['ip-profile']
1723 ipprofile['subnet_address'] = ipprofile.pop('subnet-address',None)
1724 ipprofile['ip_version'] = ipprofile.pop('ip-version','IPv4')
1725 ipprofile['gateway_address'] = ipprofile.pop('gateway-address',None)
1726 ipprofile['dns_address'] = ipprofile.pop('dns-address',None)
1727 if 'dhcp' in ipprofile:
1728 ipprofile['dhcp_start_address'] = ipprofile['dhcp'].get('start-address',None)
1729 ipprofile['dhcp_enabled'] = ipprofile['dhcp'].get('enabled',True)
1730 ipprofile['dhcp_count'] = ipprofile['dhcp'].get('count',None)
1731 del ipprofile['dhcp']
1732 update(scenario_net['ip_profile'],ipprofile)
tiernoe6c58ce2016-09-14 16:02:49 +02001733 for interface in net_instance_desc.get('interfaces', () ):
garciadeblas9f8456e2016-09-05 05:02:59 +02001734 if 'ip_address' in interface:
1735 for vnf in scenarioDict['vnfs']:
1736 if interface['vnf'] == vnf['name']:
1737 for vnf_interface in vnf['interfaces']:
1738 if interface['vnf_interface'] == vnf_interface['external_name']:
1739 vnf_interface['ip_address']=interface['ip_address']
1740
tierno4319dad2016-09-05 12:11:11 +02001741 #logger.debug("Merged dictionary")
1742 logger.debug("Creating instance scenario-dict MERGED:\n%s", yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False))
garciadeblas9f8456e2016-09-05 05:02:59 +02001743
tierno7edb6752016-03-21 17:37:52 +01001744
1745 #1. Creating new nets (sce_nets) in the VIM"
1746 for sce_net in scenarioDict['nets']:
tiernobe41e222016-09-02 15:16:13 +02001747 sce_net["vim_id_sites"]={}
tierno7edb6752016-03-21 17:37:52 +01001748 descriptor_net = instance_dict.get("networks",{}).get(sce_net["name"],{})
tiernobe41e222016-09-02 15:16:13 +02001749 net_name = descriptor_net.get("vim-network-name")
1750 auxNetDict['scenario'][sce_net['uuid']] = {}
1751
1752 sites = descriptor_net.get("sites", [ {} ])
1753 for site in sites:
1754 if site.get("datacenter"):
1755 vim = myvims[ site["datacenter"] ]
1756 datacenter_id = site["datacenter"]
tierno7edb6752016-03-21 17:37:52 +01001757 else:
tiernobe41e222016-09-02 15:16:13 +02001758 vim = myvims[ default_datacenter_id ]
1759 datacenter_id = default_datacenter_id
tierno7edb6752016-03-21 17:37:52 +01001760
tiernobe41e222016-09-02 15:16:13 +02001761 net_type = sce_net['type']
1762 lookfor_filter = {'admin_state_up': True, 'status': 'ACTIVE'} #'shared': True
1763 if sce_net["external"]:
1764 if not net_name:
1765 net_name = sce_net["name"]
1766 if "netmap-use" in site or "netmap-create" in site:
1767 create_network = False
1768 lookfor_network = False
1769 if "netmap-use" in site:
1770 lookfor_network = True
1771 if utils.check_valid_uuid(site["netmap-use"]):
1772 filter_text = "scenario id '%s'" % site["netmap-use"]
1773 lookfor_filter["id"] = site["netmap-use"]
1774 else:
1775 filter_text = "scenario name '%s'" % site["netmap-use"]
1776 lookfor_filter["name"] = site["netmap-use"]
1777 if "netmap-create" in site:
1778 create_network = True
1779 net_vim_name = net_name
1780 if site["netmap-create"]:
1781 net_vim_name = site["netmap-create"]
1782
1783 elif sce_net['vim_id'] != None:
1784 #there is a netmap at datacenter_nets database #TODO REVISE!!!!
1785 create_network = False
1786 lookfor_network = True
1787 lookfor_filter["id"] = sce_net['vim_id']
1788 filter_text = "vim_id '%s' datacenter_netmap name '%s'. Try to reload vims with datacenter-net-update" % (sce_net['vim_id'], sce_net["name"])
1789 #look for network at datacenter and return error
1790 else:
1791 #There is not a netmap, look at datacenter for a net with this name and create if not found
1792 create_network = True
1793 lookfor_network = True
1794 lookfor_filter["name"] = sce_net["name"]
1795 net_vim_name = sce_net["name"]
1796 filter_text = "scenario name '%s'" % sce_net["name"]
tierno7edb6752016-03-21 17:37:52 +01001797 else:
tiernobe41e222016-09-02 15:16:13 +02001798 if not net_name:
1799 net_name = "%s.%s" %(instance_name, sce_net["name"])
1800 net_name = net_name[:255] #limit length
1801 net_vim_name = net_name
1802 create_network = True
1803 lookfor_network = False
1804
1805 if lookfor_network:
1806 vim_nets = vim.get_network_list(filter_dict=lookfor_filter)
1807 if len(vim_nets) > 1:
1808 raise NfvoException("More than one candidate VIM network found for " + filter_text, HTTP_Bad_Request )
1809 elif len(vim_nets) == 0:
1810 if not create_network:
1811 raise NfvoException("No candidate VIM network found for " + filter_text, HTTP_Bad_Request )
1812 else:
1813 sce_net["vim_id_sites"][datacenter_id] = vim_nets[0]['id']
1814
1815 auxNetDict['scenario'][sce_net['uuid']][datacenter_id] = vim_nets[0]['id']
1816 create_network = False
1817 if create_network:
1818 #if network is not external
garciadeblas9f8456e2016-09-05 05:02:59 +02001819 network_id = vim.new_network(net_vim_name, net_type, sce_net.get('ip_profile',None))
tiernobe41e222016-09-02 15:16:13 +02001820 sce_net["vim_id_sites"][datacenter_id] = network_id
1821 auxNetDict['scenario'][sce_net['uuid']][datacenter_id] = network_id
1822 rollbackList.append({'what':'network', 'where':'vim', 'vim_id':datacenter_id, 'uuid':network_id})
tierno7edb6752016-03-21 17:37:52 +01001823
1824 #2. Creating new nets (vnf internal nets) in the VIM"
1825 #For each vnf net, we create it and we add it to instanceNetlist.
1826 for sce_vnf in scenarioDict['vnfs']:
1827 for net in sce_vnf['nets']:
tiernobe41e222016-09-02 15:16:13 +02001828 if sce_vnf.get("datacenter"):
1829 vim = myvims[ sce_vnf["datacenter"] ]
1830 datacenter_id = sce_vnf["datacenter"]
1831 else:
1832 vim = myvims[ default_datacenter_id ]
1833 datacenter_id = default_datacenter_id
tierno7edb6752016-03-21 17:37:52 +01001834 descriptor_net = instance_dict.get("vnfs",{}).get(sce_vnf["name"],{})
1835 net_name = descriptor_net.get("name")
1836 if not net_name:
1837 net_name = "%s.%s" %(instance_name, net["name"])
1838 net_name = net_name[:255] #limit length
1839 net_type = net['type']
garciadeblas9f8456e2016-09-05 05:02:59 +02001840 network_id = vim.new_network(net_name, net_type, net.get('ip_profile',None))
tierno7edb6752016-03-21 17:37:52 +01001841 net['vim_id'] = network_id
1842 if sce_vnf['uuid'] not in auxNetDict:
1843 auxNetDict[sce_vnf['uuid']] = {}
1844 auxNetDict[sce_vnf['uuid']][net['uuid']] = network_id
1845 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
1846
tiernoae4a8d12016-07-08 12:30:39 +02001847 #print "auxNetDict:"
1848 #print yaml.safe_dump(auxNetDict, indent=4, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +01001849
1850 #3. Creating new vm instances in the VIM
tiernoae4a8d12016-07-08 12:30:39 +02001851 #myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict)
tierno7edb6752016-03-21 17:37:52 +01001852 for sce_vnf in scenarioDict['vnfs']:
tiernobe41e222016-09-02 15:16:13 +02001853 if sce_vnf.get("datacenter"):
1854 vim = myvims[ sce_vnf["datacenter"] ]
1855 datacenter_id = sce_vnf["datacenter"]
1856 else:
1857 vim = myvims[ default_datacenter_id ]
1858 datacenter_id = default_datacenter_id
1859 sce_vnf["datacenter_id"] = datacenter_id
1860 sce_vnf["datacenter_tenant_id"] = vim['config']['datacenter_tenant_id']
tierno7edb6752016-03-21 17:37:52 +01001861 i = 0
1862 for vm in sce_vnf['vms']:
1863 i += 1
1864 myVMDict = {}
1865 myVMDict['name'] = "%s.%s.%d" % (instance_name,sce_vnf['name'],i)
1866 myVMDict['description'] = myVMDict['name'][0:99]
1867# if not startvms:
1868# myVMDict['start'] = "no"
1869 myVMDict['name'] = myVMDict['name'][0:255] #limit name length
1870 #create image at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001871 image_dict = mydb.get_table_by_uuid_name("images", vm['image_id'])
tiernobe41e222016-09-02 15:16:13 +02001872 image_id = create_or_use_image(mydb, {datacenter_id: vim}, image_dict, [], True)
tierno7edb6752016-03-21 17:37:52 +01001873 vm['vim_image_id'] = image_id
1874
1875 #create flavor at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001876 flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id'])
tierno7edb6752016-03-21 17:37:52 +01001877 if flavor_dict['extended']!=None:
1878 flavor_dict['extended']= yaml.load(flavor_dict['extended'])
tiernobe41e222016-09-02 15:16:13 +02001879 flavor_id = create_or_use_flavor(mydb, {datacenter_id: vim}, flavor_dict, rollbackList, True)
tierno7edb6752016-03-21 17:37:52 +01001880 vm['vim_flavor_id'] = flavor_id
1881
1882 myVMDict['imageRef'] = vm['vim_image_id']
1883 myVMDict['flavorRef'] = vm['vim_flavor_id']
1884 myVMDict['networks'] = []
1885#TODO ALF. connect_mgmt_interfaces. Connect management interfaces if this is true
1886 for iface in vm['interfaces']:
1887 netDict = {}
1888 if iface['type']=="data":
1889 netDict['type'] = iface['model']
1890 elif "model" in iface and iface["model"]!=None:
1891 netDict['model']=iface['model']
1892 #TODO in future, remove this because mac_address will not be set, and the type of PV,VF is obtained from iterface table model
1893 #discover type of interface looking at flavor
1894 for numa in flavor_dict.get('extended',{}).get('numas',[]):
1895 for flavor_iface in numa.get('interfaces',[]):
1896 if flavor_iface.get('name') == iface['internal_name']:
1897 if flavor_iface['dedicated'] == 'yes':
1898 netDict['type']="PF" #passthrough
1899 elif flavor_iface['dedicated'] == 'no':
1900 netDict['type']="VF" #siov
1901 elif flavor_iface['dedicated'] == 'yes:sriov':
1902 netDict['type']="VFnotShared" #sriov but only one sriov on the PF
1903 netDict["mac_address"] = flavor_iface.get("mac_address")
1904 break;
1905 netDict["use"]=iface['type']
1906 if netDict["use"]=="data" and not netDict.get("type"):
1907 #print "netDict", netDict
1908 #print "iface", iface
1909 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'])
1910 if flavor_dict.get('extended')==None:
tiernoae4a8d12016-07-08 12:30:39 +02001911 raise NfvoException(e_text + "After database migration some information is not available. \
1912 Try to delete and create the scenarios and VNFs again", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01001913 else:
tiernoae4a8d12016-07-08 12:30:39 +02001914 raise NfvoException(e_text, HTTP_Internal_Server_Error)
tierno7edb6752016-03-21 17:37:52 +01001915 if netDict["use"]=="mgmt" or netDict["use"]=="bridge":
1916 netDict["type"]="virtual"
1917 if "vpci" in iface and iface["vpci"] is not None:
1918 netDict['vpci'] = iface['vpci']
1919 if "mac" in iface and iface["mac"] is not None:
1920 netDict['mac_address'] = iface['mac']
1921 netDict['name'] = iface['internal_name']
1922 if iface['net_id'] is None:
1923 for vnf_iface in sce_vnf["interfaces"]:
tiernof97fd272016-07-11 14:32:37 +02001924 #print iface
1925 #print vnf_iface
tierno7edb6752016-03-21 17:37:52 +01001926 if vnf_iface['interface_id']==iface['uuid']:
tiernobe41e222016-09-02 15:16:13 +02001927 netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ][datacenter_id]
tierno7edb6752016-03-21 17:37:52 +01001928 break
1929 else:
1930 netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ]
1931 #skip bridge ifaces not connected to any net
1932 #if 'net_id' not in netDict or netDict['net_id']==None:
1933 # continue
1934 myVMDict['networks'].append(netDict)
tiernoae4a8d12016-07-08 12:30:39 +02001935 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
1936 #print myVMDict['name']
1937 #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
1938 #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
1939 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
tiernobe41e222016-09-02 15:16:13 +02001940 vm_id = vim.new_vminstance(myVMDict['name'],myVMDict['description'],myVMDict.get('start', None),
tiernoa4e1a6e2016-08-31 14:19:40 +02001941 myVMDict['imageRef'],myVMDict['flavorRef'],myVMDict['networks'], cloud_config = cloud_config)
tierno7edb6752016-03-21 17:37:52 +01001942 vm['vim_id'] = vm_id
1943 rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id})
1944 #put interface uuid back to scenario[vnfs][vms[[interfaces]
1945 for net in myVMDict['networks']:
1946 if "vim_id" in net:
1947 for iface in vm['interfaces']:
1948 if net["name"]==iface["internal_name"]:
1949 iface["vim_id"]=net["vim_id"]
1950 break
tiernoae4a8d12016-07-08 12:30:39 +02001951 logger.debug("create_instance Deployment done")
tiernobe41e222016-09-02 15:16:13 +02001952 print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +01001953 #r,c = mydb.new_instance_scenario_as_a_whole(nfvo_tenant,scenarioDict['name'],scenarioDict)
tiernof97fd272016-07-11 14:32:37 +02001954 instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_name, instance_description, scenarioDict)
1955 return mydb.get_instance_scenario(instance_id)
1956 except (NfvoException, vimconn.vimconnException,db_base_Exception) as e:
tiernobe41e222016-09-02 15:16:13 +02001957 message = rollback(mydb, myvims, rollbackList)
tiernof97fd272016-07-11 14:32:37 +02001958 if isinstance(e, db_base_Exception):
1959 error_text = "database Exception"
1960 elif isinstance(e, vimconn.vimconnException):
1961 error_text = "VIM Exception"
1962 else:
1963 error_text = "Exception"
1964 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
1965 #logger.error("create_instance: %s", error_text)
1966 raise NfvoException(error_text, e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02001967
tierno7edb6752016-03-21 17:37:52 +01001968def delete_instance(mydb, tenant_id, instance_id):
tiernoae4a8d12016-07-08 12:30:39 +02001969 #print "Checking that the instance_id exists and getting the instance dictionary"
tiernof97fd272016-07-11 14:32:37 +02001970 instanceDict = mydb.get_instance_scenario(instance_id, tenant_id)
tiernoae4a8d12016-07-08 12:30:39 +02001971 #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +01001972 tenant_id = instanceDict["tenant_id"]
tiernoae4a8d12016-07-08 12:30:39 +02001973 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tiernof97fd272016-07-11 14:32:37 +02001974 try:
1975 vims = get_vim(mydb, tenant_id, instanceDict['datacenter_id'])
1976 if len(vims) == 0:
1977 logger.error("!!!!!! nfvo.delete_instance() datacenter not found!!!!")
1978 myvim = None
1979 else:
1980 myvim = vims.values()[0]
1981 except NfvoException as e:
1982 logger.error("!!!!!! nfvo.delete_instance() datacenter Exception!!!! " + str(e))
tierno7edb6752016-03-21 17:37:52 +01001983 myvim = None
tierno7edb6752016-03-21 17:37:52 +01001984
1985
1986 #1. Delete from Database
1987
tiernof97fd272016-07-11 14:32:37 +02001988 #result,c = mydb.delete_row_by_id('instance_scenarios', instance_id, nfvo_tenant)
1989 message = mydb.delete_instance_scenario(instance_id, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001990
1991 #2. delete from VIM
1992 if not myvim:
1993 error_msg = "Not possible to delete VIM VMs and networks. Datacenter not found at database!!!"
1994 else:
1995 error_msg = ""
1996
1997 #2.1 deleting VMs
1998 #vm_fail_list=[]
1999 for sce_vnf in instanceDict['vnfs']:
2000 if not myvim:
2001 continue
2002 for vm in sce_vnf['vms']:
tiernoae4a8d12016-07-08 12:30:39 +02002003 try:
2004 myvim.delete_vminstance(vm['vim_vm_id'])
2005 except vimconn.vimconnNotFoundException as e:
2006 error_msg+="\n VM id={} not found at VIM".format(vm['vim_vm_id'])
2007 logger.warn("VM instance '%s'uuid '%s', VIM id '%s', from VNF_id '%s' not found",
2008 vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id'])
2009 except vimconn.vimconnException as e:
2010 error_msg+="\n Error: " + e.http_code + " VM id=" + vm['vim_vm_id']
2011 logger.error("Error %d deleting VM instance '%s'uuid '%s', VIM id '%s', from VNF_id '%s': %s",
2012 e.http_code, vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id'], str(e))
tierno7edb6752016-03-21 17:37:52 +01002013
2014 #2.2 deleting NETS
2015 #net_fail_list=[]
2016 for net in instanceDict['nets']:
2017 if net['external']:
2018 continue #skip not created nets
2019 if not myvim:
2020 continue
tiernoae4a8d12016-07-08 12:30:39 +02002021 try:
2022 myvim.delete_network(net['vim_net_id'])
2023 except vimconn.vimconnNotFoundException as e:
2024 error_msg+="\n NET id={} not found at VIM".format(net['vim_net_id'])
2025 logger.warn("NET '%s', VIM id '%s', from VNF_id '%s' not found",
tiernobe41e222016-09-02 15:16:13 +02002026 net['uuid'], net['vim_net_id'], sce_vnf['vnf_id'])
tiernoae4a8d12016-07-08 12:30:39 +02002027 except vimconn.vimconnException as e:
2028 error_msg+="\n Error: " + e.http_code + " Net id=" + net['vim_vm_id']
2029 logger.error("Error %d deleting NET '%s', VIM id '%s', from VNF_id '%s': %s",
2030 e.http_code, net['uuid'], net['vim_net_id'], sce_vnf['vnf_id'], str(e))
tierno7edb6752016-03-21 17:37:52 +01002031 if len(error_msg)>0:
tiernof97fd272016-07-11 14:32:37 +02002032 return 'instance ' + message + ' deleted but some elements could not be deleted, or already deleted (error: 404) from VIM: ' + error_msg
tierno7edb6752016-03-21 17:37:52 +01002033 else:
tiernof97fd272016-07-11 14:32:37 +02002034 return 'instance ' + message + ' deleted'
tierno7edb6752016-03-21 17:37:52 +01002035
2036def refresh_instance(mydb, nfvo_tenant, instanceDict, datacenter=None, vim_tenant=None):
2037 '''Refreshes a scenario instance. It modifies instanceDict'''
2038 '''Returns:
2039 - 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
2040 - error_msg
2041 '''
2042 # Assumption: nfvo_tenant and instance_id were checked before entering into this function
tiernoae4a8d12016-07-08 12:30:39 +02002043 #print "nfvo.refresh_instance begins"
tierno7edb6752016-03-21 17:37:52 +01002044 #print json.dumps(instanceDict, indent=4)
2045
tiernoae4a8d12016-07-08 12:30:39 +02002046 #print "Getting the VIM URL and the VIM tenant_id"
tiernof97fd272016-07-11 14:32:37 +02002047 vims = get_vim(mydb, nfvo_tenant, instanceDict['datacenter_id'])
2048 if len(vims) == 0:
2049 raise NfvoException("datacenter '{}' not found".format(str(instanceDict['datacenter_id'])), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002050 myvim = vims.values()[0]
2051
tiernoae4a8d12016-07-08 12:30:39 +02002052 # 1. Getting VIM vm and net list
tierno7edb6752016-03-21 17:37:52 +01002053 vms_updated = [] #List of VM instance uuids in openmano that were updated
2054 vms_notupdated=[]
tiernoae4a8d12016-07-08 12:30:39 +02002055 vm_list = []
tierno7edb6752016-03-21 17:37:52 +01002056 for sce_vnf in instanceDict['vnfs']:
2057 for vm in sce_vnf['vms']:
tiernoae4a8d12016-07-08 12:30:39 +02002058 vm_list.append(vm['vim_vm_id'])
2059 vms_notupdated.append(vm["uuid"])
2060
2061 nets_updated = [] #List of VM instance uuids in openmano that were updated
tierno7edb6752016-03-21 17:37:52 +01002062 nets_notupdated=[]
tiernoae4a8d12016-07-08 12:30:39 +02002063 net_list=[]
tierno7edb6752016-03-21 17:37:52 +01002064 for net in instanceDict['nets']:
tiernoae4a8d12016-07-08 12:30:39 +02002065 net_list.append(net['vim_net_id'])
2066 nets_notupdated.append(net["uuid"])
2067
2068 try:
2069 # 1. Getting the status of all VMs
2070 vm_dict = myvim.refresh_vms_status(vm_list)
2071
2072 # 2. Update the status of VMs in the instanceDict, while collects the VMs whose status changed
2073 for sce_vnf in instanceDict['vnfs']:
2074 for vm in sce_vnf['vms']:
2075 vm_id = vm['vim_vm_id']
2076 interfaces = vm_dict[vm_id].pop('interfaces', [])
2077 #2.0 look if contain manamgement interface, and if not change status from ACTIVE:NoMgmtIP to ACTIVE
2078 has_mgmt_iface = False
2079 for iface in vm["interfaces"]:
2080 if iface["type"]=="mgmt":
2081 has_mgmt_iface = True
2082 if vm_dict[vm_id]['status'] == "ACTIVE:NoMgmtIP" and not has_mgmt_iface:
2083 vm_dict[vm_id]['status'] = "ACTIVE"
2084 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'):
2085 vm['status'] = vm_dict[vm_id]['status']
2086 vm['error_msg'] = vm_dict[vm_id].get('error_msg')
2087 vm['vim_info'] = vm_dict[vm_id].get('vim_info')
2088 # 2.1. Update in openmano DB the VMs whose status changed
tiernof97fd272016-07-11 14:32:37 +02002089 try:
2090 updates = mydb.update_rows('instance_vms', UPDATE=vm_dict[vm_id], WHERE={'uuid':vm["uuid"]})
tiernoae4a8d12016-07-08 12:30:39 +02002091 vms_notupdated.remove(vm["uuid"])
tiernof97fd272016-07-11 14:32:37 +02002092 if updates>0:
tiernoae4a8d12016-07-08 12:30:39 +02002093 vms_updated.append(vm["uuid"])
tiernof97fd272016-07-11 14:32:37 +02002094 except db_base_Exception as e:
2095 logger.error("nfvo.refresh_instance error database update: %s", str(e))
tiernoae4a8d12016-07-08 12:30:39 +02002096 # 2.2. Update in openmano DB the interface VMs
2097 for interface in interfaces:
2098 #translate from vim_net_id to instance_net_id
2099 network_id=None
2100 for net in instanceDict['nets']:
2101 if net["vim_net_id"] == interface["vim_net_id"]:
2102 network_id = net["uuid"]
2103 break
2104 if not network_id:
2105 continue
2106 del interface["vim_net_id"]
tiernof97fd272016-07-11 14:32:37 +02002107 try:
2108 mydb.update_rows('instance_interfaces', UPDATE=interface, WHERE={'instance_vm_id':vm["uuid"], "instance_net_id":network_id})
2109 except db_base_Exception as e:
tiernoae4a8d12016-07-08 12:30:39 +02002110 logger.error( "nfvo.refresh_instance error with vm=%s, interface_net_id=%s", vm["uuid"], network_id)
2111
2112 # 3. Getting the status of all nets
2113 net_dict = myvim.refresh_nets_status(net_list)
2114
2115 # 4. Update the status of nets in the instanceDict, while collects the nets whose status changed
2116 # TODO: update nets inside a vnf
2117 for net in instanceDict['nets']:
2118 net_id = net['vim_net_id']
2119 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'):
2120 net['status'] = net_dict[net_id]['status']
2121 net['error_msg'] = net_dict[net_id].get('error_msg')
2122 net['vim_info'] = net_dict[net_id].get('vim_info')
2123 # 5.1. Update in openmano DB the nets whose status changed
tiernof97fd272016-07-11 14:32:37 +02002124 try:
2125 updated = mydb.update_rows('instance_nets', UPDATE=net_dict[net_id], WHERE={'uuid':net["uuid"]})
tiernoae4a8d12016-07-08 12:30:39 +02002126 nets_notupdated.remove(net["uuid"])
tiernof97fd272016-07-11 14:32:37 +02002127 if updated>0:
tiernoae4a8d12016-07-08 12:30:39 +02002128 nets_updated.append(net["uuid"])
tiernof97fd272016-07-11 14:32:37 +02002129 except db_base_Exception as e:
2130 logger.error("nfvo.refresh_instance error database update: %s", str(e))
tiernoae4a8d12016-07-08 12:30:39 +02002131 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002132 #logger.error("VIM exception %s %s", type(e).__name__, str(e))
2133 raise NfvoException(str(e), e.http_code)
tierno7edb6752016-03-21 17:37:52 +01002134
2135 # Returns appropriate output
tiernoae4a8d12016-07-08 12:30:39 +02002136 #print "nfvo.refresh_instance finishes"
2137 logger.debug("VMs updated in the database: %s; nets updated in the database %s; VMs not updated: %s; nets not updated: %s",
2138 str(vms_updated), str(nets_updated), str(vms_notupdated), str(nets_notupdated))
tierno7edb6752016-03-21 17:37:52 +01002139 instance_id = instanceDict['uuid']
tierno7edb6752016-03-21 17:37:52 +01002140 if len(vms_notupdated)+len(nets_notupdated)>0:
tiernoae4a8d12016-07-08 12:30:39 +02002141 error_msg = "VMs not updated: " + str(vms_notupdated) + "; nets not updated: " + str(nets_notupdated)
tierno7edb6752016-03-21 17:37:52 +01002142 return len(vms_notupdated)+len(nets_notupdated), 'Scenario instance ' + instance_id + ' refreshed but some elements could not be updated in the database: ' + error_msg
2143
tiernoae4a8d12016-07-08 12:30:39 +02002144 return 0, 'Scenario instance ' + instance_id + ' refreshed.'
tierno7edb6752016-03-21 17:37:52 +01002145
2146def instance_action(mydb,nfvo_tenant,instance_id, action_dict):
tiernoae4a8d12016-07-08 12:30:39 +02002147 #print "Checking that the instance_id exists and getting the instance dictionary"
tiernof97fd272016-07-11 14:32:37 +02002148 instanceDict = mydb.get_instance_scenario(instance_id, nfvo_tenant)
tierno7edb6752016-03-21 17:37:52 +01002149 #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
2150
tiernoae4a8d12016-07-08 12:30:39 +02002151 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tiernof97fd272016-07-11 14:32:37 +02002152 vims = get_vim(mydb, nfvo_tenant, instanceDict['datacenter_id'])
2153 if len(vims) == 0:
2154 raise NfvoException("datacenter '{}' not found".format(str(instanceDict['datacenter_id'])), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002155 myvim = vims.values()[0]
2156
2157
2158 input_vnfs = action_dict.pop("vnfs", [])
2159 input_vms = action_dict.pop("vms", [])
2160 action_over_all = True if len(input_vnfs)==0 and len (input_vms)==0 else False
2161 vm_result = {}
2162 vm_error = 0
2163 vm_ok = 0
2164 for sce_vnf in instanceDict['vnfs']:
2165 for vm in sce_vnf['vms']:
2166 if not action_over_all:
2167 if sce_vnf['uuid'] not in input_vnfs and sce_vnf['vnf_name'] not in input_vnfs and \
2168 vm['uuid'] not in input_vms and vm['name'] not in input_vms:
2169 continue
tiernoae4a8d12016-07-08 12:30:39 +02002170 try:
2171 data = myvim.action_vminstance(vm['vim_vm_id'], action_dict)
tierno7edb6752016-03-21 17:37:52 +01002172 if "console" in action_dict:
tierno20fc2a22016-08-19 17:02:35 +02002173 if not global_config["http_console_proxy"]:
2174 vm_result[ vm['uuid'] ] = {"vim_result": 200,
2175 "description": "{protocol}//{ip}:{port}/{suffix}".format(
2176 protocol=data["protocol"],
2177 ip = data["server"],
2178 port = data["port"],
2179 suffix = data["suffix"]),
2180 "name":vm['name']
2181 }
2182 vm_ok +=1
2183 elif data["server"]=="127.0.0.1" or data["server"]=="localhost":
tierno7edb6752016-03-21 17:37:52 +01002184 vm_result[ vm['uuid'] ] = {"vim_result": -HTTP_Unauthorized,
2185 "description": "this console is only reachable by local interface",
2186 "name":vm['name']
2187 }
2188 vm_error+=1
tierno20fc2a22016-08-19 17:02:35 +02002189 else:
tierno7edb6752016-03-21 17:37:52 +01002190 #print "console data", data
tierno20fc2a22016-08-19 17:02:35 +02002191 try:
2192 console_thread = create_or_use_console_proxy_thread(data["server"], data["port"])
2193 vm_result[ vm['uuid'] ] = {"vim_result": 200,
2194 "description": "{protocol}//{ip}:{port}/{suffix}".format(
2195 protocol=data["protocol"],
2196 ip = global_config["http_console_host"],
2197 port = console_thread.port,
2198 suffix = data["suffix"]),
2199 "name":vm['name']
2200 }
2201 vm_ok +=1
2202 except NfvoException as e:
2203 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
2204 vm_error+=1
2205
tierno7edb6752016-03-21 17:37:52 +01002206 else:
tiernof97fd272016-07-11 14:32:37 +02002207 vm_result[ vm['uuid'] ] = {"vim_result": 200, "description": "ok", "name":vm['name']}
tierno7edb6752016-03-21 17:37:52 +01002208 vm_ok +=1
tiernoae4a8d12016-07-08 12:30:39 +02002209 except vimconn.vimconnException as e:
2210 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
2211 vm_error+=1
tierno7edb6752016-03-21 17:37:52 +01002212
2213 if vm_ok==0: #all goes wrong
tierno351863c2016-07-23 01:46:03 +02002214 return vm_result
tierno7edb6752016-03-21 17:37:52 +01002215 else:
tierno351863c2016-07-23 01:46:03 +02002216 return vm_result
tierno7edb6752016-03-21 17:37:52 +01002217
2218def create_or_use_console_proxy_thread(console_server, console_port):
2219 #look for a non-used port
2220 console_thread_key = console_server + ":" + str(console_port)
2221 if console_thread_key in global_config["console_thread"]:
2222 #global_config["console_thread"][console_thread_key].start_timeout()
tiernof97fd272016-07-11 14:32:37 +02002223 return global_config["console_thread"][console_thread_key]
tierno7edb6752016-03-21 17:37:52 +01002224
2225 for port in global_config["console_port_iterator"]():
tierno20fc2a22016-08-19 17:02:35 +02002226 #print "create_or_use_console_proxy_thread() port:", port
tierno7edb6752016-03-21 17:37:52 +01002227 if port in global_config["console_ports"]:
2228 continue
2229 try:
2230 clithread = cli.ConsoleProxyThread(global_config['http_host'], port, console_server, console_port)
2231 clithread.start()
2232 global_config["console_thread"][console_thread_key] = clithread
2233 global_config["console_ports"][port] = console_thread_key
tiernof97fd272016-07-11 14:32:37 +02002234 return clithread
tierno7edb6752016-03-21 17:37:52 +01002235 except cli.ConsoleProxyExceptionPortUsed as e:
2236 #port used, try with onoher
2237 continue
2238 except cli.ConsoleProxyException as e:
tiernof97fd272016-07-11 14:32:37 +02002239 raise NfvoException(str(e), HTTP_Bad_Request)
2240 raise NfvoException("Not found any free 'http_console_ports'", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002241
2242def check_tenant(mydb, tenant_id):
2243 '''check that tenant exists at database'''
tiernof97fd272016-07-11 14:32:37 +02002244 tenant = mydb.get_rows(FROM='nfvo_tenants', SELECT=('uuid',), WHERE={'uuid': tenant_id})
2245 if not tenant:
2246 raise NfvoException("tenant '{}' not found".format(tenant_id), HTTP_Not_Found)
2247 return
tierno7edb6752016-03-21 17:37:52 +01002248
2249def new_tenant(mydb, tenant_dict):
tiernof97fd272016-07-11 14:32:37 +02002250 tenant_id = mydb.new_row("nfvo_tenants", tenant_dict, add_uuid=True)
2251 return tenant_id
tierno7edb6752016-03-21 17:37:52 +01002252
2253def delete_tenant(mydb, tenant):
2254 #get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02002255
2256 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant, 'tenant')
2257 mydb.delete_row_by_id("nfvo_tenants", tenant_dict['uuid'])
2258 return tenant_dict['uuid'] + " " + tenant_dict["name"]
tierno7edb6752016-03-21 17:37:52 +01002259
2260def new_datacenter(mydb, datacenter_descriptor):
2261 if "config" in datacenter_descriptor:
2262 datacenter_descriptor["config"]=yaml.safe_dump(datacenter_descriptor["config"],default_flow_style=True,width=256)
tierno3ae39742016-09-07 12:17:51 +02002263 #Check that datacenter-type is correct
2264 datacenter_type = datacenter_descriptor.get("type", "openvim");
2265 module_info = None
2266 try:
2267 module = "vimconn_" + datacenter_type
2268 module_info = imp.find_module(module)
2269 except (IOError, ImportError):
2270 if module_info and module_info[0]:
2271 file.close(module_info[0])
2272 raise NfvoException("Incorrect datacenter type '{}'. Plugin '{}'.py not installed".format(datacenter_type, module), HTTP_Bad_Request)
2273
tiernof97fd272016-07-11 14:32:37 +02002274 datacenter_id = mydb.new_row("datacenters", datacenter_descriptor, add_uuid=True)
2275 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002276
2277def edit_datacenter(mydb, datacenter_id_name, datacenter_descriptor):
2278 #obtain data, check that only one exist
tiernof97fd272016-07-11 14:32:37 +02002279 datacenter = mydb.get_table_by_uuid_name('datacenters', datacenter_id_name)
tierno7edb6752016-03-21 17:37:52 +01002280 #edit data
tiernof97fd272016-07-11 14:32:37 +02002281 datacenter_id = datacenter['uuid']
2282 where={'uuid': datacenter['uuid']}
tierno7edb6752016-03-21 17:37:52 +01002283 if "config" in datacenter_descriptor:
2284 if datacenter_descriptor['config']!=None:
2285 try:
2286 new_config_dict = datacenter_descriptor["config"]
2287 #delete null fields
2288 to_delete=[]
2289 for k in new_config_dict:
2290 if new_config_dict[k]==None:
2291 to_delete.append(k)
2292
tiernof97fd272016-07-11 14:32:37 +02002293 config_dict = yaml.load(datacenter["config"])
tierno7edb6752016-03-21 17:37:52 +01002294 config_dict.update(new_config_dict)
2295 #delete null fields
2296 for k in to_delete:
2297 del config_dict[k]
tiernof97fd272016-07-11 14:32:37 +02002298 except Exception as e:
2299 raise NfvoException("Bad format at datacenter:config " + str(e), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01002300 datacenter_descriptor["config"]= yaml.safe_dump(config_dict,default_flow_style=True,width=256) if len(config_dict)>0 else None
tiernof97fd272016-07-11 14:32:37 +02002301 mydb.update_rows('datacenters', datacenter_descriptor, where)
2302 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002303
2304def delete_datacenter(mydb, datacenter):
2305 #get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02002306 datacenter_dict = mydb.get_table_by_uuid_name('datacenters', datacenter, 'datacenter')
2307 mydb.delete_row_by_id("datacenters", datacenter_dict['uuid'])
2308 return datacenter_dict['uuid'] + " " + datacenter_dict['name']
tierno7edb6752016-03-21 17:37:52 +01002309
2310def associate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter, vim_tenant_id=None, vim_tenant_name=None, vim_username=None, vim_password=None):
2311 #get datacenter info
tierno42fcc3b2016-07-06 17:20:40 +02002312 if utils.check_valid_uuid(datacenter):
tierno3ae39742016-09-07 12:17:51 +02002313 vims = get_vim(mydb, datacenter_id=datacenter, vim_tenant_name=vim_tenant_name, vim_user=vim_username, vim_passwd=vim_password)
tierno7edb6752016-03-21 17:37:52 +01002314 else:
tierno3ae39742016-09-07 12:17:51 +02002315 vims = get_vim(mydb, datacenter_name=datacenter, vim_tenant_name=vim_tenant_name, vim_user=vim_username, vim_passwd=vim_password)
tiernof97fd272016-07-11 14:32:37 +02002316 if len(vims) == 0:
2317 raise NfvoException("datacenter '{}' not found".format(str(datacenter)), HTTP_Not_Found)
2318 elif len(vims)>1:
2319 #print "nfvo.datacenter_action() error. Several datacenters found"
2320 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
2321
tierno7edb6752016-03-21 17:37:52 +01002322 datacenter_id=vims.keys()[0]
2323 myvim=vims[datacenter_id]
2324 datacenter_name=myvim["name"]
2325
2326 create_vim_tenant=True if vim_tenant_id==None and vim_tenant_name==None else False
2327
2328 #get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02002329 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', nfvo_tenant)
tierno7edb6752016-03-21 17:37:52 +01002330 if vim_tenant_name==None:
2331 vim_tenant_name=tenant_dict['name']
2332
2333 #check that this association does not exist before
2334 tenants_datacenter_dict={"nfvo_tenant_id":tenant_dict['uuid'], "datacenter_id":datacenter_id }
tiernof97fd272016-07-11 14:32:37 +02002335 tenants_datacenters = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
2336 if len(tenants_datacenters)>0:
2337 raise NfvoException("datacenter '{}' and tenant'{}' are already attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002338
2339 vim_tenant_id_exist_atdb=False
2340 if not create_vim_tenant:
2341 where_={"datacenter_id": datacenter_id}
2342 if vim_tenant_id!=None:
2343 where_["vim_tenant_id"] = vim_tenant_id
2344 if vim_tenant_name!=None:
2345 where_["vim_tenant_name"] = vim_tenant_name
2346 #check if vim_tenant_id is already at database
tiernof97fd272016-07-11 14:32:37 +02002347 datacenter_tenants_dict = mydb.get_rows(FROM='datacenter_tenants', WHERE=where_)
2348 if len(datacenter_tenants_dict)>=1:
tierno7edb6752016-03-21 17:37:52 +01002349 datacenter_tenants_dict = datacenter_tenants_dict[0]
2350 vim_tenant_id_exist_atdb=True
2351 #TODO check if a field has changed and edit entry at datacenter_tenants at DB
2352 else: #result=0
2353 datacenter_tenants_dict = {}
2354 #insert at table datacenter_tenants
2355 else: #if vim_tenant_id==None:
2356 #create tenant at VIM if not provided
tiernoae4a8d12016-07-08 12:30:39 +02002357 try:
2358 vim_tenant_id = myvim.new_tenant(vim_tenant_name, "created by openmano for datacenter "+datacenter_name)
2359 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002360 raise NfvoException("Not possible to create vim_tenant {} at VIM: {}".format(vim_tenant_id, str(e)), HTTP_Internal_Server_Error)
tierno7edb6752016-03-21 17:37:52 +01002361 datacenter_tenants_dict = {}
2362 datacenter_tenants_dict["created"]="true"
2363
2364 #fill datacenter_tenants table
2365 if not vim_tenant_id_exist_atdb:
2366 datacenter_tenants_dict["vim_tenant_id"] = vim_tenant_id
2367 datacenter_tenants_dict["vim_tenant_name"] = vim_tenant_name
2368 datacenter_tenants_dict["user"] = vim_username
2369 datacenter_tenants_dict["passwd"] = vim_password
2370 datacenter_tenants_dict["datacenter_id"] = datacenter_id
tiernof97fd272016-07-11 14:32:37 +02002371 id_ = mydb.new_row('datacenter_tenants', datacenter_tenants_dict, add_uuid=True)
tierno7edb6752016-03-21 17:37:52 +01002372 datacenter_tenants_dict["uuid"] = id_
2373
2374 #fill tenants_datacenters table
2375 tenants_datacenter_dict["datacenter_tenant_id"]=datacenter_tenants_dict["uuid"]
tiernof97fd272016-07-11 14:32:37 +02002376 mydb.new_row('tenants_datacenters', tenants_datacenter_dict)
2377 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002378
2379def deassociate_datacenter_to_tenant(mydb, tenant_id, datacenter, vim_tenant_id=None):
2380 #get datacenter info
tierno42fcc3b2016-07-06 17:20:40 +02002381 if utils.check_valid_uuid(datacenter):
tiernof97fd272016-07-11 14:32:37 +02002382 vims = get_vim(mydb, datacenter_id=datacenter)
tierno7edb6752016-03-21 17:37:52 +01002383 else:
tiernof97fd272016-07-11 14:32:37 +02002384 vims = get_vim(mydb, datacenter_name=datacenter)
2385 if len(vims) == 0:
2386 raise NfvoException("datacenter '{}' not found".format(str(datacenter)), HTTP_Not_Found)
2387 elif len(vims)>1:
2388 #print "nfvo.datacenter_action() error. Several datacenters found"
2389 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002390 datacenter_id=vims.keys()[0]
2391 myvim=vims[datacenter_id]
2392
2393 #get nfvo_tenant info
2394 if not tenant_id or tenant_id=="any":
2395 tenant_uuid = None
2396 else:
tiernof97fd272016-07-11 14:32:37 +02002397 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant_id)
tierno7edb6752016-03-21 17:37:52 +01002398 tenant_uuid = tenant_dict['uuid']
2399
2400 #check that this association exist before
2401 tenants_datacenter_dict={"datacenter_id":datacenter_id }
2402 if tenant_uuid:
2403 tenants_datacenter_dict["nfvo_tenant_id"] = tenant_uuid
tiernof97fd272016-07-11 14:32:37 +02002404 tenant_datacenter_list = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
2405 if len(tenant_datacenter_list)==0 and tenant_uuid:
2406 raise NfvoException("datacenter '{}' and tenant '{}' are not attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002407
2408 #delete this association
tiernof97fd272016-07-11 14:32:37 +02002409 mydb.delete_row(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
tierno7edb6752016-03-21 17:37:52 +01002410
2411 #get vim_tenant info and deletes
2412 warning=''
2413 for tenant_datacenter_item in tenant_datacenter_list:
tiernof97fd272016-07-11 14:32:37 +02002414 vim_tenant_dict = mydb.get_table_by_uuid_name('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
2415 #try to delete vim:tenant
2416 try:
2417 mydb.delete_row_by_id('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
2418 if vim_tenant_dict['created']=='true':
tierno7edb6752016-03-21 17:37:52 +01002419 #delete tenant at VIM if created by NFVO
tiernoae4a8d12016-07-08 12:30:39 +02002420 try:
2421 myvim.delete_tenant(vim_tenant_dict['vim_tenant_id'])
2422 except vimconn.vimconnException as e:
2423 warning = "Not possible to delete vim_tenant_id {} from VIM: {} ".format(vim_tenant_dict['vim_tenant_id'], str(e))
2424 logger.warn(warning)
tiernof97fd272016-07-11 14:32:37 +02002425 except db_base_Exception as e:
2426 logger.error("Cannot delete datacenter_tenants " + str(e))
2427 pass #the error will be caused because dependencies, vim_tenant can not be deleted
tierno7edb6752016-03-21 17:37:52 +01002428
tiernof97fd272016-07-11 14:32:37 +02002429 return "datacenter {} detached. {}".format(datacenter_id, warning)
tierno7edb6752016-03-21 17:37:52 +01002430
2431def datacenter_action(mydb, tenant_id, datacenter, action_dict):
2432 #DEPRECATED
2433 #get datacenter info
tierno42fcc3b2016-07-06 17:20:40 +02002434 if utils.check_valid_uuid(datacenter):
tiernof97fd272016-07-11 14:32:37 +02002435 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_id=datacenter)
tierno7edb6752016-03-21 17:37:52 +01002436 else:
tiernof97fd272016-07-11 14:32:37 +02002437 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_name=datacenter)
2438 if len(vims) == 0:
2439 raise NfvoException("datacenter '{}' not found".format(str(datacenter)), HTTP_Not_Found)
2440 elif len(vims)>1:
2441 #print "nfvo.datacenter_action() error. Several datacenters found"
2442 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002443 datacenter_id=vims.keys()[0]
2444 myvim=vims[datacenter_id]
2445
2446 if 'net-update' in action_dict:
tiernoae4a8d12016-07-08 12:30:39 +02002447 try:
tiernof97fd272016-07-11 14:32:37 +02002448 nets = myvim.get_network_list(filter_dict={'shared': True, 'admin_state_up': True, 'status': 'ACTIVE'})
tiernoae4a8d12016-07-08 12:30:39 +02002449 #print content
2450 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002451 #logger.error("nfvo.datacenter_action() Not possible to get_network_list from VIM: %s ", str(e))
2452 raise NfvoException(str(e), HTTP_Internal_Server_Error)
tierno7edb6752016-03-21 17:37:52 +01002453 #update nets Change from VIM format to NFVO format
2454 net_list=[]
tiernof97fd272016-07-11 14:32:37 +02002455 for net in nets:
tierno7edb6752016-03-21 17:37:52 +01002456 net_nfvo={'datacenter_id': datacenter_id}
2457 net_nfvo['name'] = net['name']
2458 #net_nfvo['description']= net['name']
2459 net_nfvo['vim_net_id'] = net['id']
2460 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
2461 net_nfvo['shared'] = net['shared']
2462 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
2463 net_list.append(net_nfvo)
tiernof97fd272016-07-11 14:32:37 +02002464 inserted, deleted = mydb.update_datacenter_nets(datacenter_id, net_list)
2465 logger.info("Inserted %d nets, deleted %d old nets", inserted, deleted)
2466 return inserted
tierno7edb6752016-03-21 17:37:52 +01002467 elif 'net-edit' in action_dict:
2468 net = action_dict['net-edit'].pop('net')
tierno42fcc3b2016-07-06 17:20:40 +02002469 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
tiernof97fd272016-07-11 14:32:37 +02002470 result = mydb.update_rows('datacenter_nets', action_dict['net-edit'],
tierno7edb6752016-03-21 17:37:52 +01002471 WHERE={'datacenter_id':datacenter_id, what: net})
tiernof97fd272016-07-11 14:32:37 +02002472 return result
tierno7edb6752016-03-21 17:37:52 +01002473 elif 'net-delete' in action_dict:
2474 net = action_dict['net-deelte'].get('net')
tierno42fcc3b2016-07-06 17:20:40 +02002475 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
tiernof97fd272016-07-11 14:32:37 +02002476 result = mydb.delete_row(FROM='datacenter_nets',
tierno7edb6752016-03-21 17:37:52 +01002477 WHERE={'datacenter_id':datacenter_id, what: net})
tiernof97fd272016-07-11 14:32:37 +02002478 return result
tierno7edb6752016-03-21 17:37:52 +01002479
2480 else:
tiernof97fd272016-07-11 14:32:37 +02002481 raise NfvoException("Unknown action " + str(action_dict), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01002482
2483def datacenter_edit_netmap(mydb, tenant_id, datacenter, netmap, action_dict):
2484 #get datacenter info
tierno42fcc3b2016-07-06 17:20:40 +02002485 if utils.check_valid_uuid(datacenter):
tiernof97fd272016-07-11 14:32:37 +02002486 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_id=datacenter)
tierno7edb6752016-03-21 17:37:52 +01002487 else:
tiernof97fd272016-07-11 14:32:37 +02002488 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_name=datacenter)
2489 if len(vims) == 0:
2490 raise NfvoException("datacenter '{}' not found".format(str(datacenter)), HTTP_Not_Found)
2491 elif len(vims)>1:
2492 #print "nfvo.datacenter_action() error. Several datacenters found"
2493 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002494 datacenter_id=vims.keys()[0]
2495
tierno42fcc3b2016-07-06 17:20:40 +02002496 what = 'uuid' if utils.check_valid_uuid(netmap) else 'name'
tiernof97fd272016-07-11 14:32:37 +02002497 result = mydb.update_rows('datacenter_nets', action_dict['netmap'],
tierno7edb6752016-03-21 17:37:52 +01002498 WHERE={'datacenter_id':datacenter_id, what: netmap})
tiernof97fd272016-07-11 14:32:37 +02002499 return result
tierno7edb6752016-03-21 17:37:52 +01002500
2501def datacenter_new_netmap(mydb, tenant_id, datacenter, action_dict=None):
2502 #get datacenter info
tierno42fcc3b2016-07-06 17:20:40 +02002503 if utils.check_valid_uuid(datacenter):
tiernof97fd272016-07-11 14:32:37 +02002504 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_id=datacenter)
tierno7edb6752016-03-21 17:37:52 +01002505 else:
tiernof97fd272016-07-11 14:32:37 +02002506 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_name=datacenter)
2507 if len(vims) == 0:
2508 raise NfvoException("datacenter '{}' not found".format(datacenter), HTTP_Not_Found)
2509 elif len(vims)>1:
2510 #logger.error("nfvo.datacenter_new_netmap() error. Several datacenters found")
2511 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002512 datacenter_id=vims.keys()[0]
2513 myvim=vims[datacenter_id]
2514 filter_dict={}
2515 if action_dict:
2516 action_dict = action_dict["netmap"]
2517 if 'vim_id' in action_dict:
2518 filter_dict["id"] = action_dict['vim_id']
2519 if 'vim_name' in action_dict:
2520 filter_dict["name"] = action_dict['vim_name']
2521 else:
2522 filter_dict["shared"] = True
2523
tiernoae4a8d12016-07-08 12:30:39 +02002524 try:
tiernof97fd272016-07-11 14:32:37 +02002525 vim_nets = myvim.get_network_list(filter_dict=filter_dict)
tiernoae4a8d12016-07-08 12:30:39 +02002526 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002527 #logger.error("nfvo.datacenter_new_netmap() Not possible to get_network_list from VIM: %s ", str(e))
2528 raise NfvoException(str(e), HTTP_Internal_Server_Error)
2529 if len(vim_nets)>1 and action_dict:
2530 raise NfvoException("more than two networks found, specify with vim_id", HTTP_Conflict)
2531 elif len(vim_nets)==0: # and action_dict:
2532 raise NfvoException("Not found a network at VIM with " + str(filter_dict), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002533 net_list=[]
tiernof97fd272016-07-11 14:32:37 +02002534 for net in vim_nets:
tierno7edb6752016-03-21 17:37:52 +01002535 net_nfvo={'datacenter_id': datacenter_id}
2536 if action_dict and "name" in action_dict:
2537 net_nfvo['name'] = action_dict['name']
2538 else:
2539 net_nfvo['name'] = net['name']
2540 #net_nfvo['description']= net['name']
2541 net_nfvo['vim_net_id'] = net['id']
2542 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
2543 net_nfvo['shared'] = net['shared']
2544 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
tiernof97fd272016-07-11 14:32:37 +02002545 try:
2546 net_id = mydb.new_row("datacenter_nets", net_nfvo, add_uuid=True)
tierno7edb6752016-03-21 17:37:52 +01002547 net_nfvo["status"] = "OK"
tiernof97fd272016-07-11 14:32:37 +02002548 net_nfvo["uuid"] = net_id
2549 except db_base_Exception as e:
2550 if action_dict:
2551 raise
2552 else:
2553 net_nfvo["status"] = "FAIL: " + str(e)
tierno7edb6752016-03-21 17:37:52 +01002554 net_list.append(net_nfvo)
tiernof97fd272016-07-11 14:32:37 +02002555 return net_list
tierno7edb6752016-03-21 17:37:52 +01002556
2557def vim_action_get(mydb, tenant_id, datacenter, item, name):
2558 #get datacenter info
tierno42fcc3b2016-07-06 17:20:40 +02002559 if utils.check_valid_uuid(datacenter):
tiernof97fd272016-07-11 14:32:37 +02002560 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_id=datacenter)
tierno7edb6752016-03-21 17:37:52 +01002561 else:
tiernof97fd272016-07-11 14:32:37 +02002562 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_name=datacenter)
2563 if len(vims) == 0:
2564 raise NfvoException("datacenter '{}' not found".format(datacenter), HTTP_Not_Found)
2565 elif len(vims)>1:
2566 #logger.error("nfvo.datacenter_new_netmap() error. Several datacenters found")
2567 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002568 datacenter_id=vims.keys()[0]
2569 myvim=vims[datacenter_id]
2570 filter_dict={}
2571 if name:
tierno42fcc3b2016-07-06 17:20:40 +02002572 if utils.check_valid_uuid(name):
tierno7edb6752016-03-21 17:37:52 +01002573 filter_dict["id"] = name
2574 else:
2575 filter_dict["name"] = name
tiernoae4a8d12016-07-08 12:30:39 +02002576 try:
2577 if item=="networks":
2578 #filter_dict['tenant_id'] = myvim['tenant_id']
2579 content = myvim.get_network_list(filter_dict=filter_dict)
2580 elif item=="tenants":
2581 content = myvim.get_tenant_list(filter_dict=filter_dict)
2582 else:
tiernof97fd272016-07-11 14:32:37 +02002583 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernobe41e222016-09-02 15:16:13 +02002584 logger.debug("vim_action response %s", content) #update nets Change from VIM format to NFVO format
tiernoae4a8d12016-07-08 12:30:39 +02002585 if name and len(content)==1:
tiernof97fd272016-07-11 14:32:37 +02002586 return {item[:-1]: content[0]}
tiernoae4a8d12016-07-08 12:30:39 +02002587 elif name and len(content)==0:
tiernof97fd272016-07-11 14:32:37 +02002588 raise NfvoException("No {} found with ".format(item[:-1]) + " and ".join(map(lambda x: str(x[0])+": "+str(x[1]), filter_dict.iteritems())),
tiernobe41e222016-09-02 15:16:13 +02002589 datacenter)
tiernoae4a8d12016-07-08 12:30:39 +02002590 else:
tiernof97fd272016-07-11 14:32:37 +02002591 return {item: content}
tiernoae4a8d12016-07-08 12:30:39 +02002592 except vimconn.vimconnException as e:
2593 print "vim_action Not possible to get_%s_list from VIM: %s " % (item, str(e))
tiernof97fd272016-07-11 14:32:37 +02002594 raise NfvoException("Not possible to get_{}_list from VIM: {}".format(item, str(e)), e.http_code)
tierno7edb6752016-03-21 17:37:52 +01002595
2596def vim_action_delete(mydb, tenant_id, datacenter, item, name):
2597 #get datacenter info
tierno392f2852016-05-13 12:28:55 +02002598 if tenant_id == "any":
2599 tenant_id=None
2600
tierno66aa0372016-07-06 17:31:12 +02002601 if utils.check_valid_uuid(datacenter):
tiernof97fd272016-07-11 14:32:37 +02002602 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_id=datacenter)
tierno7edb6752016-03-21 17:37:52 +01002603 else:
tiernof97fd272016-07-11 14:32:37 +02002604 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_name=datacenter)
2605 if len(vims) == 0:
2606 raise NfvoException("datacenter '{}' not found".format(datacenter), HTTP_Not_Found)
2607 elif len(vims)>1:
2608 #logger.error("nfvo.datacenter_new_netmap() error. Several datacenters found")
2609 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002610 datacenter_id=vims.keys()[0]
2611 myvim=vims[datacenter_id]
tierno392f2852016-05-13 12:28:55 +02002612 #get uuid name
tiernof97fd272016-07-11 14:32:37 +02002613 content = vim_action_get(mydb, tenant_id, datacenter, item, name)
2614 logger.debug("vim_action_delete vim response: " + str(content))
tierno392f2852016-05-13 12:28:55 +02002615 items = content.values()[0]
2616 if type(items)==list and len(items)==0:
tiernof97fd272016-07-11 14:32:37 +02002617 raise NfvoException("Not found " + item, HTTP_Not_Found)
tierno392f2852016-05-13 12:28:55 +02002618 elif type(items)==list and len(items)>1:
tiernof97fd272016-07-11 14:32:37 +02002619 raise NfvoException("Found more than one {} with this name. Use uuid.".format(item), HTTP_Not_Found)
tierno392f2852016-05-13 12:28:55 +02002620 else: # it is a dict
2621 item_id = items["id"]
2622 item_name = str(items.get("name"))
tierno7edb6752016-03-21 17:37:52 +01002623
tiernoae4a8d12016-07-08 12:30:39 +02002624 try:
2625 if item=="networks":
2626 content = myvim.delete_network(item_id)
2627 elif item=="tenants":
2628 content = myvim.delete_tenant(item_id)
2629 else:
tiernof97fd272016-07-11 14:32:37 +02002630 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernoae4a8d12016-07-08 12:30:39 +02002631 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002632 #logger.error( "vim_action Not possible to delete_{} {}from VIM: {} ".format(item, name, str(e)))
2633 raise NfvoException("Not possible to delete_{} {} from VIM: {}".format(item, name, str(e)), e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02002634
tiernof97fd272016-07-11 14:32:37 +02002635 return "{} {} {} deleted".format(item[:-1], item_id,item_name)
tierno7edb6752016-03-21 17:37:52 +01002636
2637def vim_action_create(mydb, tenant_id, datacenter, item, descriptor):
2638 #get datacenter info
2639 print "vim_action_create descriptor", descriptor
tierno392f2852016-05-13 12:28:55 +02002640 if tenant_id == "any":
2641 tenant_id=None
2642
tierno42fcc3b2016-07-06 17:20:40 +02002643 if utils.check_valid_uuid(datacenter):
tiernof97fd272016-07-11 14:32:37 +02002644 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_id=datacenter)
tierno7edb6752016-03-21 17:37:52 +01002645 else:
tiernof97fd272016-07-11 14:32:37 +02002646 vims = get_vim(mydb, nfvo_tenant=tenant_id, datacenter_name=datacenter)
2647 if len(vims) == 0:
2648 raise NfvoException("datacenter '{}' not found".format(datacenter), HTTP_Not_Found)
2649 elif len(vims)>1:
2650 #logger.error("nfvo.datacenter_new_netmap() error. Several datacenters found")
2651 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002652 datacenter_id=vims.keys()[0]
2653 myvim=vims[datacenter_id]
2654
tiernoae4a8d12016-07-08 12:30:39 +02002655 try:
2656 if item=="networks":
2657 net = descriptor["network"]
2658 net_name = net.pop("name")
2659 net_type = net.pop("type", "bridge")
garciadeblas9f8456e2016-09-05 05:02:59 +02002660 net_public = net.pop("shared", False)
2661 net_ipprofile = net.pop("ip_profile", None)
2662 content = myvim.new_network(net_name, net_type, net_ipprofile, shared=net_public, **net)
tiernoae4a8d12016-07-08 12:30:39 +02002663 elif item=="tenants":
2664 tenant = descriptor["tenant"]
2665 content = myvim.new_tenant(tenant["name"], tenant.get("description"))
2666 else:
tiernof97fd272016-07-11 14:32:37 +02002667 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernoae4a8d12016-07-08 12:30:39 +02002668 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002669 raise NfvoException("Not possible to create {} at VIM: {}".format(item, str(e)), e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02002670
tierno7edb6752016-03-21 17:37:52 +01002671 return vim_action_get(mydb, tenant_id, datacenter, item, content)
2672
tierno66aa0372016-07-06 17:31:12 +02002673