blob: 9a2dd05dd387a26b780428b8d704443baf90b7d6 [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']
montesmoreno2a1fc4e2017-01-09 16:46:04 +00001496 if "port-security" in iface and iface["port-security"] is not None:
1497 netDict['port_security'] = iface['port-security']
1498 if "floating-ip" in iface and iface["floating-ip"] is not None:
1499 netDict['floating_ip'] = iface['floating-ip']
tiernoae4a8d12016-07-08 12:30:39 +02001500 netDict['name'] = iface['internal_name']
1501 if iface['net_id'] is None:
1502 for vnf_iface in sce_vnf["interfaces"]:
tiernof97fd272016-07-11 14:32:37 +02001503 #print iface
1504 #print vnf_iface
tiernoae4a8d12016-07-08 12:30:39 +02001505 if vnf_iface['interface_id']==iface['uuid']:
1506 netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ]
1507 break
1508 else:
1509 netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ]
1510 #skip bridge ifaces not connected to any net
1511 #if 'net_id' not in netDict or netDict['net_id']==None:
1512 # continue
1513 myVMDict['networks'].append(netDict)
1514 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
1515 #print myVMDict['name']
1516 #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
1517 #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
1518 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
1519 vm_id = myvim.new_vminstance(myVMDict['name'],myVMDict['description'],myVMDict.get('start', None),
1520 myVMDict['imageRef'],myVMDict['flavorRef'],myVMDict['networks'])
1521 #print "VIM vm instance id (server id) for scenario %s: %s" % (scenarioDict['name'],vm_id)
1522 vm['vim_id'] = vm_id
1523 rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id})
1524 #put interface uuid back to scenario[vnfs][vms[[interfaces]
1525 for net in myVMDict['networks']:
1526 if "vim_id" in net:
1527 for iface in vm['interfaces']:
1528 if net["name"]==iface["internal_name"]:
1529 iface["vim_id"]=net["vim_id"]
1530 break
1531
1532 logger.debug("start scenario Deployment done")
1533 #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
1534 #r,c = mydb.new_instance_scenario_as_a_whole(nfvo_tenant,scenarioDict['name'],scenarioDict)
tiernof97fd272016-07-11 14:32:37 +02001535 instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_scenario_name, instance_scenario_description, scenarioDict)
1536 return mydb.get_instance_scenario(instance_id)
1537
1538 except (db_base_Exception, vimconn.vimconnException) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001539 _, message = rollback(mydb, vims, rollbackList)
tiernof97fd272016-07-11 14:32:37 +02001540 if isinstance(e, db_base_Exception):
1541 error_text = "Exception at database"
1542 else:
1543 error_text = "Exception at VIM"
1544 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
1545 #logger.error("start_scenario %s", error_text)
1546 raise NfvoException(error_text, e.http_code)
tierno7edb6752016-03-21 17:37:52 +01001547
tiernoa4e1a6e2016-08-31 14:19:40 +02001548def unify_cloud_config(cloud_config):
1549 index_to_delete = []
1550 users = cloud_config.get("users", [])
1551 for index0 in range(0,len(users)):
1552 if index0 in index_to_delete:
1553 continue
1554 for index1 in range(index0+1,len(users)):
1555 if index1 in index_to_delete:
1556 continue
1557 if users[index0]["name"] == users[index1]["name"]:
1558 index_to_delete.append(index1)
1559 for key in users[index1].get("key-pairs",()):
1560 if "key-pairs" not in users[index0]:
1561 users[index0]["key-pairs"] = [key]
1562 elif key not in users[index0]["key-pairs"]:
1563 users[index0]["key-pairs"].append(key)
1564 index_to_delete.sort(reverse=True)
1565 for index in index_to_delete:
1566 del users[index]
1567
tiernoa2793912016-10-04 08:15:08 +00001568def get_datacenter_by_name_uuid(mydb, tenant_id, datacenter_id_name=None, **extra_filter):
tiernobe41e222016-09-02 15:16:13 +02001569 datacenter_id = None
1570 datacenter_name = None
1571 if datacenter_id_name:
1572 if utils.check_valid_uuid(datacenter_id_name):
1573 datacenter_id = datacenter_id_name
1574 else:
1575 datacenter_name = datacenter_id_name
tiernoa2793912016-10-04 08:15:08 +00001576 vims = get_vim(mydb, tenant_id, datacenter_id, datacenter_name, **extra_filter)
tiernobe41e222016-09-02 15:16:13 +02001577 if len(vims) == 0:
1578 raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found)
1579 elif len(vims)>1:
1580 #print "nfvo.datacenter_action() error. Several datacenters found"
1581 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
1582 return vims.keys()[0], vims.values()[0]
1583
garciadeblas9f8456e2016-09-05 05:02:59 +02001584def new_scenario_v03(mydb, tenant_id, scenario_dict):
1585 scenario = scenario_dict["scenario"]
1586 if tenant_id != "any":
1587 check_tenant(mydb, tenant_id)
1588 if "tenant_id" in scenario:
1589 if scenario["tenant_id"] != tenant_id:
1590 logger("Tenant '%s' not found", tenant_id)
1591 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(
1592 scenario["tenant_id"], tenant_id), HTTP_Unauthorized)
1593 else:
1594 tenant_id=None
1595
1596#1: Check that VNF are present at database table vnfs and update content into scenario dict
1597 for name,vnf in scenario["vnfs"].iteritems():
1598 where={}
1599 where_or={"tenant_id": tenant_id, 'public': "true"}
1600 error_text = ""
garciadeblas71781ea2016-09-19 14:41:59 +02001601 error_pos = "'scenario':'vnfs':'" + name + "'"
garciadeblas9f8456e2016-09-05 05:02:59 +02001602 if 'vnf_id' in vnf:
1603 error_text += " 'vnf_id' " + vnf['vnf_id']
1604 where['uuid'] = vnf['vnf_id']
1605 if 'vnf_name' in vnf:
1606 error_text += " 'vnf_name' " + vnf['vnf_name']
1607 where['name'] = vnf['vnf_name']
1608 if len(where) == 0:
garciadeblas71781ea2016-09-19 14:41:59 +02001609 raise NfvoException("Needed a 'vnf_id' or 'vnf_name' at " + error_pos, HTTP_Bad_Request)
garciadeblas9f8456e2016-09-05 05:02:59 +02001610 vnf_db = mydb.get_rows(SELECT=('uuid','name','description'),
1611 FROM='vnfs',
1612 WHERE=where,
1613 WHERE_OR=where_or,
1614 WHERE_AND_OR="AND")
1615 if len(vnf_db)==0:
1616 raise NfvoException("Unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
1617 elif len(vnf_db)>1:
1618 raise NfvoException("More than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
1619 vnf['uuid']=vnf_db[0]['uuid']
1620 vnf['description']=vnf_db[0]['description']
1621 vnf['ifaces'] = {}
1622 # get external interfaces
1623 ext_ifaces = mydb.get_rows(SELECT=('external_name as name','i.uuid as iface_uuid', 'i.type as type'),
1624 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
1625 WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name':None} )
1626 for ext_iface in ext_ifaces:
1627 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type':ext_iface['type']}
1628
1629 # TODO? get internal-connections from db.nets and their profiles, and update scenario[vnfs][internal-connections] accordingly
1630
1631#2: Insert net_key and ip_address at every vnf interface
1632 for net_name,net in scenario["networks"].iteritems():
1633 net_type_bridge=False
1634 net_type_data=False
1635 for iface_dict in net["interfaces"]:
1636 logger.debug("Iface_dict %s", iface_dict)
1637 vnf = iface_dict["vnf"]
1638 iface = iface_dict["vnf_interface"]
1639 if vnf not in scenario["vnfs"]:
1640 error_text = "Error at 'networks':'%s':'interfaces' VNF '%s' not match any VNF at 'vnfs'" % (net_name, vnf)
1641 #logger.debug(error_text)
1642 raise NfvoException(error_text, HTTP_Not_Found)
1643 if iface not in scenario["vnfs"][vnf]['ifaces']:
1644 error_text = "Error at 'networks':'%s':'interfaces':'%s' interface not match any VNF interface" % (net_name, iface)
1645 #logger.debug(error_text)
1646 raise NfvoException(error_text, HTTP_Bad_Request)
1647 if "net_key" in scenario["vnfs"][vnf]['ifaces'][iface]:
1648 error_text = "Error at 'networks':'%s':'interfaces':'%s' interface already connected at network '%s'" \
1649 % (net_name, iface,scenario["vnfs"][vnf]['ifaces'][iface]['net_key'])
1650 #logger.debug(error_text)
1651 raise NfvoException(error_text, HTTP_Bad_Request)
1652 scenario["vnfs"][vnf]['ifaces'][ iface ]['net_key'] = net_name
1653 scenario["vnfs"][vnf]['ifaces'][ iface ]['ip_address'] = iface_dict.get('ip_address',None)
1654 iface_type = scenario["vnfs"][vnf]['ifaces'][iface]['type']
1655 if iface_type=='mgmt' or iface_type=='bridge':
1656 net_type_bridge = True
1657 else:
1658 net_type_data = True
1659 if net_type_bridge and net_type_data:
1660 error_text = "Error connection interfaces of bridge type and data type at 'networks':'%s':'interfaces'" % (net_name)
1661 #logger.debug(error_text)
1662 raise NfvoException(error_text, HTTP_Bad_Request)
1663 elif net_type_bridge:
1664 type_='bridge'
1665 else:
1666 type_='data' if len(net["interfaces"])>2 else 'ptp'
1667
1668 if ("implementation" in net):
1669 if (type_ == "bridge" and net["implementation"] == "underlay"):
1670 error_text = "Error connecting interfaces of data type to a network declared as 'underlay' at 'network':'%s'" % (net_name)
1671 #logger.debug(error_text)
1672 raise NfvoException(error_text, HTTP_Bad_Request)
1673 elif (type_ <> "bridge" and net["implementation"] == "overlay"):
1674 error_text = "Error connecting interfaces of data type to a network declared as 'overlay' at 'network':'%s'" % (net_name)
1675 #logger.debug(error_text)
1676 raise NfvoException(error_text, HTTP_Bad_Request)
1677 net.pop("implementation")
1678 if ("type" in net):
1679 if (type_ == "data" and net["type"] == "e-line"):
1680 error_text = "Error connecting more than 2 interfaces of data type to a network declared as type 'e-line' at 'network':'%s'" % (net_name)
1681 #logger.debug(error_text)
1682 raise NfvoException(error_text, HTTP_Bad_Request)
1683 elif (type_ == "ptp" and net["type"] == "e-lan"):
1684 type_ = "data"
1685
1686 net['type'] = type_
1687 net['name'] = net_name
1688 net['external'] = net.get('external', False)
1689
1690#3: insert at database
1691 scenario["nets"] = scenario["networks"]
1692 scenario['tenant_id'] = tenant_id
1693 scenario_id = mydb.new_scenario2(scenario)
1694 return scenario_id
1695
1696def update(d, u):
1697 '''Takes dict d and updates it with the values in dict u.'''
1698 '''It merges all depth levels'''
1699 for k, v in u.iteritems():
1700 if isinstance(v, collections.Mapping):
1701 r = update(d.get(k, {}), v)
1702 d[k] = r
1703 else:
1704 d[k] = u[k]
1705 return d
1706
tierno7edb6752016-03-21 17:37:52 +01001707def create_instance(mydb, tenant_id, instance_dict):
tiernoae4a8d12016-07-08 12:30:39 +02001708 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tierno4319dad2016-09-05 12:11:11 +02001709 #logger.debug("Creating instance...")
tierno7edb6752016-03-21 17:37:52 +01001710 scenario = instance_dict["scenario"]
tiernobe41e222016-09-02 15:16:13 +02001711
1712 #find main datacenter
1713 myvims = {}
tiernoa2793912016-10-04 08:15:08 +00001714 datacenter2tenant = {}
tierno7edb6752016-03-21 17:37:52 +01001715 datacenter = instance_dict.get("datacenter")
tiernobe41e222016-09-02 15:16:13 +02001716 default_datacenter_id, vim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
1717 myvims[default_datacenter_id] = vim
tiernoa2793912016-10-04 08:15:08 +00001718 datacenter2tenant[default_datacenter_id] = vim['config']['datacenter_tenant_id']
tierno392f2852016-05-13 12:28:55 +02001719 #myvim_tenant = myvim['tenant_id']
tiernobe41e222016-09-02 15:16:13 +02001720# default_datacenter_name = vim['name']
tierno7edb6752016-03-21 17:37:52 +01001721 rollbackList=[]
tiernoae4a8d12016-07-08 12:30:39 +02001722
1723 #print "Checking that the scenario exists and getting the scenario dictionary"
tiernobe41e222016-09-02 15:16:13 +02001724 scenarioDict = mydb.get_scenario(scenario, tenant_id, default_datacenter_id)
garciadeblas9f8456e2016-09-05 05:02:59 +02001725
garciadeblasbb6a1ed2016-09-30 14:02:09 +00001726 #logger.debug(">>>>>>> Dictionaries before merging")
1727 #logger.debug(">>>>>>> InstanceDict:\n{}".format(yaml.safe_dump(instance_dict,default_flow_style=False, width=256)))
1728 #logger.debug(">>>>>>> ScenarioDict:\n{}".format(yaml.safe_dump(scenarioDict,default_flow_style=False, width=256)))
garciadeblas9f8456e2016-09-05 05:02:59 +02001729
tiernobe41e222016-09-02 15:16:13 +02001730 scenarioDict['datacenter_id'] = default_datacenter_id
garciadeblas9f8456e2016-09-05 05:02:59 +02001731
tierno7edb6752016-03-21 17:37:52 +01001732 auxNetDict = {} #Auxiliar dictionary. First key:'scenario' or sce_vnf uuid. Second Key: uuid of the net/sce_net. Value: vim_net_id
1733 auxNetDict['scenario'] = {}
1734
tierno4319dad2016-09-05 12:11:11 +02001735 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 +01001736 instance_name = instance_dict["name"]
1737 instance_description = instance_dict.get("description")
1738 try:
1739 #0 check correct parameters
tiernobe41e222016-09-02 15:16:13 +02001740 for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems():
tierno7edb6752016-03-21 17:37:52 +01001741 found=False
1742 for scenario_net in scenarioDict['nets']:
tiernobe41e222016-09-02 15:16:13 +02001743 if net_name == scenario_net["name"]:
tierno7edb6752016-03-21 17:37:52 +01001744 found = True
1745 break
1746 if not found:
tiernobe41e222016-09-02 15:16:13 +02001747 raise NfvoException("Invalid scenario network name '{}' at instance:networks".format(net_name), HTTP_Bad_Request)
1748 if "sites" not in net_instance_desc:
1749 net_instance_desc["sites"] = [ {} ]
1750 site_without_datacenter_field = False
1751 for site in net_instance_desc["sites"]:
1752 if site.get("datacenter"):
1753 if site["datacenter"] not in myvims:
1754 #Add this datacenter to myvims
1755 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, site["datacenter"])
1756 myvims[d] = v
tiernoa2793912016-10-04 08:15:08 +00001757 datacenter2tenant[d] = v['config']['datacenter_tenant_id']
tiernobe41e222016-09-02 15:16:13 +02001758 site["datacenter"] = d #change name to id
1759 else:
1760 if site_without_datacenter_field:
1761 raise NfvoException("Found more than one entries without datacenter field at instance:networks:{}:sites".format(net_name), HTTP_Bad_Request)
1762 site_without_datacenter_field = True
1763 site["datacenter"] = default_datacenter_id #change name to id
1764
1765 for vnf_name, vnf_instance_desc in instance_dict.get("vnfs",{}).iteritems():
tierno7edb6752016-03-21 17:37:52 +01001766 found=False
1767 for scenario_vnf in scenarioDict['vnfs']:
tiernobe41e222016-09-02 15:16:13 +02001768 if vnf_name == scenario_vnf['name']:
tierno7edb6752016-03-21 17:37:52 +01001769 found = True
1770 break
1771 if not found:
tiernobe41e222016-09-02 15:16:13 +02001772 raise NfvoException("Invalid vnf name '{}' at instance:vnfs".format(vnf_instance_desc), HTTP_Bad_Request)
1773 if "datacenter" in vnf_instance_desc:
1774 #Add this datacenter to myvims
1775 if vnf_instance_desc["datacenter"] not in myvims:
1776 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, vnf_instance_desc["datacenter"])
1777 myvims[d] = v
tiernoa2793912016-10-04 08:15:08 +00001778 datacenter2tenant[d] = v['config']['datacenter_tenant_id']
1779 scenario_vnf["datacenter"] = vnf_instance_desc["datacenter"]
garciadeblas30833382017-01-09 09:46:31 +01001780
tiernoa4e1a6e2016-08-31 14:19:40 +02001781 #0.1 parse cloud-config parameters
1782 cloud_config = scenarioDict.get("cloud-config", {})
1783 if instance_dict.get("cloud-config"):
1784 cloud_config.update( instance_dict["cloud-config"])
1785 if not cloud_config:
1786 cloud_config = None
1787 else:
1788 scenarioDict["cloud-config"] = cloud_config
1789 unify_cloud_config(cloud_config)
garciadeblas9f8456e2016-09-05 05:02:59 +02001790
1791 #0.2 merge instance information into scenario
1792 #Ideally, the operation should be as simple as: update(scenarioDict,instance_dict)
1793 #However, this is not possible yet.
1794 for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems():
1795 for scenario_net in scenarioDict['nets']:
1796 if net_name == scenario_net["name"]:
1797 if 'ip-profile' in net_instance_desc:
1798 ipprofile = net_instance_desc['ip-profile']
1799 ipprofile['subnet_address'] = ipprofile.pop('subnet-address',None)
1800 ipprofile['ip_version'] = ipprofile.pop('ip-version','IPv4')
1801 ipprofile['gateway_address'] = ipprofile.pop('gateway-address',None)
1802 ipprofile['dns_address'] = ipprofile.pop('dns-address',None)
1803 if 'dhcp' in ipprofile:
1804 ipprofile['dhcp_start_address'] = ipprofile['dhcp'].get('start-address',None)
1805 ipprofile['dhcp_enabled'] = ipprofile['dhcp'].get('enabled',True)
1806 ipprofile['dhcp_count'] = ipprofile['dhcp'].get('count',None)
1807 del ipprofile['dhcp']
garciadeblasedca7b32016-09-29 14:01:52 +00001808 if 'ip_profile' not in scenario_net:
1809 scenario_net['ip_profile'] = ipprofile
1810 else:
1811 update(scenario_net['ip_profile'],ipprofile)
tiernoe6c58ce2016-09-14 16:02:49 +02001812 for interface in net_instance_desc.get('interfaces', () ):
garciadeblas9f8456e2016-09-05 05:02:59 +02001813 if 'ip_address' in interface:
1814 for vnf in scenarioDict['vnfs']:
1815 if interface['vnf'] == vnf['name']:
1816 for vnf_interface in vnf['interfaces']:
1817 if interface['vnf_interface'] == vnf_interface['external_name']:
1818 vnf_interface['ip_address']=interface['ip_address']
1819
garciadeblasbb6a1ed2016-09-30 14:02:09 +00001820 #logger.debug(">>>>>>>> Merged dictionary")
tierno4319dad2016-09-05 12:11:11 +02001821 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 +02001822
tierno7edb6752016-03-21 17:37:52 +01001823
1824 #1. Creating new nets (sce_nets) in the VIM"
1825 for sce_net in scenarioDict['nets']:
tiernobe41e222016-09-02 15:16:13 +02001826 sce_net["vim_id_sites"]={}
tierno7edb6752016-03-21 17:37:52 +01001827 descriptor_net = instance_dict.get("networks",{}).get(sce_net["name"],{})
tiernobe41e222016-09-02 15:16:13 +02001828 net_name = descriptor_net.get("vim-network-name")
1829 auxNetDict['scenario'][sce_net['uuid']] = {}
1830
1831 sites = descriptor_net.get("sites", [ {} ])
1832 for site in sites:
1833 if site.get("datacenter"):
1834 vim = myvims[ site["datacenter"] ]
1835 datacenter_id = site["datacenter"]
tierno7edb6752016-03-21 17:37:52 +01001836 else:
tiernobe41e222016-09-02 15:16:13 +02001837 vim = myvims[ default_datacenter_id ]
1838 datacenter_id = default_datacenter_id
tiernobe41e222016-09-02 15:16:13 +02001839 net_type = sce_net['type']
1840 lookfor_filter = {'admin_state_up': True, 'status': 'ACTIVE'} #'shared': True
1841 if sce_net["external"]:
1842 if not net_name:
1843 net_name = sce_net["name"]
1844 if "netmap-use" in site or "netmap-create" in site:
1845 create_network = False
1846 lookfor_network = False
1847 if "netmap-use" in site:
1848 lookfor_network = True
1849 if utils.check_valid_uuid(site["netmap-use"]):
1850 filter_text = "scenario id '%s'" % site["netmap-use"]
1851 lookfor_filter["id"] = site["netmap-use"]
1852 else:
1853 filter_text = "scenario name '%s'" % site["netmap-use"]
1854 lookfor_filter["name"] = site["netmap-use"]
1855 if "netmap-create" in site:
1856 create_network = True
1857 net_vim_name = net_name
1858 if site["netmap-create"]:
1859 net_vim_name = site["netmap-create"]
1860
1861 elif sce_net['vim_id'] != None:
1862 #there is a netmap at datacenter_nets database #TODO REVISE!!!!
1863 create_network = False
1864 lookfor_network = True
1865 lookfor_filter["id"] = sce_net['vim_id']
1866 filter_text = "vim_id '%s' datacenter_netmap name '%s'. Try to reload vims with datacenter-net-update" % (sce_net['vim_id'], sce_net["name"])
1867 #look for network at datacenter and return error
1868 else:
1869 #There is not a netmap, look at datacenter for a net with this name and create if not found
1870 create_network = True
1871 lookfor_network = True
1872 lookfor_filter["name"] = sce_net["name"]
1873 net_vim_name = sce_net["name"]
1874 filter_text = "scenario name '%s'" % sce_net["name"]
tierno7edb6752016-03-21 17:37:52 +01001875 else:
tiernobe41e222016-09-02 15:16:13 +02001876 if not net_name:
1877 net_name = "%s.%s" %(instance_name, sce_net["name"])
1878 net_name = net_name[:255] #limit length
1879 net_vim_name = net_name
1880 create_network = True
1881 lookfor_network = False
1882
1883 if lookfor_network:
1884 vim_nets = vim.get_network_list(filter_dict=lookfor_filter)
1885 if len(vim_nets) > 1:
1886 raise NfvoException("More than one candidate VIM network found for " + filter_text, HTTP_Bad_Request )
1887 elif len(vim_nets) == 0:
1888 if not create_network:
1889 raise NfvoException("No candidate VIM network found for " + filter_text, HTTP_Bad_Request )
1890 else:
1891 sce_net["vim_id_sites"][datacenter_id] = vim_nets[0]['id']
tiernobe41e222016-09-02 15:16:13 +02001892 auxNetDict['scenario'][sce_net['uuid']][datacenter_id] = vim_nets[0]['id']
1893 create_network = False
1894 if create_network:
1895 #if network is not external
garciadeblas9f8456e2016-09-05 05:02:59 +02001896 network_id = vim.new_network(net_vim_name, net_type, sce_net.get('ip_profile',None))
tiernobe41e222016-09-02 15:16:13 +02001897 sce_net["vim_id_sites"][datacenter_id] = network_id
1898 auxNetDict['scenario'][sce_net['uuid']][datacenter_id] = network_id
1899 rollbackList.append({'what':'network', 'where':'vim', 'vim_id':datacenter_id, 'uuid':network_id})
tierno66345bc2016-09-26 11:37:55 +02001900 sce_net["created"] = True
tierno7edb6752016-03-21 17:37:52 +01001901
1902 #2. Creating new nets (vnf internal nets) in the VIM"
1903 #For each vnf net, we create it and we add it to instanceNetlist.
1904 for sce_vnf in scenarioDict['vnfs']:
1905 for net in sce_vnf['nets']:
tiernobe41e222016-09-02 15:16:13 +02001906 if sce_vnf.get("datacenter"):
1907 vim = myvims[ sce_vnf["datacenter"] ]
1908 datacenter_id = sce_vnf["datacenter"]
1909 else:
1910 vim = myvims[ default_datacenter_id ]
1911 datacenter_id = default_datacenter_id
tierno7edb6752016-03-21 17:37:52 +01001912 descriptor_net = instance_dict.get("vnfs",{}).get(sce_vnf["name"],{})
1913 net_name = descriptor_net.get("name")
1914 if not net_name:
1915 net_name = "%s.%s" %(instance_name, net["name"])
1916 net_name = net_name[:255] #limit length
1917 net_type = net['type']
garciadeblas9f8456e2016-09-05 05:02:59 +02001918 network_id = vim.new_network(net_name, net_type, net.get('ip_profile',None))
tierno7edb6752016-03-21 17:37:52 +01001919 net['vim_id'] = network_id
1920 if sce_vnf['uuid'] not in auxNetDict:
1921 auxNetDict[sce_vnf['uuid']] = {}
1922 auxNetDict[sce_vnf['uuid']][net['uuid']] = network_id
1923 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
tierno66345bc2016-09-26 11:37:55 +02001924 net["created"] = True
1925
tierno7edb6752016-03-21 17:37:52 +01001926
tiernoae4a8d12016-07-08 12:30:39 +02001927 #print "auxNetDict:"
1928 #print yaml.safe_dump(auxNetDict, indent=4, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +01001929
1930 #3. Creating new vm instances in the VIM
tiernoae4a8d12016-07-08 12:30:39 +02001931 #myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict)
tierno7edb6752016-03-21 17:37:52 +01001932 for sce_vnf in scenarioDict['vnfs']:
tiernobe41e222016-09-02 15:16:13 +02001933 if sce_vnf.get("datacenter"):
1934 vim = myvims[ sce_vnf["datacenter"] ]
1935 datacenter_id = sce_vnf["datacenter"]
1936 else:
1937 vim = myvims[ default_datacenter_id ]
1938 datacenter_id = default_datacenter_id
1939 sce_vnf["datacenter_id"] = datacenter_id
tierno7edb6752016-03-21 17:37:52 +01001940 i = 0
1941 for vm in sce_vnf['vms']:
1942 i += 1
1943 myVMDict = {}
tiernoae65a482016-11-24 16:20:05 +01001944 myVMDict['name'] = "{}.{}.{}".format(instance_name,sce_vnf['name'],chr(96+i))
tierno7edb6752016-03-21 17:37:52 +01001945 myVMDict['description'] = myVMDict['name'][0:99]
1946# if not startvms:
1947# myVMDict['start'] = "no"
1948 myVMDict['name'] = myVMDict['name'][0:255] #limit name length
1949 #create image at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001950 image_dict = mydb.get_table_by_uuid_name("images", vm['image_id'])
tierno5e91eb82016-10-04 09:39:07 +00001951 image_id = create_or_use_image(mydb, {datacenter_id: vim}, image_dict, [], True)
tierno7edb6752016-03-21 17:37:52 +01001952 vm['vim_image_id'] = image_id
1953
1954 #create flavor at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001955 flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id'])
tierno7edb6752016-03-21 17:37:52 +01001956 if flavor_dict['extended']!=None:
1957 flavor_dict['extended']= yaml.load(flavor_dict['extended'])
montesmoreno0c8def02016-12-22 12:16:23 +00001958 flavor_id = create_or_use_flavor(mydb, {datacenter_id: vim}, flavor_dict, rollbackList, True)
1959
1960
1961
1962
1963 #Obtain information for additional disks
1964 extended_flavor_dict = mydb.get_rows(FROM='datacenters_flavors', SELECT=('extended',), WHERE={'vim_id': flavor_id})
1965 if not extended_flavor_dict:
1966 raise NfvoException("flavor '{}' not found".format(flavor_id), HTTP_Not_Found)
1967 return
1968
1969 #extended_flavor_dict_yaml = yaml.load(extended_flavor_dict[0])
1970 myVMDict['disks'] = None
1971 extended_info = extended_flavor_dict[0]['extended']
1972 if extended_info != None:
1973 extended_flavor_dict_yaml = yaml.load(extended_info)
1974 if 'disks' in extended_flavor_dict_yaml:
1975 myVMDict['disks'] = extended_flavor_dict_yaml['disks']
1976
1977
1978
1979
tierno7edb6752016-03-21 17:37:52 +01001980 vm['vim_flavor_id'] = flavor_id
1981
1982 myVMDict['imageRef'] = vm['vim_image_id']
1983 myVMDict['flavorRef'] = vm['vim_flavor_id']
1984 myVMDict['networks'] = []
tiernoa2793912016-10-04 08:15:08 +00001985 #TODO ALF. connect_mgmt_interfaces. Connect management interfaces if this is true
tierno7edb6752016-03-21 17:37:52 +01001986 for iface in vm['interfaces']:
1987 netDict = {}
1988 if iface['type']=="data":
1989 netDict['type'] = iface['model']
1990 elif "model" in iface and iface["model"]!=None:
1991 netDict['model']=iface['model']
1992 #TODO in future, remove this because mac_address will not be set, and the type of PV,VF is obtained from iterface table model
1993 #discover type of interface looking at flavor
1994 for numa in flavor_dict.get('extended',{}).get('numas',[]):
1995 for flavor_iface in numa.get('interfaces',[]):
1996 if flavor_iface.get('name') == iface['internal_name']:
1997 if flavor_iface['dedicated'] == 'yes':
1998 netDict['type']="PF" #passthrough
1999 elif flavor_iface['dedicated'] == 'no':
2000 netDict['type']="VF" #siov
2001 elif flavor_iface['dedicated'] == 'yes:sriov':
2002 netDict['type']="VFnotShared" #sriov but only one sriov on the PF
2003 netDict["mac_address"] = flavor_iface.get("mac_address")
2004 break;
2005 netDict["use"]=iface['type']
2006 if netDict["use"]=="data" and not netDict.get("type"):
2007 #print "netDict", netDict
2008 #print "iface", iface
2009 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'])
2010 if flavor_dict.get('extended')==None:
tiernoae4a8d12016-07-08 12:30:39 +02002011 raise NfvoException(e_text + "After database migration some information is not available. \
2012 Try to delete and create the scenarios and VNFs again", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002013 else:
tiernoae4a8d12016-07-08 12:30:39 +02002014 raise NfvoException(e_text, HTTP_Internal_Server_Error)
tierno7edb6752016-03-21 17:37:52 +01002015 if netDict["use"]=="mgmt" or netDict["use"]=="bridge":
2016 netDict["type"]="virtual"
2017 if "vpci" in iface and iface["vpci"] is not None:
2018 netDict['vpci'] = iface['vpci']
2019 if "mac" in iface and iface["mac"] is not None:
2020 netDict['mac_address'] = iface['mac']
montesmoreno2a1fc4e2017-01-09 16:46:04 +00002021 if "port-security" in iface and iface["port-security"] is not None:
2022 netDict['port_security'] = iface['port-security']
2023 if "floating-ip" in iface and iface["floating-ip"] is not None:
2024 netDict['floating_ip'] = iface['floating-ip']
tierno7edb6752016-03-21 17:37:52 +01002025 netDict['name'] = iface['internal_name']
2026 if iface['net_id'] is None:
2027 for vnf_iface in sce_vnf["interfaces"]:
tiernof97fd272016-07-11 14:32:37 +02002028 #print iface
2029 #print vnf_iface
tierno7edb6752016-03-21 17:37:52 +01002030 if vnf_iface['interface_id']==iface['uuid']:
tiernobe41e222016-09-02 15:16:13 +02002031 netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ][datacenter_id]
tierno7edb6752016-03-21 17:37:52 +01002032 break
2033 else:
2034 netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ]
2035 #skip bridge ifaces not connected to any net
2036 #if 'net_id' not in netDict or netDict['net_id']==None:
2037 # continue
2038 myVMDict['networks'].append(netDict)
tiernoae4a8d12016-07-08 12:30:39 +02002039 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
2040 #print myVMDict['name']
2041 #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
2042 #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
2043 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
tiernobe41e222016-09-02 15:16:13 +02002044 vm_id = vim.new_vminstance(myVMDict['name'],myVMDict['description'],myVMDict.get('start', None),
montesmoreno0c8def02016-12-22 12:16:23 +00002045 myVMDict['imageRef'],myVMDict['flavorRef'],myVMDict['networks'], cloud_config = cloud_config,
2046 disk_list = myVMDict['disks'])
2047
tierno7edb6752016-03-21 17:37:52 +01002048 vm['vim_id'] = vm_id
2049 rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id})
2050 #put interface uuid back to scenario[vnfs][vms[[interfaces]
2051 for net in myVMDict['networks']:
2052 if "vim_id" in net:
2053 for iface in vm['interfaces']:
2054 if net["name"]==iface["internal_name"]:
2055 iface["vim_id"]=net["vim_id"]
2056 break
tiernoa2793912016-10-04 08:15:08 +00002057 scenarioDict["datacenter2tenant"] = datacenter2tenant
2058 logger.debug("create_instance Deployment done scenarioDict: %s",
2059 yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False) )
tiernof97fd272016-07-11 14:32:37 +02002060 instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_name, instance_description, scenarioDict)
2061 return mydb.get_instance_scenario(instance_id)
2062 except (NfvoException, vimconn.vimconnException,db_base_Exception) as e:
tiernobe41e222016-09-02 15:16:13 +02002063 message = rollback(mydb, myvims, rollbackList)
tiernof97fd272016-07-11 14:32:37 +02002064 if isinstance(e, db_base_Exception):
2065 error_text = "database Exception"
2066 elif isinstance(e, vimconn.vimconnException):
2067 error_text = "VIM Exception"
2068 else:
2069 error_text = "Exception"
2070 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
2071 #logger.error("create_instance: %s", error_text)
2072 raise NfvoException(error_text, e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02002073
tierno7edb6752016-03-21 17:37:52 +01002074def delete_instance(mydb, tenant_id, instance_id):
tiernoae4a8d12016-07-08 12:30:39 +02002075 #print "Checking that the instance_id exists and getting the instance dictionary"
tiernof97fd272016-07-11 14:32:37 +02002076 instanceDict = mydb.get_instance_scenario(instance_id, tenant_id)
tiernoae4a8d12016-07-08 12:30:39 +02002077 #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +01002078 tenant_id = instanceDict["tenant_id"]
tiernoae4a8d12016-07-08 12:30:39 +02002079 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tierno7edb6752016-03-21 17:37:52 +01002080
tiernoa2793912016-10-04 08:15:08 +00002081 #1. Delete from Database
tiernof97fd272016-07-11 14:32:37 +02002082 message = mydb.delete_instance_scenario(instance_id, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01002083
2084 #2. delete from VIM
tiernoa2793912016-10-04 08:15:08 +00002085 error_msg = ""
2086 myvims={}
tierno7edb6752016-03-21 17:37:52 +01002087
2088 #2.1 deleting VMs
2089 #vm_fail_list=[]
2090 for sce_vnf in instanceDict['vnfs']:
tiernoa2793912016-10-04 08:15:08 +00002091 datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
2092 if datacenter_key not in myvims:
2093 vims = get_vim(mydb, tenant_id, datacenter_id=sce_vnf["datacenter_id"],
2094 datacenter_tenant_id=sce_vnf["datacenter_tenant_id"])
2095 if len(vims) == 0:
2096 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"],
2097 sce_vnf["datacenter_tenant_id"]))
2098 myvims[datacenter_key] = None
2099 else:
2100 myvims[datacenter_key] = vims.values()[0]
2101 myvim = myvims[datacenter_key]
tierno7edb6752016-03-21 17:37:52 +01002102 for vm in sce_vnf['vms']:
tiernoa2793912016-10-04 08:15:08 +00002103 if not myvim:
2104 error_msg += "\n VM id={} cannot be deleted because datacenter={} not found".format(vm['vim_vm_id'], sce_vnf["datacenter_id"])
2105 continue
tiernoae4a8d12016-07-08 12:30:39 +02002106 try:
2107 myvim.delete_vminstance(vm['vim_vm_id'])
2108 except vimconn.vimconnNotFoundException as e:
tiernoa2793912016-10-04 08:15:08 +00002109 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 +02002110 logger.warn("VM instance '%s'uuid '%s', VIM id '%s', from VNF_id '%s' not found",
2111 vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id'])
2112 except vimconn.vimconnException as e:
tiernoa2793912016-10-04 08:15:08 +00002113 error_msg+="\n VM VIM_id={} at datacenter={} Error: {} {}".format(vm['vim_vm_id'], sce_vnf["datacenter_id"], e.http_code, str(e))
2114 logger.error("Error %d deleting VM instance '%s'uuid '%s', VIM_id '%s', from VNF_id '%s': %s",
tiernoae4a8d12016-07-08 12:30:39 +02002115 e.http_code, vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id'], str(e))
tierno7edb6752016-03-21 17:37:52 +01002116
2117 #2.2 deleting NETS
2118 #net_fail_list=[]
2119 for net in instanceDict['nets']:
tierno66345bc2016-09-26 11:37:55 +02002120 if not net['created']:
tierno7edb6752016-03-21 17:37:52 +01002121 continue #skip not created nets
tiernoa2793912016-10-04 08:15:08 +00002122 datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"])
2123 if datacenter_key not in myvims:
2124 vims = get_vim(mydb, tenant_id, datacenter_id=net["datacenter_id"],
2125 datacenter_tenant_id=net["datacenter_tenant_id"])
2126 if len(vims) == 0:
2127 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]))
2128 myvims[datacenter_key] = None
2129 else:
2130 myvims[datacenter_key] = vims.values()[0]
2131 myvim = myvims[datacenter_key]
2132
tierno7edb6752016-03-21 17:37:52 +01002133 if not myvim:
tiernoa2793912016-10-04 08:15:08 +00002134 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 +01002135 continue
tiernoae4a8d12016-07-08 12:30:39 +02002136 try:
2137 myvim.delete_network(net['vim_net_id'])
2138 except vimconn.vimconnNotFoundException as e:
tiernoa2793912016-10-04 08:15:08 +00002139 error_msg+="\n NET VIM_id={} not found at datacenter={}".format(net['vim_net_id'], net["datacenter_id"])
2140 logger.warn("NET '%s', VIM_id '%s', from VNF_net_id '%s' not found",
2141 net['uuid'], net['vim_net_id'], str(net['vnf_net_id']))
tiernoae4a8d12016-07-08 12:30:39 +02002142 except vimconn.vimconnException as e:
tiernoa2793912016-10-04 08:15:08 +00002143 error_msg+="\n NET VIM_id={} at datacenter={} Error: {} {}".format(net['vim_net_id'], net["datacenter_id"], e.http_code, str(e))
2144 logger.error("Error %d deleting NET '%s', VIM_id '%s', from VNF_net_id '%s': %s",
2145 e.http_code, net['uuid'], net['vim_net_id'], str(net['vnf_net_id']), str(e))
tierno7edb6752016-03-21 17:37:52 +01002146 if len(error_msg)>0:
tiernof97fd272016-07-11 14:32:37 +02002147 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 +01002148 else:
tiernof97fd272016-07-11 14:32:37 +02002149 return 'instance ' + message + ' deleted'
tierno7edb6752016-03-21 17:37:52 +01002150
2151def refresh_instance(mydb, nfvo_tenant, instanceDict, datacenter=None, vim_tenant=None):
2152 '''Refreshes a scenario instance. It modifies instanceDict'''
2153 '''Returns:
2154 - 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
2155 - error_msg
2156 '''
2157 # Assumption: nfvo_tenant and instance_id were checked before entering into this function
tiernoae4a8d12016-07-08 12:30:39 +02002158 #print "nfvo.refresh_instance begins"
tierno7edb6752016-03-21 17:37:52 +01002159 #print json.dumps(instanceDict, indent=4)
2160
tiernoae4a8d12016-07-08 12:30:39 +02002161 #print "Getting the VIM URL and the VIM tenant_id"
tiernoa2793912016-10-04 08:15:08 +00002162 myvims={}
2163
tiernoae4a8d12016-07-08 12:30:39 +02002164 # 1. Getting VIM vm and net list
tierno7edb6752016-03-21 17:37:52 +01002165 vms_updated = [] #List of VM instance uuids in openmano that were updated
2166 vms_notupdated=[]
tiernoa2793912016-10-04 08:15:08 +00002167 vm_list = {}
tierno7edb6752016-03-21 17:37:52 +01002168 for sce_vnf in instanceDict['vnfs']:
tiernoa2793912016-10-04 08:15:08 +00002169 datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
2170 if datacenter_key not in vm_list:
2171 vm_list[datacenter_key] = []
2172 if datacenter_key not in myvims:
2173 vims = get_vim(mydb, nfvo_tenant, datacenter_id=sce_vnf["datacenter_id"],
2174 datacenter_tenant_id=sce_vnf["datacenter_tenant_id"])
2175 if len(vims) == 0:
2176 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"]))
2177 myvims[datacenter_key] = None
2178 else:
2179 myvims[datacenter_key] = vims.values()[0]
tierno7edb6752016-03-21 17:37:52 +01002180 for vm in sce_vnf['vms']:
tiernoa2793912016-10-04 08:15:08 +00002181 vm_list[datacenter_key].append(vm['vim_vm_id'])
tiernoae4a8d12016-07-08 12:30:39 +02002182 vms_notupdated.append(vm["uuid"])
2183
2184 nets_updated = [] #List of VM instance uuids in openmano that were updated
tierno7edb6752016-03-21 17:37:52 +01002185 nets_notupdated=[]
tiernoa2793912016-10-04 08:15:08 +00002186 net_list = {}
tierno7edb6752016-03-21 17:37:52 +01002187 for net in instanceDict['nets']:
tiernoa2793912016-10-04 08:15:08 +00002188 datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"])
2189 if datacenter_key not in net_list:
2190 net_list[datacenter_key] = []
2191 if datacenter_key not in myvims:
2192 vims = get_vim(mydb, nfvo_tenant, datacenter_id=net["datacenter_id"],
2193 datacenter_tenant_id=net["datacenter_tenant_id"])
2194 if len(vims) == 0:
2195 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]))
2196 myvims[datacenter_key] = None
2197 else:
2198 myvims[datacenter_key] = vims.values()[0]
2199
2200 net_list[datacenter_key].append(net['vim_net_id'])
tiernoae4a8d12016-07-08 12:30:39 +02002201 nets_notupdated.append(net["uuid"])
2202
tiernoa2793912016-10-04 08:15:08 +00002203 # 1. Getting the status of all VMs
2204 vm_dict={}
2205 for datacenter_key in myvims:
2206 if not vm_list.get(datacenter_key):
2207 continue
2208 failed = True
2209 failed_message=""
2210 if not myvims[datacenter_key]:
2211 failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])
2212 else:
2213 try:
2214 vm_dict.update(myvims[datacenter_key].refresh_vms_status(vm_list[datacenter_key]) )
2215 failed = False
2216 except vimconn.vimconnException as e:
2217 logger.error("VIM exception %s %s", type(e).__name__, str(e))
2218 failed_message = str(e)
2219 if failed:
2220 for vm in vm_list[datacenter_key]:
2221 vm_dict[vm] = {'status': "VIM_ERROR", 'error_msg': failed_message}
tiernoae4a8d12016-07-08 12:30:39 +02002222
tiernoa2793912016-10-04 08:15:08 +00002223 # 2. Update the status of VMs in the instanceDict, while collects the VMs whose status changed
2224 for sce_vnf in instanceDict['vnfs']:
2225 for vm in sce_vnf['vms']:
2226 vm_id = vm['vim_vm_id']
2227 interfaces = vm_dict[vm_id].pop('interfaces', [])
2228 #2.0 look if contain manamgement interface, and if not change status from ACTIVE:NoMgmtIP to ACTIVE
2229 has_mgmt_iface = False
2230 for iface in vm["interfaces"]:
2231 if iface["type"]=="mgmt":
2232 has_mgmt_iface = True
2233 if vm_dict[vm_id]['status'] == "ACTIVE:NoMgmtIP" and not has_mgmt_iface:
2234 vm_dict[vm_id]['status'] = "ACTIVE"
tiernoa3d49e62016-10-05 15:20:26 +00002235 if vm_dict[vm_id].get('error_msg') and len(vm_dict[vm_id]['error_msg']) >= 1024:
2236 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 +00002237 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'):
2238 vm['status'] = vm_dict[vm_id]['status']
2239 vm['error_msg'] = vm_dict[vm_id].get('error_msg')
2240 vm['vim_info'] = vm_dict[vm_id].get('vim_info')
2241 # 2.1. Update in openmano DB the VMs whose status changed
tiernof97fd272016-07-11 14:32:37 +02002242 try:
tiernoa2793912016-10-04 08:15:08 +00002243 updates = mydb.update_rows('instance_vms', UPDATE=vm_dict[vm_id], WHERE={'uuid':vm["uuid"]})
2244 vms_notupdated.remove(vm["uuid"])
2245 if updates>0:
2246 vms_updated.append(vm["uuid"])
tiernof97fd272016-07-11 14:32:37 +02002247 except db_base_Exception as e:
2248 logger.error("nfvo.refresh_instance error database update: %s", str(e))
tiernoa2793912016-10-04 08:15:08 +00002249 # 2.2. Update in openmano DB the interface VMs
2250 for interface in interfaces:
2251 #translate from vim_net_id to instance_net_id
2252 network_id_list=[]
2253 for net in instanceDict['nets']:
2254 if net["vim_net_id"] == interface["vim_net_id"]:
2255 network_id_list.append(net["uuid"])
2256 if not network_id_list:
2257 continue
2258 del interface["vim_net_id"]
2259 try:
2260 for network_id in network_id_list:
2261 mydb.update_rows('instance_interfaces', UPDATE=interface, WHERE={'instance_vm_id':vm["uuid"], "instance_net_id":network_id})
2262 except db_base_Exception as e:
2263 logger.error( "nfvo.refresh_instance error with vm=%s, interface_net_id=%s", vm["uuid"], network_id)
2264
2265 # 3. Getting the status of all nets
2266 net_dict = {}
2267 for datacenter_key in myvims:
2268 if not net_list.get(datacenter_key):
2269 continue
2270 failed = True
2271 failed_message = ""
2272 if not myvims[datacenter_key]:
2273 failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])
2274 else:
2275 try:
2276 net_dict.update(myvims[datacenter_key].refresh_nets_status(net_list[datacenter_key]) )
2277 failed = False
2278 except vimconn.vimconnException as e:
2279 logger.error("VIM exception %s %s", type(e).__name__, str(e))
2280 failed_message = str(e)
2281 if failed:
2282 for net in net_list[datacenter_key]:
2283 net_dict[net] = {'status': "VIM_ERROR", 'error_msg': failed_message}
2284
2285 # 4. Update the status of nets in the instanceDict, while collects the nets whose status changed
2286 # TODO: update nets inside a vnf
2287 for net in instanceDict['nets']:
2288 net_id = net['vim_net_id']
tiernoa3d49e62016-10-05 15:20:26 +00002289 if net_dict[net_id].get('error_msg') and len(net_dict[net_id]['error_msg']) >= 1024:
2290 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 +00002291 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'):
2292 net['status'] = net_dict[net_id]['status']
2293 net['error_msg'] = net_dict[net_id].get('error_msg')
2294 net['vim_info'] = net_dict[net_id].get('vim_info')
2295 # 5.1. Update in openmano DB the nets whose status changed
2296 try:
2297 updated = mydb.update_rows('instance_nets', UPDATE=net_dict[net_id], WHERE={'uuid':net["uuid"]})
2298 nets_notupdated.remove(net["uuid"])
2299 if updated>0:
2300 nets_updated.append(net["uuid"])
2301 except db_base_Exception as e:
2302 logger.error("nfvo.refresh_instance error database update: %s", str(e))
tierno7edb6752016-03-21 17:37:52 +01002303
2304 # Returns appropriate output
tiernoae4a8d12016-07-08 12:30:39 +02002305 #print "nfvo.refresh_instance finishes"
2306 logger.debug("VMs updated in the database: %s; nets updated in the database %s; VMs not updated: %s; nets not updated: %s",
2307 str(vms_updated), str(nets_updated), str(vms_notupdated), str(nets_notupdated))
tierno7edb6752016-03-21 17:37:52 +01002308 instance_id = instanceDict['uuid']
tierno7edb6752016-03-21 17:37:52 +01002309 if len(vms_notupdated)+len(nets_notupdated)>0:
tiernoae4a8d12016-07-08 12:30:39 +02002310 error_msg = "VMs not updated: " + str(vms_notupdated) + "; nets not updated: " + str(nets_notupdated)
tierno7edb6752016-03-21 17:37:52 +01002311 return len(vms_notupdated)+len(nets_notupdated), 'Scenario instance ' + instance_id + ' refreshed but some elements could not be updated in the database: ' + error_msg
2312
tiernoae4a8d12016-07-08 12:30:39 +02002313 return 0, 'Scenario instance ' + instance_id + ' refreshed.'
tierno7edb6752016-03-21 17:37:52 +01002314
2315def instance_action(mydb,nfvo_tenant,instance_id, action_dict):
tiernoae4a8d12016-07-08 12:30:39 +02002316 #print "Checking that the instance_id exists and getting the instance dictionary"
tiernof97fd272016-07-11 14:32:37 +02002317 instanceDict = mydb.get_instance_scenario(instance_id, nfvo_tenant)
tierno7edb6752016-03-21 17:37:52 +01002318 #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
2319
tiernoae4a8d12016-07-08 12:30:39 +02002320 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tiernof97fd272016-07-11 14:32:37 +02002321 vims = get_vim(mydb, nfvo_tenant, instanceDict['datacenter_id'])
2322 if len(vims) == 0:
2323 raise NfvoException("datacenter '{}' not found".format(str(instanceDict['datacenter_id'])), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002324 myvim = vims.values()[0]
2325
2326
2327 input_vnfs = action_dict.pop("vnfs", [])
2328 input_vms = action_dict.pop("vms", [])
2329 action_over_all = True if len(input_vnfs)==0 and len (input_vms)==0 else False
2330 vm_result = {}
2331 vm_error = 0
2332 vm_ok = 0
2333 for sce_vnf in instanceDict['vnfs']:
2334 for vm in sce_vnf['vms']:
2335 if not action_over_all:
2336 if sce_vnf['uuid'] not in input_vnfs and sce_vnf['vnf_name'] not in input_vnfs and \
2337 vm['uuid'] not in input_vms and vm['name'] not in input_vms:
2338 continue
tiernoae4a8d12016-07-08 12:30:39 +02002339 try:
2340 data = myvim.action_vminstance(vm['vim_vm_id'], action_dict)
tierno7edb6752016-03-21 17:37:52 +01002341 if "console" in action_dict:
tierno20fc2a22016-08-19 17:02:35 +02002342 if not global_config["http_console_proxy"]:
2343 vm_result[ vm['uuid'] ] = {"vim_result": 200,
2344 "description": "{protocol}//{ip}:{port}/{suffix}".format(
2345 protocol=data["protocol"],
2346 ip = data["server"],
2347 port = data["port"],
2348 suffix = data["suffix"]),
2349 "name":vm['name']
2350 }
2351 vm_ok +=1
2352 elif data["server"]=="127.0.0.1" or data["server"]=="localhost":
tierno7edb6752016-03-21 17:37:52 +01002353 vm_result[ vm['uuid'] ] = {"vim_result": -HTTP_Unauthorized,
2354 "description": "this console is only reachable by local interface",
2355 "name":vm['name']
2356 }
2357 vm_error+=1
tierno20fc2a22016-08-19 17:02:35 +02002358 else:
tierno7edb6752016-03-21 17:37:52 +01002359 #print "console data", data
tierno20fc2a22016-08-19 17:02:35 +02002360 try:
2361 console_thread = create_or_use_console_proxy_thread(data["server"], data["port"])
2362 vm_result[ vm['uuid'] ] = {"vim_result": 200,
2363 "description": "{protocol}//{ip}:{port}/{suffix}".format(
2364 protocol=data["protocol"],
2365 ip = global_config["http_console_host"],
2366 port = console_thread.port,
2367 suffix = data["suffix"]),
2368 "name":vm['name']
2369 }
2370 vm_ok +=1
2371 except NfvoException as e:
2372 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
2373 vm_error+=1
2374
tierno7edb6752016-03-21 17:37:52 +01002375 else:
tiernof97fd272016-07-11 14:32:37 +02002376 vm_result[ vm['uuid'] ] = {"vim_result": 200, "description": "ok", "name":vm['name']}
tierno7edb6752016-03-21 17:37:52 +01002377 vm_ok +=1
tiernoae4a8d12016-07-08 12:30:39 +02002378 except vimconn.vimconnException as e:
2379 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
2380 vm_error+=1
tierno7edb6752016-03-21 17:37:52 +01002381
2382 if vm_ok==0: #all goes wrong
tierno351863c2016-07-23 01:46:03 +02002383 return vm_result
tierno7edb6752016-03-21 17:37:52 +01002384 else:
tierno351863c2016-07-23 01:46:03 +02002385 return vm_result
tierno7edb6752016-03-21 17:37:52 +01002386
2387def create_or_use_console_proxy_thread(console_server, console_port):
2388 #look for a non-used port
2389 console_thread_key = console_server + ":" + str(console_port)
2390 if console_thread_key in global_config["console_thread"]:
2391 #global_config["console_thread"][console_thread_key].start_timeout()
tiernof97fd272016-07-11 14:32:37 +02002392 return global_config["console_thread"][console_thread_key]
tierno7edb6752016-03-21 17:37:52 +01002393
2394 for port in global_config["console_port_iterator"]():
tierno20fc2a22016-08-19 17:02:35 +02002395 #print "create_or_use_console_proxy_thread() port:", port
tierno7edb6752016-03-21 17:37:52 +01002396 if port in global_config["console_ports"]:
2397 continue
2398 try:
2399 clithread = cli.ConsoleProxyThread(global_config['http_host'], port, console_server, console_port)
2400 clithread.start()
2401 global_config["console_thread"][console_thread_key] = clithread
2402 global_config["console_ports"][port] = console_thread_key
tiernof97fd272016-07-11 14:32:37 +02002403 return clithread
tierno7edb6752016-03-21 17:37:52 +01002404 except cli.ConsoleProxyExceptionPortUsed as e:
2405 #port used, try with onoher
2406 continue
2407 except cli.ConsoleProxyException as e:
tiernof97fd272016-07-11 14:32:37 +02002408 raise NfvoException(str(e), HTTP_Bad_Request)
2409 raise NfvoException("Not found any free 'http_console_ports'", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002410
2411def check_tenant(mydb, tenant_id):
2412 '''check that tenant exists at database'''
tiernof97fd272016-07-11 14:32:37 +02002413 tenant = mydb.get_rows(FROM='nfvo_tenants', SELECT=('uuid',), WHERE={'uuid': tenant_id})
2414 if not tenant:
2415 raise NfvoException("tenant '{}' not found".format(tenant_id), HTTP_Not_Found)
2416 return
tierno7edb6752016-03-21 17:37:52 +01002417
2418def new_tenant(mydb, tenant_dict):
tiernof97fd272016-07-11 14:32:37 +02002419 tenant_id = mydb.new_row("nfvo_tenants", tenant_dict, add_uuid=True)
2420 return tenant_id
tierno7edb6752016-03-21 17:37:52 +01002421
2422def delete_tenant(mydb, tenant):
2423 #get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02002424
2425 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant, 'tenant')
2426 mydb.delete_row_by_id("nfvo_tenants", tenant_dict['uuid'])
2427 return tenant_dict['uuid'] + " " + tenant_dict["name"]
tierno7edb6752016-03-21 17:37:52 +01002428
2429def new_datacenter(mydb, datacenter_descriptor):
2430 if "config" in datacenter_descriptor:
2431 datacenter_descriptor["config"]=yaml.safe_dump(datacenter_descriptor["config"],default_flow_style=True,width=256)
tierno3ae39742016-09-07 12:17:51 +02002432 #Check that datacenter-type is correct
2433 datacenter_type = datacenter_descriptor.get("type", "openvim");
2434 module_info = None
2435 try:
2436 module = "vimconn_" + datacenter_type
2437 module_info = imp.find_module(module)
2438 except (IOError, ImportError):
2439 if module_info and module_info[0]:
2440 file.close(module_info[0])
2441 raise NfvoException("Incorrect datacenter type '{}'. Plugin '{}'.py not installed".format(datacenter_type, module), HTTP_Bad_Request)
2442
tiernof97fd272016-07-11 14:32:37 +02002443 datacenter_id = mydb.new_row("datacenters", datacenter_descriptor, add_uuid=True)
2444 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002445
2446def edit_datacenter(mydb, datacenter_id_name, datacenter_descriptor):
2447 #obtain data, check that only one exist
tiernof97fd272016-07-11 14:32:37 +02002448 datacenter = mydb.get_table_by_uuid_name('datacenters', datacenter_id_name)
tierno7edb6752016-03-21 17:37:52 +01002449 #edit data
tiernof97fd272016-07-11 14:32:37 +02002450 datacenter_id = datacenter['uuid']
2451 where={'uuid': datacenter['uuid']}
tierno7edb6752016-03-21 17:37:52 +01002452 if "config" in datacenter_descriptor:
2453 if datacenter_descriptor['config']!=None:
2454 try:
2455 new_config_dict = datacenter_descriptor["config"]
2456 #delete null fields
2457 to_delete=[]
2458 for k in new_config_dict:
2459 if new_config_dict[k]==None:
2460 to_delete.append(k)
2461
tiernof97fd272016-07-11 14:32:37 +02002462 config_dict = yaml.load(datacenter["config"])
tierno7edb6752016-03-21 17:37:52 +01002463 config_dict.update(new_config_dict)
2464 #delete null fields
2465 for k in to_delete:
2466 del config_dict[k]
tiernof97fd272016-07-11 14:32:37 +02002467 except Exception as e:
2468 raise NfvoException("Bad format at datacenter:config " + str(e), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01002469 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 +02002470 mydb.update_rows('datacenters', datacenter_descriptor, where)
2471 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002472
2473def delete_datacenter(mydb, datacenter):
2474 #get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02002475 datacenter_dict = mydb.get_table_by_uuid_name('datacenters', datacenter, 'datacenter')
2476 mydb.delete_row_by_id("datacenters", datacenter_dict['uuid'])
2477 return datacenter_dict['uuid'] + " " + datacenter_dict['name']
tierno7edb6752016-03-21 17:37:52 +01002478
tierno8008c3a2016-10-13 15:34:28 +00002479def 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 +01002480 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002481 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, None, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002482 datacenter_name=myvim["name"]
2483
2484 create_vim_tenant=True if vim_tenant_id==None and vim_tenant_name==None else False
2485
2486 #get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02002487 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', nfvo_tenant)
tierno7edb6752016-03-21 17:37:52 +01002488 if vim_tenant_name==None:
2489 vim_tenant_name=tenant_dict['name']
2490
2491 #check that this association does not exist before
2492 tenants_datacenter_dict={"nfvo_tenant_id":tenant_dict['uuid'], "datacenter_id":datacenter_id }
tiernof97fd272016-07-11 14:32:37 +02002493 tenants_datacenters = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
2494 if len(tenants_datacenters)>0:
2495 raise NfvoException("datacenter '{}' and tenant'{}' are already attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002496
2497 vim_tenant_id_exist_atdb=False
2498 if not create_vim_tenant:
2499 where_={"datacenter_id": datacenter_id}
2500 if vim_tenant_id!=None:
2501 where_["vim_tenant_id"] = vim_tenant_id
2502 if vim_tenant_name!=None:
2503 where_["vim_tenant_name"] = vim_tenant_name
2504 #check if vim_tenant_id is already at database
tiernof97fd272016-07-11 14:32:37 +02002505 datacenter_tenants_dict = mydb.get_rows(FROM='datacenter_tenants', WHERE=where_)
2506 if len(datacenter_tenants_dict)>=1:
tierno7edb6752016-03-21 17:37:52 +01002507 datacenter_tenants_dict = datacenter_tenants_dict[0]
2508 vim_tenant_id_exist_atdb=True
2509 #TODO check if a field has changed and edit entry at datacenter_tenants at DB
2510 else: #result=0
2511 datacenter_tenants_dict = {}
2512 #insert at table datacenter_tenants
2513 else: #if vim_tenant_id==None:
2514 #create tenant at VIM if not provided
tiernoae4a8d12016-07-08 12:30:39 +02002515 try:
2516 vim_tenant_id = myvim.new_tenant(vim_tenant_name, "created by openmano for datacenter "+datacenter_name)
2517 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002518 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 +01002519 datacenter_tenants_dict = {}
2520 datacenter_tenants_dict["created"]="true"
2521
2522 #fill datacenter_tenants table
2523 if not vim_tenant_id_exist_atdb:
2524 datacenter_tenants_dict["vim_tenant_id"] = vim_tenant_id
2525 datacenter_tenants_dict["vim_tenant_name"] = vim_tenant_name
2526 datacenter_tenants_dict["user"] = vim_username
2527 datacenter_tenants_dict["passwd"] = vim_password
2528 datacenter_tenants_dict["datacenter_id"] = datacenter_id
tierno8008c3a2016-10-13 15:34:28 +00002529 if config:
2530 datacenter_tenants_dict["config"] = yaml.safe_dump(config, default_flow_style=True, width=256)
tiernof97fd272016-07-11 14:32:37 +02002531 id_ = mydb.new_row('datacenter_tenants', datacenter_tenants_dict, add_uuid=True)
tierno7edb6752016-03-21 17:37:52 +01002532 datacenter_tenants_dict["uuid"] = id_
2533
2534 #fill tenants_datacenters table
2535 tenants_datacenter_dict["datacenter_tenant_id"]=datacenter_tenants_dict["uuid"]
tiernof97fd272016-07-11 14:32:37 +02002536 mydb.new_row('tenants_datacenters', tenants_datacenter_dict)
2537 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002538
2539def deassociate_datacenter_to_tenant(mydb, tenant_id, datacenter, vim_tenant_id=None):
2540 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002541 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, None, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002542
2543 #get nfvo_tenant info
2544 if not tenant_id or tenant_id=="any":
2545 tenant_uuid = None
2546 else:
tiernof97fd272016-07-11 14:32:37 +02002547 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant_id)
tierno7edb6752016-03-21 17:37:52 +01002548 tenant_uuid = tenant_dict['uuid']
2549
2550 #check that this association exist before
2551 tenants_datacenter_dict={"datacenter_id":datacenter_id }
2552 if tenant_uuid:
2553 tenants_datacenter_dict["nfvo_tenant_id"] = tenant_uuid
tiernof97fd272016-07-11 14:32:37 +02002554 tenant_datacenter_list = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
2555 if len(tenant_datacenter_list)==0 and tenant_uuid:
2556 raise NfvoException("datacenter '{}' and tenant '{}' are not attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002557
2558 #delete this association
tiernof97fd272016-07-11 14:32:37 +02002559 mydb.delete_row(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
tierno7edb6752016-03-21 17:37:52 +01002560
2561 #get vim_tenant info and deletes
2562 warning=''
2563 for tenant_datacenter_item in tenant_datacenter_list:
tiernof97fd272016-07-11 14:32:37 +02002564 vim_tenant_dict = mydb.get_table_by_uuid_name('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
2565 #try to delete vim:tenant
2566 try:
2567 mydb.delete_row_by_id('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
2568 if vim_tenant_dict['created']=='true':
tierno7edb6752016-03-21 17:37:52 +01002569 #delete tenant at VIM if created by NFVO
tiernoae4a8d12016-07-08 12:30:39 +02002570 try:
2571 myvim.delete_tenant(vim_tenant_dict['vim_tenant_id'])
2572 except vimconn.vimconnException as e:
2573 warning = "Not possible to delete vim_tenant_id {} from VIM: {} ".format(vim_tenant_dict['vim_tenant_id'], str(e))
2574 logger.warn(warning)
tiernof97fd272016-07-11 14:32:37 +02002575 except db_base_Exception as e:
2576 logger.error("Cannot delete datacenter_tenants " + str(e))
2577 pass #the error will be caused because dependencies, vim_tenant can not be deleted
tierno7edb6752016-03-21 17:37:52 +01002578
tiernof97fd272016-07-11 14:32:37 +02002579 return "datacenter {} detached. {}".format(datacenter_id, warning)
tierno7edb6752016-03-21 17:37:52 +01002580
2581def datacenter_action(mydb, tenant_id, datacenter, action_dict):
2582 #DEPRECATED
2583 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002584 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002585
2586 if 'net-update' in action_dict:
tiernoae4a8d12016-07-08 12:30:39 +02002587 try:
tiernof97fd272016-07-11 14:32:37 +02002588 nets = myvim.get_network_list(filter_dict={'shared': True, 'admin_state_up': True, 'status': 'ACTIVE'})
tiernoae4a8d12016-07-08 12:30:39 +02002589 #print content
2590 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002591 #logger.error("nfvo.datacenter_action() Not possible to get_network_list from VIM: %s ", str(e))
2592 raise NfvoException(str(e), HTTP_Internal_Server_Error)
tierno7edb6752016-03-21 17:37:52 +01002593 #update nets Change from VIM format to NFVO format
2594 net_list=[]
tiernof97fd272016-07-11 14:32:37 +02002595 for net in nets:
tierno7edb6752016-03-21 17:37:52 +01002596 net_nfvo={'datacenter_id': datacenter_id}
2597 net_nfvo['name'] = net['name']
2598 #net_nfvo['description']= net['name']
2599 net_nfvo['vim_net_id'] = net['id']
2600 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
2601 net_nfvo['shared'] = net['shared']
2602 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
2603 net_list.append(net_nfvo)
tiernof97fd272016-07-11 14:32:37 +02002604 inserted, deleted = mydb.update_datacenter_nets(datacenter_id, net_list)
2605 logger.info("Inserted %d nets, deleted %d old nets", inserted, deleted)
2606 return inserted
tierno7edb6752016-03-21 17:37:52 +01002607 elif 'net-edit' in action_dict:
2608 net = action_dict['net-edit'].pop('net')
tierno42fcc3b2016-07-06 17:20:40 +02002609 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
tiernof97fd272016-07-11 14:32:37 +02002610 result = mydb.update_rows('datacenter_nets', action_dict['net-edit'],
tierno7edb6752016-03-21 17:37:52 +01002611 WHERE={'datacenter_id':datacenter_id, what: net})
tiernof97fd272016-07-11 14:32:37 +02002612 return result
tierno7edb6752016-03-21 17:37:52 +01002613 elif 'net-delete' in action_dict:
2614 net = action_dict['net-deelte'].get('net')
tierno42fcc3b2016-07-06 17:20:40 +02002615 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
tiernof97fd272016-07-11 14:32:37 +02002616 result = mydb.delete_row(FROM='datacenter_nets',
tierno7edb6752016-03-21 17:37:52 +01002617 WHERE={'datacenter_id':datacenter_id, what: net})
tiernof97fd272016-07-11 14:32:37 +02002618 return result
tierno7edb6752016-03-21 17:37:52 +01002619
2620 else:
tiernof97fd272016-07-11 14:32:37 +02002621 raise NfvoException("Unknown action " + str(action_dict), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01002622
2623def datacenter_edit_netmap(mydb, tenant_id, datacenter, netmap, action_dict):
2624 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002625 datacenter_id, _ = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002626
tierno42fcc3b2016-07-06 17:20:40 +02002627 what = 'uuid' if utils.check_valid_uuid(netmap) else 'name'
tiernof97fd272016-07-11 14:32:37 +02002628 result = mydb.update_rows('datacenter_nets', action_dict['netmap'],
tierno7edb6752016-03-21 17:37:52 +01002629 WHERE={'datacenter_id':datacenter_id, what: netmap})
tiernof97fd272016-07-11 14:32:37 +02002630 return result
tierno7edb6752016-03-21 17:37:52 +01002631
2632def datacenter_new_netmap(mydb, tenant_id, datacenter, action_dict=None):
2633 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002634 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002635 filter_dict={}
2636 if action_dict:
2637 action_dict = action_dict["netmap"]
2638 if 'vim_id' in action_dict:
2639 filter_dict["id"] = action_dict['vim_id']
2640 if 'vim_name' in action_dict:
2641 filter_dict["name"] = action_dict['vim_name']
2642 else:
2643 filter_dict["shared"] = True
2644
tiernoae4a8d12016-07-08 12:30:39 +02002645 try:
tiernof97fd272016-07-11 14:32:37 +02002646 vim_nets = myvim.get_network_list(filter_dict=filter_dict)
tiernoae4a8d12016-07-08 12:30:39 +02002647 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002648 #logger.error("nfvo.datacenter_new_netmap() Not possible to get_network_list from VIM: %s ", str(e))
2649 raise NfvoException(str(e), HTTP_Internal_Server_Error)
2650 if len(vim_nets)>1 and action_dict:
2651 raise NfvoException("more than two networks found, specify with vim_id", HTTP_Conflict)
2652 elif len(vim_nets)==0: # and action_dict:
2653 raise NfvoException("Not found a network at VIM with " + str(filter_dict), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002654 net_list=[]
tiernof97fd272016-07-11 14:32:37 +02002655 for net in vim_nets:
tierno7edb6752016-03-21 17:37:52 +01002656 net_nfvo={'datacenter_id': datacenter_id}
2657 if action_dict and "name" in action_dict:
2658 net_nfvo['name'] = action_dict['name']
2659 else:
2660 net_nfvo['name'] = net['name']
2661 #net_nfvo['description']= net['name']
2662 net_nfvo['vim_net_id'] = net['id']
2663 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
2664 net_nfvo['shared'] = net['shared']
2665 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
tiernof97fd272016-07-11 14:32:37 +02002666 try:
2667 net_id = mydb.new_row("datacenter_nets", net_nfvo, add_uuid=True)
tierno7edb6752016-03-21 17:37:52 +01002668 net_nfvo["status"] = "OK"
tiernof97fd272016-07-11 14:32:37 +02002669 net_nfvo["uuid"] = net_id
2670 except db_base_Exception as e:
2671 if action_dict:
2672 raise
2673 else:
2674 net_nfvo["status"] = "FAIL: " + str(e)
tierno7edb6752016-03-21 17:37:52 +01002675 net_list.append(net_nfvo)
tiernof97fd272016-07-11 14:32:37 +02002676 return net_list
tierno7edb6752016-03-21 17:37:52 +01002677
2678def vim_action_get(mydb, tenant_id, datacenter, item, name):
2679 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002680 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002681 filter_dict={}
2682 if name:
tierno42fcc3b2016-07-06 17:20:40 +02002683 if utils.check_valid_uuid(name):
tierno7edb6752016-03-21 17:37:52 +01002684 filter_dict["id"] = name
2685 else:
2686 filter_dict["name"] = name
tiernoae4a8d12016-07-08 12:30:39 +02002687 try:
2688 if item=="networks":
2689 #filter_dict['tenant_id'] = myvim['tenant_id']
2690 content = myvim.get_network_list(filter_dict=filter_dict)
2691 elif item=="tenants":
2692 content = myvim.get_tenant_list(filter_dict=filter_dict)
2693 else:
tiernof97fd272016-07-11 14:32:37 +02002694 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernobe41e222016-09-02 15:16:13 +02002695 logger.debug("vim_action response %s", content) #update nets Change from VIM format to NFVO format
tiernoae4a8d12016-07-08 12:30:39 +02002696 if name and len(content)==1:
tiernof97fd272016-07-11 14:32:37 +02002697 return {item[:-1]: content[0]}
tiernoae4a8d12016-07-08 12:30:39 +02002698 elif name and len(content)==0:
tiernof97fd272016-07-11 14:32:37 +02002699 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 +02002700 datacenter)
tiernoae4a8d12016-07-08 12:30:39 +02002701 else:
tiernof97fd272016-07-11 14:32:37 +02002702 return {item: content}
tiernoae4a8d12016-07-08 12:30:39 +02002703 except vimconn.vimconnException as e:
2704 print "vim_action Not possible to get_%s_list from VIM: %s " % (item, str(e))
tiernof97fd272016-07-11 14:32:37 +02002705 raise NfvoException("Not possible to get_{}_list from VIM: {}".format(item, str(e)), e.http_code)
tierno7edb6752016-03-21 17:37:52 +01002706
2707def vim_action_delete(mydb, tenant_id, datacenter, item, name):
2708 #get datacenter info
tierno392f2852016-05-13 12:28:55 +02002709 if tenant_id == "any":
2710 tenant_id=None
2711
tiernoa2793912016-10-04 08:15:08 +00002712 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno392f2852016-05-13 12:28:55 +02002713 #get uuid name
tiernof97fd272016-07-11 14:32:37 +02002714 content = vim_action_get(mydb, tenant_id, datacenter, item, name)
2715 logger.debug("vim_action_delete vim response: " + str(content))
tierno392f2852016-05-13 12:28:55 +02002716 items = content.values()[0]
2717 if type(items)==list and len(items)==0:
tiernof97fd272016-07-11 14:32:37 +02002718 raise NfvoException("Not found " + item, HTTP_Not_Found)
tierno392f2852016-05-13 12:28:55 +02002719 elif type(items)==list and len(items)>1:
tiernof97fd272016-07-11 14:32:37 +02002720 raise NfvoException("Found more than one {} with this name. Use uuid.".format(item), HTTP_Not_Found)
tierno392f2852016-05-13 12:28:55 +02002721 else: # it is a dict
2722 item_id = items["id"]
2723 item_name = str(items.get("name"))
tierno7edb6752016-03-21 17:37:52 +01002724
tiernoae4a8d12016-07-08 12:30:39 +02002725 try:
2726 if item=="networks":
2727 content = myvim.delete_network(item_id)
2728 elif item=="tenants":
2729 content = myvim.delete_tenant(item_id)
2730 else:
tiernof97fd272016-07-11 14:32:37 +02002731 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernoae4a8d12016-07-08 12:30:39 +02002732 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002733 #logger.error( "vim_action Not possible to delete_{} {}from VIM: {} ".format(item, name, str(e)))
2734 raise NfvoException("Not possible to delete_{} {} from VIM: {}".format(item, name, str(e)), e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02002735
tiernof97fd272016-07-11 14:32:37 +02002736 return "{} {} {} deleted".format(item[:-1], item_id,item_name)
tierno7edb6752016-03-21 17:37:52 +01002737
2738def vim_action_create(mydb, tenant_id, datacenter, item, descriptor):
2739 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002740 logger.debug("vim_action_create descriptor %s", str(descriptor))
tierno392f2852016-05-13 12:28:55 +02002741 if tenant_id == "any":
2742 tenant_id=None
tiernoa2793912016-10-04 08:15:08 +00002743 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tiernoae4a8d12016-07-08 12:30:39 +02002744 try:
2745 if item=="networks":
2746 net = descriptor["network"]
2747 net_name = net.pop("name")
2748 net_type = net.pop("type", "bridge")
garciadeblas9f8456e2016-09-05 05:02:59 +02002749 net_public = net.pop("shared", False)
2750 net_ipprofile = net.pop("ip_profile", None)
2751 content = myvim.new_network(net_name, net_type, net_ipprofile, shared=net_public, **net)
tiernoae4a8d12016-07-08 12:30:39 +02002752 elif item=="tenants":
2753 tenant = descriptor["tenant"]
2754 content = myvim.new_tenant(tenant["name"], tenant.get("description"))
2755 else:
tiernof97fd272016-07-11 14:32:37 +02002756 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernoae4a8d12016-07-08 12:30:39 +02002757 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002758 raise NfvoException("Not possible to create {} at VIM: {}".format(item, str(e)), e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02002759
tierno7edb6752016-03-21 17:37:52 +01002760 return vim_action_get(mydb, tenant_id, datacenter, item, content)
2761
tierno66aa0372016-07-06 17:31:12 +02002762