blob: 49587626a3f6375afff48b3bc6d5186126711eb7 [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
montesmoreno0c8def02016-12-22 12:16:23 +000045global default_volume_size
46default_volume_size = '5' #size in GB
tierno7edb6752016-03-21 17:37:52 +010047
tiernoae4a8d12016-07-08 12:30:39 +020048
tierno7edb6752016-03-21 17:37:52 +010049vimconn_imported={} #dictionary with VIM type as key, loaded module as value
tierno73ad9e42016-09-12 18:11:11 +020050logger = logging.getLogger('openmano.nfvo')
tierno7edb6752016-03-21 17:37:52 +010051
52class NfvoException(Exception):
tiernoae4a8d12016-07-08 12:30:39 +020053 def __init__(self, message, http_code):
54 self.http_code = http_code
55 Exception.__init__(self, message)
tierno7edb6752016-03-21 17:37:52 +010056
57
58def get_flavorlist(mydb, vnf_id, nfvo_tenant=None):
59 '''Obtain flavorList
60 return result, content:
61 <0, error_text upon error
62 nb_records, flavor_list on success
63 '''
64 WHERE_dict={}
65 WHERE_dict['vnf_id'] = vnf_id
66 if nfvo_tenant is not None:
67 WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
68
69 #result, content = mydb.get_table(FROM='vms join vnfs on vms.vnf_id = vnfs.uuid',SELECT=('uuid'),WHERE=WHERE_dict )
70 #result, content = mydb.get_table(FROM='vms',SELECT=('vim_flavor_id',),WHERE=WHERE_dict )
tiernof97fd272016-07-11 14:32:37 +020071 flavors = mydb.get_rows(FROM='vms join flavors on vms.flavor_id=flavors.uuid',SELECT=('flavor_id',),WHERE=WHERE_dict )
72 #print "get_flavor_list result:", result
73 #print "get_flavor_list content:", content
tierno7edb6752016-03-21 17:37:52 +010074 flavorList=[]
tiernof97fd272016-07-11 14:32:37 +020075 for flavor in flavors:
tierno7edb6752016-03-21 17:37:52 +010076 flavorList.append(flavor['flavor_id'])
tiernof97fd272016-07-11 14:32:37 +020077 return flavorList
tierno7edb6752016-03-21 17:37:52 +010078
79def get_imagelist(mydb, vnf_id, nfvo_tenant=None):
80 '''Obtain imageList
81 return result, content:
82 <0, error_text upon error
83 nb_records, flavor_list on success
84 '''
85 WHERE_dict={}
86 WHERE_dict['vnf_id'] = vnf_id
87 if nfvo_tenant is not None:
88 WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
89
90 #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 +020091 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 +010092 imageList=[]
tiernof97fd272016-07-11 14:32:37 +020093 for image in images:
tierno7edb6752016-03-21 17:37:52 +010094 imageList.append(image['image_id'])
tiernof97fd272016-07-11 14:32:37 +020095 return imageList
tierno7edb6752016-03-21 17:37:52 +010096
tiernoa2793912016-10-04 08:15:08 +000097def get_vim(mydb, nfvo_tenant=None, datacenter_id=None, datacenter_name=None, datacenter_tenant_id=None,
98 vim_tenant=None, vim_tenant_name=None, vim_user=None, vim_passwd=None):
tierno7edb6752016-03-21 17:37:52 +010099 '''Obtain a dictionary of VIM (datacenter) classes with some of the input parameters
tiernobe41e222016-09-02 15:16:13 +0200100 return dictionary with {datacenter_id: vim_class, ... }. vim_class contain:
tierno7edb6752016-03-21 17:37:52 +0100101 'nfvo_tenant_id','datacenter_id','vim_tenant_id','vim_url','vim_url_admin','datacenter_name','type','user','passwd'
tiernobe41e222016-09-02 15:16:13 +0200102 raise exception upon error
tierno7edb6752016-03-21 17:37:52 +0100103 '''
104 WHERE_dict={}
105 if nfvo_tenant is not None: WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
106 if datacenter_id is not None: WHERE_dict['d.uuid'] = datacenter_id
tiernoa2793912016-10-04 08:15:08 +0000107 if datacenter_tenant_id is not None: WHERE_dict['datacenter_tenant_id'] = datacenter_tenant_id
tierno7edb6752016-03-21 17:37:52 +0100108 if datacenter_name is not None: WHERE_dict['d.name'] = datacenter_name
109 if vim_tenant is not None: WHERE_dict['dt.vim_tenant_id'] = vim_tenant
tiernoa2793912016-10-04 08:15:08 +0000110 if vim_tenant_name is not None: WHERE_dict['vim_tenant_name'] = vim_tenant_name
111 if nfvo_tenant or vim_tenant or vim_tenant_name or datacenter_tenant_id:
tierno7edb6752016-03-21 17:37:52 +0100112 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'
tierno8008c3a2016-10-13 15:34:28 +0000113 select_ = ('type','d.config as config','d.uuid as datacenter_id', 'vim_url', 'vim_url_admin', 'd.name as datacenter_name',
tierno7edb6752016-03-21 17:37:52 +0100114 'dt.uuid as datacenter_tenant_id','dt.vim_tenant_name as vim_tenant_name','dt.vim_tenant_id as vim_tenant_id',
tierno8008c3a2016-10-13 15:34:28 +0000115 'user','passwd', 'dt.config as dt_config')
tierno7edb6752016-03-21 17:37:52 +0100116 else:
117 from_ = 'datacenters as d'
118 select_ = ('type','config','d.uuid as datacenter_id', 'vim_url', 'vim_url_admin', 'd.name as datacenter_name')
tiernof97fd272016-07-11 14:32:37 +0200119 try:
120 vims = mydb.get_rows(FROM=from_, SELECT=select_, WHERE=WHERE_dict )
121 vim_dict={}
122 for vim in vims:
123 extra={'datacenter_tenant_id': vim.get('datacenter_tenant_id')}
tierno8008c3a2016-10-13 15:34:28 +0000124 if vim["config"]:
tiernof97fd272016-07-11 14:32:37 +0200125 extra.update(yaml.load(vim["config"]))
tierno8008c3a2016-10-13 15:34:28 +0000126 if vim.get('dt_config'):
127 extra.update(yaml.load(vim["dt_config"]))
tiernof97fd272016-07-11 14:32:37 +0200128 if vim["type"] not in vimconn_imported:
129 module_info=None
130 try:
131 module = "vimconn_" + vim["type"]
132 module_info = imp.find_module(module)
133 vim_conn = imp.load_module(vim["type"], *module_info)
134 vimconn_imported[vim["type"]] = vim_conn
135 except (IOError, ImportError) as e:
136 if module_info and module_info[0]:
137 file.close(module_info[0])
138 raise NfvoException("Unknown vim type '{}'. Can not open file '{}.py'; {}: {}".format(
139 vim["type"], module, type(e).__name__, str(e)), HTTP_Bad_Request)
140
tierno7edb6752016-03-21 17:37:52 +0100141 try:
tiernof97fd272016-07-11 14:32:37 +0200142 #if not tenant:
143 # return -HTTP_Bad_Request, "You must provide a valid tenant name or uuid for VIM %s" % ( vim["type"])
144 vim_dict[ vim['datacenter_id'] ] = vimconn_imported[ vim["type"] ].vimconnector(
145 uuid=vim['datacenter_id'], name=vim['datacenter_name'],
tierno3ae39742016-09-07 12:17:51 +0200146 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 +0200147 url=vim['vim_url'], url_admin=vim['vim_url_admin'],
tierno3ae39742016-09-07 12:17:51 +0200148 user=vim.get('user',vim_user), passwd=vim.get('passwd',vim_passwd),
tiernof97fd272016-07-11 14:32:37 +0200149 config=extra
150 )
151 except Exception as e:
152 raise NfvoException("Error at VIM {}; {}: {}".format(vim["type"], type(e).__name__, str(e)), HTTP_Internal_Server_Error)
153 return vim_dict
154 except db_base_Exception as e:
155 raise NfvoException(str(e) + " at nfvo.get_vim", e.http_code)
156
tierno7edb6752016-03-21 17:37:52 +0100157def rollback(mydb, vims, rollback_list):
158 undeleted_items=[]
159 #delete things by reverse order
160 for i in range(len(rollback_list)-1, -1, -1):
161 item = rollback_list[i]
162 if item["where"]=="vim":
163 if item["vim_id"] not in vims:
164 continue
165 vim=vims[ item["vim_id"] ]
tiernoae4a8d12016-07-08 12:30:39 +0200166 try:
167 if item["what"]=="image":
168 vim.delete_image(item["uuid"])
tiernof97fd272016-07-11 14:32:37 +0200169 mydb.delete_row(FROM="datacenters_images", WHERE={"datacenter_id": vim["id"], "vim_id":item["uuid"]})
tiernoae4a8d12016-07-08 12:30:39 +0200170 elif item["what"]=="flavor":
171 vim.delete_flavor(item["uuid"])
garciadeblas9f8456e2016-09-05 05:02:59 +0200172 mydb.delete_row(FROM="datacenters_flavors", WHERE={"datacenter_id": vim["id"], "vim_id":item["uuid"]})
tiernoae4a8d12016-07-08 12:30:39 +0200173 elif item["what"]=="network":
174 vim.delete_network(item["uuid"])
175 elif item["what"]=="vm":
176 vim.delete_vminstance(item["uuid"])
177 except vimconn.vimconnException as e:
178 logger.error("Error in rollback. Not possible to delete VIM %s '%s'. Message: %s", item['what'], item["uuid"], str(e))
179 undeleted_items.append("{} {} from VIM {}".format(item['what'], item["uuid"], vim["name"]))
tiernof97fd272016-07-11 14:32:37 +0200180 except db_base_Exception as e:
181 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 +0200182
tierno7edb6752016-03-21 17:37:52 +0100183 else: # where==mano
tiernof97fd272016-07-11 14:32:37 +0200184 try:
185 if item["what"]=="image":
186 mydb.delete_row(FROM="images", WHERE={"uuid": item["uuid"]})
187 elif item["what"]=="flavor":
188 mydb.delete_row(FROM="flavors", WHERE={"uuid": item["uuid"]})
189 except db_base_Exception as e:
190 logger.error("Error in rollback. Not possible to delete %s '%s' from DB. Message: %s", item['what'], item["uuid"], str(e))
191 undeleted_items.append("{} '{}'".format(item['what'], item["uuid"]))
tierno7edb6752016-03-21 17:37:52 +0100192 if len(undeleted_items)==0:
193 return True," Rollback successful."
194 else:
195 return False," Rollback fails to delete: " + str(undeleted_items)
196
197def check_vnf_descriptor(vnf_descriptor):
198 global global_config
199 #create a dictionary with vnfc-name: vnfc:interface-list key:values pairs
200 vnfc_interfaces={}
201 for vnfc in vnf_descriptor["vnf"]["VNFC"]:
202 name_list = []
203 #dataplane interfaces
204 for numa in vnfc.get("numas",() ):
205 for interface in numa.get("interfaces",()):
206 if interface["name"] in name_list:
tiernof97fd272016-07-11 14:32:37 +0200207 raise NfvoException("Error at vnf:VNFC[name:'{}']:numas:interfaces:name, interface name '{}' already used in this VNFC"\
208 .format(vnfc["name"], interface["name"]),
209 HTTP_Bad_Request)
210 name_list.append( interface["name"] )
tierno7edb6752016-03-21 17:37:52 +0100211 #bridge interfaces
212 for interface in vnfc.get("bridge-ifaces",() ):
213 if interface["name"] in name_list:
tiernof97fd272016-07-11 14:32:37 +0200214 raise NfvoException("Error at vnf:VNFC[name:'{}']:bridge-ifaces:name, interface name '{}' already used in this VNFC"\
215 .format(vnfc["name"], interface["name"]),
216 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100217 name_list.append( interface["name"] )
218 vnfc_interfaces[ vnfc["name"] ] = name_list
219
220 #check if the info in external_connections matches with the one in the vnfcs
221 name_list=[]
222 for external_connection in vnf_descriptor["vnf"].get("external-connections",() ):
223 if external_connection["name"] in name_list:
tiernof97fd272016-07-11 14:32:37 +0200224 raise NfvoException("Error at vnf:external-connections:name, value '{}' already used as an external-connection"\
225 .format(external_connection["name"]),
226 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100227 name_list.append(external_connection["name"])
228 if external_connection["VNFC"] not in vnfc_interfaces:
tiernof97fd272016-07-11 14:32:37 +0200229 raise NfvoException("Error at vnf:external-connections[name:'{}']:VNFC, value '{}' does not match any VNFC"\
230 .format(external_connection["name"], external_connection["VNFC"]),
231 HTTP_Bad_Request)
232
tierno7edb6752016-03-21 17:37:52 +0100233 if external_connection["local_iface_name"] not in vnfc_interfaces[ external_connection["VNFC"] ]:
tiernof97fd272016-07-11 14:32:37 +0200234 raise NfvoException("Error at vnf:external-connections[name:'{}']:local_iface_name, value '{}' does not match any interface of this VNFC"\
235 .format(external_connection["name"], external_connection["local_iface_name"]),
236 HTTP_Bad_Request )
tierno7edb6752016-03-21 17:37:52 +0100237
238 #check if the info in internal_connections matches with the one in the vnfcs
239 name_list=[]
240 for internal_connection in vnf_descriptor["vnf"].get("internal-connections",() ):
241 if internal_connection["name"] in name_list:
tiernof97fd272016-07-11 14:32:37 +0200242 raise NfvoException("Error at vnf:internal-connections:name, value '%s' already used as an internal-connection"\
243 .format(internal_connection["name"]),
244 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100245 name_list.append(internal_connection["name"])
246 #We should check that internal-connections of type "ptp" have only 2 elements
247 if len(internal_connection["elements"])>2 and internal_connection["type"] == "ptp":
tiernof97fd272016-07-11 14:32:37 +0200248 raise NfvoException("Error at vnf:internal-connections[name:'{}']:elements, size must be 2 for a type:'ptp'"\
249 .format(internal_connection["name"]),
250 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100251 for port in internal_connection["elements"]:
252 if port["VNFC"] not in vnfc_interfaces:
tiernof97fd272016-07-11 14:32:37 +0200253 raise NfvoException("Error at vnf:internal-connections[name:'{}']:elements[]:VNFC, value '{}' does not match any VNFC"\
254 .format(internal_connection["name"], port["VNFC"]),
255 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100256 if port["local_iface_name"] not in vnfc_interfaces[ port["VNFC"] ]:
tiernof97fd272016-07-11 14:32:37 +0200257 raise NfvoException("Error at vnf:internal-connections[name:'{}']:elements[]:local_iface_name, value '{}' does not match any interface of this VNFC"\
258 .format(internal_connection["name"], port["local_iface_name"]),
259 HTTP_Bad_Request)
260 return -HTTP_Bad_Request,
tierno7edb6752016-03-21 17:37:52 +0100261
tierno5e91eb82016-10-04 09:39:07 +0000262def create_or_use_image(mydb, vims, image_dict, rollback_list, only_create_at_vim=False, return_on_error = None):
tierno7edb6752016-03-21 17:37:52 +0100263 #look if image exist
264 if only_create_at_vim:
265 image_mano_id = image_dict['uuid']
tierno5e91eb82016-10-04 09:39:07 +0000266 if return_on_error == None:
267 return_on_error = True
tierno7edb6752016-03-21 17:37:52 +0100268 else:
garciadeblas14480452017-01-10 13:08:07 +0100269 if image_dict['location']:
garciadeblasb69fa9f2016-09-28 12:04:10 +0200270 images = mydb.get_rows(FROM="images", WHERE={'location':image_dict['location'], 'metadata':image_dict['metadata']})
271 else:
272 images = mydb.get_rows(FROM="images", WHERE={'universal_name':image_dict['universal_name'], 'checksum':image_dict['checksum']})
tiernof97fd272016-07-11 14:32:37 +0200273 if len(images)>=1:
274 image_mano_id = images[0]['uuid']
tierno7edb6752016-03-21 17:37:52 +0100275 else:
garciadeblas14480452017-01-10 13:08:07 +0100276 #create image in MANO DB
tierno7edb6752016-03-21 17:37:52 +0100277 temp_image_dict={'name':image_dict['name'], 'description':image_dict.get('description',None),
garciadeblasb69fa9f2016-09-28 12:04:10 +0200278 'location':image_dict['location'], 'metadata':image_dict.get('metadata',None),
279 'universal_name':image_dict['universal_name'] , 'checksum':image_dict['checksum']
tierno7edb6752016-03-21 17:37:52 +0100280 }
garciadeblas14480452017-01-10 13:08:07 +0100281 #temp_image_dict['location'] = image_dict.get('new_location') if image_dict['location'] is None
tiernof97fd272016-07-11 14:32:37 +0200282 image_mano_id = mydb.new_row('images', temp_image_dict, add_uuid=True)
283 rollback_list.append({"where":"mano", "what":"image","uuid":image_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100284 #create image at every vim
285 for vim_id,vim in vims.iteritems():
286 image_created="false"
287 #look at database
tiernof97fd272016-07-11 14:32:37 +0200288 image_db = mydb.get_rows(FROM="datacenters_images", WHERE={'datacenter_id':vim_id, 'image_id':image_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100289 #look at VIM if this image exist
tiernoae4a8d12016-07-08 12:30:39 +0200290 try:
garciadeblasb69fa9f2016-09-28 12:04:10 +0200291 if image_dict['location'] is not None:
292 image_vim_id = vim.get_image_id_from_path(image_dict['location'])
293 else:
garciadeblas30833382017-01-09 09:46:31 +0100294 filter_dict = {}
295 filter_dict['name'] = image_dict['universal_name']
296 if image_dict.get('checksum') != None:
297 filter_dict['checksum'] = image_dict['checksum']
garciadeblasbb6a1ed2016-09-30 14:02:09 +0000298 #logger.debug('>>>>>>>> Filter dict: %s', str(filter_dict))
garciadeblasb69fa9f2016-09-28 12:04:10 +0200299 vim_images = vim.get_image_list(filter_dict)
garciadeblas14480452017-01-10 13:08:07 +0100300 #logger.debug('>>>>>>>> VIM images: %s', str(vim_images))
garciadeblasb69fa9f2016-09-28 12:04:10 +0200301 if len(vim_images) > 1:
garciadeblas3fa2c052017-01-05 12:00:08 +0100302 raise vimconn.vimconnException("More than one candidate VIM image found for filter: {}".format(str(filter_dict)), HTTP_Conflict)
garciadeblasbb6a1ed2016-09-30 14:02:09 +0000303 elif len(vim_images) == 0:
garciadeblas3fa2c052017-01-05 12:00:08 +0100304 raise vimconn.vimconnNotFoundException("Image not found at VIM with filter: '{}'".format(str(filter_dict)))
garciadeblasb69fa9f2016-09-28 12:04:10 +0200305 else:
garciadeblas14480452017-01-10 13:08:07 +0100306 #logger.debug('>>>>>>>> VIM image 0: %s', str(vim_images[0]))
307 image_vim_id = vim_images[0]['id']
garciadeblasb69fa9f2016-09-28 12:04:10 +0200308
tiernoae4a8d12016-07-08 12:30:39 +0200309 except vimconn.vimconnNotFoundException as e:
garciadeblas14480452017-01-10 13:08:07 +0100310 #Create the image in VIM only if image_dict['location'] or image_dict['new_location'] is not None
tiernoae4a8d12016-07-08 12:30:39 +0200311 try:
garciadeblas14480452017-01-10 13:08:07 +0100312 #image_dict['location']=image_dict.get('new_location') if image_dict['location'] is None
313 if image_dict['location']:
314 image_vim_id = vim.new_image(image_dict)
315 rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"image","uuid":image_vim_id})
316 image_created="true"
317 else:
318 raise vimconn.vimconnException("Cannot create image without location")
tiernoae4a8d12016-07-08 12:30:39 +0200319 except vimconn.vimconnException as e:
320 if return_on_error:
garciadeblas14480452017-01-10 13:08:07 +0100321 logger.error("Error creating image at VIM '%s': %s", vim["name"], str(e))
tiernof97fd272016-07-11 14:32:37 +0200322 raise
tierno5e91eb82016-10-04 09:39:07 +0000323 image_vim_id = None
garciadeblas14480452017-01-10 13:08:07 +0100324 logger.warn("Error creating image at VIM '%s': %s", vim["name"], str(e))
tiernoae4a8d12016-07-08 12:30:39 +0200325 continue
326 except vimconn.vimconnException as e:
tierno5e91eb82016-10-04 09:39:07 +0000327 if return_on_error:
328 logger.error("Error contacting VIM to know if the image exists at VIM: %s", str(e))
329 raise
garciadeblasb69fa9f2016-09-28 12:04:10 +0200330 logger.warn("Error contacting VIM to know if the image exists at VIM: %s", str(e))
tierno5e91eb82016-10-04 09:39:07 +0000331 image_vim_id = None
garciadeblas30833382017-01-09 09:46:31 +0100332 continue
garciadeblasb69fa9f2016-09-28 12:04:10 +0200333 #if we reach here, the image has been created or existed
tiernof97fd272016-07-11 14:32:37 +0200334 if len(image_db)==0:
tierno7edb6752016-03-21 17:37:52 +0100335 #add new vim_id at datacenters_images
336 mydb.new_row('datacenters_images', {'datacenter_id':vim_id, 'image_id':image_mano_id, 'vim_id': image_vim_id, 'created':image_created})
337 elif image_db[0]["vim_id"]!=image_vim_id:
338 #modify existing vim_id at datacenters_images
339 mydb.update_rows('datacenters_images', UPDATE={'vim_id':image_vim_id}, WHERE={'datacenter_id':vim_id, 'image_id':image_mano_id})
340
tiernof97fd272016-07-11 14:32:37 +0200341 return image_vim_id if only_create_at_vim else image_mano_id
tierno7edb6752016-03-21 17:37:52 +0100342
tierno5e91eb82016-10-04 09:39:07 +0000343def create_or_use_flavor(mydb, vims, flavor_dict, rollback_list, only_create_at_vim=False, return_on_error = None):
tierno7edb6752016-03-21 17:37:52 +0100344 temp_flavor_dict= {'disk':flavor_dict.get('disk',1),
345 'ram':flavor_dict.get('ram'),
346 'vcpus':flavor_dict.get('vcpus'),
347 }
348 if 'extended' in flavor_dict and flavor_dict['extended']==None:
349 del flavor_dict['extended']
350 if 'extended' in flavor_dict:
351 temp_flavor_dict['extended']=yaml.safe_dump(flavor_dict['extended'],default_flow_style=True,width=256)
352
353 #look if flavor exist
354 if only_create_at_vim:
355 flavor_mano_id = flavor_dict['uuid']
tierno5e91eb82016-10-04 09:39:07 +0000356 if return_on_error == None:
357 return_on_error = True
tierno7edb6752016-03-21 17:37:52 +0100358 else:
tiernof97fd272016-07-11 14:32:37 +0200359 flavors = mydb.get_rows(FROM="flavors", WHERE=temp_flavor_dict)
360 if len(flavors)>=1:
361 flavor_mano_id = flavors[0]['uuid']
tierno7edb6752016-03-21 17:37:52 +0100362 else:
363 #create flavor
364 #create one by one the images of aditional disks
365 dev_image_list=[] #list of images
366 if 'extended' in flavor_dict and flavor_dict['extended']!=None:
367 dev_nb=0
368 for device in flavor_dict['extended'].get('devices',[]):
garciadeblas41f18be2016-10-04 09:09:58 +0200369 if "image" not in device and "image name" not in device:
tierno7edb6752016-03-21 17:37:52 +0100370 continue
garciadeblasb69fa9f2016-09-28 12:04:10 +0200371 image_dict={}
372 image_dict['name']=device.get('image name',flavor_dict['name']+str(dev_nb)+"-img")
373 image_dict['universal_name']=device.get('image name')
374 image_dict['description']=flavor_dict['name']+str(dev_nb)+"-img"
375 image_dict['location']=device.get('image')
garciadeblas14480452017-01-10 13:08:07 +0100376 #image_dict['new_location']=vnfc.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +0200377 image_dict['checksum']=device.get('image checksum')
tierno7edb6752016-03-21 17:37:52 +0100378 image_metadata_dict = device.get('image metadata', None)
379 image_metadata_str = None
380 if image_metadata_dict != None:
381 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
382 image_dict['metadata']=image_metadata_str
tiernof97fd272016-07-11 14:32:37 +0200383 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
384 #print "Additional disk image id for VNFC %s: %s" % (flavor_dict['name']+str(dev_nb)+"-img", image_id)
tierno7edb6752016-03-21 17:37:52 +0100385 dev_image_list.append(image_id)
386 dev_nb += 1
387 temp_flavor_dict['name'] = flavor_dict['name']
388 temp_flavor_dict['description'] = flavor_dict.get('description',None)
tiernof97fd272016-07-11 14:32:37 +0200389 content = mydb.new_row('flavors', temp_flavor_dict, add_uuid=True)
390 flavor_mano_id= content
391 rollback_list.append({"where":"mano", "what":"flavor","uuid":flavor_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100392 #create flavor at every vim
393 if 'uuid' in flavor_dict:
394 del flavor_dict['uuid']
395 flavor_vim_id=None
396 for vim_id,vim in vims.items():
397 flavor_created="false"
398 #look at database
tiernof97fd272016-07-11 14:32:37 +0200399 flavor_db = mydb.get_rows(FROM="datacenters_flavors", WHERE={'datacenter_id':vim_id, 'flavor_id':flavor_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100400 #look at VIM if this flavor exist SKIPPED
401 #res_vim, flavor_vim_id = vim.get_flavor_id_from_path(flavor_dict['location'])
402 #if res_vim < 0:
403 # print "Error contacting VIM to know if the flavor %s existed previously." %flavor_vim_id
404 # continue
405 #elif res_vim==0:
406
407 #Create the flavor in VIM
408 #Translate images at devices from MANO id to VIM id
montesmoreno0c8def02016-12-22 12:16:23 +0000409 disk_list = []
tierno7edb6752016-03-21 17:37:52 +0100410 if 'extended' in flavor_dict and flavor_dict['extended']!=None and "devices" in flavor_dict['extended']:
411 #make a copy of original devices
412 devices_original=[]
montesmoreno0c8def02016-12-22 12:16:23 +0000413
tierno7edb6752016-03-21 17:37:52 +0100414 for device in flavor_dict["extended"].get("devices",[]):
415 dev={}
416 dev.update(device)
417 devices_original.append(dev)
418 if 'image' in device:
419 del device['image']
420 if 'image metadata' in device:
421 del device['image metadata']
422 dev_nb=0
423 for index in range(0,len(devices_original)) :
424 device=devices_original[index]
montesmoreno0c8def02016-12-22 12:16:23 +0000425 if "image" not in device and "image name" not in device:
426 if 'size' in device:
427 disk_list.append({'size': device.get('size', default_volume_size)})
tierno7edb6752016-03-21 17:37:52 +0100428 continue
garciadeblasb69fa9f2016-09-28 12:04:10 +0200429 image_dict={}
430 image_dict['name']=device.get('image name',flavor_dict['name']+str(dev_nb)+"-img")
431 image_dict['universal_name']=device.get('image name')
432 image_dict['description']=flavor_dict['name']+str(dev_nb)+"-img"
433 image_dict['location']=device.get('image')
garciadeblas14480452017-01-10 13:08:07 +0100434 #image_dict['new_location']=device.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +0200435 image_dict['checksum']=device.get('image checksum')
tierno7edb6752016-03-21 17:37:52 +0100436 image_metadata_dict = device.get('image metadata', None)
437 image_metadata_str = None
438 if image_metadata_dict != None:
439 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
440 image_dict['metadata']=image_metadata_str
tiernof97fd272016-07-11 14:32:37 +0200441 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 +0100442 image_dict["uuid"]=image_mano_id
tiernof97fd272016-07-11 14:32:37 +0200443 image_vim_id=create_or_use_image(mydb, vims, image_dict, rollback_list, only_create_at_vim=True, return_on_error=return_on_error)
montesmoreno0c8def02016-12-22 12:16:23 +0000444
445 #save disk information (image must be based on and size
446 disk_list.append({'image_id': image_vim_id, 'size': device.get('size', default_volume_size)})
447
tierno7edb6752016-03-21 17:37:52 +0100448 flavor_dict["extended"]["devices"][index]['imageRef']=image_vim_id
449 dev_nb += 1
tiernof97fd272016-07-11 14:32:37 +0200450 if len(flavor_db)>0:
tierno7edb6752016-03-21 17:37:52 +0100451 #check that this vim_id exist in VIM, if not create
452 flavor_vim_id=flavor_db[0]["vim_id"]
tiernoae4a8d12016-07-08 12:30:39 +0200453 try:
454 vim.get_flavor(flavor_vim_id)
455 continue #flavor exist
456 except vimconn.vimconnException:
457 pass
tierno7edb6752016-03-21 17:37:52 +0100458 #create flavor at vim
tiernoae4a8d12016-07-08 12:30:39 +0200459 logger.debug("nfvo.create_or_use_flavor() adding flavor to VIM %s", vim["name"])
460 try:
461 flavor_vim_id = vim.new_flavor(flavor_dict)
tierno7edb6752016-03-21 17:37:52 +0100462 rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"flavor","uuid":flavor_vim_id})
463 flavor_created="true"
tiernoae4a8d12016-07-08 12:30:39 +0200464 except vimconn.vimconnException as e:
465 if return_on_error:
466 logger.error("Error creating flavor at VIM %s: %s.", vim["name"], str(e))
tiernof97fd272016-07-11 14:32:37 +0200467 raise
tiernoae4a8d12016-07-08 12:30:39 +0200468 logger.warn("Error creating flavor at VIM %s: %s.", vim["name"], str(e))
tierno5e91eb82016-10-04 09:39:07 +0000469 flavor_vim_id = None
tiernoae4a8d12016-07-08 12:30:39 +0200470 continue
tierno7edb6752016-03-21 17:37:52 +0100471 #if reach here the flavor has been create or exist
tiernof97fd272016-07-11 14:32:37 +0200472 if len(flavor_db)==0:
tierno7edb6752016-03-21 17:37:52 +0100473 #add new vim_id at datacenters_flavors
montesmoreno0c8def02016-12-22 12:16:23 +0000474 extended_devices_yaml = None
475 if len(disk_list) > 0:
476 extended_devices = dict()
477 extended_devices['disks'] = disk_list
478 extended_devices_yaml = yaml.safe_dump(extended_devices,default_flow_style=True,width=256)
479 mydb.new_row('datacenters_flavors',
480 {'datacenter_id':vim_id, 'flavor_id':flavor_mano_id, 'vim_id': flavor_vim_id,
481 'created':flavor_created,'extended': extended_devices_yaml})
tierno7edb6752016-03-21 17:37:52 +0100482 elif flavor_db[0]["vim_id"]!=flavor_vim_id:
483 #modify existing vim_id at datacenters_flavors
484 mydb.update_rows('datacenters_flavors', UPDATE={'vim_id':flavor_vim_id}, WHERE={'datacenter_id':vim_id, 'flavor_id':flavor_mano_id})
485
tiernof97fd272016-07-11 14:32:37 +0200486 return flavor_vim_id if only_create_at_vim else flavor_mano_id
tierno7edb6752016-03-21 17:37:52 +0100487
488def new_vnf(mydb, tenant_id, vnf_descriptor):
489 global global_config
490
491 # Step 1. Check the VNF descriptor
tiernof97fd272016-07-11 14:32:37 +0200492 check_vnf_descriptor(vnf_descriptor)
tierno7edb6752016-03-21 17:37:52 +0100493 # Step 2. Check tenant exist
494 if tenant_id != "any":
tiernof97fd272016-07-11 14:32:37 +0200495 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100496 if "tenant_id" in vnf_descriptor["vnf"]:
497 if vnf_descriptor["vnf"]["tenant_id"] != tenant_id:
tiernof97fd272016-07-11 14:32:37 +0200498 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id),
499 HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +0100500 else:
501 vnf_descriptor['vnf']['tenant_id'] = tenant_id
502 # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter
tiernof97fd272016-07-11 14:32:37 +0200503 vims = get_vim(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100504 else:
505 vims={}
506
507 # Step 4. Review the descriptor and add missing fields
508 #print vnf_descriptor
tiernof97fd272016-07-11 14:32:37 +0200509 #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)")
tierno7edb6752016-03-21 17:37:52 +0100510 vnf_name = vnf_descriptor['vnf']['name']
511 vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name)
512 if "physical" in vnf_descriptor['vnf']:
513 del vnf_descriptor['vnf']['physical']
514 #print vnf_descriptor
515 # Step 5. Check internal connections
516 # TODO: to be moved to step 1????
517 internal_connections=vnf_descriptor['vnf'].get('internal_connections',[])
518 for ic in internal_connections:
519 if len(ic['elements'])>2 and ic['type']=='ptp':
tiernof97fd272016-07-11 14:32:37 +0200520 raise NfvoException("Mismatch 'type':'ptp' with {} elements at 'vnf':'internal-conections'['name':'{}']. Change 'type' to 'data'".format(len(ic), ic['name']),
521 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100522 elif len(ic['elements'])==2 and ic['type']=='data':
tiernof97fd272016-07-11 14:32:37 +0200523 raise NfvoException("Mismatch 'type':'data' with 2 elements at 'vnf':'internal-conections'['name':'{}']. Change 'type' to 'ptp'".format(ic['name']),
524 HTTP_Bad_Request)
525
tierno7edb6752016-03-21 17:37:52 +0100526 # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM
tiernof97fd272016-07-11 14:32:37 +0200527 logger.debug('BEGIN creation of VNF "%s"' % vnf_name)
528 logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC'])))
tierno7edb6752016-03-21 17:37:52 +0100529
530 #For each VNFC, we add it to the VNFCDict and we create a flavor.
531 VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database
532 rollback_list = [] # It will contain the new images created in mano. It is used for rollback
tierno7edb6752016-03-21 17:37:52 +0100533 try:
tiernof97fd272016-07-11 14:32:37 +0200534 logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC")
tierno7edb6752016-03-21 17:37:52 +0100535 for vnfc in vnf_descriptor['vnf']['VNFC']:
536 VNFCitem={}
537 VNFCitem["name"] = vnfc['name']
538 VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name))
539
tiernof97fd272016-07-11 14:32:37 +0200540 #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"])
tierno7edb6752016-03-21 17:37:52 +0100541
542 myflavorDict = {}
garciadeblasb69fa9f2016-09-28 12:04:10 +0200543 myflavorDict["name"] = vnfc['name']+"-flv" #Maybe we could rename the flavor by using the field "image name" if exists
tierno7edb6752016-03-21 17:37:52 +0100544 myflavorDict["description"] = VNFCitem["description"]
545 myflavorDict["ram"] = vnfc.get("ram", 0)
546 myflavorDict["vcpus"] = vnfc.get("vcpus", 0)
547 myflavorDict["disk"] = vnfc.get("disk", 1)
548 myflavorDict["extended"] = {}
549
550 devices = vnfc.get("devices")
551 if devices != None:
552 myflavorDict["extended"]["devices"] = devices
553
554 # TODO:
555 # 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
556 # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host
557
558 # Previous code has been commented
559 #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" :
560 # myflavorDict["flavor"]['extended']['processor_ranking'] = 200
561 #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" :
562 # myflavorDict["flavor"]['extended']['processor_ranking'] = 300
563 #else:
564 # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList)
565 # if result2:
566 # print "Error creating flavor: unknown processor model. Rollback successful."
567 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful."
568 # else:
569 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message
570 myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done
571
572 if 'numas' in vnfc and len(vnfc['numas'])>0:
573 myflavorDict['extended']['numas'] = vnfc['numas']
574
575 #print myflavorDict
576
577 # Step 6.2 New flavors are created in the VIM
tiernof97fd272016-07-11 14:32:37 +0200578 flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list)
tierno7edb6752016-03-21 17:37:52 +0100579
tiernof97fd272016-07-11 14:32:37 +0200580 #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id)
tierno7edb6752016-03-21 17:37:52 +0100581 VNFCitem["flavor_id"] = flavor_id
582 VNFCDict[vnfc['name']] = VNFCitem
583
tiernof97fd272016-07-11 14:32:37 +0200584 logger.debug("Creating new images in the VIM for each VNFC")
tierno7edb6752016-03-21 17:37:52 +0100585 # Step 6.3 New images are created in the VIM
586 #For each VNFC, we must create the appropriate image.
587 #This "for" loop might be integrated with the previous one
588 #In case this integration is made, the VNFCDict might become a VNFClist.
589 for vnfc in vnf_descriptor['vnf']['VNFC']:
tiernof97fd272016-07-11 14:32:37 +0200590 #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description'])
garciadeblasb69fa9f2016-09-28 12:04:10 +0200591 image_dict={}
592 image_dict['name']=vnfc.get('image name',vnf_name+"-"+vnfc['name']+"-img")
593 image_dict['universal_name']=vnfc.get('image name')
594 image_dict['description']=vnfc.get('image name', VNFCDict[vnfc['name']]['description'])
595 image_dict['location']=vnfc.get('VNFC image')
garciadeblas14480452017-01-10 13:08:07 +0100596 #image_dict['new_location']=vnfc.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +0200597 image_dict['checksum']=vnfc.get('image checksum')
tierno7edb6752016-03-21 17:37:52 +0100598 image_metadata_dict = vnfc.get('image metadata', None)
599 image_metadata_str = None
600 if image_metadata_dict is not None:
601 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
602 image_dict['metadata']=image_metadata_str
603 #print "create_or_use_image", mydb, vims, image_dict, rollback_list
tiernof97fd272016-07-11 14:32:37 +0200604 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
605 #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id)
tierno7edb6752016-03-21 17:37:52 +0100606 VNFCDict[vnfc['name']]["image_id"] = image_id
garciadeblasb69fa9f2016-09-28 12:04:10 +0200607 VNFCDict[vnfc['name']]["image_path"] = vnfc.get('VNFC image')
tierno7edb6752016-03-21 17:37:52 +0100608
tiernof97fd272016-07-11 14:32:37 +0200609
610 # Step 7. Storing the VNF descriptor in the repository
611 if "descriptor" not in vnf_descriptor["vnf"]:
612 vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +0100613
tiernof97fd272016-07-11 14:32:37 +0200614 # Step 8. Adding the VNF to the NFVO DB
615 vnf_id = mydb.new_vnf_as_a_whole(tenant_id,vnf_name,vnf_descriptor,VNFCDict)
616 return vnf_id
617 except (db_base_Exception, vimconn.vimconnException, KeyError) as e:
tierno7edb6752016-03-21 17:37:52 +0100618 _, message = rollback(mydb, vims, rollback_list)
tiernof97fd272016-07-11 14:32:37 +0200619 if isinstance(e, db_base_Exception):
620 error_text = "Exception at database"
621 elif isinstance(e, KeyError):
622 error_text = "KeyError exception "
623 e.http_code = HTTP_Internal_Server_Error
624 else:
625 error_text = "Exception at VIM"
626 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
627 #logger.error("start_scenario %s", error_text)
628 raise NfvoException(error_text, e.http_code)
629
garciadeblas9f8456e2016-09-05 05:02:59 +0200630def new_vnf_v02(mydb, tenant_id, vnf_descriptor):
631 global global_config
632
633 # Step 1. Check the VNF descriptor
634 check_vnf_descriptor(vnf_descriptor)
635 # Step 2. Check tenant exist
636 if tenant_id != "any":
637 check_tenant(mydb, tenant_id)
638 if "tenant_id" in vnf_descriptor["vnf"]:
639 if vnf_descriptor["vnf"]["tenant_id"] != tenant_id:
640 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id),
641 HTTP_Unauthorized)
642 else:
643 vnf_descriptor['vnf']['tenant_id'] = tenant_id
644 # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter
645 vims = get_vim(mydb, tenant_id)
646 else:
647 vims={}
648
649 # Step 4. Review the descriptor and add missing fields
650 #print vnf_descriptor
651 #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)")
652 vnf_name = vnf_descriptor['vnf']['name']
653 vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name)
654 if "physical" in vnf_descriptor['vnf']:
655 del vnf_descriptor['vnf']['physical']
656 #print vnf_descriptor
657 # Step 5. Check internal connections
658 # TODO: to be moved to step 1????
659 internal_connections=vnf_descriptor['vnf'].get('internal_connections',[])
660 for ic in internal_connections:
661 if len(ic['elements'])>2 and ic['type']=='e-line':
662 raise NfvoException("Mismatch 'type':'e-line' with {} elements at 'vnf':'internal-conections'['name':'{}']. Change 'type' to 'e-lan'".format(len(ic), ic['name']),
663 HTTP_Bad_Request)
664
665 # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM
666 logger.debug('BEGIN creation of VNF "%s"' % vnf_name)
667 logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC'])))
668
669 #For each VNFC, we add it to the VNFCDict and we create a flavor.
670 VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database
671 rollback_list = [] # It will contain the new images created in mano. It is used for rollback
672 try:
673 logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC")
674 for vnfc in vnf_descriptor['vnf']['VNFC']:
675 VNFCitem={}
676 VNFCitem["name"] = vnfc['name']
677 VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name))
678
679 #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"])
680
681 myflavorDict = {}
garciadeblasb69fa9f2016-09-28 12:04:10 +0200682 myflavorDict["name"] = vnfc['name']+"-flv" #Maybe we could rename the flavor by using the field "image name" if exists
garciadeblas9f8456e2016-09-05 05:02:59 +0200683 myflavorDict["description"] = VNFCitem["description"]
684 myflavorDict["ram"] = vnfc.get("ram", 0)
685 myflavorDict["vcpus"] = vnfc.get("vcpus", 0)
686 myflavorDict["disk"] = vnfc.get("disk", 1)
687 myflavorDict["extended"] = {}
688
689 devices = vnfc.get("devices")
690 if devices != None:
691 myflavorDict["extended"]["devices"] = devices
692
693 # TODO:
694 # 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
695 # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host
696
697 # Previous code has been commented
698 #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" :
699 # myflavorDict["flavor"]['extended']['processor_ranking'] = 200
700 #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" :
701 # myflavorDict["flavor"]['extended']['processor_ranking'] = 300
702 #else:
703 # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList)
704 # if result2:
705 # print "Error creating flavor: unknown processor model. Rollback successful."
706 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful."
707 # else:
708 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message
709 myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done
710
711 if 'numas' in vnfc and len(vnfc['numas'])>0:
712 myflavorDict['extended']['numas'] = vnfc['numas']
713
714 #print myflavorDict
715
716 # Step 6.2 New flavors are created in the VIM
717 flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list)
718
719 #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id)
720 VNFCitem["flavor_id"] = flavor_id
721 VNFCDict[vnfc['name']] = VNFCitem
722
723 logger.debug("Creating new images in the VIM for each VNFC")
724 # Step 6.3 New images are created in the VIM
725 #For each VNFC, we must create the appropriate image.
726 #This "for" loop might be integrated with the previous one
727 #In case this integration is made, the VNFCDict might become a VNFClist.
728 for vnfc in vnf_descriptor['vnf']['VNFC']:
729 #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description'])
garciadeblasb69fa9f2016-09-28 12:04:10 +0200730 image_dict={}
731 image_dict['name']=vnfc.get('image name',vnf_name+"-"+vnfc['name']+"-img")
732 image_dict['universal_name']=vnfc.get('image name')
733 image_dict['description']=vnfc.get('image name', VNFCDict[vnfc['name']]['description'])
734 image_dict['location']=vnfc.get('VNFC image')
garciadeblas14480452017-01-10 13:08:07 +0100735 #image_dict['new_location']=vnfc.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +0200736 image_dict['checksum']=vnfc.get('image checksum')
garciadeblas9f8456e2016-09-05 05:02:59 +0200737 image_metadata_dict = vnfc.get('image metadata', None)
738 image_metadata_str = None
739 if image_metadata_dict is not None:
740 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
741 image_dict['metadata']=image_metadata_str
742 #print "create_or_use_image", mydb, vims, image_dict, rollback_list
743 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
744 #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id)
745 VNFCDict[vnfc['name']]["image_id"] = image_id
garciadeblasb69fa9f2016-09-28 12:04:10 +0200746 VNFCDict[vnfc['name']]["image_path"] = vnfc.get('VNFC image')
garciadeblas9f8456e2016-09-05 05:02:59 +0200747
748
749 # Step 7. Storing the VNF descriptor in the repository
750 if "descriptor" not in vnf_descriptor["vnf"]:
751 vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False)
752
753 # Step 8. Adding the VNF to the NFVO DB
754 vnf_id = mydb.new_vnf_as_a_whole2(tenant_id,vnf_name,vnf_descriptor,VNFCDict)
755 return vnf_id
756 except (db_base_Exception, vimconn.vimconnException, KeyError) as e:
757 _, message = rollback(mydb, vims, rollback_list)
758 if isinstance(e, db_base_Exception):
759 error_text = "Exception at database"
760 elif isinstance(e, KeyError):
761 error_text = "KeyError exception "
762 e.http_code = HTTP_Internal_Server_Error
763 else:
764 error_text = "Exception at VIM"
765 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
766 #logger.error("start_scenario %s", error_text)
767 raise NfvoException(error_text, e.http_code)
768
tierno7edb6752016-03-21 17:37:52 +0100769def get_vnf_id(mydb, tenant_id, vnf_id):
770 #check valid tenant_id
tiernof97fd272016-07-11 14:32:37 +0200771 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100772 #obtain data
773 where_or = {}
774 if tenant_id != "any":
775 where_or["tenant_id"] = tenant_id
776 where_or["public"] = True
tiernof97fd272016-07-11 14:32:37 +0200777 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 +0100778
tiernof97fd272016-07-11 14:32:37 +0200779 vnf_id=vnf["uuid"]
tierno7edb6752016-03-21 17:37:52 +0100780 filter_keys = ('uuid','name','description','public', "tenant_id", "created_at")
tiernof97fd272016-07-11 14:32:37 +0200781 filtered_content = dict( (k,v) for k,v in vnf.iteritems() if k in filter_keys )
tierno7edb6752016-03-21 17:37:52 +0100782 #change_keys_http2db(filtered_content, http2db_vnf, reverse=True)
783 data={'vnf' : filtered_content}
784 #GET VM
tiernof97fd272016-07-11 14:32:37 +0200785 content = mydb.get_rows(FROM='vnfs join vms on vnfs.uuid=vms.vnf_id',
tierno7edb6752016-03-21 17:37:52 +0100786 SELECT=('vms.uuid as uuid','vms.name as name', 'vms.description as description'),
787 WHERE={'vnfs.uuid': vnf_id} )
tiernof97fd272016-07-11 14:32:37 +0200788 if len(content)==0:
789 raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +0100790
791 data['vnf']['VNFC'] = content
garciadeblas9f8456e2016-09-05 05:02:59 +0200792 #TODO: GET all the information from a VNFC and include it in the output.
793
tierno7edb6752016-03-21 17:37:52 +0100794 #GET NET
tiernof97fd272016-07-11 14:32:37 +0200795 content = mydb.get_rows(FROM='vnfs join nets on vnfs.uuid=nets.vnf_id',
tierno7edb6752016-03-21 17:37:52 +0100796 SELECT=('nets.uuid as uuid','nets.name as name','nets.description as description', 'nets.type as type', 'nets.multipoint as multipoint'),
797 WHERE={'vnfs.uuid': vnf_id} )
tiernof97fd272016-07-11 14:32:37 +0200798 data['vnf']['nets'] = content
garciadeblas9f8456e2016-09-05 05:02:59 +0200799
800 #GET ip-profile for each net
801 for net in data['vnf']['nets']:
802 ipprofiles = mydb.get_rows(FROM='ip_profiles',
803 SELECT=('ip_version','subnet_address','gateway_address','dns_address','dhcp_enabled','dhcp_start_address','dhcp_count'),
804 WHERE={'net_id': net["uuid"]} )
805 if len(ipprofiles)==1:
806 net["ip_profile"] = ipprofiles[0]
807 elif len(ipprofiles)>1:
808 raise NfvoException("More than one ip-profile found with this criteria: net_id='{}'".format(net['uuid']), HTTP_Bad_Request)
809
810
811 #TODO: For each net, GET its elements and relevant info per element (VNFC, iface, ip_address) and include them in the output.
812
813 #GET External Interfaces
tiernof97fd272016-07-11 14:32:37 +0200814 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 +0100815 SELECT=('interfaces.uuid as uuid','interfaces.external_name as external_name', 'vms.name as vm_name', 'interfaces.vm_id as vm_id', \
816 'interfaces.internal_name as internal_name', 'interfaces.type as type', 'interfaces.vpci as vpci','interfaces.bw as bw'),\
817 WHERE={'vnfs.uuid': vnf_id},
818 WHERE_NOT={'interfaces.external_name': None} )
819 #print content
tiernof97fd272016-07-11 14:32:37 +0200820 data['vnf']['external-connections'] = content
garciadeblas9f8456e2016-09-05 05:02:59 +0200821
tiernof97fd272016-07-11 14:32:37 +0200822 return data
tierno7edb6752016-03-21 17:37:52 +0100823
824
825def delete_vnf(mydb,tenant_id,vnf_id,datacenter=None,vim_tenant=None):
826 # Check tenant exist
827 if tenant_id != "any":
tiernof97fd272016-07-11 14:32:37 +0200828 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100829 # Get the URL of the VIM from the nfvo_tenant and the datacenter
tiernof97fd272016-07-11 14:32:37 +0200830 vims = get_vim(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100831 else:
832 vims={}
833
834 # Checking if it is a valid uuid and, if not, getting the uuid assuming that the name was provided"
835 where_or = {}
836 if tenant_id != "any":
837 where_or["tenant_id"] = tenant_id
838 where_or["public"] = True
tiernof97fd272016-07-11 14:32:37 +0200839 vnf = mydb.get_table_by_uuid_name('vnfs', vnf_id, "VNF", WHERE_OR=where_or, WHERE_AND_OR="AND")
840 vnf_id = vnf["uuid"]
tierno7edb6752016-03-21 17:37:52 +0100841
842 # "Getting the list of flavors and tenants of the VNF"
tiernof97fd272016-07-11 14:32:37 +0200843 flavorList = get_flavorlist(mydb, vnf_id)
844 if len(flavorList)==0:
845 logger.warn("delete_vnf error. No flavors found for the VNF id '%s'", vnf_id)
tierno7edb6752016-03-21 17:37:52 +0100846
tiernof97fd272016-07-11 14:32:37 +0200847 imageList = get_imagelist(mydb, vnf_id)
848 if len(imageList)==0:
849 logger.warn( "delete_vnf error. No images found for the VNF id '%s'", vnf_id)
tierno7edb6752016-03-21 17:37:52 +0100850
tiernof97fd272016-07-11 14:32:37 +0200851 deleted = mydb.delete_row_by_id('vnfs', vnf_id)
852 if deleted == 0:
853 raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +0100854
855 undeletedItems = []
856 for flavor in flavorList:
857 #check if flavor is used by other vnf
tiernof97fd272016-07-11 14:32:37 +0200858 try:
859 c = mydb.get_rows(FROM='vms', WHERE={'flavor_id':flavor} )
860 if len(c) > 0:
861 logger.debug("Flavor '%s' not deleted because it is being used by another VNF", flavor)
862 continue
863 #flavor not used, must be deleted
864 #delelte at VIM
865 c = mydb.get_rows(FROM='datacenters_flavors', WHERE={'flavor_id':flavor})
tierno7edb6752016-03-21 17:37:52 +0100866 for flavor_vim in c:
867 if flavor_vim["datacenter_id"] not in vims:
868 continue
869 if flavor_vim['created']=='false': #skip this flavor because not created by openmano
870 continue
871 myvim=vims[ flavor_vim["datacenter_id"] ]
tiernoae4a8d12016-07-08 12:30:39 +0200872 try:
873 myvim.delete_flavor(flavor_vim["vim_id"])
874 except vimconn.vimconnNotFoundException as e:
875 logger.warn("VIM flavor %s not exist at datacenter %s", flavor_vim["vim_id"], flavor_vim["datacenter_id"] )
876 except vimconn.vimconnException as e:
877 logger.error("Not possible to delete VIM flavor %s from datacenter %s: %s %s",
878 flavor_vim["vim_id"], flavor_vim["datacenter_id"], type(e).__name__, str(e))
879 undeletedItems.append("flavor {} from VIM {}".format(flavor_vim["vim_id"], flavor_vim["datacenter_id"] ))
tiernof97fd272016-07-11 14:32:37 +0200880 #delete flavor from Database, using table flavors and with cascade foreign key also at datacenters_flavors
881 mydb.delete_row_by_id('flavors', flavor)
882 except db_base_Exception as e:
883 logger.error("delete_vnf_error. Not possible to get flavor details and delete '%s'. %s", flavor, str(e))
tierno7edb6752016-03-21 17:37:52 +0100884 undeletedItems.append("flavor %s" % flavor)
tiernof97fd272016-07-11 14:32:37 +0200885
tierno7edb6752016-03-21 17:37:52 +0100886
887 for image in imageList:
tiernof97fd272016-07-11 14:32:37 +0200888 try:
889 #check if image is used by other vnf
890 c = mydb.get_rows(FROM='vms', WHERE={'image_id':image} )
891 if len(c) > 0:
892 logger.debug("Image '%s' not deleted because it is being used by another VNF", image)
893 continue
894 #image not used, must be deleted
895 #delelte at VIM
896 c = mydb.get_rows(FROM='datacenters_images', WHERE={'image_id':image})
tierno7edb6752016-03-21 17:37:52 +0100897 for image_vim in c:
898 if image_vim["datacenter_id"] not in vims:
899 continue
900 if image_vim['created']=='false': #skip this image because not created by openmano
901 continue
902 myvim=vims[ image_vim["datacenter_id"] ]
tiernoae4a8d12016-07-08 12:30:39 +0200903 try:
904 myvim.delete_image(image_vim["vim_id"])
905 except vimconn.vimconnNotFoundException as e:
906 logger.warn("VIM image %s not exist at datacenter %s", image_vim["vim_id"], image_vim["datacenter_id"] )
907 except vimconn.vimconnException as e:
908 logger.error("Not possible to delete VIM image %s from datacenter %s: %s %s",
909 image_vim["vim_id"], image_vim["datacenter_id"], type(e).__name__, str(e))
910 undeletedItems.append("image {} from VIM {}".format(image_vim["vim_id"], image_vim["datacenter_id"] ))
tiernof97fd272016-07-11 14:32:37 +0200911 #delete image from Database, using table images and with cascade foreign key also at datacenters_images
912 mydb.delete_row_by_id('images', image)
913 except db_base_Exception as e:
914 logger.error("delete_vnf_error. Not possible to get image details and delete '%s'. %s", image, str(e))
tierno7edb6752016-03-21 17:37:52 +0100915 undeletedItems.append("image %s" % image)
916
tiernof97fd272016-07-11 14:32:37 +0200917 return vnf_id + " " + vnf["name"]
918 #if undeletedItems:
919 # return "delete_vnf. Undeleted: %s" %(undeletedItems)
tierno7edb6752016-03-21 17:37:52 +0100920
921def get_hosts_info(mydb, nfvo_tenant_id, datacenter_name=None):
922 result, vims = get_vim(mydb, nfvo_tenant_id, None, datacenter_name)
923 if result < 0:
924 return result, vims
925 elif result == 0:
926 return -HTTP_Not_Found, "datacenter '%s' not found" % datacenter_name
927 myvim = vims.values()[0]
928 result,servers = myvim.get_hosts_info()
929 if result < 0:
930 return result, servers
931 topology = {'name':myvim['name'] , 'servers': servers}
932 return result, topology
933
934def get_hosts(mydb, nfvo_tenant_id):
tiernof97fd272016-07-11 14:32:37 +0200935 vims = get_vim(mydb, nfvo_tenant_id)
936 if len(vims) == 0:
937 raise NfvoException("No datacenter found for tenant '{}'".format(str(nfvo_tenant_id)), HTTP_Not_Found)
938 elif len(vims)>1:
939 #print "nfvo.datacenter_action() error. Several datacenters found"
940 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +0100941 myvim = vims.values()[0]
tiernof97fd272016-07-11 14:32:37 +0200942 try:
943 hosts = myvim.get_hosts()
944 logger.debug('VIM hosts response: '+ yaml.safe_dump(hosts, indent=4, default_flow_style=False))
tierno7edb6752016-03-21 17:37:52 +0100945
tiernof97fd272016-07-11 14:32:37 +0200946 datacenter = {'Datacenters': [ {'name':myvim['name'],'servers':[]} ] }
947 for host in hosts:
948 server={'name':host['name'], 'vms':[]}
949 for vm in host['instances']:
950 #get internal name and model
951 try:
952 c = mydb.get_rows(SELECT=('name',), FROM='instance_vms as iv join vms on iv.vm_id=vms.uuid',\
953 WHERE={'vim_vm_id':vm['id']} )
954 if len(c) == 0:
955 logger.warn("nfvo.get_hosts virtual machine at VIM '{}' not found at tidnfvo".format(vm['id']))
956 continue
957 server['vms'].append( {'name':vm['name'] , 'model':c[0]['name']} )
958
959 except db_base_Exception as e:
960 logger.warn("nfvo.get_hosts virtual machine at VIM '{}' error {}".format(vm['id'], str(e)))
961 datacenter['Datacenters'][0]['servers'].append(server)
962 #return -400, "en construccion"
tierno7edb6752016-03-21 17:37:52 +0100963
tiernof97fd272016-07-11 14:32:37 +0200964 #print 'datacenters '+ json.dumps(datacenter, indent=4)
965 return datacenter
966 except vimconn.vimconnException as e:
967 raise NfvoException("Not possible to get_host_list from VIM: {}".format(str(e)), e.http_code)
tierno7edb6752016-03-21 17:37:52 +0100968
969def new_scenario(mydb, tenant_id, topo):
970
971# result, vims = get_vim(mydb, tenant_id)
972# if result < 0:
973# return result, vims
974#1: parse input
975 if tenant_id != "any":
tiernof97fd272016-07-11 14:32:37 +0200976 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100977 if "tenant_id" in topo:
978 if topo["tenant_id"] != tenant_id:
tiernof97fd272016-07-11 14:32:37 +0200979 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(topo["tenant_id"], tenant_id),
980 HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +0100981 else:
982 tenant_id=None
983
984#1.1: get VNFs and external_networks (other_nets).
985 vnfs={}
986 other_nets={} #external_networks, bridge_networks and data_networkds
987 nodes = topo['topology']['nodes']
988 for k in nodes.keys():
989 if nodes[k]['type'] == 'VNF':
990 vnfs[k] = nodes[k]
991 vnfs[k]['ifaces'] = {}
992 elif nodes[k]['type'] == 'other_network' or nodes[k]['type'] == 'external_network':
993 other_nets[k] = nodes[k]
994 other_nets[k]['external']=True
995 elif nodes[k]['type'] == 'network':
996 other_nets[k] = nodes[k]
997 other_nets[k]['external']=False
998
999
1000#1.2: Check that VNF are present at database table vnfs. Insert uuid, description and external interfaces
1001 for name,vnf in vnfs.items():
tiernocea279c2016-07-18 12:36:49 +02001002 where={}
1003 where_or={"tenant_id": tenant_id, 'public': "true"}
tierno7edb6752016-03-21 17:37:52 +01001004 error_text = ""
1005 error_pos = "'topology':'nodes':'" + name + "'"
1006 if 'vnf_id' in vnf:
1007 error_text += " 'vnf_id' " + vnf['vnf_id']
tiernocea279c2016-07-18 12:36:49 +02001008 where['uuid'] = vnf['vnf_id']
tierno7edb6752016-03-21 17:37:52 +01001009 if 'VNF model' in vnf:
1010 error_text += " 'VNF model' " + vnf['VNF model']
tiernocea279c2016-07-18 12:36:49 +02001011 where['name'] = vnf['VNF model']
1012 if len(where) == 0:
tiernof97fd272016-07-11 14:32:37 +02001013 raise NfvoException("Descriptor need a 'vnf_id' or 'VNF model' field at " + error_pos, HTTP_Bad_Request)
1014
tiernocea279c2016-07-18 12:36:49 +02001015 vnf_db = mydb.get_rows(SELECT=('uuid','name','description'),
1016 FROM='vnfs',
1017 WHERE=where,
1018 WHERE_OR=where_or,
1019 WHERE_AND_OR="AND")
tiernof97fd272016-07-11 14:32:37 +02001020 if len(vnf_db)==0:
1021 raise NfvoException("unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
1022 elif len(vnf_db)>1:
1023 raise NfvoException("more than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01001024 vnf['uuid']=vnf_db[0]['uuid']
1025 vnf['description']=vnf_db[0]['description']
1026 #get external interfaces
tiernof97fd272016-07-11 14:32:37 +02001027 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 +01001028 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
1029 WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name':None} )
tierno7edb6752016-03-21 17:37:52 +01001030 for ext_iface in ext_ifaces:
1031 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type':ext_iface['type']}
1032
1033#1.4 get list of connections
1034 conections = topo['topology']['connections']
1035 conections_list = []
tiernoefd80c92016-09-16 14:17:46 +02001036 conections_list_name = []
tierno7edb6752016-03-21 17:37:52 +01001037 for k in conections.keys():
1038 if type(conections[k]['nodes'])==dict: #dict with node:iface pairs
1039 ifaces_list = conections[k]['nodes'].items()
1040 elif type(conections[k]['nodes'])==list: #list with dictionary
1041 ifaces_list=[]
1042 conection_pair_list = map(lambda x: x.items(), conections[k]['nodes'] )
1043 for k2 in conection_pair_list:
1044 ifaces_list += k2
1045
1046 con_type = conections[k].get("type", "link")
1047 if con_type != "link":
1048 if k in other_nets:
tiernof97fd272016-07-11 14:32:37 +02001049 raise NfvoException("Format error. Reapeted network name at 'topology':'connections':'{}'".format(str(k)), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001050 other_nets[k] = {'external': False}
1051 if conections[k].get("graph"):
1052 other_nets[k]["graph"] = conections[k]["graph"]
1053 ifaces_list.append( (k, None) )
1054
1055
1056 if con_type == "external_network":
1057 other_nets[k]['external'] = True
1058 if conections[k].get("model"):
1059 other_nets[k]["model"] = conections[k]["model"]
1060 else:
1061 other_nets[k]["model"] = k
1062 if con_type == "dataplane_net" or con_type == "bridge_net":
1063 other_nets[k]["model"] = con_type
1064
tiernoefd80c92016-09-16 14:17:46 +02001065 conections_list_name.append(k)
tierno7edb6752016-03-21 17:37:52 +01001066 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)
1067 #print set(ifaces_list)
1068 #check valid VNF and iface names
1069 for iface in ifaces_list:
1070 if iface[0] not in vnfs and iface[0] not in other_nets :
tiernof97fd272016-07-11 14:32:37 +02001071 raise NfvoException("format error. Invalid VNF name at 'topology':'connections':'{}':'nodes':'{}'".format(
1072 str(k), iface[0]), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001073 if iface[0] in vnfs and iface[1] not in vnfs[ iface[0] ]['ifaces']:
tiernof97fd272016-07-11 14:32:37 +02001074 raise NfvoException("format error. Invalid interface name at 'topology':'connections':'{}':'nodes':'{}':'{}'".format(
1075 str(k), iface[0], iface[1]), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001076
1077#1.5 unify connections from the pair list to a consolidated list
1078 index=0
1079 while index < len(conections_list):
1080 index2 = index+1
1081 while index2 < len(conections_list):
1082 if len(conections_list[index] & conections_list[index2])>0: #common interface, join nets
1083 conections_list[index] |= conections_list[index2]
1084 del conections_list[index2]
tiernoefd80c92016-09-16 14:17:46 +02001085 del conections_list_name[index2]
tierno7edb6752016-03-21 17:37:52 +01001086 else:
1087 index2 += 1
1088 conections_list[index] = list(conections_list[index]) # from set to list again
1089 index += 1
1090 #for k in conections_list:
1091 # print k
1092
1093
1094
1095#1.6 Delete non external nets
1096# for k in other_nets.keys():
1097# if other_nets[k]['model']=='bridge' or other_nets[k]['model']=='dataplane_net' or other_nets[k]['model']=='bridge_net':
1098# for con in conections_list:
1099# delete_indexes=[]
1100# for index in range(0,len(con)):
1101# if con[index][0] == k: delete_indexes.insert(0,index) #order from higher to lower
1102# for index in delete_indexes:
1103# del con[index]
1104# del other_nets[k]
1105#1.7: Check external_ports are present at database table datacenter_nets
1106 for k,net in other_nets.items():
1107 error_pos = "'topology':'nodes':'" + k + "'"
1108 if net['external']==False:
1109 if 'name' not in net:
1110 net['name']=k
1111 if 'model' not in net:
tiernof97fd272016-07-11 14:32:37 +02001112 raise NfvoException("needed a 'model' at " + error_pos, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001113 if net['model']=='bridge_net':
1114 net['type']='bridge';
1115 elif net['model']=='dataplane_net':
1116 net['type']='data';
1117 else:
tiernof97fd272016-07-11 14:32:37 +02001118 raise NfvoException("unknown 'model' '"+ net['model'] +"' at " + error_pos, HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001119 else: #external
1120#IF we do not want to check that external network exist at datacenter
1121 pass
1122#ELSE
1123# error_text = ""
1124# WHERE_={}
1125# if 'net_id' in net:
1126# error_text += " 'net_id' " + net['net_id']
1127# WHERE_['uuid'] = net['net_id']
1128# if 'model' in net:
1129# error_text += " 'model' " + net['model']
1130# WHERE_['name'] = net['model']
1131# if len(WHERE_) == 0:
1132# return -HTTP_Bad_Request, "needed a 'net_id' or 'model' at " + error_pos
1133# r,net_db = mydb.get_table(SELECT=('uuid','name','description','type','shared'),
1134# FROM='datacenter_nets', WHERE=WHERE_ )
1135# if r<0:
1136# print "nfvo.new_scenario Error getting datacenter_nets",r,net_db
1137# elif r==0:
1138# print "nfvo.new_scenario Error" +error_text+ " is not present at database"
1139# return -HTTP_Bad_Request, "unknown " +error_text+ " at " + error_pos
1140# elif r>1:
1141# print "nfvo.new_scenario Error more than one external_network for " +error_text+ " is present at database"
1142# return -HTTP_Bad_Request, "more than one external_network for " +error_text+ "at "+ error_pos + " Concrete with 'net_id'"
1143# other_nets[k].update(net_db[0])
1144#ENDIF
1145 net_list={}
1146 net_nb=0 #Number of nets
1147 for con in conections_list:
1148 #check if this is connected to a external net
1149 other_net_index=-1
1150 #print
1151 #print "con", con
1152 for index in range(0,len(con)):
1153 #check if this is connected to a external net
1154 for net_key in other_nets.keys():
1155 if con[index][0]==net_key:
1156 if other_net_index>=0:
1157 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 +02001158 #print "nfvo.new_scenario " + error_text
1159 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001160 else:
1161 other_net_index = index
1162 net_target = net_key
1163 break
1164 #print "other_net_index", other_net_index
1165 try:
1166 if other_net_index>=0:
1167 del con[other_net_index]
1168#IF we do not want to check that external network exist at datacenter
1169 if other_nets[net_target]['external'] :
1170 if "name" not in other_nets[net_target]:
1171 other_nets[net_target]['name'] = other_nets[net_target]['model']
1172 if other_nets[net_target]["type"] == "external_network":
1173 if vnfs[ con[0][0] ]['ifaces'][ con[0][1] ]["type"] == "data":
1174 other_nets[net_target]["type"] = "data"
1175 else:
1176 other_nets[net_target]["type"] = "bridge"
1177#ELSE
1178# if other_nets[net_target]['external'] :
1179# 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
1180# if type_=='data' and other_nets[net_target]['type']=="ptp":
1181# error_text = "Error connecting %d nodes on a not multipoint net %s" % (len(con), net_target)
1182# print "nfvo.new_scenario " + error_text
1183# return -HTTP_Bad_Request, error_text
1184#ENDIF
1185 for iface in con:
1186 vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target
1187 else:
1188 #create a net
1189 net_type_bridge=False
1190 net_type_data=False
1191 net_target = "__-__net"+str(net_nb)
tiernoefd80c92016-09-16 14:17:46 +02001192 net_list[net_target] = {'name': conections_list_name[net_nb], #"net-"+str(net_nb),
1193 'description':"net-%s in scenario %s" %(net_nb,topo['name']),
tierno7edb6752016-03-21 17:37:52 +01001194 'external':False}
1195 for iface in con:
1196 vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target
1197 iface_type = vnfs[ iface[0] ]['ifaces'][ iface[1] ]['type']
1198 if iface_type=='mgmt' or iface_type=='bridge':
1199 net_type_bridge = True
1200 else:
1201 net_type_data = True
1202 if net_type_bridge and net_type_data:
1203 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 +02001204 #print "nfvo.new_scenario " + error_text
1205 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001206 elif net_type_bridge:
1207 type_='bridge'
1208 else:
1209 type_='data' if len(con)>2 else 'ptp'
1210 net_list[net_target]['type'] = type_
1211 net_nb+=1
1212 except Exception:
1213 error_text = "Error connection node %s : %s does not match any VNF or interface" % (iface[0], iface[1])
tiernof97fd272016-07-11 14:32:37 +02001214 #print "nfvo.new_scenario " + error_text
tierno7edb6752016-03-21 17:37:52 +01001215 #raise e
tiernof97fd272016-07-11 14:32:37 +02001216 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001217
1218#1.8: Connect to management net all not already connected interfaces of type 'mgmt'
1219 #1.8.1 obtain management net
tiernof97fd272016-07-11 14:32:37 +02001220 mgmt_net = mydb.get_rows(SELECT=('uuid','name','description','type','shared'),
tierno7edb6752016-03-21 17:37:52 +01001221 FROM='datacenter_nets', WHERE={'name':'mgmt'} )
1222 #1.8.2 check all interfaces from all vnfs
tiernof97fd272016-07-11 14:32:37 +02001223 if len(mgmt_net)>0:
tierno7edb6752016-03-21 17:37:52 +01001224 add_mgmt_net = False
1225 for vnf in vnfs.values():
1226 for iface in vnf['ifaces'].values():
1227 if iface['type']=='mgmt' and 'net_key' not in iface:
1228 #iface not connected
1229 iface['net_key'] = 'mgmt'
1230 add_mgmt_net = True
1231 if add_mgmt_net and 'mgmt' not in net_list:
1232 net_list['mgmt']=mgmt_net[0]
1233 net_list['mgmt']['external']=True
1234 net_list['mgmt']['graph']={'visible':False}
1235
1236 net_list.update(other_nets)
tiernof97fd272016-07-11 14:32:37 +02001237 #print
1238 #print 'net_list', net_list
1239 #print
1240 #print 'vnfs', vnfs
1241 #print
tierno7edb6752016-03-21 17:37:52 +01001242
1243#2: insert scenario. filling tables scenarios,sce_vnfs,sce_interfaces,sce_nets
tiernof97fd272016-07-11 14:32:37 +02001244 c = mydb.new_scenario( { 'vnfs':vnfs, 'nets':net_list,
tierno392f2852016-05-13 12:28:55 +02001245 'tenant_id':tenant_id, 'name':topo['name'],
1246 'description':topo.get('description',topo['name']),
1247 'public': topo.get('public', False)
1248 })
tierno7edb6752016-03-21 17:37:52 +01001249
tiernof97fd272016-07-11 14:32:37 +02001250 return c
tierno7edb6752016-03-21 17:37:52 +01001251
tierno392f2852016-05-13 12:28:55 +02001252def new_scenario_v02(mydb, tenant_id, scenario_dict):
1253 scenario = scenario_dict["scenario"]
tierno7edb6752016-03-21 17:37:52 +01001254 if tenant_id != "any":
tiernof97fd272016-07-11 14:32:37 +02001255 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001256 if "tenant_id" in scenario:
1257 if scenario["tenant_id"] != tenant_id:
1258 print "nfvo.new_scenario_v02() tenant '%s' not found" % tenant_id
tiernof97fd272016-07-11 14:32:37 +02001259 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(
1260 scenario["tenant_id"], tenant_id), HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +01001261 else:
1262 tenant_id=None
1263
1264#1: Check that VNF are present at database table vnfs and update content into scenario dict
1265 for name,vnf in scenario["vnfs"].iteritems():
tiernocea279c2016-07-18 12:36:49 +02001266 where={}
1267 where_or={"tenant_id": tenant_id, 'public': "true"}
tierno7edb6752016-03-21 17:37:52 +01001268 error_text = ""
garciadeblas71781ea2016-09-19 14:41:59 +02001269 error_pos = "'scenario':'vnfs':'" + name + "'"
tierno7edb6752016-03-21 17:37:52 +01001270 if 'vnf_id' in vnf:
1271 error_text += " 'vnf_id' " + vnf['vnf_id']
tiernocea279c2016-07-18 12:36:49 +02001272 where['uuid'] = vnf['vnf_id']
tierno392f2852016-05-13 12:28:55 +02001273 if 'vnf_name' in vnf:
1274 error_text += " 'vnf_name' " + vnf['vnf_name']
tiernocea279c2016-07-18 12:36:49 +02001275 where['name'] = vnf['vnf_name']
1276 if len(where) == 0:
garciadeblas71781ea2016-09-19 14:41:59 +02001277 raise NfvoException("Needed a 'vnf_id' or 'vnf_name' at " + error_pos, HTTP_Bad_Request)
tiernocea279c2016-07-18 12:36:49 +02001278 vnf_db = mydb.get_rows(SELECT=('uuid','name','description'),
1279 FROM='vnfs',
1280 WHERE=where,
1281 WHERE_OR=where_or,
1282 WHERE_AND_OR="AND")
tiernof97fd272016-07-11 14:32:37 +02001283 if len(vnf_db)==0:
1284 raise NfvoException("Unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
1285 elif len(vnf_db)>1:
1286 raise NfvoException("More than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01001287 vnf['uuid']=vnf_db[0]['uuid']
1288 vnf['description']=vnf_db[0]['description']
1289 vnf['ifaces'] = {}
1290 #get external interfaces
tiernof97fd272016-07-11 14:32:37 +02001291 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 +01001292 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
1293 WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name':None} )
tierno7edb6752016-03-21 17:37:52 +01001294 for ext_iface in ext_ifaces:
1295 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type':ext_iface['type']}
1296
1297#2: Insert net_key at every vnf interface
1298 for net_name,net in scenario["networks"].iteritems():
1299 net_type_bridge=False
1300 net_type_data=False
1301 for iface_dict in net["interfaces"]:
1302 for vnf,iface in iface_dict.iteritems():
1303 if vnf not in scenario["vnfs"]:
1304 error_text = "Error at 'networks':'%s':'interfaces' VNF '%s' not match any VNF at 'vnfs'" % (net_name, vnf)
tiernof97fd272016-07-11 14:32:37 +02001305 #print "nfvo.new_scenario_v02 " + error_text
1306 raise NfvoException(error_text, HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001307 if iface not in scenario["vnfs"][vnf]['ifaces']:
1308 error_text = "Error at 'networks':'%s':'interfaces':'%s' interface not match any VNF interface" % (net_name, iface)
tiernof97fd272016-07-11 14:32:37 +02001309 #print "nfvo.new_scenario_v02 " + error_text
1310 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001311 if "net_key" in scenario["vnfs"][vnf]['ifaces'][iface]:
1312 error_text = "Error at 'networks':'%s':'interfaces':'%s' interface already connected at network '%s'" \
1313 % (net_name, iface,scenario["vnfs"][vnf]['ifaces'][iface]['net_key'])
tiernof97fd272016-07-11 14:32:37 +02001314 #print "nfvo.new_scenario_v02 " + error_text
1315 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001316 scenario["vnfs"][vnf]['ifaces'][ iface ]['net_key'] = net_name
1317 iface_type = scenario["vnfs"][vnf]['ifaces'][iface]['type']
1318 if iface_type=='mgmt' or iface_type=='bridge':
1319 net_type_bridge = True
1320 else:
1321 net_type_data = True
1322 if net_type_bridge and net_type_data:
1323 error_text = "Error connection interfaces of bridge type and data type at 'networks':'%s':'interfaces'" % (net_name)
tiernof97fd272016-07-11 14:32:37 +02001324 #print "nfvo.new_scenario " + error_text
1325 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001326 elif net_type_bridge:
1327 type_='bridge'
1328 else:
1329 type_='data' if len(net["interfaces"])>2 else 'ptp'
1330 net['type'] = type_
1331 net['name'] = net_name
1332 net['external'] = net.get('external', False)
1333
1334#3: insert at database
1335 scenario["nets"] = scenario["networks"]
1336 scenario['tenant_id'] = tenant_id
tiernof97fd272016-07-11 14:32:37 +02001337 scenario_id = mydb.new_scenario( scenario)
1338 return scenario_id
tierno7edb6752016-03-21 17:37:52 +01001339
1340def edit_scenario(mydb, tenant_id, scenario_id, data):
1341 data["uuid"] = scenario_id
1342 data["tenant_id"] = tenant_id
tiernof97fd272016-07-11 14:32:37 +02001343 c = mydb.edit_scenario( data )
1344 return c
tierno7edb6752016-03-21 17:37:52 +01001345
1346def 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 +02001347 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tiernoa2793912016-10-04 08:15:08 +00001348 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter, vim_tenant=vim_tenant)
1349 vims = {datacenter_id: myvim}
tierno392f2852016-05-13 12:28:55 +02001350 myvim_tenant = myvim['tenant_id']
tierno7edb6752016-03-21 17:37:52 +01001351 datacenter_name = myvim['name']
tiernoa2793912016-10-04 08:15:08 +00001352
tierno7edb6752016-03-21 17:37:52 +01001353 rollbackList=[]
tiernoae4a8d12016-07-08 12:30:39 +02001354 try:
1355 #print "Checking that the scenario_id exists and getting the scenario dictionary"
tiernof97fd272016-07-11 14:32:37 +02001356 scenarioDict = mydb.get_scenario(scenario_id, tenant_id, datacenter_id)
tiernoa2793912016-10-04 08:15:08 +00001357 scenarioDict['datacenter2tenant'] = { datacenter_id: myvim['config']['datacenter_tenant_id'] }
tiernoae4a8d12016-07-08 12:30:39 +02001358 scenarioDict['datacenter_id'] = datacenter_id
1359 #print '================scenarioDict======================='
1360 #print json.dumps(scenarioDict, indent=4)
1361 #print 'BEGIN launching instance scenario "%s" based on "%s"' % (instance_scenario_name,scenarioDict['name'])
tierno7edb6752016-03-21 17:37:52 +01001362
tiernoae4a8d12016-07-08 12:30:39 +02001363 logger.debug("start_scenario Scenario %s: consisting of %d VNF(s)", scenarioDict['name'],len(scenarioDict['vnfs']))
1364 #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +01001365
tiernoae4a8d12016-07-08 12:30:39 +02001366 auxNetDict = {} #Auxiliar dictionary. First key:'scenario' or sce_vnf uuid. Second Key: uuid of the net/sce_net. Value: vim_net_id
1367 auxNetDict['scenario'] = {}
1368
1369 logger.debug("start_scenario 1. Creating new nets (sce_nets) in the VIM")
1370 for sce_net in scenarioDict['nets']:
1371 #print "Net name: %s. Description: %s" % (sce_net["name"], sce_net["description"])
tierno7edb6752016-03-21 17:37:52 +01001372
tiernoae4a8d12016-07-08 12:30:39 +02001373 myNetName = "%s.%s" % (instance_scenario_name, sce_net['name'])
tierno7edb6752016-03-21 17:37:52 +01001374 myNetName = myNetName[0:255] #limit length
tiernoae4a8d12016-07-08 12:30:39 +02001375 myNetType = sce_net['type']
tierno7edb6752016-03-21 17:37:52 +01001376 myNetDict = {}
1377 myNetDict["name"] = myNetName
1378 myNetDict["type"] = myNetType
1379 myNetDict["tenant_id"] = myvim_tenant
garciadeblas9f8456e2016-09-05 05:02:59 +02001380 myNetIPProfile = sce_net.get('ip_profile', None)
tierno7edb6752016-03-21 17:37:52 +01001381 #TODO:
tiernoae4a8d12016-07-08 12:30:39 +02001382 #We should use the dictionary as input parameter for new_network
tiernof97fd272016-07-11 14:32:37 +02001383 #print myNetDict
tiernoae4a8d12016-07-08 12:30:39 +02001384 if not sce_net["external"]:
garciadeblas9f8456e2016-09-05 05:02:59 +02001385 network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile)
tiernoae4a8d12016-07-08 12:30:39 +02001386 #print "New VIM network created for scenario %s. Network id: %s" % (scenarioDict['name'],network_id)
1387 sce_net['vim_id'] = network_id
1388 auxNetDict['scenario'][sce_net['uuid']] = network_id
1389 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
tierno66345bc2016-09-26 11:37:55 +02001390 sce_net["created"] = True
tiernoae4a8d12016-07-08 12:30:39 +02001391 else:
1392 if sce_net['vim_id'] == None:
1393 error_text = "Error, datacenter '%s' does not have external network '%s'." % (datacenter_name, sce_net['name'])
1394 _, message = rollback(mydb, vims, rollbackList)
1395 logger.error("nfvo.start_scenario: %s", error_text)
tiernof97fd272016-07-11 14:32:37 +02001396 raise NfvoException(error_text, HTTP_Bad_Request)
tiernoae4a8d12016-07-08 12:30:39 +02001397 logger.debug("Using existent VIM network for scenario %s. Network id %s", scenarioDict['name'],sce_net['vim_id'])
1398 auxNetDict['scenario'][sce_net['uuid']] = sce_net['vim_id']
tierno7edb6752016-03-21 17:37:52 +01001399
tiernoae4a8d12016-07-08 12:30:39 +02001400 logger.debug("start_scenario 2. Creating new nets (vnf internal nets) in the VIM")
1401 #For each vnf net, we create it and we add it to instanceNetlist.
1402 for sce_vnf in scenarioDict['vnfs']:
1403 for net in sce_vnf['nets']:
1404 #print "Net name: %s. Description: %s" % (net["name"], net["description"])
1405
1406 myNetName = "%s.%s" % (instance_scenario_name,net['name'])
1407 myNetName = myNetName[0:255] #limit length
1408 myNetType = net['type']
1409 myNetDict = {}
1410 myNetDict["name"] = myNetName
1411 myNetDict["type"] = myNetType
1412 myNetDict["tenant_id"] = myvim_tenant
garciadeblas9f8456e2016-09-05 05:02:59 +02001413 myNetIPProfile = net.get('ip_profile', None)
tiernoae4a8d12016-07-08 12:30:39 +02001414 #print myNetDict
1415 #TODO:
1416 #We should use the dictionary as input parameter for new_network
garciadeblas9f8456e2016-09-05 05:02:59 +02001417 network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile)
tiernoae4a8d12016-07-08 12:30:39 +02001418 #print "VIM network id for scenario %s: %s" % (scenarioDict['name'],network_id)
1419 net['vim_id'] = network_id
1420 if sce_vnf['uuid'] not in auxNetDict:
1421 auxNetDict[sce_vnf['uuid']] = {}
1422 auxNetDict[sce_vnf['uuid']][net['uuid']] = network_id
1423 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
tierno66345bc2016-09-26 11:37:55 +02001424 net["created"] = True
tiernoae4a8d12016-07-08 12:30:39 +02001425
1426 #print "auxNetDict:"
1427 #print yaml.safe_dump(auxNetDict, indent=4, default_flow_style=False)
1428
1429 logger.debug("start_scenario 3. Creating new vm instances in the VIM")
1430 #myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict)
1431 i = 0
1432 for sce_vnf in scenarioDict['vnfs']:
1433 for vm in sce_vnf['vms']:
1434 i += 1
1435 myVMDict = {}
1436 #myVMDict['name'] = "%s-%s-%s" % (scenarioDict['name'],sce_vnf['name'], vm['name'])
tiernoae65a482016-11-24 16:20:05 +01001437 myVMDict['name'] = "{}.{}.{}".format(instance_scenario_name,sce_vnf['name'],chr(96+i))
tiernoae4a8d12016-07-08 12:30:39 +02001438 #myVMDict['description'] = vm['description']
1439 myVMDict['description'] = myVMDict['name'][0:99]
1440 if not startvms:
1441 myVMDict['start'] = "no"
1442 myVMDict['name'] = myVMDict['name'][0:255] #limit name length
1443 #print "VM name: %s. Description: %s" % (myVMDict['name'], myVMDict['name'])
1444
1445 #create image at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001446 image_dict = mydb.get_table_by_uuid_name("images", vm['image_id'])
1447 image_id = create_or_use_image(mydb, vims, image_dict, [], True)
tiernoae4a8d12016-07-08 12:30:39 +02001448 vm['vim_image_id'] = image_id
1449
1450 #create flavor at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001451 flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id'])
tiernoae4a8d12016-07-08 12:30:39 +02001452 if flavor_dict['extended']!=None:
1453 flavor_dict['extended']= yaml.load(flavor_dict['extended'])
tiernof97fd272016-07-11 14:32:37 +02001454 flavor_id = create_or_use_flavor(mydb, vims, flavor_dict, [], True)
tiernoae4a8d12016-07-08 12:30:39 +02001455 vm['vim_flavor_id'] = flavor_id
1456
1457
1458 myVMDict['imageRef'] = vm['vim_image_id']
1459 myVMDict['flavorRef'] = vm['vim_flavor_id']
1460 myVMDict['networks'] = []
1461 for iface in vm['interfaces']:
1462 netDict = {}
1463 if iface['type']=="data":
1464 netDict['type'] = iface['model']
1465 elif "model" in iface and iface["model"]!=None:
1466 netDict['model']=iface['model']
1467 #TODO in future, remove this because mac_address will not be set, and the type of PV,VF is obtained from iterface table model
1468 #discover type of interface looking at flavor
1469 for numa in flavor_dict.get('extended',{}).get('numas',[]):
1470 for flavor_iface in numa.get('interfaces',[]):
1471 if flavor_iface.get('name') == iface['internal_name']:
1472 if flavor_iface['dedicated'] == 'yes':
1473 netDict['type']="PF" #passthrough
1474 elif flavor_iface['dedicated'] == 'no':
1475 netDict['type']="VF" #siov
1476 elif flavor_iface['dedicated'] == 'yes:sriov':
1477 netDict['type']="VFnotShared" #sriov but only one sriov on the PF
1478 netDict["mac_address"] = flavor_iface.get("mac_address")
1479 break;
1480 netDict["use"]=iface['type']
1481 if netDict["use"]=="data" and not netDict.get("type"):
1482 #print "netDict", netDict
1483 #print "iface", iface
1484 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'])
1485 if flavor_dict.get('extended')==None:
tiernof97fd272016-07-11 14:32:37 +02001486 raise NfvoException(e_text + "After database migration some information is not available. \
1487 Try to delete and create the scenarios and VNFs again", HTTP_Conflict)
tiernoae4a8d12016-07-08 12:30:39 +02001488 else:
tiernof97fd272016-07-11 14:32:37 +02001489 raise NfvoException(e_text, HTTP_Internal_Server_Error)
tiernoae4a8d12016-07-08 12:30:39 +02001490 if netDict["use"]=="mgmt" or netDict["use"]=="bridge":
1491 netDict["type"]="virtual"
1492 if "vpci" in iface and iface["vpci"] is not None:
1493 netDict['vpci'] = iface['vpci']
1494 if "mac" in iface and iface["mac"] is not None:
1495 netDict['mac_address'] = iface['mac']
1496 netDict['name'] = iface['internal_name']
1497 if iface['net_id'] is None:
1498 for vnf_iface in sce_vnf["interfaces"]:
tiernof97fd272016-07-11 14:32:37 +02001499 #print iface
1500 #print vnf_iface
tiernoae4a8d12016-07-08 12:30:39 +02001501 if vnf_iface['interface_id']==iface['uuid']:
1502 netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ]
1503 break
1504 else:
1505 netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ]
1506 #skip bridge ifaces not connected to any net
1507 #if 'net_id' not in netDict or netDict['net_id']==None:
1508 # continue
1509 myVMDict['networks'].append(netDict)
1510 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
1511 #print myVMDict['name']
1512 #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
1513 #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
1514 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
1515 vm_id = myvim.new_vminstance(myVMDict['name'],myVMDict['description'],myVMDict.get('start', None),
1516 myVMDict['imageRef'],myVMDict['flavorRef'],myVMDict['networks'])
1517 #print "VIM vm instance id (server id) for scenario %s: %s" % (scenarioDict['name'],vm_id)
1518 vm['vim_id'] = vm_id
1519 rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id})
1520 #put interface uuid back to scenario[vnfs][vms[[interfaces]
1521 for net in myVMDict['networks']:
1522 if "vim_id" in net:
1523 for iface in vm['interfaces']:
1524 if net["name"]==iface["internal_name"]:
1525 iface["vim_id"]=net["vim_id"]
1526 break
1527
1528 logger.debug("start scenario Deployment done")
1529 #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
1530 #r,c = mydb.new_instance_scenario_as_a_whole(nfvo_tenant,scenarioDict['name'],scenarioDict)
tiernof97fd272016-07-11 14:32:37 +02001531 instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_scenario_name, instance_scenario_description, scenarioDict)
1532 return mydb.get_instance_scenario(instance_id)
1533
1534 except (db_base_Exception, vimconn.vimconnException) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001535 _, message = rollback(mydb, vims, rollbackList)
tiernof97fd272016-07-11 14:32:37 +02001536 if isinstance(e, db_base_Exception):
1537 error_text = "Exception at database"
1538 else:
1539 error_text = "Exception at VIM"
1540 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
1541 #logger.error("start_scenario %s", error_text)
1542 raise NfvoException(error_text, e.http_code)
tierno7edb6752016-03-21 17:37:52 +01001543
tiernoa4e1a6e2016-08-31 14:19:40 +02001544def unify_cloud_config(cloud_config):
1545 index_to_delete = []
1546 users = cloud_config.get("users", [])
1547 for index0 in range(0,len(users)):
1548 if index0 in index_to_delete:
1549 continue
1550 for index1 in range(index0+1,len(users)):
1551 if index1 in index_to_delete:
1552 continue
1553 if users[index0]["name"] == users[index1]["name"]:
1554 index_to_delete.append(index1)
1555 for key in users[index1].get("key-pairs",()):
1556 if "key-pairs" not in users[index0]:
1557 users[index0]["key-pairs"] = [key]
1558 elif key not in users[index0]["key-pairs"]:
1559 users[index0]["key-pairs"].append(key)
1560 index_to_delete.sort(reverse=True)
1561 for index in index_to_delete:
1562 del users[index]
1563
tiernoa2793912016-10-04 08:15:08 +00001564def get_datacenter_by_name_uuid(mydb, tenant_id, datacenter_id_name=None, **extra_filter):
tiernobe41e222016-09-02 15:16:13 +02001565 datacenter_id = None
1566 datacenter_name = None
1567 if datacenter_id_name:
1568 if utils.check_valid_uuid(datacenter_id_name):
1569 datacenter_id = datacenter_id_name
1570 else:
1571 datacenter_name = datacenter_id_name
tiernoa2793912016-10-04 08:15:08 +00001572 vims = get_vim(mydb, tenant_id, datacenter_id, datacenter_name, **extra_filter)
tiernobe41e222016-09-02 15:16:13 +02001573 if len(vims) == 0:
1574 raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found)
1575 elif len(vims)>1:
1576 #print "nfvo.datacenter_action() error. Several datacenters found"
1577 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
1578 return vims.keys()[0], vims.values()[0]
1579
garciadeblas9f8456e2016-09-05 05:02:59 +02001580def new_scenario_v03(mydb, tenant_id, scenario_dict):
1581 scenario = scenario_dict["scenario"]
1582 if tenant_id != "any":
1583 check_tenant(mydb, tenant_id)
1584 if "tenant_id" in scenario:
1585 if scenario["tenant_id"] != tenant_id:
1586 logger("Tenant '%s' not found", tenant_id)
1587 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(
1588 scenario["tenant_id"], tenant_id), HTTP_Unauthorized)
1589 else:
1590 tenant_id=None
1591
1592#1: Check that VNF are present at database table vnfs and update content into scenario dict
1593 for name,vnf in scenario["vnfs"].iteritems():
1594 where={}
1595 where_or={"tenant_id": tenant_id, 'public': "true"}
1596 error_text = ""
garciadeblas71781ea2016-09-19 14:41:59 +02001597 error_pos = "'scenario':'vnfs':'" + name + "'"
garciadeblas9f8456e2016-09-05 05:02:59 +02001598 if 'vnf_id' in vnf:
1599 error_text += " 'vnf_id' " + vnf['vnf_id']
1600 where['uuid'] = vnf['vnf_id']
1601 if 'vnf_name' in vnf:
1602 error_text += " 'vnf_name' " + vnf['vnf_name']
1603 where['name'] = vnf['vnf_name']
1604 if len(where) == 0:
garciadeblas71781ea2016-09-19 14:41:59 +02001605 raise NfvoException("Needed a 'vnf_id' or 'vnf_name' at " + error_pos, HTTP_Bad_Request)
garciadeblas9f8456e2016-09-05 05:02:59 +02001606 vnf_db = mydb.get_rows(SELECT=('uuid','name','description'),
1607 FROM='vnfs',
1608 WHERE=where,
1609 WHERE_OR=where_or,
1610 WHERE_AND_OR="AND")
1611 if len(vnf_db)==0:
1612 raise NfvoException("Unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
1613 elif len(vnf_db)>1:
1614 raise NfvoException("More than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
1615 vnf['uuid']=vnf_db[0]['uuid']
1616 vnf['description']=vnf_db[0]['description']
1617 vnf['ifaces'] = {}
1618 # get external interfaces
1619 ext_ifaces = mydb.get_rows(SELECT=('external_name as name','i.uuid as iface_uuid', 'i.type as type'),
1620 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
1621 WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name':None} )
1622 for ext_iface in ext_ifaces:
1623 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type':ext_iface['type']}
1624
1625 # TODO? get internal-connections from db.nets and their profiles, and update scenario[vnfs][internal-connections] accordingly
1626
1627#2: Insert net_key and ip_address at every vnf interface
1628 for net_name,net in scenario["networks"].iteritems():
1629 net_type_bridge=False
1630 net_type_data=False
1631 for iface_dict in net["interfaces"]:
1632 logger.debug("Iface_dict %s", iface_dict)
1633 vnf = iface_dict["vnf"]
1634 iface = iface_dict["vnf_interface"]
1635 if vnf not in scenario["vnfs"]:
1636 error_text = "Error at 'networks':'%s':'interfaces' VNF '%s' not match any VNF at 'vnfs'" % (net_name, vnf)
1637 #logger.debug(error_text)
1638 raise NfvoException(error_text, HTTP_Not_Found)
1639 if iface not in scenario["vnfs"][vnf]['ifaces']:
1640 error_text = "Error at 'networks':'%s':'interfaces':'%s' interface not match any VNF interface" % (net_name, iface)
1641 #logger.debug(error_text)
1642 raise NfvoException(error_text, HTTP_Bad_Request)
1643 if "net_key" in scenario["vnfs"][vnf]['ifaces'][iface]:
1644 error_text = "Error at 'networks':'%s':'interfaces':'%s' interface already connected at network '%s'" \
1645 % (net_name, iface,scenario["vnfs"][vnf]['ifaces'][iface]['net_key'])
1646 #logger.debug(error_text)
1647 raise NfvoException(error_text, HTTP_Bad_Request)
1648 scenario["vnfs"][vnf]['ifaces'][ iface ]['net_key'] = net_name
1649 scenario["vnfs"][vnf]['ifaces'][ iface ]['ip_address'] = iface_dict.get('ip_address',None)
1650 iface_type = scenario["vnfs"][vnf]['ifaces'][iface]['type']
1651 if iface_type=='mgmt' or iface_type=='bridge':
1652 net_type_bridge = True
1653 else:
1654 net_type_data = True
1655 if net_type_bridge and net_type_data:
1656 error_text = "Error connection interfaces of bridge type and data type at 'networks':'%s':'interfaces'" % (net_name)
1657 #logger.debug(error_text)
1658 raise NfvoException(error_text, HTTP_Bad_Request)
1659 elif net_type_bridge:
1660 type_='bridge'
1661 else:
1662 type_='data' if len(net["interfaces"])>2 else 'ptp'
1663
1664 if ("implementation" in net):
1665 if (type_ == "bridge" and net["implementation"] == "underlay"):
1666 error_text = "Error connecting interfaces of data type to a network declared as 'underlay' at 'network':'%s'" % (net_name)
1667 #logger.debug(error_text)
1668 raise NfvoException(error_text, HTTP_Bad_Request)
1669 elif (type_ <> "bridge" and net["implementation"] == "overlay"):
1670 error_text = "Error connecting interfaces of data type to a network declared as 'overlay' at 'network':'%s'" % (net_name)
1671 #logger.debug(error_text)
1672 raise NfvoException(error_text, HTTP_Bad_Request)
1673 net.pop("implementation")
1674 if ("type" in net):
1675 if (type_ == "data" and net["type"] == "e-line"):
1676 error_text = "Error connecting more than 2 interfaces of data type to a network declared as type 'e-line' at 'network':'%s'" % (net_name)
1677 #logger.debug(error_text)
1678 raise NfvoException(error_text, HTTP_Bad_Request)
1679 elif (type_ == "ptp" and net["type"] == "e-lan"):
1680 type_ = "data"
1681
1682 net['type'] = type_
1683 net['name'] = net_name
1684 net['external'] = net.get('external', False)
1685
1686#3: insert at database
1687 scenario["nets"] = scenario["networks"]
1688 scenario['tenant_id'] = tenant_id
1689 scenario_id = mydb.new_scenario2(scenario)
1690 return scenario_id
1691
1692def update(d, u):
1693 '''Takes dict d and updates it with the values in dict u.'''
1694 '''It merges all depth levels'''
1695 for k, v in u.iteritems():
1696 if isinstance(v, collections.Mapping):
1697 r = update(d.get(k, {}), v)
1698 d[k] = r
1699 else:
1700 d[k] = u[k]
1701 return d
1702
tierno7edb6752016-03-21 17:37:52 +01001703def create_instance(mydb, tenant_id, instance_dict):
tiernoae4a8d12016-07-08 12:30:39 +02001704 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tierno4319dad2016-09-05 12:11:11 +02001705 #logger.debug("Creating instance...")
tierno7edb6752016-03-21 17:37:52 +01001706 scenario = instance_dict["scenario"]
tiernobe41e222016-09-02 15:16:13 +02001707
1708 #find main datacenter
1709 myvims = {}
tiernoa2793912016-10-04 08:15:08 +00001710 datacenter2tenant = {}
tierno7edb6752016-03-21 17:37:52 +01001711 datacenter = instance_dict.get("datacenter")
tiernobe41e222016-09-02 15:16:13 +02001712 default_datacenter_id, vim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
1713 myvims[default_datacenter_id] = vim
tiernoa2793912016-10-04 08:15:08 +00001714 datacenter2tenant[default_datacenter_id] = vim['config']['datacenter_tenant_id']
tierno392f2852016-05-13 12:28:55 +02001715 #myvim_tenant = myvim['tenant_id']
tiernobe41e222016-09-02 15:16:13 +02001716# default_datacenter_name = vim['name']
tierno7edb6752016-03-21 17:37:52 +01001717 rollbackList=[]
tiernoae4a8d12016-07-08 12:30:39 +02001718
1719 #print "Checking that the scenario exists and getting the scenario dictionary"
tiernobe41e222016-09-02 15:16:13 +02001720 scenarioDict = mydb.get_scenario(scenario, tenant_id, default_datacenter_id)
garciadeblas9f8456e2016-09-05 05:02:59 +02001721
garciadeblasbb6a1ed2016-09-30 14:02:09 +00001722 #logger.debug(">>>>>>> Dictionaries before merging")
1723 #logger.debug(">>>>>>> InstanceDict:\n{}".format(yaml.safe_dump(instance_dict,default_flow_style=False, width=256)))
1724 #logger.debug(">>>>>>> ScenarioDict:\n{}".format(yaml.safe_dump(scenarioDict,default_flow_style=False, width=256)))
garciadeblas9f8456e2016-09-05 05:02:59 +02001725
tiernobe41e222016-09-02 15:16:13 +02001726 scenarioDict['datacenter_id'] = default_datacenter_id
garciadeblas9f8456e2016-09-05 05:02:59 +02001727
tierno7edb6752016-03-21 17:37:52 +01001728 auxNetDict = {} #Auxiliar dictionary. First key:'scenario' or sce_vnf uuid. Second Key: uuid of the net/sce_net. Value: vim_net_id
1729 auxNetDict['scenario'] = {}
1730
tierno4319dad2016-09-05 12:11:11 +02001731 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 +01001732 instance_name = instance_dict["name"]
1733 instance_description = instance_dict.get("description")
1734 try:
1735 #0 check correct parameters
tiernobe41e222016-09-02 15:16:13 +02001736 for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems():
tierno7edb6752016-03-21 17:37:52 +01001737 found=False
1738 for scenario_net in scenarioDict['nets']:
tiernobe41e222016-09-02 15:16:13 +02001739 if net_name == scenario_net["name"]:
tierno7edb6752016-03-21 17:37:52 +01001740 found = True
1741 break
1742 if not found:
tiernobe41e222016-09-02 15:16:13 +02001743 raise NfvoException("Invalid scenario network name '{}' at instance:networks".format(net_name), HTTP_Bad_Request)
1744 if "sites" not in net_instance_desc:
1745 net_instance_desc["sites"] = [ {} ]
1746 site_without_datacenter_field = False
1747 for site in net_instance_desc["sites"]:
1748 if site.get("datacenter"):
1749 if site["datacenter"] not in myvims:
1750 #Add this datacenter to myvims
1751 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, site["datacenter"])
1752 myvims[d] = v
tiernoa2793912016-10-04 08:15:08 +00001753 datacenter2tenant[d] = v['config']['datacenter_tenant_id']
tiernobe41e222016-09-02 15:16:13 +02001754 site["datacenter"] = d #change name to id
1755 else:
1756 if site_without_datacenter_field:
1757 raise NfvoException("Found more than one entries without datacenter field at instance:networks:{}:sites".format(net_name), HTTP_Bad_Request)
1758 site_without_datacenter_field = True
1759 site["datacenter"] = default_datacenter_id #change name to id
1760
1761 for vnf_name, vnf_instance_desc in instance_dict.get("vnfs",{}).iteritems():
tierno7edb6752016-03-21 17:37:52 +01001762 found=False
1763 for scenario_vnf in scenarioDict['vnfs']:
tiernobe41e222016-09-02 15:16:13 +02001764 if vnf_name == scenario_vnf['name']:
tierno7edb6752016-03-21 17:37:52 +01001765 found = True
1766 break
1767 if not found:
tiernobe41e222016-09-02 15:16:13 +02001768 raise NfvoException("Invalid vnf name '{}' at instance:vnfs".format(vnf_instance_desc), HTTP_Bad_Request)
1769 if "datacenter" in vnf_instance_desc:
1770 #Add this datacenter to myvims
1771 if vnf_instance_desc["datacenter"] not in myvims:
1772 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, vnf_instance_desc["datacenter"])
1773 myvims[d] = v
tiernoa2793912016-10-04 08:15:08 +00001774 datacenter2tenant[d] = v['config']['datacenter_tenant_id']
1775 scenario_vnf["datacenter"] = vnf_instance_desc["datacenter"]
garciadeblas30833382017-01-09 09:46:31 +01001776
tiernoa4e1a6e2016-08-31 14:19:40 +02001777 #0.1 parse cloud-config parameters
1778 cloud_config = scenarioDict.get("cloud-config", {})
1779 if instance_dict.get("cloud-config"):
1780 cloud_config.update( instance_dict["cloud-config"])
1781 if not cloud_config:
1782 cloud_config = None
1783 else:
1784 scenarioDict["cloud-config"] = cloud_config
1785 unify_cloud_config(cloud_config)
garciadeblas9f8456e2016-09-05 05:02:59 +02001786
1787 #0.2 merge instance information into scenario
1788 #Ideally, the operation should be as simple as: update(scenarioDict,instance_dict)
1789 #However, this is not possible yet.
1790 for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems():
1791 for scenario_net in scenarioDict['nets']:
1792 if net_name == scenario_net["name"]:
1793 if 'ip-profile' in net_instance_desc:
1794 ipprofile = net_instance_desc['ip-profile']
1795 ipprofile['subnet_address'] = ipprofile.pop('subnet-address',None)
1796 ipprofile['ip_version'] = ipprofile.pop('ip-version','IPv4')
1797 ipprofile['gateway_address'] = ipprofile.pop('gateway-address',None)
1798 ipprofile['dns_address'] = ipprofile.pop('dns-address',None)
1799 if 'dhcp' in ipprofile:
1800 ipprofile['dhcp_start_address'] = ipprofile['dhcp'].get('start-address',None)
1801 ipprofile['dhcp_enabled'] = ipprofile['dhcp'].get('enabled',True)
1802 ipprofile['dhcp_count'] = ipprofile['dhcp'].get('count',None)
1803 del ipprofile['dhcp']
garciadeblasedca7b32016-09-29 14:01:52 +00001804 if 'ip_profile' not in scenario_net:
1805 scenario_net['ip_profile'] = ipprofile
1806 else:
1807 update(scenario_net['ip_profile'],ipprofile)
tiernoe6c58ce2016-09-14 16:02:49 +02001808 for interface in net_instance_desc.get('interfaces', () ):
garciadeblas9f8456e2016-09-05 05:02:59 +02001809 if 'ip_address' in interface:
1810 for vnf in scenarioDict['vnfs']:
1811 if interface['vnf'] == vnf['name']:
1812 for vnf_interface in vnf['interfaces']:
1813 if interface['vnf_interface'] == vnf_interface['external_name']:
1814 vnf_interface['ip_address']=interface['ip_address']
1815
garciadeblasbb6a1ed2016-09-30 14:02:09 +00001816 #logger.debug(">>>>>>>> Merged dictionary")
tierno4319dad2016-09-05 12:11:11 +02001817 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 +02001818
tierno7edb6752016-03-21 17:37:52 +01001819
1820 #1. Creating new nets (sce_nets) in the VIM"
1821 for sce_net in scenarioDict['nets']:
tiernobe41e222016-09-02 15:16:13 +02001822 sce_net["vim_id_sites"]={}
tierno7edb6752016-03-21 17:37:52 +01001823 descriptor_net = instance_dict.get("networks",{}).get(sce_net["name"],{})
tiernobe41e222016-09-02 15:16:13 +02001824 net_name = descriptor_net.get("vim-network-name")
1825 auxNetDict['scenario'][sce_net['uuid']] = {}
1826
1827 sites = descriptor_net.get("sites", [ {} ])
1828 for site in sites:
1829 if site.get("datacenter"):
1830 vim = myvims[ site["datacenter"] ]
1831 datacenter_id = site["datacenter"]
tierno7edb6752016-03-21 17:37:52 +01001832 else:
tiernobe41e222016-09-02 15:16:13 +02001833 vim = myvims[ default_datacenter_id ]
1834 datacenter_id = default_datacenter_id
tiernobe41e222016-09-02 15:16:13 +02001835 net_type = sce_net['type']
1836 lookfor_filter = {'admin_state_up': True, 'status': 'ACTIVE'} #'shared': True
1837 if sce_net["external"]:
1838 if not net_name:
1839 net_name = sce_net["name"]
1840 if "netmap-use" in site or "netmap-create" in site:
1841 create_network = False
1842 lookfor_network = False
1843 if "netmap-use" in site:
1844 lookfor_network = True
1845 if utils.check_valid_uuid(site["netmap-use"]):
1846 filter_text = "scenario id '%s'" % site["netmap-use"]
1847 lookfor_filter["id"] = site["netmap-use"]
1848 else:
1849 filter_text = "scenario name '%s'" % site["netmap-use"]
1850 lookfor_filter["name"] = site["netmap-use"]
1851 if "netmap-create" in site:
1852 create_network = True
1853 net_vim_name = net_name
1854 if site["netmap-create"]:
1855 net_vim_name = site["netmap-create"]
1856
1857 elif sce_net['vim_id'] != None:
1858 #there is a netmap at datacenter_nets database #TODO REVISE!!!!
1859 create_network = False
1860 lookfor_network = True
1861 lookfor_filter["id"] = sce_net['vim_id']
1862 filter_text = "vim_id '%s' datacenter_netmap name '%s'. Try to reload vims with datacenter-net-update" % (sce_net['vim_id'], sce_net["name"])
1863 #look for network at datacenter and return error
1864 else:
1865 #There is not a netmap, look at datacenter for a net with this name and create if not found
1866 create_network = True
1867 lookfor_network = True
1868 lookfor_filter["name"] = sce_net["name"]
1869 net_vim_name = sce_net["name"]
1870 filter_text = "scenario name '%s'" % sce_net["name"]
tierno7edb6752016-03-21 17:37:52 +01001871 else:
tiernobe41e222016-09-02 15:16:13 +02001872 if not net_name:
1873 net_name = "%s.%s" %(instance_name, sce_net["name"])
1874 net_name = net_name[:255] #limit length
1875 net_vim_name = net_name
1876 create_network = True
1877 lookfor_network = False
1878
1879 if lookfor_network:
1880 vim_nets = vim.get_network_list(filter_dict=lookfor_filter)
1881 if len(vim_nets) > 1:
1882 raise NfvoException("More than one candidate VIM network found for " + filter_text, HTTP_Bad_Request )
1883 elif len(vim_nets) == 0:
1884 if not create_network:
1885 raise NfvoException("No candidate VIM network found for " + filter_text, HTTP_Bad_Request )
1886 else:
1887 sce_net["vim_id_sites"][datacenter_id] = vim_nets[0]['id']
tiernobe41e222016-09-02 15:16:13 +02001888 auxNetDict['scenario'][sce_net['uuid']][datacenter_id] = vim_nets[0]['id']
1889 create_network = False
1890 if create_network:
1891 #if network is not external
garciadeblas9f8456e2016-09-05 05:02:59 +02001892 network_id = vim.new_network(net_vim_name, net_type, sce_net.get('ip_profile',None))
tiernobe41e222016-09-02 15:16:13 +02001893 sce_net["vim_id_sites"][datacenter_id] = network_id
1894 auxNetDict['scenario'][sce_net['uuid']][datacenter_id] = network_id
1895 rollbackList.append({'what':'network', 'where':'vim', 'vim_id':datacenter_id, 'uuid':network_id})
tierno66345bc2016-09-26 11:37:55 +02001896 sce_net["created"] = True
tierno7edb6752016-03-21 17:37:52 +01001897
1898 #2. Creating new nets (vnf internal nets) in the VIM"
1899 #For each vnf net, we create it and we add it to instanceNetlist.
1900 for sce_vnf in scenarioDict['vnfs']:
1901 for net in sce_vnf['nets']:
tiernobe41e222016-09-02 15:16:13 +02001902 if sce_vnf.get("datacenter"):
1903 vim = myvims[ sce_vnf["datacenter"] ]
1904 datacenter_id = sce_vnf["datacenter"]
1905 else:
1906 vim = myvims[ default_datacenter_id ]
1907 datacenter_id = default_datacenter_id
tierno7edb6752016-03-21 17:37:52 +01001908 descriptor_net = instance_dict.get("vnfs",{}).get(sce_vnf["name"],{})
1909 net_name = descriptor_net.get("name")
1910 if not net_name:
1911 net_name = "%s.%s" %(instance_name, net["name"])
1912 net_name = net_name[:255] #limit length
1913 net_type = net['type']
garciadeblas9f8456e2016-09-05 05:02:59 +02001914 network_id = vim.new_network(net_name, net_type, net.get('ip_profile',None))
tierno7edb6752016-03-21 17:37:52 +01001915 net['vim_id'] = network_id
1916 if sce_vnf['uuid'] not in auxNetDict:
1917 auxNetDict[sce_vnf['uuid']] = {}
1918 auxNetDict[sce_vnf['uuid']][net['uuid']] = network_id
1919 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
tierno66345bc2016-09-26 11:37:55 +02001920 net["created"] = True
1921
tierno7edb6752016-03-21 17:37:52 +01001922
tiernoae4a8d12016-07-08 12:30:39 +02001923 #print "auxNetDict:"
1924 #print yaml.safe_dump(auxNetDict, indent=4, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +01001925
1926 #3. Creating new vm instances in the VIM
tiernoae4a8d12016-07-08 12:30:39 +02001927 #myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict)
tierno7edb6752016-03-21 17:37:52 +01001928 for sce_vnf in scenarioDict['vnfs']:
tiernobe41e222016-09-02 15:16:13 +02001929 if sce_vnf.get("datacenter"):
1930 vim = myvims[ sce_vnf["datacenter"] ]
1931 datacenter_id = sce_vnf["datacenter"]
1932 else:
1933 vim = myvims[ default_datacenter_id ]
1934 datacenter_id = default_datacenter_id
1935 sce_vnf["datacenter_id"] = datacenter_id
tierno7edb6752016-03-21 17:37:52 +01001936 i = 0
1937 for vm in sce_vnf['vms']:
1938 i += 1
1939 myVMDict = {}
tiernoae65a482016-11-24 16:20:05 +01001940 myVMDict['name'] = "{}.{}.{}".format(instance_name,sce_vnf['name'],chr(96+i))
tierno7edb6752016-03-21 17:37:52 +01001941 myVMDict['description'] = myVMDict['name'][0:99]
1942# if not startvms:
1943# myVMDict['start'] = "no"
1944 myVMDict['name'] = myVMDict['name'][0:255] #limit name length
1945 #create image at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001946 image_dict = mydb.get_table_by_uuid_name("images", vm['image_id'])
tierno5e91eb82016-10-04 09:39:07 +00001947 image_id = create_or_use_image(mydb, {datacenter_id: vim}, image_dict, [], True)
tierno7edb6752016-03-21 17:37:52 +01001948 vm['vim_image_id'] = image_id
1949
1950 #create flavor at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001951 flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id'])
tierno7edb6752016-03-21 17:37:52 +01001952 if flavor_dict['extended']!=None:
1953 flavor_dict['extended']= yaml.load(flavor_dict['extended'])
montesmoreno0c8def02016-12-22 12:16:23 +00001954 flavor_id = create_or_use_flavor(mydb, {datacenter_id: vim}, flavor_dict, rollbackList, True)
1955
1956
1957
1958
1959 #Obtain information for additional disks
1960 extended_flavor_dict = mydb.get_rows(FROM='datacenters_flavors', SELECT=('extended',), WHERE={'vim_id': flavor_id})
1961 if not extended_flavor_dict:
1962 raise NfvoException("flavor '{}' not found".format(flavor_id), HTTP_Not_Found)
1963 return
1964
1965 #extended_flavor_dict_yaml = yaml.load(extended_flavor_dict[0])
1966 myVMDict['disks'] = None
1967 extended_info = extended_flavor_dict[0]['extended']
1968 if extended_info != None:
1969 extended_flavor_dict_yaml = yaml.load(extended_info)
1970 if 'disks' in extended_flavor_dict_yaml:
1971 myVMDict['disks'] = extended_flavor_dict_yaml['disks']
1972
1973
1974
1975
tierno7edb6752016-03-21 17:37:52 +01001976 vm['vim_flavor_id'] = flavor_id
1977
1978 myVMDict['imageRef'] = vm['vim_image_id']
1979 myVMDict['flavorRef'] = vm['vim_flavor_id']
1980 myVMDict['networks'] = []
tiernoa2793912016-10-04 08:15:08 +00001981 #TODO ALF. connect_mgmt_interfaces. Connect management interfaces if this is true
tierno7edb6752016-03-21 17:37:52 +01001982 for iface in vm['interfaces']:
1983 netDict = {}
1984 if iface['type']=="data":
1985 netDict['type'] = iface['model']
1986 elif "model" in iface and iface["model"]!=None:
1987 netDict['model']=iface['model']
1988 #TODO in future, remove this because mac_address will not be set, and the type of PV,VF is obtained from iterface table model
1989 #discover type of interface looking at flavor
1990 for numa in flavor_dict.get('extended',{}).get('numas',[]):
1991 for flavor_iface in numa.get('interfaces',[]):
1992 if flavor_iface.get('name') == iface['internal_name']:
1993 if flavor_iface['dedicated'] == 'yes':
1994 netDict['type']="PF" #passthrough
1995 elif flavor_iface['dedicated'] == 'no':
1996 netDict['type']="VF" #siov
1997 elif flavor_iface['dedicated'] == 'yes:sriov':
1998 netDict['type']="VFnotShared" #sriov but only one sriov on the PF
1999 netDict["mac_address"] = flavor_iface.get("mac_address")
2000 break;
2001 netDict["use"]=iface['type']
2002 if netDict["use"]=="data" and not netDict.get("type"):
2003 #print "netDict", netDict
2004 #print "iface", iface
2005 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'])
2006 if flavor_dict.get('extended')==None:
tiernoae4a8d12016-07-08 12:30:39 +02002007 raise NfvoException(e_text + "After database migration some information is not available. \
2008 Try to delete and create the scenarios and VNFs again", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002009 else:
tiernoae4a8d12016-07-08 12:30:39 +02002010 raise NfvoException(e_text, HTTP_Internal_Server_Error)
tierno7edb6752016-03-21 17:37:52 +01002011 if netDict["use"]=="mgmt" or netDict["use"]=="bridge":
2012 netDict["type"]="virtual"
2013 if "vpci" in iface and iface["vpci"] is not None:
2014 netDict['vpci'] = iface['vpci']
2015 if "mac" in iface and iface["mac"] is not None:
2016 netDict['mac_address'] = iface['mac']
2017 netDict['name'] = iface['internal_name']
2018 if iface['net_id'] is None:
2019 for vnf_iface in sce_vnf["interfaces"]:
tiernof97fd272016-07-11 14:32:37 +02002020 #print iface
2021 #print vnf_iface
tierno7edb6752016-03-21 17:37:52 +01002022 if vnf_iface['interface_id']==iface['uuid']:
tiernobe41e222016-09-02 15:16:13 +02002023 netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ][datacenter_id]
tierno7edb6752016-03-21 17:37:52 +01002024 break
2025 else:
2026 netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ]
2027 #skip bridge ifaces not connected to any net
2028 #if 'net_id' not in netDict or netDict['net_id']==None:
2029 # continue
2030 myVMDict['networks'].append(netDict)
tiernoae4a8d12016-07-08 12:30:39 +02002031 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
2032 #print myVMDict['name']
2033 #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
2034 #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
2035 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
tiernobe41e222016-09-02 15:16:13 +02002036 vm_id = vim.new_vminstance(myVMDict['name'],myVMDict['description'],myVMDict.get('start', None),
montesmoreno0c8def02016-12-22 12:16:23 +00002037 myVMDict['imageRef'],myVMDict['flavorRef'],myVMDict['networks'], cloud_config = cloud_config,
2038 disk_list = myVMDict['disks'])
2039
tierno7edb6752016-03-21 17:37:52 +01002040 vm['vim_id'] = vm_id
2041 rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id})
2042 #put interface uuid back to scenario[vnfs][vms[[interfaces]
2043 for net in myVMDict['networks']:
2044 if "vim_id" in net:
2045 for iface in vm['interfaces']:
2046 if net["name"]==iface["internal_name"]:
2047 iface["vim_id"]=net["vim_id"]
2048 break
tiernoa2793912016-10-04 08:15:08 +00002049 scenarioDict["datacenter2tenant"] = datacenter2tenant
2050 logger.debug("create_instance Deployment done scenarioDict: %s",
2051 yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False) )
tiernof97fd272016-07-11 14:32:37 +02002052 instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_name, instance_description, scenarioDict)
2053 return mydb.get_instance_scenario(instance_id)
2054 except (NfvoException, vimconn.vimconnException,db_base_Exception) as e:
tiernobe41e222016-09-02 15:16:13 +02002055 message = rollback(mydb, myvims, rollbackList)
tiernof97fd272016-07-11 14:32:37 +02002056 if isinstance(e, db_base_Exception):
2057 error_text = "database Exception"
2058 elif isinstance(e, vimconn.vimconnException):
2059 error_text = "VIM Exception"
2060 else:
2061 error_text = "Exception"
2062 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
2063 #logger.error("create_instance: %s", error_text)
2064 raise NfvoException(error_text, e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02002065
tierno7edb6752016-03-21 17:37:52 +01002066def delete_instance(mydb, tenant_id, instance_id):
tiernoae4a8d12016-07-08 12:30:39 +02002067 #print "Checking that the instance_id exists and getting the instance dictionary"
tiernof97fd272016-07-11 14:32:37 +02002068 instanceDict = mydb.get_instance_scenario(instance_id, tenant_id)
tiernoae4a8d12016-07-08 12:30:39 +02002069 #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +01002070 tenant_id = instanceDict["tenant_id"]
tiernoae4a8d12016-07-08 12:30:39 +02002071 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tierno7edb6752016-03-21 17:37:52 +01002072
tiernoa2793912016-10-04 08:15:08 +00002073 #1. Delete from Database
tiernof97fd272016-07-11 14:32:37 +02002074 message = mydb.delete_instance_scenario(instance_id, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01002075
2076 #2. delete from VIM
tiernoa2793912016-10-04 08:15:08 +00002077 error_msg = ""
2078 myvims={}
tierno7edb6752016-03-21 17:37:52 +01002079
2080 #2.1 deleting VMs
2081 #vm_fail_list=[]
2082 for sce_vnf in instanceDict['vnfs']:
tiernoa2793912016-10-04 08:15:08 +00002083 datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
2084 if datacenter_key not in myvims:
2085 vims = get_vim(mydb, tenant_id, datacenter_id=sce_vnf["datacenter_id"],
2086 datacenter_tenant_id=sce_vnf["datacenter_tenant_id"])
2087 if len(vims) == 0:
2088 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"],
2089 sce_vnf["datacenter_tenant_id"]))
2090 myvims[datacenter_key] = None
2091 else:
2092 myvims[datacenter_key] = vims.values()[0]
2093 myvim = myvims[datacenter_key]
tierno7edb6752016-03-21 17:37:52 +01002094 for vm in sce_vnf['vms']:
tiernoa2793912016-10-04 08:15:08 +00002095 if not myvim:
2096 error_msg += "\n VM id={} cannot be deleted because datacenter={} not found".format(vm['vim_vm_id'], sce_vnf["datacenter_id"])
2097 continue
tiernoae4a8d12016-07-08 12:30:39 +02002098 try:
2099 myvim.delete_vminstance(vm['vim_vm_id'])
2100 except vimconn.vimconnNotFoundException as e:
tiernoa2793912016-10-04 08:15:08 +00002101 error_msg+="\n VM VIM_id={} not found at datacenter={}".format(vm['vim_vm_id'], sce_vnf["datacenter_id"])
tiernoae4a8d12016-07-08 12:30:39 +02002102 logger.warn("VM instance '%s'uuid '%s', VIM id '%s', from VNF_id '%s' not found",
2103 vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id'])
2104 except vimconn.vimconnException as e:
tiernoa2793912016-10-04 08:15:08 +00002105 error_msg+="\n VM VIM_id={} at datacenter={} Error: {} {}".format(vm['vim_vm_id'], sce_vnf["datacenter_id"], e.http_code, str(e))
2106 logger.error("Error %d deleting VM instance '%s'uuid '%s', VIM_id '%s', from VNF_id '%s': %s",
tiernoae4a8d12016-07-08 12:30:39 +02002107 e.http_code, vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id'], str(e))
tierno7edb6752016-03-21 17:37:52 +01002108
2109 #2.2 deleting NETS
2110 #net_fail_list=[]
2111 for net in instanceDict['nets']:
tierno66345bc2016-09-26 11:37:55 +02002112 if not net['created']:
tierno7edb6752016-03-21 17:37:52 +01002113 continue #skip not created nets
tiernoa2793912016-10-04 08:15:08 +00002114 datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"])
2115 if datacenter_key not in myvims:
2116 vims = get_vim(mydb, tenant_id, datacenter_id=net["datacenter_id"],
2117 datacenter_tenant_id=net["datacenter_tenant_id"])
2118 if len(vims) == 0:
2119 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]))
2120 myvims[datacenter_key] = None
2121 else:
2122 myvims[datacenter_key] = vims.values()[0]
2123 myvim = myvims[datacenter_key]
2124
tierno7edb6752016-03-21 17:37:52 +01002125 if not myvim:
tiernoa2793912016-10-04 08:15:08 +00002126 error_msg += "\n Net VIM_id={} cannot be deleted because datacenter={} not found".format(net['vim_net_id'], net["datacenter_id"])
tierno7edb6752016-03-21 17:37:52 +01002127 continue
tiernoae4a8d12016-07-08 12:30:39 +02002128 try:
2129 myvim.delete_network(net['vim_net_id'])
2130 except vimconn.vimconnNotFoundException as e:
tiernoa2793912016-10-04 08:15:08 +00002131 error_msg+="\n NET VIM_id={} not found at datacenter={}".format(net['vim_net_id'], net["datacenter_id"])
2132 logger.warn("NET '%s', VIM_id '%s', from VNF_net_id '%s' not found",
2133 net['uuid'], net['vim_net_id'], str(net['vnf_net_id']))
tiernoae4a8d12016-07-08 12:30:39 +02002134 except vimconn.vimconnException as e:
tiernoa2793912016-10-04 08:15:08 +00002135 error_msg+="\n NET VIM_id={} at datacenter={} Error: {} {}".format(net['vim_net_id'], net["datacenter_id"], e.http_code, str(e))
2136 logger.error("Error %d deleting NET '%s', VIM_id '%s', from VNF_net_id '%s': %s",
2137 e.http_code, net['uuid'], net['vim_net_id'], str(net['vnf_net_id']), str(e))
tierno7edb6752016-03-21 17:37:52 +01002138 if len(error_msg)>0:
tiernof97fd272016-07-11 14:32:37 +02002139 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 +01002140 else:
tiernof97fd272016-07-11 14:32:37 +02002141 return 'instance ' + message + ' deleted'
tierno7edb6752016-03-21 17:37:52 +01002142
2143def refresh_instance(mydb, nfvo_tenant, instanceDict, datacenter=None, vim_tenant=None):
2144 '''Refreshes a scenario instance. It modifies instanceDict'''
2145 '''Returns:
2146 - 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
2147 - error_msg
2148 '''
2149 # Assumption: nfvo_tenant and instance_id were checked before entering into this function
tiernoae4a8d12016-07-08 12:30:39 +02002150 #print "nfvo.refresh_instance begins"
tierno7edb6752016-03-21 17:37:52 +01002151 #print json.dumps(instanceDict, indent=4)
2152
tiernoae4a8d12016-07-08 12:30:39 +02002153 #print "Getting the VIM URL and the VIM tenant_id"
tiernoa2793912016-10-04 08:15:08 +00002154 myvims={}
2155
tiernoae4a8d12016-07-08 12:30:39 +02002156 # 1. Getting VIM vm and net list
tierno7edb6752016-03-21 17:37:52 +01002157 vms_updated = [] #List of VM instance uuids in openmano that were updated
2158 vms_notupdated=[]
tiernoa2793912016-10-04 08:15:08 +00002159 vm_list = {}
tierno7edb6752016-03-21 17:37:52 +01002160 for sce_vnf in instanceDict['vnfs']:
tiernoa2793912016-10-04 08:15:08 +00002161 datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
2162 if datacenter_key not in vm_list:
2163 vm_list[datacenter_key] = []
2164 if datacenter_key not in myvims:
2165 vims = get_vim(mydb, nfvo_tenant, datacenter_id=sce_vnf["datacenter_id"],
2166 datacenter_tenant_id=sce_vnf["datacenter_tenant_id"])
2167 if len(vims) == 0:
2168 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"]))
2169 myvims[datacenter_key] = None
2170 else:
2171 myvims[datacenter_key] = vims.values()[0]
tierno7edb6752016-03-21 17:37:52 +01002172 for vm in sce_vnf['vms']:
tiernoa2793912016-10-04 08:15:08 +00002173 vm_list[datacenter_key].append(vm['vim_vm_id'])
tiernoae4a8d12016-07-08 12:30:39 +02002174 vms_notupdated.append(vm["uuid"])
2175
2176 nets_updated = [] #List of VM instance uuids in openmano that were updated
tierno7edb6752016-03-21 17:37:52 +01002177 nets_notupdated=[]
tiernoa2793912016-10-04 08:15:08 +00002178 net_list = {}
tierno7edb6752016-03-21 17:37:52 +01002179 for net in instanceDict['nets']:
tiernoa2793912016-10-04 08:15:08 +00002180 datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"])
2181 if datacenter_key not in net_list:
2182 net_list[datacenter_key] = []
2183 if datacenter_key not in myvims:
2184 vims = get_vim(mydb, nfvo_tenant, datacenter_id=net["datacenter_id"],
2185 datacenter_tenant_id=net["datacenter_tenant_id"])
2186 if len(vims) == 0:
2187 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]))
2188 myvims[datacenter_key] = None
2189 else:
2190 myvims[datacenter_key] = vims.values()[0]
2191
2192 net_list[datacenter_key].append(net['vim_net_id'])
tiernoae4a8d12016-07-08 12:30:39 +02002193 nets_notupdated.append(net["uuid"])
2194
tiernoa2793912016-10-04 08:15:08 +00002195 # 1. Getting the status of all VMs
2196 vm_dict={}
2197 for datacenter_key in myvims:
2198 if not vm_list.get(datacenter_key):
2199 continue
2200 failed = True
2201 failed_message=""
2202 if not myvims[datacenter_key]:
2203 failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])
2204 else:
2205 try:
2206 vm_dict.update(myvims[datacenter_key].refresh_vms_status(vm_list[datacenter_key]) )
2207 failed = False
2208 except vimconn.vimconnException as e:
2209 logger.error("VIM exception %s %s", type(e).__name__, str(e))
2210 failed_message = str(e)
2211 if failed:
2212 for vm in vm_list[datacenter_key]:
2213 vm_dict[vm] = {'status': "VIM_ERROR", 'error_msg': failed_message}
tiernoae4a8d12016-07-08 12:30:39 +02002214
tiernoa2793912016-10-04 08:15:08 +00002215 # 2. Update the status of VMs in the instanceDict, while collects the VMs whose status changed
2216 for sce_vnf in instanceDict['vnfs']:
2217 for vm in sce_vnf['vms']:
2218 vm_id = vm['vim_vm_id']
2219 interfaces = vm_dict[vm_id].pop('interfaces', [])
2220 #2.0 look if contain manamgement interface, and if not change status from ACTIVE:NoMgmtIP to ACTIVE
2221 has_mgmt_iface = False
2222 for iface in vm["interfaces"]:
2223 if iface["type"]=="mgmt":
2224 has_mgmt_iface = True
2225 if vm_dict[vm_id]['status'] == "ACTIVE:NoMgmtIP" and not has_mgmt_iface:
2226 vm_dict[vm_id]['status'] = "ACTIVE"
tiernoa3d49e62016-10-05 15:20:26 +00002227 if vm_dict[vm_id].get('error_msg') and len(vm_dict[vm_id]['error_msg']) >= 1024:
2228 vm_dict[vm_id]['error_msg'] = vm_dict[vm_id]['error_msg'][:516] + " ... " + vm_dict[vm_id]['error_msg'][-500:]
tiernoa2793912016-10-04 08:15:08 +00002229 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'):
2230 vm['status'] = vm_dict[vm_id]['status']
2231 vm['error_msg'] = vm_dict[vm_id].get('error_msg')
2232 vm['vim_info'] = vm_dict[vm_id].get('vim_info')
2233 # 2.1. Update in openmano DB the VMs whose status changed
tiernof97fd272016-07-11 14:32:37 +02002234 try:
tiernoa2793912016-10-04 08:15:08 +00002235 updates = mydb.update_rows('instance_vms', UPDATE=vm_dict[vm_id], WHERE={'uuid':vm["uuid"]})
2236 vms_notupdated.remove(vm["uuid"])
2237 if updates>0:
2238 vms_updated.append(vm["uuid"])
tiernof97fd272016-07-11 14:32:37 +02002239 except db_base_Exception as e:
2240 logger.error("nfvo.refresh_instance error database update: %s", str(e))
tiernoa2793912016-10-04 08:15:08 +00002241 # 2.2. Update in openmano DB the interface VMs
2242 for interface in interfaces:
2243 #translate from vim_net_id to instance_net_id
2244 network_id_list=[]
2245 for net in instanceDict['nets']:
2246 if net["vim_net_id"] == interface["vim_net_id"]:
2247 network_id_list.append(net["uuid"])
2248 if not network_id_list:
2249 continue
2250 del interface["vim_net_id"]
2251 try:
2252 for network_id in network_id_list:
2253 mydb.update_rows('instance_interfaces', UPDATE=interface, WHERE={'instance_vm_id':vm["uuid"], "instance_net_id":network_id})
2254 except db_base_Exception as e:
2255 logger.error( "nfvo.refresh_instance error with vm=%s, interface_net_id=%s", vm["uuid"], network_id)
2256
2257 # 3. Getting the status of all nets
2258 net_dict = {}
2259 for datacenter_key in myvims:
2260 if not net_list.get(datacenter_key):
2261 continue
2262 failed = True
2263 failed_message = ""
2264 if not myvims[datacenter_key]:
2265 failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])
2266 else:
2267 try:
2268 net_dict.update(myvims[datacenter_key].refresh_nets_status(net_list[datacenter_key]) )
2269 failed = False
2270 except vimconn.vimconnException as e:
2271 logger.error("VIM exception %s %s", type(e).__name__, str(e))
2272 failed_message = str(e)
2273 if failed:
2274 for net in net_list[datacenter_key]:
2275 net_dict[net] = {'status': "VIM_ERROR", 'error_msg': failed_message}
2276
2277 # 4. Update the status of nets in the instanceDict, while collects the nets whose status changed
2278 # TODO: update nets inside a vnf
2279 for net in instanceDict['nets']:
2280 net_id = net['vim_net_id']
tiernoa3d49e62016-10-05 15:20:26 +00002281 if net_dict[net_id].get('error_msg') and len(net_dict[net_id]['error_msg']) >= 1024:
2282 net_dict[net_id]['error_msg'] = net_dict[net_id]['error_msg'][:516] + " ... " + net_dict[vm_id]['error_msg'][-500:]
tiernoa2793912016-10-04 08:15:08 +00002283 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'):
2284 net['status'] = net_dict[net_id]['status']
2285 net['error_msg'] = net_dict[net_id].get('error_msg')
2286 net['vim_info'] = net_dict[net_id].get('vim_info')
2287 # 5.1. Update in openmano DB the nets whose status changed
2288 try:
2289 updated = mydb.update_rows('instance_nets', UPDATE=net_dict[net_id], WHERE={'uuid':net["uuid"]})
2290 nets_notupdated.remove(net["uuid"])
2291 if updated>0:
2292 nets_updated.append(net["uuid"])
2293 except db_base_Exception as e:
2294 logger.error("nfvo.refresh_instance error database update: %s", str(e))
tierno7edb6752016-03-21 17:37:52 +01002295
2296 # Returns appropriate output
tiernoae4a8d12016-07-08 12:30:39 +02002297 #print "nfvo.refresh_instance finishes"
2298 logger.debug("VMs updated in the database: %s; nets updated in the database %s; VMs not updated: %s; nets not updated: %s",
2299 str(vms_updated), str(nets_updated), str(vms_notupdated), str(nets_notupdated))
tierno7edb6752016-03-21 17:37:52 +01002300 instance_id = instanceDict['uuid']
tierno7edb6752016-03-21 17:37:52 +01002301 if len(vms_notupdated)+len(nets_notupdated)>0:
tiernoae4a8d12016-07-08 12:30:39 +02002302 error_msg = "VMs not updated: " + str(vms_notupdated) + "; nets not updated: " + str(nets_notupdated)
tierno7edb6752016-03-21 17:37:52 +01002303 return len(vms_notupdated)+len(nets_notupdated), 'Scenario instance ' + instance_id + ' refreshed but some elements could not be updated in the database: ' + error_msg
2304
tiernoae4a8d12016-07-08 12:30:39 +02002305 return 0, 'Scenario instance ' + instance_id + ' refreshed.'
tierno7edb6752016-03-21 17:37:52 +01002306
2307def instance_action(mydb,nfvo_tenant,instance_id, action_dict):
tiernoae4a8d12016-07-08 12:30:39 +02002308 #print "Checking that the instance_id exists and getting the instance dictionary"
tiernof97fd272016-07-11 14:32:37 +02002309 instanceDict = mydb.get_instance_scenario(instance_id, nfvo_tenant)
tierno7edb6752016-03-21 17:37:52 +01002310 #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
2311
tiernoae4a8d12016-07-08 12:30:39 +02002312 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tiernof97fd272016-07-11 14:32:37 +02002313 vims = get_vim(mydb, nfvo_tenant, instanceDict['datacenter_id'])
2314 if len(vims) == 0:
2315 raise NfvoException("datacenter '{}' not found".format(str(instanceDict['datacenter_id'])), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002316 myvim = vims.values()[0]
2317
2318
2319 input_vnfs = action_dict.pop("vnfs", [])
2320 input_vms = action_dict.pop("vms", [])
2321 action_over_all = True if len(input_vnfs)==0 and len (input_vms)==0 else False
2322 vm_result = {}
2323 vm_error = 0
2324 vm_ok = 0
2325 for sce_vnf in instanceDict['vnfs']:
2326 for vm in sce_vnf['vms']:
2327 if not action_over_all:
2328 if sce_vnf['uuid'] not in input_vnfs and sce_vnf['vnf_name'] not in input_vnfs and \
2329 vm['uuid'] not in input_vms and vm['name'] not in input_vms:
2330 continue
tiernoae4a8d12016-07-08 12:30:39 +02002331 try:
2332 data = myvim.action_vminstance(vm['vim_vm_id'], action_dict)
tierno7edb6752016-03-21 17:37:52 +01002333 if "console" in action_dict:
tierno20fc2a22016-08-19 17:02:35 +02002334 if not global_config["http_console_proxy"]:
2335 vm_result[ vm['uuid'] ] = {"vim_result": 200,
2336 "description": "{protocol}//{ip}:{port}/{suffix}".format(
2337 protocol=data["protocol"],
2338 ip = data["server"],
2339 port = data["port"],
2340 suffix = data["suffix"]),
2341 "name":vm['name']
2342 }
2343 vm_ok +=1
2344 elif data["server"]=="127.0.0.1" or data["server"]=="localhost":
tierno7edb6752016-03-21 17:37:52 +01002345 vm_result[ vm['uuid'] ] = {"vim_result": -HTTP_Unauthorized,
2346 "description": "this console is only reachable by local interface",
2347 "name":vm['name']
2348 }
2349 vm_error+=1
tierno20fc2a22016-08-19 17:02:35 +02002350 else:
tierno7edb6752016-03-21 17:37:52 +01002351 #print "console data", data
tierno20fc2a22016-08-19 17:02:35 +02002352 try:
2353 console_thread = create_or_use_console_proxy_thread(data["server"], data["port"])
2354 vm_result[ vm['uuid'] ] = {"vim_result": 200,
2355 "description": "{protocol}//{ip}:{port}/{suffix}".format(
2356 protocol=data["protocol"],
2357 ip = global_config["http_console_host"],
2358 port = console_thread.port,
2359 suffix = data["suffix"]),
2360 "name":vm['name']
2361 }
2362 vm_ok +=1
2363 except NfvoException as e:
2364 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
2365 vm_error+=1
2366
tierno7edb6752016-03-21 17:37:52 +01002367 else:
tiernof97fd272016-07-11 14:32:37 +02002368 vm_result[ vm['uuid'] ] = {"vim_result": 200, "description": "ok", "name":vm['name']}
tierno7edb6752016-03-21 17:37:52 +01002369 vm_ok +=1
tiernoae4a8d12016-07-08 12:30:39 +02002370 except vimconn.vimconnException as e:
2371 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
2372 vm_error+=1
tierno7edb6752016-03-21 17:37:52 +01002373
2374 if vm_ok==0: #all goes wrong
tierno351863c2016-07-23 01:46:03 +02002375 return vm_result
tierno7edb6752016-03-21 17:37:52 +01002376 else:
tierno351863c2016-07-23 01:46:03 +02002377 return vm_result
tierno7edb6752016-03-21 17:37:52 +01002378
2379def create_or_use_console_proxy_thread(console_server, console_port):
2380 #look for a non-used port
2381 console_thread_key = console_server + ":" + str(console_port)
2382 if console_thread_key in global_config["console_thread"]:
2383 #global_config["console_thread"][console_thread_key].start_timeout()
tiernof97fd272016-07-11 14:32:37 +02002384 return global_config["console_thread"][console_thread_key]
tierno7edb6752016-03-21 17:37:52 +01002385
2386 for port in global_config["console_port_iterator"]():
tierno20fc2a22016-08-19 17:02:35 +02002387 #print "create_or_use_console_proxy_thread() port:", port
tierno7edb6752016-03-21 17:37:52 +01002388 if port in global_config["console_ports"]:
2389 continue
2390 try:
2391 clithread = cli.ConsoleProxyThread(global_config['http_host'], port, console_server, console_port)
2392 clithread.start()
2393 global_config["console_thread"][console_thread_key] = clithread
2394 global_config["console_ports"][port] = console_thread_key
tiernof97fd272016-07-11 14:32:37 +02002395 return clithread
tierno7edb6752016-03-21 17:37:52 +01002396 except cli.ConsoleProxyExceptionPortUsed as e:
2397 #port used, try with onoher
2398 continue
2399 except cli.ConsoleProxyException as e:
tiernof97fd272016-07-11 14:32:37 +02002400 raise NfvoException(str(e), HTTP_Bad_Request)
2401 raise NfvoException("Not found any free 'http_console_ports'", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002402
2403def check_tenant(mydb, tenant_id):
2404 '''check that tenant exists at database'''
tiernof97fd272016-07-11 14:32:37 +02002405 tenant = mydb.get_rows(FROM='nfvo_tenants', SELECT=('uuid',), WHERE={'uuid': tenant_id})
2406 if not tenant:
2407 raise NfvoException("tenant '{}' not found".format(tenant_id), HTTP_Not_Found)
2408 return
tierno7edb6752016-03-21 17:37:52 +01002409
2410def new_tenant(mydb, tenant_dict):
tiernof97fd272016-07-11 14:32:37 +02002411 tenant_id = mydb.new_row("nfvo_tenants", tenant_dict, add_uuid=True)
2412 return tenant_id
tierno7edb6752016-03-21 17:37:52 +01002413
2414def delete_tenant(mydb, tenant):
2415 #get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02002416
2417 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant, 'tenant')
2418 mydb.delete_row_by_id("nfvo_tenants", tenant_dict['uuid'])
2419 return tenant_dict['uuid'] + " " + tenant_dict["name"]
tierno7edb6752016-03-21 17:37:52 +01002420
2421def new_datacenter(mydb, datacenter_descriptor):
2422 if "config" in datacenter_descriptor:
2423 datacenter_descriptor["config"]=yaml.safe_dump(datacenter_descriptor["config"],default_flow_style=True,width=256)
tierno3ae39742016-09-07 12:17:51 +02002424 #Check that datacenter-type is correct
2425 datacenter_type = datacenter_descriptor.get("type", "openvim");
2426 module_info = None
2427 try:
2428 module = "vimconn_" + datacenter_type
2429 module_info = imp.find_module(module)
2430 except (IOError, ImportError):
2431 if module_info and module_info[0]:
2432 file.close(module_info[0])
2433 raise NfvoException("Incorrect datacenter type '{}'. Plugin '{}'.py not installed".format(datacenter_type, module), HTTP_Bad_Request)
2434
tiernof97fd272016-07-11 14:32:37 +02002435 datacenter_id = mydb.new_row("datacenters", datacenter_descriptor, add_uuid=True)
2436 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002437
2438def edit_datacenter(mydb, datacenter_id_name, datacenter_descriptor):
2439 #obtain data, check that only one exist
tiernof97fd272016-07-11 14:32:37 +02002440 datacenter = mydb.get_table_by_uuid_name('datacenters', datacenter_id_name)
tierno7edb6752016-03-21 17:37:52 +01002441 #edit data
tiernof97fd272016-07-11 14:32:37 +02002442 datacenter_id = datacenter['uuid']
2443 where={'uuid': datacenter['uuid']}
tierno7edb6752016-03-21 17:37:52 +01002444 if "config" in datacenter_descriptor:
2445 if datacenter_descriptor['config']!=None:
2446 try:
2447 new_config_dict = datacenter_descriptor["config"]
2448 #delete null fields
2449 to_delete=[]
2450 for k in new_config_dict:
2451 if new_config_dict[k]==None:
2452 to_delete.append(k)
2453
tiernof97fd272016-07-11 14:32:37 +02002454 config_dict = yaml.load(datacenter["config"])
tierno7edb6752016-03-21 17:37:52 +01002455 config_dict.update(new_config_dict)
2456 #delete null fields
2457 for k in to_delete:
2458 del config_dict[k]
tiernof97fd272016-07-11 14:32:37 +02002459 except Exception as e:
2460 raise NfvoException("Bad format at datacenter:config " + str(e), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01002461 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 +02002462 mydb.update_rows('datacenters', datacenter_descriptor, where)
2463 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002464
2465def delete_datacenter(mydb, datacenter):
2466 #get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02002467 datacenter_dict = mydb.get_table_by_uuid_name('datacenters', datacenter, 'datacenter')
2468 mydb.delete_row_by_id("datacenters", datacenter_dict['uuid'])
2469 return datacenter_dict['uuid'] + " " + datacenter_dict['name']
tierno7edb6752016-03-21 17:37:52 +01002470
tierno8008c3a2016-10-13 15:34:28 +00002471def associate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter, vim_tenant_id=None, vim_tenant_name=None, vim_username=None, vim_password=None, config=None):
tierno7edb6752016-03-21 17:37:52 +01002472 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002473 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, None, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002474 datacenter_name=myvim["name"]
2475
2476 create_vim_tenant=True if vim_tenant_id==None and vim_tenant_name==None else False
2477
2478 #get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02002479 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', nfvo_tenant)
tierno7edb6752016-03-21 17:37:52 +01002480 if vim_tenant_name==None:
2481 vim_tenant_name=tenant_dict['name']
2482
2483 #check that this association does not exist before
2484 tenants_datacenter_dict={"nfvo_tenant_id":tenant_dict['uuid'], "datacenter_id":datacenter_id }
tiernof97fd272016-07-11 14:32:37 +02002485 tenants_datacenters = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
2486 if len(tenants_datacenters)>0:
2487 raise NfvoException("datacenter '{}' and tenant'{}' are already attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002488
2489 vim_tenant_id_exist_atdb=False
2490 if not create_vim_tenant:
2491 where_={"datacenter_id": datacenter_id}
2492 if vim_tenant_id!=None:
2493 where_["vim_tenant_id"] = vim_tenant_id
2494 if vim_tenant_name!=None:
2495 where_["vim_tenant_name"] = vim_tenant_name
2496 #check if vim_tenant_id is already at database
tiernof97fd272016-07-11 14:32:37 +02002497 datacenter_tenants_dict = mydb.get_rows(FROM='datacenter_tenants', WHERE=where_)
2498 if len(datacenter_tenants_dict)>=1:
tierno7edb6752016-03-21 17:37:52 +01002499 datacenter_tenants_dict = datacenter_tenants_dict[0]
2500 vim_tenant_id_exist_atdb=True
2501 #TODO check if a field has changed and edit entry at datacenter_tenants at DB
2502 else: #result=0
2503 datacenter_tenants_dict = {}
2504 #insert at table datacenter_tenants
2505 else: #if vim_tenant_id==None:
2506 #create tenant at VIM if not provided
tiernoae4a8d12016-07-08 12:30:39 +02002507 try:
2508 vim_tenant_id = myvim.new_tenant(vim_tenant_name, "created by openmano for datacenter "+datacenter_name)
2509 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002510 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 +01002511 datacenter_tenants_dict = {}
2512 datacenter_tenants_dict["created"]="true"
2513
2514 #fill datacenter_tenants table
2515 if not vim_tenant_id_exist_atdb:
2516 datacenter_tenants_dict["vim_tenant_id"] = vim_tenant_id
2517 datacenter_tenants_dict["vim_tenant_name"] = vim_tenant_name
2518 datacenter_tenants_dict["user"] = vim_username
2519 datacenter_tenants_dict["passwd"] = vim_password
2520 datacenter_tenants_dict["datacenter_id"] = datacenter_id
tierno8008c3a2016-10-13 15:34:28 +00002521 if config:
2522 datacenter_tenants_dict["config"] = yaml.safe_dump(config, default_flow_style=True, width=256)
tiernof97fd272016-07-11 14:32:37 +02002523 id_ = mydb.new_row('datacenter_tenants', datacenter_tenants_dict, add_uuid=True)
tierno7edb6752016-03-21 17:37:52 +01002524 datacenter_tenants_dict["uuid"] = id_
2525
2526 #fill tenants_datacenters table
2527 tenants_datacenter_dict["datacenter_tenant_id"]=datacenter_tenants_dict["uuid"]
tiernof97fd272016-07-11 14:32:37 +02002528 mydb.new_row('tenants_datacenters', tenants_datacenter_dict)
2529 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002530
2531def deassociate_datacenter_to_tenant(mydb, tenant_id, datacenter, vim_tenant_id=None):
2532 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002533 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, None, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002534
2535 #get nfvo_tenant info
2536 if not tenant_id or tenant_id=="any":
2537 tenant_uuid = None
2538 else:
tiernof97fd272016-07-11 14:32:37 +02002539 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant_id)
tierno7edb6752016-03-21 17:37:52 +01002540 tenant_uuid = tenant_dict['uuid']
2541
2542 #check that this association exist before
2543 tenants_datacenter_dict={"datacenter_id":datacenter_id }
2544 if tenant_uuid:
2545 tenants_datacenter_dict["nfvo_tenant_id"] = tenant_uuid
tiernof97fd272016-07-11 14:32:37 +02002546 tenant_datacenter_list = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
2547 if len(tenant_datacenter_list)==0 and tenant_uuid:
2548 raise NfvoException("datacenter '{}' and tenant '{}' are not attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002549
2550 #delete this association
tiernof97fd272016-07-11 14:32:37 +02002551 mydb.delete_row(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
tierno7edb6752016-03-21 17:37:52 +01002552
2553 #get vim_tenant info and deletes
2554 warning=''
2555 for tenant_datacenter_item in tenant_datacenter_list:
tiernof97fd272016-07-11 14:32:37 +02002556 vim_tenant_dict = mydb.get_table_by_uuid_name('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
2557 #try to delete vim:tenant
2558 try:
2559 mydb.delete_row_by_id('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
2560 if vim_tenant_dict['created']=='true':
tierno7edb6752016-03-21 17:37:52 +01002561 #delete tenant at VIM if created by NFVO
tiernoae4a8d12016-07-08 12:30:39 +02002562 try:
2563 myvim.delete_tenant(vim_tenant_dict['vim_tenant_id'])
2564 except vimconn.vimconnException as e:
2565 warning = "Not possible to delete vim_tenant_id {} from VIM: {} ".format(vim_tenant_dict['vim_tenant_id'], str(e))
2566 logger.warn(warning)
tiernof97fd272016-07-11 14:32:37 +02002567 except db_base_Exception as e:
2568 logger.error("Cannot delete datacenter_tenants " + str(e))
2569 pass #the error will be caused because dependencies, vim_tenant can not be deleted
tierno7edb6752016-03-21 17:37:52 +01002570
tiernof97fd272016-07-11 14:32:37 +02002571 return "datacenter {} detached. {}".format(datacenter_id, warning)
tierno7edb6752016-03-21 17:37:52 +01002572
2573def datacenter_action(mydb, tenant_id, datacenter, action_dict):
2574 #DEPRECATED
2575 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002576 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002577
2578 if 'net-update' in action_dict:
tiernoae4a8d12016-07-08 12:30:39 +02002579 try:
tiernof97fd272016-07-11 14:32:37 +02002580 nets = myvim.get_network_list(filter_dict={'shared': True, 'admin_state_up': True, 'status': 'ACTIVE'})
tiernoae4a8d12016-07-08 12:30:39 +02002581 #print content
2582 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002583 #logger.error("nfvo.datacenter_action() Not possible to get_network_list from VIM: %s ", str(e))
2584 raise NfvoException(str(e), HTTP_Internal_Server_Error)
tierno7edb6752016-03-21 17:37:52 +01002585 #update nets Change from VIM format to NFVO format
2586 net_list=[]
tiernof97fd272016-07-11 14:32:37 +02002587 for net in nets:
tierno7edb6752016-03-21 17:37:52 +01002588 net_nfvo={'datacenter_id': datacenter_id}
2589 net_nfvo['name'] = net['name']
2590 #net_nfvo['description']= net['name']
2591 net_nfvo['vim_net_id'] = net['id']
2592 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
2593 net_nfvo['shared'] = net['shared']
2594 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
2595 net_list.append(net_nfvo)
tiernof97fd272016-07-11 14:32:37 +02002596 inserted, deleted = mydb.update_datacenter_nets(datacenter_id, net_list)
2597 logger.info("Inserted %d nets, deleted %d old nets", inserted, deleted)
2598 return inserted
tierno7edb6752016-03-21 17:37:52 +01002599 elif 'net-edit' in action_dict:
2600 net = action_dict['net-edit'].pop('net')
tierno42fcc3b2016-07-06 17:20:40 +02002601 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
tiernof97fd272016-07-11 14:32:37 +02002602 result = mydb.update_rows('datacenter_nets', action_dict['net-edit'],
tierno7edb6752016-03-21 17:37:52 +01002603 WHERE={'datacenter_id':datacenter_id, what: net})
tiernof97fd272016-07-11 14:32:37 +02002604 return result
tierno7edb6752016-03-21 17:37:52 +01002605 elif 'net-delete' in action_dict:
2606 net = action_dict['net-deelte'].get('net')
tierno42fcc3b2016-07-06 17:20:40 +02002607 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
tiernof97fd272016-07-11 14:32:37 +02002608 result = mydb.delete_row(FROM='datacenter_nets',
tierno7edb6752016-03-21 17:37:52 +01002609 WHERE={'datacenter_id':datacenter_id, what: net})
tiernof97fd272016-07-11 14:32:37 +02002610 return result
tierno7edb6752016-03-21 17:37:52 +01002611
2612 else:
tiernof97fd272016-07-11 14:32:37 +02002613 raise NfvoException("Unknown action " + str(action_dict), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01002614
2615def datacenter_edit_netmap(mydb, tenant_id, datacenter, netmap, action_dict):
2616 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002617 datacenter_id, _ = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002618
tierno42fcc3b2016-07-06 17:20:40 +02002619 what = 'uuid' if utils.check_valid_uuid(netmap) else 'name'
tiernof97fd272016-07-11 14:32:37 +02002620 result = mydb.update_rows('datacenter_nets', action_dict['netmap'],
tierno7edb6752016-03-21 17:37:52 +01002621 WHERE={'datacenter_id':datacenter_id, what: netmap})
tiernof97fd272016-07-11 14:32:37 +02002622 return result
tierno7edb6752016-03-21 17:37:52 +01002623
2624def datacenter_new_netmap(mydb, tenant_id, datacenter, action_dict=None):
2625 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002626 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002627 filter_dict={}
2628 if action_dict:
2629 action_dict = action_dict["netmap"]
2630 if 'vim_id' in action_dict:
2631 filter_dict["id"] = action_dict['vim_id']
2632 if 'vim_name' in action_dict:
2633 filter_dict["name"] = action_dict['vim_name']
2634 else:
2635 filter_dict["shared"] = True
2636
tiernoae4a8d12016-07-08 12:30:39 +02002637 try:
tiernof97fd272016-07-11 14:32:37 +02002638 vim_nets = myvim.get_network_list(filter_dict=filter_dict)
tiernoae4a8d12016-07-08 12:30:39 +02002639 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002640 #logger.error("nfvo.datacenter_new_netmap() Not possible to get_network_list from VIM: %s ", str(e))
2641 raise NfvoException(str(e), HTTP_Internal_Server_Error)
2642 if len(vim_nets)>1 and action_dict:
2643 raise NfvoException("more than two networks found, specify with vim_id", HTTP_Conflict)
2644 elif len(vim_nets)==0: # and action_dict:
2645 raise NfvoException("Not found a network at VIM with " + str(filter_dict), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002646 net_list=[]
tiernof97fd272016-07-11 14:32:37 +02002647 for net in vim_nets:
tierno7edb6752016-03-21 17:37:52 +01002648 net_nfvo={'datacenter_id': datacenter_id}
2649 if action_dict and "name" in action_dict:
2650 net_nfvo['name'] = action_dict['name']
2651 else:
2652 net_nfvo['name'] = net['name']
2653 #net_nfvo['description']= net['name']
2654 net_nfvo['vim_net_id'] = net['id']
2655 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
2656 net_nfvo['shared'] = net['shared']
2657 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
tiernof97fd272016-07-11 14:32:37 +02002658 try:
2659 net_id = mydb.new_row("datacenter_nets", net_nfvo, add_uuid=True)
tierno7edb6752016-03-21 17:37:52 +01002660 net_nfvo["status"] = "OK"
tiernof97fd272016-07-11 14:32:37 +02002661 net_nfvo["uuid"] = net_id
2662 except db_base_Exception as e:
2663 if action_dict:
2664 raise
2665 else:
2666 net_nfvo["status"] = "FAIL: " + str(e)
tierno7edb6752016-03-21 17:37:52 +01002667 net_list.append(net_nfvo)
tiernof97fd272016-07-11 14:32:37 +02002668 return net_list
tierno7edb6752016-03-21 17:37:52 +01002669
2670def vim_action_get(mydb, tenant_id, datacenter, item, name):
2671 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002672 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002673 filter_dict={}
2674 if name:
tierno42fcc3b2016-07-06 17:20:40 +02002675 if utils.check_valid_uuid(name):
tierno7edb6752016-03-21 17:37:52 +01002676 filter_dict["id"] = name
2677 else:
2678 filter_dict["name"] = name
tiernoae4a8d12016-07-08 12:30:39 +02002679 try:
2680 if item=="networks":
2681 #filter_dict['tenant_id'] = myvim['tenant_id']
2682 content = myvim.get_network_list(filter_dict=filter_dict)
2683 elif item=="tenants":
2684 content = myvim.get_tenant_list(filter_dict=filter_dict)
2685 else:
tiernof97fd272016-07-11 14:32:37 +02002686 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernobe41e222016-09-02 15:16:13 +02002687 logger.debug("vim_action response %s", content) #update nets Change from VIM format to NFVO format
tiernoae4a8d12016-07-08 12:30:39 +02002688 if name and len(content)==1:
tiernof97fd272016-07-11 14:32:37 +02002689 return {item[:-1]: content[0]}
tiernoae4a8d12016-07-08 12:30:39 +02002690 elif name and len(content)==0:
tiernof97fd272016-07-11 14:32:37 +02002691 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 +02002692 datacenter)
tiernoae4a8d12016-07-08 12:30:39 +02002693 else:
tiernof97fd272016-07-11 14:32:37 +02002694 return {item: content}
tiernoae4a8d12016-07-08 12:30:39 +02002695 except vimconn.vimconnException as e:
2696 print "vim_action Not possible to get_%s_list from VIM: %s " % (item, str(e))
tiernof97fd272016-07-11 14:32:37 +02002697 raise NfvoException("Not possible to get_{}_list from VIM: {}".format(item, str(e)), e.http_code)
tierno7edb6752016-03-21 17:37:52 +01002698
2699def vim_action_delete(mydb, tenant_id, datacenter, item, name):
2700 #get datacenter info
tierno392f2852016-05-13 12:28:55 +02002701 if tenant_id == "any":
2702 tenant_id=None
2703
tiernoa2793912016-10-04 08:15:08 +00002704 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno392f2852016-05-13 12:28:55 +02002705 #get uuid name
tiernof97fd272016-07-11 14:32:37 +02002706 content = vim_action_get(mydb, tenant_id, datacenter, item, name)
2707 logger.debug("vim_action_delete vim response: " + str(content))
tierno392f2852016-05-13 12:28:55 +02002708 items = content.values()[0]
2709 if type(items)==list and len(items)==0:
tiernof97fd272016-07-11 14:32:37 +02002710 raise NfvoException("Not found " + item, HTTP_Not_Found)
tierno392f2852016-05-13 12:28:55 +02002711 elif type(items)==list and len(items)>1:
tiernof97fd272016-07-11 14:32:37 +02002712 raise NfvoException("Found more than one {} with this name. Use uuid.".format(item), HTTP_Not_Found)
tierno392f2852016-05-13 12:28:55 +02002713 else: # it is a dict
2714 item_id = items["id"]
2715 item_name = str(items.get("name"))
tierno7edb6752016-03-21 17:37:52 +01002716
tiernoae4a8d12016-07-08 12:30:39 +02002717 try:
2718 if item=="networks":
2719 content = myvim.delete_network(item_id)
2720 elif item=="tenants":
2721 content = myvim.delete_tenant(item_id)
2722 else:
tiernof97fd272016-07-11 14:32:37 +02002723 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernoae4a8d12016-07-08 12:30:39 +02002724 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002725 #logger.error( "vim_action Not possible to delete_{} {}from VIM: {} ".format(item, name, str(e)))
2726 raise NfvoException("Not possible to delete_{} {} from VIM: {}".format(item, name, str(e)), e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02002727
tiernof97fd272016-07-11 14:32:37 +02002728 return "{} {} {} deleted".format(item[:-1], item_id,item_name)
tierno7edb6752016-03-21 17:37:52 +01002729
2730def vim_action_create(mydb, tenant_id, datacenter, item, descriptor):
2731 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002732 logger.debug("vim_action_create descriptor %s", str(descriptor))
tierno392f2852016-05-13 12:28:55 +02002733 if tenant_id == "any":
2734 tenant_id=None
tiernoa2793912016-10-04 08:15:08 +00002735 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tiernoae4a8d12016-07-08 12:30:39 +02002736 try:
2737 if item=="networks":
2738 net = descriptor["network"]
2739 net_name = net.pop("name")
2740 net_type = net.pop("type", "bridge")
garciadeblas9f8456e2016-09-05 05:02:59 +02002741 net_public = net.pop("shared", False)
2742 net_ipprofile = net.pop("ip_profile", None)
2743 content = myvim.new_network(net_name, net_type, net_ipprofile, shared=net_public, **net)
tiernoae4a8d12016-07-08 12:30:39 +02002744 elif item=="tenants":
2745 tenant = descriptor["tenant"]
2746 content = myvim.new_tenant(tenant["name"], tenant.get("description"))
2747 else:
tiernof97fd272016-07-11 14:32:37 +02002748 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernoae4a8d12016-07-08 12:30:39 +02002749 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002750 raise NfvoException("Not possible to create {} at VIM: {}".format(item, str(e)), e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02002751
tierno7edb6752016-03-21 17:37:52 +01002752 return vim_action_get(mydb, tenant_id, datacenter, item, content)
2753
tierno66aa0372016-07-06 17:31:12 +02002754