blob: d45a3c79865436d3f1238aa520489f91ab4f70fb [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
tierno361275f2017-04-25 16:24:34 +020030# import imp
31# import json
tierno7edb6752016-03-21 17:37:52 +010032import yaml
tierno42fcc3b2016-07-06 17:20:40 +020033import utils
tierno42026a02017-02-10 15:13:40 +010034import vim_thread
tiernof97fd272016-07-11 14:32:37 +020035from db_base import HTTP_Unauthorized, HTTP_Bad_Request, HTTP_Internal_Server_Error, HTTP_Not_Found,\
tierno7edb6752016-03-21 17:37:52 +010036 HTTP_Conflict, HTTP_Method_Not_Allowed
37import console_proxy_thread as cli
tiernoae4a8d12016-07-08 12:30:39 +020038import vimconn
39import logging
garciadeblas9f8456e2016-09-05 05:02:59 +020040import collections
tiernof97fd272016-07-11 14:32:37 +020041from db_base import db_base_Exception
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +010042
tiernob3d36742017-03-03 23:51:05 +010043import nfvo_db
44from threading import Lock
45from time import time
tierno01b3e172017-04-21 10:52:34 +020046from lib_osm_openvim import ovim as ovim_module
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +020047from lib_osm_openvim.ovim import ovimException
tierno7edb6752016-03-21 17:37:52 +010048
49global global_config
50global vimconn_imported
tierno73ad9e42016-09-12 18:11:11 +020051global logger
montesmoreno0c8def02016-12-22 12:16:23 +000052global default_volume_size
53default_volume_size = '5' #size in GB
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +010054global ovim
55ovim = None
tiernoc5651792017-03-27 10:50:43 +020056global_config = None
tiernoae4a8d12016-07-08 12:30:39 +020057
tierno42026a02017-02-10 15:13:40 +010058vimconn_imported = {} # dictionary with VIM type as key, loaded module as value
59vim_threads = {"running":{}, "deleting": {}, "names": []} # threads running for attached-VIMs
tiernob3d36742017-03-03 23:51:05 +010060vim_persistent_info = {}
tierno73ad9e42016-09-12 18:11:11 +020061logger = logging.getLogger('openmano.nfvo')
tiernob3d36742017-03-03 23:51:05 +010062task_lock = Lock()
tierno867ffe92017-03-27 12:50:34 +020063global_instance_tasks = {}
tiernob3d36742017-03-03 23:51:05 +010064last_task_id = 0.0
65db=None
66db_lock=Lock()
tierno7edb6752016-03-21 17:37:52 +010067
68class NfvoException(Exception):
tiernoae4a8d12016-07-08 12:30:39 +020069 def __init__(self, message, http_code):
70 self.http_code = http_code
71 Exception.__init__(self, message)
tierno7edb6752016-03-21 17:37:52 +010072
73
tiernob3d36742017-03-03 23:51:05 +010074def get_task_id():
75 global last_task_id
76 task_id = time()
77 if task_id <= last_task_id:
78 task_id = last_task_id + 0.000001
79 last_task_id = task_id
80 return "TASK.{:.6f}".format(task_id)
81
82
tierno867ffe92017-03-27 12:50:34 +020083def new_task(name, params, depends=None):
tiernob3d36742017-03-03 23:51:05 +010084 task_id = get_task_id()
85 task = {"status": "enqueued", "id": task_id, "name": name, "params": params}
86 if depends:
87 task["depends"] = depends
tiernob3d36742017-03-03 23:51:05 +010088 return task
89
90
91def is_task_id(id):
92 return True if id[:5] == "TASK." else False
93
94
tierno42026a02017-02-10 15:13:40 +010095def get_non_used_vim_name(datacenter_name, datacenter_id, tenant_name, tenant_id):
96 name = datacenter_name[:16]
97 if name not in vim_threads["names"]:
98 vim_threads["names"].append(name)
99 return name
tiernob3d36742017-03-03 23:51:05 +0100100 name = datacenter_name[:16] + "." + tenant_name[:16]
tierno42026a02017-02-10 15:13:40 +0100101 if name not in vim_threads["names"]:
102 vim_threads["names"].append(name)
103 return name
104 name = datacenter_id + "-" + tenant_id
105 vim_threads["names"].append(name)
106 return name
107
108
109def start_service(mydb):
tiernob3d36742017-03-03 23:51:05 +0100110 global db, global_config
111 db = nfvo_db.nfvo_db()
112 db.connect(global_config['db_host'], global_config['db_user'], global_config['db_passwd'], global_config['db_name'])
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100113 global ovim
114
115 # Initialize openvim for SDN control
116 # TODO: Avoid static configuration by adding new parameters to openmanod.cfg
117 # TODO: review ovim.py to delete not needed configuration
118 ovim_configuration = {
tierno639520f2017-04-05 19:55:36 +0200119 'logger_name': 'openmano.ovim',
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100120 'network_vlan_range_start': 1000,
121 'network_vlan_range_end': 4096,
tierno639520f2017-04-05 19:55:36 +0200122 'db_name': global_config["db_ovim_name"],
123 'db_host': global_config["db_ovim_host"],
124 'db_user': global_config["db_ovim_user"],
125 'db_passwd': global_config["db_ovim_passwd"],
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100126 'bridge_ifaces': {},
127 'mode': 'normal',
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100128 'network_type': 'bridge',
129 #TODO: log_level_of should not be needed. To be modified in ovim
130 'log_level_of': 'DEBUG'
131 }
tierno42026a02017-02-10 15:13:40 +0100132 try:
tierno46df9672017-05-26 13:12:21 +0200133 ovim = ovim_module.ovim(ovim_configuration)
134 ovim.start_service()
135
136 from_= 'tenants_datacenters as td join datacenters as d on td.datacenter_id=d.uuid join '\
137 'datacenter_tenants as dt on td.datacenter_tenant_id=dt.uuid'
138 select_ = ('type', 'd.config as config', 'd.uuid as datacenter_id', 'vim_url', 'vim_url_admin',
139 'd.name as datacenter_name', 'dt.uuid as datacenter_tenant_id',
140 'dt.vim_tenant_name as vim_tenant_name', 'dt.vim_tenant_id as vim_tenant_id',
141 'user', 'passwd', 'dt.config as dt_config', 'nfvo_tenant_id')
tierno42026a02017-02-10 15:13:40 +0100142 vims = mydb.get_rows(FROM=from_, SELECT=select_)
143 for vim in vims:
tierno867ffe92017-03-27 12:50:34 +0200144 extra={'datacenter_tenant_id': vim.get('datacenter_tenant_id'),
145 'datacenter_id': vim.get('datacenter_id')}
tierno42026a02017-02-10 15:13:40 +0100146 if vim["config"]:
147 extra.update(yaml.load(vim["config"]))
148 if vim.get('dt_config'):
149 extra.update(yaml.load(vim["dt_config"]))
150 if vim["type"] not in vimconn_imported:
151 module_info=None
152 try:
153 module = "vimconn_" + vim["type"]
tierno361275f2017-04-25 16:24:34 +0200154 pkg = __import__("osm_ro." + module)
155 vim_conn = getattr(pkg, module)
156 # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]])
157 # vim_conn = imp.load_module(vim["type"], *module_info)
tierno42026a02017-02-10 15:13:40 +0100158 vimconn_imported[vim["type"]] = vim_conn
159 except (IOError, ImportError) as e:
tierno361275f2017-04-25 16:24:34 +0200160 # if module_info and module_info[0]:
161 # file.close(module_info[0])
tiernocdee8cc2017-04-25 13:42:06 +0200162 raise NfvoException("Unknown vim type '{}'. Cannot open file '{}.py'; {}: {}".format(
tiernob3d36742017-03-03 23:51:05 +0100163 vim["type"], module, type(e).__name__, str(e)), HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +0100164
tierno867ffe92017-03-27 12:50:34 +0200165 thread_id = vim['datacenter_tenant_id']
tiernob3d36742017-03-03 23:51:05 +0100166 vim_persistent_info[thread_id] = {}
tierno42026a02017-02-10 15:13:40 +0100167 try:
168 #if not tenant:
169 # return -HTTP_Bad_Request, "You must provide a valid tenant name or uuid for VIM %s" % ( vim["type"])
170 myvim = vimconn_imported[ vim["type"] ].vimconnector(
tiernob3d36742017-03-03 23:51:05 +0100171 uuid=vim['datacenter_id'], name=vim['datacenter_name'],
172 tenant_id=vim['vim_tenant_id'], tenant_name=vim['vim_tenant_name'],
173 url=vim['vim_url'], url_admin=vim['vim_url_admin'],
174 user=vim['user'], passwd=vim['passwd'],
175 config=extra, persistent_info=vim_persistent_info[thread_id]
176 )
tierno42026a02017-02-10 15:13:40 +0100177 except Exception as e:
tierno46df9672017-05-26 13:12:21 +0200178 raise NfvoException("Error at VIM {}; {}: {}".format(vim["type"], type(e).__name__, e),
179 HTTP_Internal_Server_Error)
180 thread_name = get_non_used_vim_name(vim['datacenter_name'], vim['vim_tenant_id'], vim['vim_tenant_name'],
181 vim['vim_tenant_id'])
tiernob3d36742017-03-03 23:51:05 +0100182 new_thread = vim_thread.vim_thread(myvim, task_lock, thread_name, vim['datacenter_name'],
tierno867ffe92017-03-27 12:50:34 +0200183 vim['datacenter_tenant_id'], db=db, db_lock=db_lock, ovim=ovim)
tierno42026a02017-02-10 15:13:40 +0100184 new_thread.start()
tierno42026a02017-02-10 15:13:40 +0100185 vim_threads["running"][thread_id] = new_thread
186 except db_base_Exception as e:
187 raise NfvoException(str(e) + " at nfvo.get_vim", e.http_code)
tierno46df9672017-05-26 13:12:21 +0200188 except ovim_module.ovimException as e:
189 message = str(e)
190 if message[:22] == "DATABASE wrong version":
191 message = "DATABASE wrong version of lib_osm_openvim {msg} -d{dbname} -u{dbuser} -p{dbpass} {ver}' "\
192 "at host {dbhost}".format(
193 msg=message[22:-3], dbname=global_config["db_ovim_name"],
194 dbuser=global_config["db_ovim_user"], dbpass=global_config["db_ovim_passwd"],
195 ver=message[-3:-1], dbhost=global_config["db_ovim_host"])
196 raise NfvoException(message, HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +0100197
tierno867ffe92017-03-27 12:50:34 +0200198
tierno42026a02017-02-10 15:13:40 +0100199def stop_service():
tiernoc5651792017-03-27 10:50:43 +0200200 global ovim, global_config
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100201 if ovim:
202 ovim.stop_service()
tierno42026a02017-02-10 15:13:40 +0100203 for thread_id,thread in vim_threads["running"].items():
tierno867ffe92017-03-27 12:50:34 +0200204 thread.insert_task(new_task("exit", None))
tierno42026a02017-02-10 15:13:40 +0100205 vim_threads["deleting"][thread_id] = thread
tiernob3d36742017-03-03 23:51:05 +0100206 vim_threads["running"] = {}
tiernoc5651792017-03-27 10:50:43 +0200207 if global_config and global_config.get("console_thread"):
208 for thread in global_config["console_thread"]:
209 thread.terminate = True
tiernob3d36742017-03-03 23:51:05 +0100210
tierno6ddeded2017-05-16 15:40:26 +0200211def get_version():
212 return ("openmanod version {} {}\n(c) Copyright Telefonica".format(global_config["version"],
213 global_config["version_date"] ))
214
tierno42026a02017-02-10 15:13:40 +0100215
tierno7edb6752016-03-21 17:37:52 +0100216def get_flavorlist(mydb, vnf_id, nfvo_tenant=None):
217 '''Obtain flavorList
218 return result, content:
219 <0, error_text upon error
220 nb_records, flavor_list on success
221 '''
222 WHERE_dict={}
223 WHERE_dict['vnf_id'] = vnf_id
224 if nfvo_tenant is not None:
225 WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
tierno42026a02017-02-10 15:13:40 +0100226
tierno7edb6752016-03-21 17:37:52 +0100227 #result, content = mydb.get_table(FROM='vms join vnfs on vms.vnf_id = vnfs.uuid',SELECT=('uuid'),WHERE=WHERE_dict )
228 #result, content = mydb.get_table(FROM='vms',SELECT=('vim_flavor_id',),WHERE=WHERE_dict )
tiernof97fd272016-07-11 14:32:37 +0200229 flavors = mydb.get_rows(FROM='vms join flavors on vms.flavor_id=flavors.uuid',SELECT=('flavor_id',),WHERE=WHERE_dict )
230 #print "get_flavor_list result:", result
231 #print "get_flavor_list content:", content
tierno7edb6752016-03-21 17:37:52 +0100232 flavorList=[]
tiernof97fd272016-07-11 14:32:37 +0200233 for flavor in flavors:
tierno7edb6752016-03-21 17:37:52 +0100234 flavorList.append(flavor['flavor_id'])
tiernof97fd272016-07-11 14:32:37 +0200235 return flavorList
tierno7edb6752016-03-21 17:37:52 +0100236
tiernob3d36742017-03-03 23:51:05 +0100237
tierno7edb6752016-03-21 17:37:52 +0100238def get_imagelist(mydb, vnf_id, nfvo_tenant=None):
239 '''Obtain imageList
240 return result, content:
241 <0, error_text upon error
242 nb_records, flavor_list on success
243 '''
244 WHERE_dict={}
245 WHERE_dict['vnf_id'] = vnf_id
246 if nfvo_tenant is not None:
247 WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
tierno42026a02017-02-10 15:13:40 +0100248
tierno7edb6752016-03-21 17:37:52 +0100249 #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 +0200250 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 +0100251 imageList=[]
tiernof97fd272016-07-11 14:32:37 +0200252 for image in images:
tierno7edb6752016-03-21 17:37:52 +0100253 imageList.append(image['image_id'])
tiernof97fd272016-07-11 14:32:37 +0200254 return imageList
tierno7edb6752016-03-21 17:37:52 +0100255
tiernob3d36742017-03-03 23:51:05 +0100256
tiernoa2793912016-10-04 08:15:08 +0000257def get_vim(mydb, nfvo_tenant=None, datacenter_id=None, datacenter_name=None, datacenter_tenant_id=None,
258 vim_tenant=None, vim_tenant_name=None, vim_user=None, vim_passwd=None):
tierno7edb6752016-03-21 17:37:52 +0100259 '''Obtain a dictionary of VIM (datacenter) classes with some of the input parameters
tierno42026a02017-02-10 15:13:40 +0100260 return dictionary with {datacenter_id: vim_class, ... }. vim_class contain:
tierno7edb6752016-03-21 17:37:52 +0100261 'nfvo_tenant_id','datacenter_id','vim_tenant_id','vim_url','vim_url_admin','datacenter_name','type','user','passwd'
tiernobe41e222016-09-02 15:16:13 +0200262 raise exception upon error
tierno7edb6752016-03-21 17:37:52 +0100263 '''
264 WHERE_dict={}
265 if nfvo_tenant is not None: WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
266 if datacenter_id is not None: WHERE_dict['d.uuid'] = datacenter_id
tiernoa2793912016-10-04 08:15:08 +0000267 if datacenter_tenant_id is not None: WHERE_dict['datacenter_tenant_id'] = datacenter_tenant_id
tierno7edb6752016-03-21 17:37:52 +0100268 if datacenter_name is not None: WHERE_dict['d.name'] = datacenter_name
269 if vim_tenant is not None: WHERE_dict['dt.vim_tenant_id'] = vim_tenant
tiernoa2793912016-10-04 08:15:08 +0000270 if vim_tenant_name is not None: WHERE_dict['vim_tenant_name'] = vim_tenant_name
271 if nfvo_tenant or vim_tenant or vim_tenant_name or datacenter_tenant_id:
tierno7edb6752016-03-21 17:37:52 +0100272 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 +0000273 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 +0100274 '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 +0000275 'user','passwd', 'dt.config as dt_config')
tierno7edb6752016-03-21 17:37:52 +0100276 else:
277 from_ = 'datacenters as d'
278 select_ = ('type','config','d.uuid as datacenter_id', 'vim_url', 'vim_url_admin', 'd.name as datacenter_name')
tiernof97fd272016-07-11 14:32:37 +0200279 try:
280 vims = mydb.get_rows(FROM=from_, SELECT=select_, WHERE=WHERE_dict )
281 vim_dict={}
282 for vim in vims:
tierno867ffe92017-03-27 12:50:34 +0200283 extra={'datacenter_tenant_id': vim.get('datacenter_tenant_id'),
284 'datacenter_id': vim.get('datacenter_id')}
tierno8008c3a2016-10-13 15:34:28 +0000285 if vim["config"]:
tiernof97fd272016-07-11 14:32:37 +0200286 extra.update(yaml.load(vim["config"]))
tierno8008c3a2016-10-13 15:34:28 +0000287 if vim.get('dt_config'):
288 extra.update(yaml.load(vim["dt_config"]))
tiernof97fd272016-07-11 14:32:37 +0200289 if vim["type"] not in vimconn_imported:
290 module_info=None
291 try:
292 module = "vimconn_" + vim["type"]
tierno361275f2017-04-25 16:24:34 +0200293 pkg = __import__("osm_ro." + module)
294 vim_conn = getattr(pkg, module)
295 # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]])
296 # vim_conn = imp.load_module(vim["type"], *module_info)
tiernof97fd272016-07-11 14:32:37 +0200297 vimconn_imported[vim["type"]] = vim_conn
298 except (IOError, ImportError) as e:
tierno361275f2017-04-25 16:24:34 +0200299 # if module_info and module_info[0]:
300 # file.close(module_info[0])
tiernof97fd272016-07-11 14:32:37 +0200301 raise NfvoException("Unknown vim type '{}'. Can not open file '{}.py'; {}: {}".format(
302 vim["type"], module, type(e).__name__, str(e)), HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +0100303
tierno7edb6752016-03-21 17:37:52 +0100304 try:
tierno867ffe92017-03-27 12:50:34 +0200305 if 'datacenter_tenant_id' in vim:
306 thread_id = vim["datacenter_tenant_id"]
tiernob3d36742017-03-03 23:51:05 +0100307 if thread_id not in vim_persistent_info:
308 vim_persistent_info[thread_id] = {}
309 persistent_info = vim_persistent_info[thread_id]
310 else:
311 persistent_info = {}
tiernof97fd272016-07-11 14:32:37 +0200312 #if not tenant:
313 # return -HTTP_Bad_Request, "You must provide a valid tenant name or uuid for VIM %s" % ( vim["type"])
314 vim_dict[ vim['datacenter_id'] ] = vimconn_imported[ vim["type"] ].vimconnector(
315 uuid=vim['datacenter_id'], name=vim['datacenter_name'],
tiernob3d36742017-03-03 23:51:05 +0100316 tenant_id=vim.get('vim_tenant_id',vim_tenant),
317 tenant_name=vim.get('vim_tenant_name',vim_tenant_name),
tierno42026a02017-02-10 15:13:40 +0100318 url=vim['vim_url'], url_admin=vim['vim_url_admin'],
tierno3ae39742016-09-07 12:17:51 +0200319 user=vim.get('user',vim_user), passwd=vim.get('passwd',vim_passwd),
tiernob3d36742017-03-03 23:51:05 +0100320 config=extra, persistent_info=persistent_info
tiernof97fd272016-07-11 14:32:37 +0200321 )
322 except Exception as e:
323 raise NfvoException("Error at VIM {}; {}: {}".format(vim["type"], type(e).__name__, str(e)), HTTP_Internal_Server_Error)
324 return vim_dict
325 except db_base_Exception as e:
326 raise NfvoException(str(e) + " at nfvo.get_vim", e.http_code)
tierno42026a02017-02-10 15:13:40 +0100327
tiernob3d36742017-03-03 23:51:05 +0100328
tierno7edb6752016-03-21 17:37:52 +0100329def rollback(mydb, vims, rollback_list):
330 undeleted_items=[]
tierno42026a02017-02-10 15:13:40 +0100331 #delete things by reverse order
tierno7edb6752016-03-21 17:37:52 +0100332 for i in range(len(rollback_list)-1, -1, -1):
333 item = rollback_list[i]
334 if item["where"]=="vim":
335 if item["vim_id"] not in vims:
336 continue
337 vim=vims[ item["vim_id"] ]
tiernoae4a8d12016-07-08 12:30:39 +0200338 try:
339 if item["what"]=="image":
340 vim.delete_image(item["uuid"])
tiernof97fd272016-07-11 14:32:37 +0200341 mydb.delete_row(FROM="datacenters_images", WHERE={"datacenter_id": vim["id"], "vim_id":item["uuid"]})
tiernoae4a8d12016-07-08 12:30:39 +0200342 elif item["what"]=="flavor":
343 vim.delete_flavor(item["uuid"])
garciadeblas9f8456e2016-09-05 05:02:59 +0200344 mydb.delete_row(FROM="datacenters_flavors", WHERE={"datacenter_id": vim["id"], "vim_id":item["uuid"]})
tiernoae4a8d12016-07-08 12:30:39 +0200345 elif item["what"]=="network":
346 vim.delete_network(item["uuid"])
347 elif item["what"]=="vm":
348 vim.delete_vminstance(item["uuid"])
349 except vimconn.vimconnException as e:
350 logger.error("Error in rollback. Not possible to delete VIM %s '%s'. Message: %s", item['what'], item["uuid"], str(e))
351 undeleted_items.append("{} {} from VIM {}".format(item['what'], item["uuid"], vim["name"]))
tiernof97fd272016-07-11 14:32:37 +0200352 except db_base_Exception as e:
353 logger.error("Error in rollback. Not possible to delete %s '%s' from DB.datacenters Message: %s", item['what'], item["uuid"], str(e))
tierno42026a02017-02-10 15:13:40 +0100354
tierno7edb6752016-03-21 17:37:52 +0100355 else: # where==mano
tiernof97fd272016-07-11 14:32:37 +0200356 try:
357 if item["what"]=="image":
358 mydb.delete_row(FROM="images", WHERE={"uuid": item["uuid"]})
359 elif item["what"]=="flavor":
360 mydb.delete_row(FROM="flavors", WHERE={"uuid": item["uuid"]})
361 except db_base_Exception as e:
362 logger.error("Error in rollback. Not possible to delete %s '%s' from DB. Message: %s", item['what'], item["uuid"], str(e))
363 undeleted_items.append("{} '{}'".format(item['what'], item["uuid"]))
tierno42026a02017-02-10 15:13:40 +0100364 if len(undeleted_items)==0:
tierno7edb6752016-03-21 17:37:52 +0100365 return True," Rollback successful."
366 else:
367 return False," Rollback fails to delete: " + str(undeleted_items)
tierno42026a02017-02-10 15:13:40 +0100368
tiernob3d36742017-03-03 23:51:05 +0100369
tiernoafed5f12017-01-26 17:57:43 +0100370def check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=1):
tierno7edb6752016-03-21 17:37:52 +0100371 global global_config
tierno42026a02017-02-10 15:13:40 +0100372 #create a dictionary with vnfc-name: vnfc:interface-list key:values pairs
tierno7edb6752016-03-21 17:37:52 +0100373 vnfc_interfaces={}
374 for vnfc in vnf_descriptor["vnf"]["VNFC"]:
tiernoafed5f12017-01-26 17:57:43 +0100375 name_dict = {}
tierno7edb6752016-03-21 17:37:52 +0100376 #dataplane interfaces
377 for numa in vnfc.get("numas",() ):
378 for interface in numa.get("interfaces",()):
tiernoafed5f12017-01-26 17:57:43 +0100379 if interface["name"] in name_dict:
380 raise NfvoException(
381 "Error at vnf:VNFC[name:'{}']:numas:interfaces:name, interface name '{}' already used in this VNFC".format(
382 vnfc["name"], interface["name"]),
383 HTTP_Bad_Request)
384 name_dict[ interface["name"] ] = "underlay"
tierno7edb6752016-03-21 17:37:52 +0100385 #bridge interfaces
386 for interface in vnfc.get("bridge-ifaces",() ):
tiernoafed5f12017-01-26 17:57:43 +0100387 if interface["name"] in name_dict:
388 raise NfvoException(
389 "Error at vnf:VNFC[name:'{}']:bridge-ifaces:name, interface name '{}' already used in this VNFC".format(
390 vnfc["name"], interface["name"]),
391 HTTP_Bad_Request)
392 name_dict[ interface["name"] ] = "overlay"
393 vnfc_interfaces[ vnfc["name"] ] = name_dict
tierno36c0b172017-01-12 18:32:28 +0100394 # check bood-data info
395 if "boot-data" in vnfc:
396 # check that user-data is incompatible with users and config-files
397 if (vnfc["boot-data"].get("users") or vnfc["boot-data"].get("config-files")) and vnfc["boot-data"].get("user-data"):
398 raise NfvoException(
399 "Error at vnf:VNFC:boot-data, fields 'users' and 'config-files' are not compatible with 'user-data'",
400 HTTP_Bad_Request)
401
tierno7edb6752016-03-21 17:37:52 +0100402 #check if the info in external_connections matches with the one in the vnfcs
403 name_list=[]
404 for external_connection in vnf_descriptor["vnf"].get("external-connections",() ):
405 if external_connection["name"] in name_list:
tiernoafed5f12017-01-26 17:57:43 +0100406 raise NfvoException(
407 "Error at vnf:external-connections:name, value '{}' already used as an external-connection".format(
408 external_connection["name"]),
409 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100410 name_list.append(external_connection["name"])
411 if external_connection["VNFC"] not in vnfc_interfaces:
tiernoafed5f12017-01-26 17:57:43 +0100412 raise NfvoException(
413 "Error at vnf:external-connections[name:'{}']:VNFC, value '{}' does not match any VNFC".format(
414 external_connection["name"], external_connection["VNFC"]),
415 HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +0100416
tierno7edb6752016-03-21 17:37:52 +0100417 if external_connection["local_iface_name"] not in vnfc_interfaces[ external_connection["VNFC"] ]:
tiernoafed5f12017-01-26 17:57:43 +0100418 raise NfvoException(
419 "Error at vnf:external-connections[name:'{}']:local_iface_name, value '{}' does not match any interface of this VNFC".format(
420 external_connection["name"],
421 external_connection["local_iface_name"]),
422 HTTP_Bad_Request )
tierno42026a02017-02-10 15:13:40 +0100423
tierno7edb6752016-03-21 17:37:52 +0100424 #check if the info in internal_connections matches with the one in the vnfcs
425 name_list=[]
426 for internal_connection in vnf_descriptor["vnf"].get("internal-connections",() ):
427 if internal_connection["name"] in name_list:
tiernoafed5f12017-01-26 17:57:43 +0100428 raise NfvoException(
429 "Error at vnf:internal-connections:name, value '%s' already used as an internal-connection".format(
430 internal_connection["name"]),
431 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100432 name_list.append(internal_connection["name"])
433 #We should check that internal-connections of type "ptp" have only 2 elements
tiernoafed5f12017-01-26 17:57:43 +0100434
435 if len(internal_connection["elements"])>2 and (internal_connection.get("type") == "ptp" or internal_connection.get("type") == "e-line"):
436 raise NfvoException(
437 "Error at 'vnf:internal-connections[name:'{}']:elements', size must be 2 for a '{}' type. Consider change it to '{}' type".format(
438 internal_connection["name"],
439 'ptp' if vnf_descriptor_version==1 else 'e-line',
440 'data' if vnf_descriptor_version==1 else "e-lan"),
441 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100442 for port in internal_connection["elements"]:
tiernoafed5f12017-01-26 17:57:43 +0100443 vnf = port["VNFC"]
444 iface = port["local_iface_name"]
445 if vnf not in vnfc_interfaces:
446 raise NfvoException(
447 "Error at vnf:internal-connections[name:'{}']:elements[]:VNFC, value '{}' does not match any VNFC".format(
448 internal_connection["name"], vnf),
449 HTTP_Bad_Request)
450 if iface not in vnfc_interfaces[ vnf ]:
451 raise NfvoException(
452 "Error at vnf:internal-connections[name:'{}']:elements[]:local_iface_name, value '{}' does not match any interface of this VNFC".format(
453 internal_connection["name"], iface),
454 HTTP_Bad_Request)
455 return -HTTP_Bad_Request,
456 if vnf_descriptor_version==1 and "type" not in internal_connection:
457 if vnfc_interfaces[vnf][iface] == "overlay":
458 internal_connection["type"] = "bridge"
459 else:
460 internal_connection["type"] = "data"
461 if vnf_descriptor_version==2 and "implementation" not in internal_connection:
462 if vnfc_interfaces[vnf][iface] == "overlay":
463 internal_connection["implementation"] = "overlay"
464 else:
465 internal_connection["implementation"] = "underlay"
466 if (internal_connection.get("type") == "data" or internal_connection.get("type") == "ptp" or \
467 internal_connection.get("implementation") == "underlay") and vnfc_interfaces[vnf][iface] == "overlay":
468 raise NfvoException(
469 "Error at vnf:internal-connections[name:'{}']:elements[]:{}, interface of type {} connected to an {} network".format(
470 internal_connection["name"],
471 iface, 'bridge' if vnf_descriptor_version==1 else 'overlay',
472 'data' if vnf_descriptor_version==1 else 'underlay'),
473 HTTP_Bad_Request)
474 if (internal_connection.get("type") == "bridge" or internal_connection.get("implementation") == "overlay") and \
475 vnfc_interfaces[vnf][iface] == "underlay":
476 raise NfvoException(
477 "Error at vnf:internal-connections[name:'{}']:elements[]:{}, interface of type {} connected to an {} network".format(
478 internal_connection["name"], iface,
479 'data' if vnf_descriptor_version==1 else 'underlay',
480 'bridge' if vnf_descriptor_version==1 else 'overlay'),
481 HTTP_Bad_Request)
482
tierno7edb6752016-03-21 17:37:52 +0100483
tierno5e91eb82016-10-04 09:39:07 +0000484def 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 +0100485 #look if image exist
486 if only_create_at_vim:
487 image_mano_id = image_dict['uuid']
tierno5e91eb82016-10-04 09:39:07 +0000488 if return_on_error == None:
489 return_on_error = True
tierno7edb6752016-03-21 17:37:52 +0100490 else:
garciadeblas14480452017-01-10 13:08:07 +0100491 if image_dict['location']:
garciadeblasb69fa9f2016-09-28 12:04:10 +0200492 images = mydb.get_rows(FROM="images", WHERE={'location':image_dict['location'], 'metadata':image_dict['metadata']})
493 else:
494 images = mydb.get_rows(FROM="images", WHERE={'universal_name':image_dict['universal_name'], 'checksum':image_dict['checksum']})
tiernof97fd272016-07-11 14:32:37 +0200495 if len(images)>=1:
496 image_mano_id = images[0]['uuid']
tierno7edb6752016-03-21 17:37:52 +0100497 else:
garciadeblas14480452017-01-10 13:08:07 +0100498 #create image in MANO DB
tierno7edb6752016-03-21 17:37:52 +0100499 temp_image_dict={'name':image_dict['name'], 'description':image_dict.get('description',None),
garciadeblasb69fa9f2016-09-28 12:04:10 +0200500 'location':image_dict['location'], 'metadata':image_dict.get('metadata',None),
501 'universal_name':image_dict['universal_name'] , 'checksum':image_dict['checksum']
tierno7edb6752016-03-21 17:37:52 +0100502 }
garciadeblas14480452017-01-10 13:08:07 +0100503 #temp_image_dict['location'] = image_dict.get('new_location') if image_dict['location'] is None
tiernof97fd272016-07-11 14:32:37 +0200504 image_mano_id = mydb.new_row('images', temp_image_dict, add_uuid=True)
505 rollback_list.append({"where":"mano", "what":"image","uuid":image_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100506 #create image at every vim
507 for vim_id,vim in vims.iteritems():
508 image_created="false"
509 #look at database
tiernof97fd272016-07-11 14:32:37 +0200510 image_db = mydb.get_rows(FROM="datacenters_images", WHERE={'datacenter_id':vim_id, 'image_id':image_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100511 #look at VIM if this image exist
tiernoae4a8d12016-07-08 12:30:39 +0200512 try:
garciadeblasb69fa9f2016-09-28 12:04:10 +0200513 if image_dict['location'] is not None:
514 image_vim_id = vim.get_image_id_from_path(image_dict['location'])
515 else:
garciadeblas30833382017-01-09 09:46:31 +0100516 filter_dict = {}
517 filter_dict['name'] = image_dict['universal_name']
518 if image_dict.get('checksum') != None:
519 filter_dict['checksum'] = image_dict['checksum']
garciadeblasbb6a1ed2016-09-30 14:02:09 +0000520 #logger.debug('>>>>>>>> Filter dict: %s', str(filter_dict))
garciadeblasb69fa9f2016-09-28 12:04:10 +0200521 vim_images = vim.get_image_list(filter_dict)
garciadeblas14480452017-01-10 13:08:07 +0100522 #logger.debug('>>>>>>>> VIM images: %s', str(vim_images))
garciadeblasb69fa9f2016-09-28 12:04:10 +0200523 if len(vim_images) > 1:
garciadeblas3fa2c052017-01-05 12:00:08 +0100524 raise vimconn.vimconnException("More than one candidate VIM image found for filter: {}".format(str(filter_dict)), HTTP_Conflict)
garciadeblasbb6a1ed2016-09-30 14:02:09 +0000525 elif len(vim_images) == 0:
garciadeblas3fa2c052017-01-05 12:00:08 +0100526 raise vimconn.vimconnNotFoundException("Image not found at VIM with filter: '{}'".format(str(filter_dict)))
garciadeblasb69fa9f2016-09-28 12:04:10 +0200527 else:
garciadeblas14480452017-01-10 13:08:07 +0100528 #logger.debug('>>>>>>>> VIM image 0: %s', str(vim_images[0]))
529 image_vim_id = vim_images[0]['id']
garciadeblasb69fa9f2016-09-28 12:04:10 +0200530
tiernoae4a8d12016-07-08 12:30:39 +0200531 except vimconn.vimconnNotFoundException as e:
garciadeblas14480452017-01-10 13:08:07 +0100532 #Create the image in VIM only if image_dict['location'] or image_dict['new_location'] is not None
tierno42026a02017-02-10 15:13:40 +0100533 try:
garciadeblas14480452017-01-10 13:08:07 +0100534 #image_dict['location']=image_dict.get('new_location') if image_dict['location'] is None
535 if image_dict['location']:
536 image_vim_id = vim.new_image(image_dict)
537 rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"image","uuid":image_vim_id})
538 image_created="true"
539 else:
garciadeblasb6153a22017-02-06 15:38:33 +0100540 #If we reach this point, then the image has image name, and optionally checksum, and could not be found
541 raise vimconn.vimconnException(str(e))
tiernoae4a8d12016-07-08 12:30:39 +0200542 except vimconn.vimconnException as e:
543 if return_on_error:
garciadeblas14480452017-01-10 13:08:07 +0100544 logger.error("Error creating image at VIM '%s': %s", vim["name"], str(e))
tiernof97fd272016-07-11 14:32:37 +0200545 raise
tierno5e91eb82016-10-04 09:39:07 +0000546 image_vim_id = None
garciadeblas14480452017-01-10 13:08:07 +0100547 logger.warn("Error creating image at VIM '%s': %s", vim["name"], str(e))
tiernoae4a8d12016-07-08 12:30:39 +0200548 continue
549 except vimconn.vimconnException as e:
tierno5e91eb82016-10-04 09:39:07 +0000550 if return_on_error:
551 logger.error("Error contacting VIM to know if the image exists at VIM: %s", str(e))
552 raise
garciadeblasb69fa9f2016-09-28 12:04:10 +0200553 logger.warn("Error contacting VIM to know if the image exists at VIM: %s", str(e))
tierno5e91eb82016-10-04 09:39:07 +0000554 image_vim_id = None
garciadeblas30833382017-01-09 09:46:31 +0100555 continue
garciadeblasb69fa9f2016-09-28 12:04:10 +0200556 #if we reach here, the image has been created or existed
tiernof97fd272016-07-11 14:32:37 +0200557 if len(image_db)==0:
tierno7edb6752016-03-21 17:37:52 +0100558 #add new vim_id at datacenters_images
559 mydb.new_row('datacenters_images', {'datacenter_id':vim_id, 'image_id':image_mano_id, 'vim_id': image_vim_id, 'created':image_created})
560 elif image_db[0]["vim_id"]!=image_vim_id:
561 #modify existing vim_id at datacenters_images
562 mydb.update_rows('datacenters_images', UPDATE={'vim_id':image_vim_id}, WHERE={'datacenter_id':vim_id, 'image_id':image_mano_id})
tierno42026a02017-02-10 15:13:40 +0100563
tiernof97fd272016-07-11 14:32:37 +0200564 return image_vim_id if only_create_at_vim else image_mano_id
tierno7edb6752016-03-21 17:37:52 +0100565
tiernob3d36742017-03-03 23:51:05 +0100566
tierno5e91eb82016-10-04 09:39:07 +0000567def 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 +0100568 temp_flavor_dict= {'disk':flavor_dict.get('disk',1),
569 'ram':flavor_dict.get('ram'),
570 'vcpus':flavor_dict.get('vcpus'),
571 }
572 if 'extended' in flavor_dict and flavor_dict['extended']==None:
573 del flavor_dict['extended']
574 if 'extended' in flavor_dict:
575 temp_flavor_dict['extended']=yaml.safe_dump(flavor_dict['extended'],default_flow_style=True,width=256)
576
577 #look if flavor exist
578 if only_create_at_vim:
579 flavor_mano_id = flavor_dict['uuid']
tierno5e91eb82016-10-04 09:39:07 +0000580 if return_on_error == None:
581 return_on_error = True
tierno7edb6752016-03-21 17:37:52 +0100582 else:
tiernof97fd272016-07-11 14:32:37 +0200583 flavors = mydb.get_rows(FROM="flavors", WHERE=temp_flavor_dict)
584 if len(flavors)>=1:
585 flavor_mano_id = flavors[0]['uuid']
tierno7edb6752016-03-21 17:37:52 +0100586 else:
587 #create flavor
588 #create one by one the images of aditional disks
589 dev_image_list=[] #list of images
590 if 'extended' in flavor_dict and flavor_dict['extended']!=None:
591 dev_nb=0
592 for device in flavor_dict['extended'].get('devices',[]):
garciadeblas41f18be2016-10-04 09:09:58 +0200593 if "image" not in device and "image name" not in device:
tierno7edb6752016-03-21 17:37:52 +0100594 continue
garciadeblasb69fa9f2016-09-28 12:04:10 +0200595 image_dict={}
596 image_dict['name']=device.get('image name',flavor_dict['name']+str(dev_nb)+"-img")
597 image_dict['universal_name']=device.get('image name')
598 image_dict['description']=flavor_dict['name']+str(dev_nb)+"-img"
599 image_dict['location']=device.get('image')
garciadeblas14480452017-01-10 13:08:07 +0100600 #image_dict['new_location']=vnfc.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +0200601 image_dict['checksum']=device.get('image checksum')
tierno7edb6752016-03-21 17:37:52 +0100602 image_metadata_dict = device.get('image metadata', None)
603 image_metadata_str = None
tierno42026a02017-02-10 15:13:40 +0100604 if image_metadata_dict != None:
tierno7edb6752016-03-21 17:37:52 +0100605 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
606 image_dict['metadata']=image_metadata_str
tiernof97fd272016-07-11 14:32:37 +0200607 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
608 #print "Additional disk image id for VNFC %s: %s" % (flavor_dict['name']+str(dev_nb)+"-img", image_id)
tierno7edb6752016-03-21 17:37:52 +0100609 dev_image_list.append(image_id)
tierno42026a02017-02-10 15:13:40 +0100610 dev_nb += 1
tierno7edb6752016-03-21 17:37:52 +0100611 temp_flavor_dict['name'] = flavor_dict['name']
612 temp_flavor_dict['description'] = flavor_dict.get('description',None)
tiernof97fd272016-07-11 14:32:37 +0200613 content = mydb.new_row('flavors', temp_flavor_dict, add_uuid=True)
614 flavor_mano_id= content
615 rollback_list.append({"where":"mano", "what":"flavor","uuid":flavor_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100616 #create flavor at every vim
617 if 'uuid' in flavor_dict:
618 del flavor_dict['uuid']
619 flavor_vim_id=None
620 for vim_id,vim in vims.items():
621 flavor_created="false"
622 #look at database
tiernof97fd272016-07-11 14:32:37 +0200623 flavor_db = mydb.get_rows(FROM="datacenters_flavors", WHERE={'datacenter_id':vim_id, 'flavor_id':flavor_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100624 #look at VIM if this flavor exist SKIPPED
625 #res_vim, flavor_vim_id = vim.get_flavor_id_from_path(flavor_dict['location'])
626 #if res_vim < 0:
627 # print "Error contacting VIM to know if the flavor %s existed previously." %flavor_vim_id
628 # continue
629 #elif res_vim==0:
tierno42026a02017-02-10 15:13:40 +0100630
tierno7edb6752016-03-21 17:37:52 +0100631 #Create the flavor in VIM
632 #Translate images at devices from MANO id to VIM id
montesmoreno0c8def02016-12-22 12:16:23 +0000633 disk_list = []
tierno7edb6752016-03-21 17:37:52 +0100634 if 'extended' in flavor_dict and flavor_dict['extended']!=None and "devices" in flavor_dict['extended']:
635 #make a copy of original devices
636 devices_original=[]
montesmoreno0c8def02016-12-22 12:16:23 +0000637
tierno7edb6752016-03-21 17:37:52 +0100638 for device in flavor_dict["extended"].get("devices",[]):
639 dev={}
640 dev.update(device)
641 devices_original.append(dev)
642 if 'image' in device:
643 del device['image']
644 if 'image metadata' in device:
645 del device['image metadata']
646 dev_nb=0
647 for index in range(0,len(devices_original)) :
648 device=devices_original[index]
montesmoreno0c8def02016-12-22 12:16:23 +0000649 if "image" not in device and "image name" not in device:
650 if 'size' in device:
651 disk_list.append({'size': device.get('size', default_volume_size)})
tierno7edb6752016-03-21 17:37:52 +0100652 continue
garciadeblasb69fa9f2016-09-28 12:04:10 +0200653 image_dict={}
654 image_dict['name']=device.get('image name',flavor_dict['name']+str(dev_nb)+"-img")
655 image_dict['universal_name']=device.get('image name')
656 image_dict['description']=flavor_dict['name']+str(dev_nb)+"-img"
657 image_dict['location']=device.get('image')
garciadeblas14480452017-01-10 13:08:07 +0100658 #image_dict['new_location']=device.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +0200659 image_dict['checksum']=device.get('image checksum')
tierno7edb6752016-03-21 17:37:52 +0100660 image_metadata_dict = device.get('image metadata', None)
661 image_metadata_str = None
tierno42026a02017-02-10 15:13:40 +0100662 if image_metadata_dict != None:
tierno7edb6752016-03-21 17:37:52 +0100663 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
664 image_dict['metadata']=image_metadata_str
tiernof97fd272016-07-11 14:32:37 +0200665 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 +0100666 image_dict["uuid"]=image_mano_id
tiernof97fd272016-07-11 14:32:37 +0200667 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 +0000668
669 #save disk information (image must be based on and size
670 disk_list.append({'image_id': image_vim_id, 'size': device.get('size', default_volume_size)})
671
tierno7edb6752016-03-21 17:37:52 +0100672 flavor_dict["extended"]["devices"][index]['imageRef']=image_vim_id
673 dev_nb += 1
tiernof97fd272016-07-11 14:32:37 +0200674 if len(flavor_db)>0:
tierno7edb6752016-03-21 17:37:52 +0100675 #check that this vim_id exist in VIM, if not create
676 flavor_vim_id=flavor_db[0]["vim_id"]
tiernoae4a8d12016-07-08 12:30:39 +0200677 try:
678 vim.get_flavor(flavor_vim_id)
679 continue #flavor exist
680 except vimconn.vimconnException:
681 pass
tierno7edb6752016-03-21 17:37:52 +0100682 #create flavor at vim
tiernoae4a8d12016-07-08 12:30:39 +0200683 logger.debug("nfvo.create_or_use_flavor() adding flavor to VIM %s", vim["name"])
684 try:
tiernocf157a82017-01-30 14:07:06 +0100685 flavor_vim_id = None
686 flavor_vim_id=vim.get_flavor_id_from_data(flavor_dict)
687 flavor_create="false"
688 except vimconn.vimconnException as e:
689 pass
690 try:
691 if not flavor_vim_id:
692 flavor_vim_id = vim.new_flavor(flavor_dict)
693 rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"flavor","uuid":flavor_vim_id})
694 flavor_created="true"
tiernoae4a8d12016-07-08 12:30:39 +0200695 except vimconn.vimconnException as e:
696 if return_on_error:
697 logger.error("Error creating flavor at VIM %s: %s.", vim["name"], str(e))
tiernof97fd272016-07-11 14:32:37 +0200698 raise
tiernoae4a8d12016-07-08 12:30:39 +0200699 logger.warn("Error creating flavor at VIM %s: %s.", vim["name"], str(e))
tierno5e91eb82016-10-04 09:39:07 +0000700 flavor_vim_id = None
tiernoae4a8d12016-07-08 12:30:39 +0200701 continue
tierno7edb6752016-03-21 17:37:52 +0100702 #if reach here the flavor has been create or exist
tiernof97fd272016-07-11 14:32:37 +0200703 if len(flavor_db)==0:
tierno7edb6752016-03-21 17:37:52 +0100704 #add new vim_id at datacenters_flavors
montesmoreno0c8def02016-12-22 12:16:23 +0000705 extended_devices_yaml = None
706 if len(disk_list) > 0:
707 extended_devices = dict()
708 extended_devices['disks'] = disk_list
709 extended_devices_yaml = yaml.safe_dump(extended_devices,default_flow_style=True,width=256)
710 mydb.new_row('datacenters_flavors',
711 {'datacenter_id':vim_id, 'flavor_id':flavor_mano_id, 'vim_id': flavor_vim_id,
712 'created':flavor_created,'extended': extended_devices_yaml})
tierno7edb6752016-03-21 17:37:52 +0100713 elif flavor_db[0]["vim_id"]!=flavor_vim_id:
714 #modify existing vim_id at datacenters_flavors
715 mydb.update_rows('datacenters_flavors', UPDATE={'vim_id':flavor_vim_id}, WHERE={'datacenter_id':vim_id, 'flavor_id':flavor_mano_id})
tierno42026a02017-02-10 15:13:40 +0100716
tiernof97fd272016-07-11 14:32:37 +0200717 return flavor_vim_id if only_create_at_vim else flavor_mano_id
tierno7edb6752016-03-21 17:37:52 +0100718
tiernob3d36742017-03-03 23:51:05 +0100719
tierno7edb6752016-03-21 17:37:52 +0100720def new_vnf(mydb, tenant_id, vnf_descriptor):
721 global global_config
tierno42026a02017-02-10 15:13:40 +0100722
tierno7edb6752016-03-21 17:37:52 +0100723 # Step 1. Check the VNF descriptor
tiernoafed5f12017-01-26 17:57:43 +0100724 check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=1)
tierno7edb6752016-03-21 17:37:52 +0100725 # Step 2. Check tenant exist
tiernod29b1d32017-01-25 11:02:52 +0100726 vims = {}
tierno7edb6752016-03-21 17:37:52 +0100727 if tenant_id != "any":
tierno42026a02017-02-10 15:13:40 +0100728 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100729 if "tenant_id" in vnf_descriptor["vnf"]:
730 if vnf_descriptor["vnf"]["tenant_id"] != tenant_id:
tiernof97fd272016-07-11 14:32:37 +0200731 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id),
732 HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +0100733 else:
734 vnf_descriptor['vnf']['tenant_id'] = tenant_id
735 # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter
tiernod29b1d32017-01-25 11:02:52 +0100736 if global_config["auto_push_VNF_to_VIMs"]:
737 vims = get_vim(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100738
739 # Step 4. Review the descriptor and add missing fields
740 #print vnf_descriptor
tiernof97fd272016-07-11 14:32:37 +0200741 #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)")
tierno7edb6752016-03-21 17:37:52 +0100742 vnf_name = vnf_descriptor['vnf']['name']
743 vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name)
744 if "physical" in vnf_descriptor['vnf']:
745 del vnf_descriptor['vnf']['physical']
746 #print vnf_descriptor
tiernoafed5f12017-01-26 17:57:43 +0100747
tierno42026a02017-02-10 15:13:40 +0100748 # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM
tiernof97fd272016-07-11 14:32:37 +0200749 logger.debug('BEGIN creation of VNF "%s"' % vnf_name)
750 logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC'])))
tierno42026a02017-02-10 15:13:40 +0100751
tierno7edb6752016-03-21 17:37:52 +0100752 #For each VNFC, we add it to the VNFCDict and we create a flavor.
753 VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database
754 rollback_list = [] # It will contain the new images created in mano. It is used for rollback
tierno7edb6752016-03-21 17:37:52 +0100755 try:
tiernof97fd272016-07-11 14:32:37 +0200756 logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC")
tierno7edb6752016-03-21 17:37:52 +0100757 for vnfc in vnf_descriptor['vnf']['VNFC']:
758 VNFCitem={}
759 VNFCitem["name"] = vnfc['name']
760 VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name))
tierno42026a02017-02-10 15:13:40 +0100761
tiernof97fd272016-07-11 14:32:37 +0200762 #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"])
tierno42026a02017-02-10 15:13:40 +0100763
tierno7edb6752016-03-21 17:37:52 +0100764 myflavorDict = {}
garciadeblasb69fa9f2016-09-28 12:04:10 +0200765 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 +0100766 myflavorDict["description"] = VNFCitem["description"]
767 myflavorDict["ram"] = vnfc.get("ram", 0)
768 myflavorDict["vcpus"] = vnfc.get("vcpus", 0)
769 myflavorDict["disk"] = vnfc.get("disk", 1)
770 myflavorDict["extended"] = {}
tierno42026a02017-02-10 15:13:40 +0100771
tierno7edb6752016-03-21 17:37:52 +0100772 devices = vnfc.get("devices")
773 if devices != None:
774 myflavorDict["extended"]["devices"] = devices
tierno42026a02017-02-10 15:13:40 +0100775
tierno7edb6752016-03-21 17:37:52 +0100776 # TODO:
777 # 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
tierno42026a02017-02-10 15:13:40 +0100778 # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host
779
tierno7edb6752016-03-21 17:37:52 +0100780 # Previous code has been commented
781 #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" :
782 # myflavorDict["flavor"]['extended']['processor_ranking'] = 200
783 #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" :
784 # myflavorDict["flavor"]['extended']['processor_ranking'] = 300
785 #else:
786 # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList)
787 # if result2:
788 # print "Error creating flavor: unknown processor model. Rollback successful."
789 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful."
790 # else:
791 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message
792 myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done
tierno42026a02017-02-10 15:13:40 +0100793
tierno7edb6752016-03-21 17:37:52 +0100794 if 'numas' in vnfc and len(vnfc['numas'])>0:
795 myflavorDict['extended']['numas'] = vnfc['numas']
796
797 #print myflavorDict
tierno42026a02017-02-10 15:13:40 +0100798
tierno7edb6752016-03-21 17:37:52 +0100799 # Step 6.2 New flavors are created in the VIM
tiernof97fd272016-07-11 14:32:37 +0200800 flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list)
tierno7edb6752016-03-21 17:37:52 +0100801
tiernof97fd272016-07-11 14:32:37 +0200802 #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id)
tierno7edb6752016-03-21 17:37:52 +0100803 VNFCitem["flavor_id"] = flavor_id
804 VNFCDict[vnfc['name']] = VNFCitem
tierno42026a02017-02-10 15:13:40 +0100805
tiernof97fd272016-07-11 14:32:37 +0200806 logger.debug("Creating new images in the VIM for each VNFC")
tierno7edb6752016-03-21 17:37:52 +0100807 # Step 6.3 New images are created in the VIM
808 #For each VNFC, we must create the appropriate image.
tierno42026a02017-02-10 15:13:40 +0100809 #This "for" loop might be integrated with the previous one
tierno7edb6752016-03-21 17:37:52 +0100810 #In case this integration is made, the VNFCDict might become a VNFClist.
811 for vnfc in vnf_descriptor['vnf']['VNFC']:
tiernof97fd272016-07-11 14:32:37 +0200812 #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description'])
garciadeblasb69fa9f2016-09-28 12:04:10 +0200813 image_dict={}
814 image_dict['name']=vnfc.get('image name',vnf_name+"-"+vnfc['name']+"-img")
815 image_dict['universal_name']=vnfc.get('image name')
816 image_dict['description']=vnfc.get('image name', VNFCDict[vnfc['name']]['description'])
817 image_dict['location']=vnfc.get('VNFC image')
garciadeblas14480452017-01-10 13:08:07 +0100818 #image_dict['new_location']=vnfc.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +0200819 image_dict['checksum']=vnfc.get('image checksum')
tierno7edb6752016-03-21 17:37:52 +0100820 image_metadata_dict = vnfc.get('image metadata', None)
821 image_metadata_str = None
tierno42026a02017-02-10 15:13:40 +0100822 if image_metadata_dict is not None:
tierno7edb6752016-03-21 17:37:52 +0100823 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
824 image_dict['metadata']=image_metadata_str
825 #print "create_or_use_image", mydb, vims, image_dict, rollback_list
tiernof97fd272016-07-11 14:32:37 +0200826 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
827 #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id)
tierno7edb6752016-03-21 17:37:52 +0100828 VNFCDict[vnfc['name']]["image_id"] = image_id
garciadeblasb69fa9f2016-09-28 12:04:10 +0200829 VNFCDict[vnfc['name']]["image_path"] = vnfc.get('VNFC image')
tierno36c0b172017-01-12 18:32:28 +0100830 if vnfc.get("boot-data"):
831 VNFCDict[vnfc['name']]["boot_data"] = yaml.safe_dump(vnfc["boot-data"], default_flow_style=True, width=256)
tierno7edb6752016-03-21 17:37:52 +0100832
tierno42026a02017-02-10 15:13:40 +0100833
tiernof97fd272016-07-11 14:32:37 +0200834 # Step 7. Storing the VNF descriptor in the repository
835 if "descriptor" not in vnf_descriptor["vnf"]:
836 vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False)
tierno42026a02017-02-10 15:13:40 +0100837
tiernof97fd272016-07-11 14:32:37 +0200838 # Step 8. Adding the VNF to the NFVO DB
839 vnf_id = mydb.new_vnf_as_a_whole(tenant_id,vnf_name,vnf_descriptor,VNFCDict)
840 return vnf_id
841 except (db_base_Exception, vimconn.vimconnException, KeyError) as e:
tierno7edb6752016-03-21 17:37:52 +0100842 _, message = rollback(mydb, vims, rollback_list)
tiernof97fd272016-07-11 14:32:37 +0200843 if isinstance(e, db_base_Exception):
844 error_text = "Exception at database"
845 elif isinstance(e, KeyError):
846 error_text = "KeyError exception "
847 e.http_code = HTTP_Internal_Server_Error
848 else:
849 error_text = "Exception at VIM"
850 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
851 #logger.error("start_scenario %s", error_text)
852 raise NfvoException(error_text, e.http_code)
tierno42026a02017-02-10 15:13:40 +0100853
tiernob3d36742017-03-03 23:51:05 +0100854
garciadeblas9f8456e2016-09-05 05:02:59 +0200855def new_vnf_v02(mydb, tenant_id, vnf_descriptor):
856 global global_config
tierno42026a02017-02-10 15:13:40 +0100857
garciadeblas9f8456e2016-09-05 05:02:59 +0200858 # Step 1. Check the VNF descriptor
tiernoafed5f12017-01-26 17:57:43 +0100859 check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=2)
garciadeblas9f8456e2016-09-05 05:02:59 +0200860 # Step 2. Check tenant exist
tiernod29b1d32017-01-25 11:02:52 +0100861 vims = {}
garciadeblas9f8456e2016-09-05 05:02:59 +0200862 if tenant_id != "any":
tierno42026a02017-02-10 15:13:40 +0100863 check_tenant(mydb, tenant_id)
garciadeblas9f8456e2016-09-05 05:02:59 +0200864 if "tenant_id" in vnf_descriptor["vnf"]:
865 if vnf_descriptor["vnf"]["tenant_id"] != tenant_id:
866 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id),
867 HTTP_Unauthorized)
868 else:
869 vnf_descriptor['vnf']['tenant_id'] = tenant_id
870 # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter
tiernod29b1d32017-01-25 11:02:52 +0100871 if global_config["auto_push_VNF_to_VIMs"]:
872 vims = get_vim(mydb, tenant_id)
garciadeblas9f8456e2016-09-05 05:02:59 +0200873
874 # Step 4. Review the descriptor and add missing fields
875 #print vnf_descriptor
876 #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)")
877 vnf_name = vnf_descriptor['vnf']['name']
878 vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name)
879 if "physical" in vnf_descriptor['vnf']:
880 del vnf_descriptor['vnf']['physical']
881 #print vnf_descriptor
tiernoafed5f12017-01-26 17:57:43 +0100882
tierno42026a02017-02-10 15:13:40 +0100883 # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM
garciadeblas9f8456e2016-09-05 05:02:59 +0200884 logger.debug('BEGIN creation of VNF "%s"' % vnf_name)
885 logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC'])))
tierno42026a02017-02-10 15:13:40 +0100886
garciadeblas9f8456e2016-09-05 05:02:59 +0200887 #For each VNFC, we add it to the VNFCDict and we create a flavor.
888 VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database
889 rollback_list = [] # It will contain the new images created in mano. It is used for rollback
890 try:
891 logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC")
892 for vnfc in vnf_descriptor['vnf']['VNFC']:
893 VNFCitem={}
894 VNFCitem["name"] = vnfc['name']
895 VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name))
tierno42026a02017-02-10 15:13:40 +0100896
garciadeblas9f8456e2016-09-05 05:02:59 +0200897 #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"])
tierno42026a02017-02-10 15:13:40 +0100898
garciadeblas9f8456e2016-09-05 05:02:59 +0200899 myflavorDict = {}
garciadeblasb69fa9f2016-09-28 12:04:10 +0200900 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 +0200901 myflavorDict["description"] = VNFCitem["description"]
902 myflavorDict["ram"] = vnfc.get("ram", 0)
903 myflavorDict["vcpus"] = vnfc.get("vcpus", 0)
904 myflavorDict["disk"] = vnfc.get("disk", 1)
905 myflavorDict["extended"] = {}
tierno42026a02017-02-10 15:13:40 +0100906
garciadeblas9f8456e2016-09-05 05:02:59 +0200907 devices = vnfc.get("devices")
908 if devices != None:
909 myflavorDict["extended"]["devices"] = devices
tierno42026a02017-02-10 15:13:40 +0100910
garciadeblas9f8456e2016-09-05 05:02:59 +0200911 # TODO:
912 # 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
tierno42026a02017-02-10 15:13:40 +0100913 # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host
914
garciadeblas9f8456e2016-09-05 05:02:59 +0200915 # Previous code has been commented
916 #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" :
917 # myflavorDict["flavor"]['extended']['processor_ranking'] = 200
918 #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" :
919 # myflavorDict["flavor"]['extended']['processor_ranking'] = 300
920 #else:
921 # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList)
922 # if result2:
923 # print "Error creating flavor: unknown processor model. Rollback successful."
924 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful."
925 # else:
926 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message
927 myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done
tierno42026a02017-02-10 15:13:40 +0100928
garciadeblas9f8456e2016-09-05 05:02:59 +0200929 if 'numas' in vnfc and len(vnfc['numas'])>0:
930 myflavorDict['extended']['numas'] = vnfc['numas']
931
932 #print myflavorDict
tierno42026a02017-02-10 15:13:40 +0100933
garciadeblas9f8456e2016-09-05 05:02:59 +0200934 # Step 6.2 New flavors are created in the VIM
935 flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list)
936
937 #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id)
938 VNFCitem["flavor_id"] = flavor_id
939 VNFCDict[vnfc['name']] = VNFCitem
tierno42026a02017-02-10 15:13:40 +0100940
garciadeblas9f8456e2016-09-05 05:02:59 +0200941 logger.debug("Creating new images in the VIM for each VNFC")
942 # Step 6.3 New images are created in the VIM
943 #For each VNFC, we must create the appropriate image.
tierno42026a02017-02-10 15:13:40 +0100944 #This "for" loop might be integrated with the previous one
garciadeblas9f8456e2016-09-05 05:02:59 +0200945 #In case this integration is made, the VNFCDict might become a VNFClist.
946 for vnfc in vnf_descriptor['vnf']['VNFC']:
947 #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description'])
garciadeblasb69fa9f2016-09-28 12:04:10 +0200948 image_dict={}
949 image_dict['name']=vnfc.get('image name',vnf_name+"-"+vnfc['name']+"-img")
950 image_dict['universal_name']=vnfc.get('image name')
951 image_dict['description']=vnfc.get('image name', VNFCDict[vnfc['name']]['description'])
952 image_dict['location']=vnfc.get('VNFC image')
garciadeblas14480452017-01-10 13:08:07 +0100953 #image_dict['new_location']=vnfc.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +0200954 image_dict['checksum']=vnfc.get('image checksum')
garciadeblas9f8456e2016-09-05 05:02:59 +0200955 image_metadata_dict = vnfc.get('image metadata', None)
956 image_metadata_str = None
tierno42026a02017-02-10 15:13:40 +0100957 if image_metadata_dict is not None:
garciadeblas9f8456e2016-09-05 05:02:59 +0200958 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
959 image_dict['metadata']=image_metadata_str
960 #print "create_or_use_image", mydb, vims, image_dict, rollback_list
961 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
962 #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id)
963 VNFCDict[vnfc['name']]["image_id"] = image_id
garciadeblasb69fa9f2016-09-28 12:04:10 +0200964 VNFCDict[vnfc['name']]["image_path"] = vnfc.get('VNFC image')
tierno36c0b172017-01-12 18:32:28 +0100965 if vnfc.get("boot-data"):
966 VNFCDict[vnfc['name']]["boot_data"] = yaml.safe_dump(vnfc["boot-data"], default_flow_style=True, width=256)
garciadeblas9f8456e2016-09-05 05:02:59 +0200967
garciadeblas9f8456e2016-09-05 05:02:59 +0200968 # Step 7. Storing the VNF descriptor in the repository
969 if "descriptor" not in vnf_descriptor["vnf"]:
970 vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False)
tierno42026a02017-02-10 15:13:40 +0100971
garciadeblas9f8456e2016-09-05 05:02:59 +0200972 # Step 8. Adding the VNF to the NFVO DB
973 vnf_id = mydb.new_vnf_as_a_whole2(tenant_id,vnf_name,vnf_descriptor,VNFCDict)
974 return vnf_id
975 except (db_base_Exception, vimconn.vimconnException, KeyError) as e:
976 _, message = rollback(mydb, vims, rollback_list)
977 if isinstance(e, db_base_Exception):
978 error_text = "Exception at database"
979 elif isinstance(e, KeyError):
980 error_text = "KeyError exception "
981 e.http_code = HTTP_Internal_Server_Error
982 else:
983 error_text = "Exception at VIM"
984 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
985 #logger.error("start_scenario %s", error_text)
986 raise NfvoException(error_text, e.http_code)
987
tiernob3d36742017-03-03 23:51:05 +0100988
tierno7edb6752016-03-21 17:37:52 +0100989def get_vnf_id(mydb, tenant_id, vnf_id):
990 #check valid tenant_id
tierno42026a02017-02-10 15:13:40 +0100991 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +0100992 #obtain data
993 where_or = {}
994 if tenant_id != "any":
995 where_or["tenant_id"] = tenant_id
996 where_or["public"] = True
tierno42026a02017-02-10 15:13:40 +0100997 vnf = mydb.get_table_by_uuid_name('vnfs', vnf_id, "VNF", WHERE_OR=where_or, WHERE_AND_OR="AND")
998
tiernof97fd272016-07-11 14:32:37 +0200999 vnf_id=vnf["uuid"]
tierno7edb6752016-03-21 17:37:52 +01001000 filter_keys = ('uuid','name','description','public', "tenant_id", "created_at")
tiernof97fd272016-07-11 14:32:37 +02001001 filtered_content = dict( (k,v) for k,v in vnf.iteritems() if k in filter_keys )
tierno7edb6752016-03-21 17:37:52 +01001002 #change_keys_http2db(filtered_content, http2db_vnf, reverse=True)
1003 data={'vnf' : filtered_content}
1004 #GET VM
tiernof97fd272016-07-11 14:32:37 +02001005 content = mydb.get_rows(FROM='vnfs join vms on vnfs.uuid=vms.vnf_id',
tierno36c0b172017-01-12 18:32:28 +01001006 SELECT=('vms.uuid as uuid','vms.name as name', 'vms.description as description', 'boot_data'),
tierno7edb6752016-03-21 17:37:52 +01001007 WHERE={'vnfs.uuid': vnf_id} )
tiernof97fd272016-07-11 14:32:37 +02001008 if len(content)==0:
1009 raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found)
tierno36c0b172017-01-12 18:32:28 +01001010 # change boot_data into boot-data
1011 for vm in content:
1012 if vm.get("boot_data"):
1013 vm["boot-data"] = yaml.safe_load(vm["boot_data"])
1014 del vm["boot_data"]
tierno7edb6752016-03-21 17:37:52 +01001015
1016 data['vnf']['VNFC'] = content
garciadeblas9f8456e2016-09-05 05:02:59 +02001017 #TODO: GET all the information from a VNFC and include it in the output.
tierno42026a02017-02-10 15:13:40 +01001018
tierno7edb6752016-03-21 17:37:52 +01001019 #GET NET
tierno42026a02017-02-10 15:13:40 +01001020 content = mydb.get_rows(FROM='vnfs join nets on vnfs.uuid=nets.vnf_id',
tierno7edb6752016-03-21 17:37:52 +01001021 SELECT=('nets.uuid as uuid','nets.name as name','nets.description as description', 'nets.type as type', 'nets.multipoint as multipoint'),
1022 WHERE={'vnfs.uuid': vnf_id} )
tiernof97fd272016-07-11 14:32:37 +02001023 data['vnf']['nets'] = content
garciadeblas9f8456e2016-09-05 05:02:59 +02001024
1025 #GET ip-profile for each net
1026 for net in data['vnf']['nets']:
1027 ipprofiles = mydb.get_rows(FROM='ip_profiles',
1028 SELECT=('ip_version','subnet_address','gateway_address','dns_address','dhcp_enabled','dhcp_start_address','dhcp_count'),
1029 WHERE={'net_id': net["uuid"]} )
1030 if len(ipprofiles)==1:
1031 net["ip_profile"] = ipprofiles[0]
1032 elif len(ipprofiles)>1:
1033 raise NfvoException("More than one ip-profile found with this criteria: net_id='{}'".format(net['uuid']), HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +01001034
1035
garciadeblas9f8456e2016-09-05 05:02:59 +02001036 #TODO: For each net, GET its elements and relevant info per element (VNFC, iface, ip_address) and include them in the output.
tierno42026a02017-02-10 15:13:40 +01001037
garciadeblas9f8456e2016-09-05 05:02:59 +02001038 #GET External Interfaces
tiernof97fd272016-07-11 14:32:37 +02001039 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 +01001040 SELECT=('interfaces.uuid as uuid','interfaces.external_name as external_name', 'vms.name as vm_name', 'interfaces.vm_id as vm_id', \
1041 'interfaces.internal_name as internal_name', 'interfaces.type as type', 'interfaces.vpci as vpci','interfaces.bw as bw'),\
tierno42026a02017-02-10 15:13:40 +01001042 WHERE={'vnfs.uuid': vnf_id},
tierno7edb6752016-03-21 17:37:52 +01001043 WHERE_NOT={'interfaces.external_name': None} )
1044 #print content
tiernof97fd272016-07-11 14:32:37 +02001045 data['vnf']['external-connections'] = content
tierno42026a02017-02-10 15:13:40 +01001046
tiernof97fd272016-07-11 14:32:37 +02001047 return data
tierno7edb6752016-03-21 17:37:52 +01001048
1049
1050def delete_vnf(mydb,tenant_id,vnf_id,datacenter=None,vim_tenant=None):
1051 # Check tenant exist
1052 if tenant_id != "any":
tiernof97fd272016-07-11 14:32:37 +02001053 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001054 # Get the URL of the VIM from the nfvo_tenant and the datacenter
tiernof97fd272016-07-11 14:32:37 +02001055 vims = get_vim(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001056 else:
1057 vims={}
1058
1059 # Checking if it is a valid uuid and, if not, getting the uuid assuming that the name was provided"
1060 where_or = {}
1061 if tenant_id != "any":
1062 where_or["tenant_id"] = tenant_id
1063 where_or["public"] = True
tierno42026a02017-02-10 15:13:40 +01001064 vnf = mydb.get_table_by_uuid_name('vnfs', vnf_id, "VNF", WHERE_OR=where_or, WHERE_AND_OR="AND")
tiernof97fd272016-07-11 14:32:37 +02001065 vnf_id = vnf["uuid"]
tierno42026a02017-02-10 15:13:40 +01001066
tierno7edb6752016-03-21 17:37:52 +01001067 # "Getting the list of flavors and tenants of the VNF"
tierno42026a02017-02-10 15:13:40 +01001068 flavorList = get_flavorlist(mydb, vnf_id)
tiernof97fd272016-07-11 14:32:37 +02001069 if len(flavorList)==0:
1070 logger.warn("delete_vnf error. No flavors found for the VNF id '%s'", vnf_id)
tierno42026a02017-02-10 15:13:40 +01001071
tiernof97fd272016-07-11 14:32:37 +02001072 imageList = get_imagelist(mydb, vnf_id)
1073 if len(imageList)==0:
1074 logger.warn( "delete_vnf error. No images found for the VNF id '%s'", vnf_id)
tierno42026a02017-02-10 15:13:40 +01001075
tiernof97fd272016-07-11 14:32:37 +02001076 deleted = mydb.delete_row_by_id('vnfs', vnf_id)
1077 if deleted == 0:
1078 raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found)
tierno42026a02017-02-10 15:13:40 +01001079
tierno7edb6752016-03-21 17:37:52 +01001080 undeletedItems = []
1081 for flavor in flavorList:
1082 #check if flavor is used by other vnf
tiernof97fd272016-07-11 14:32:37 +02001083 try:
1084 c = mydb.get_rows(FROM='vms', WHERE={'flavor_id':flavor} )
1085 if len(c) > 0:
1086 logger.debug("Flavor '%s' not deleted because it is being used by another VNF", flavor)
1087 continue
1088 #flavor not used, must be deleted
1089 #delelte at VIM
1090 c = mydb.get_rows(FROM='datacenters_flavors', WHERE={'flavor_id':flavor})
tierno7edb6752016-03-21 17:37:52 +01001091 for flavor_vim in c:
1092 if flavor_vim["datacenter_id"] not in vims:
1093 continue
1094 if flavor_vim['created']=='false': #skip this flavor because not created by openmano
1095 continue
1096 myvim=vims[ flavor_vim["datacenter_id"] ]
tiernoae4a8d12016-07-08 12:30:39 +02001097 try:
1098 myvim.delete_flavor(flavor_vim["vim_id"])
1099 except vimconn.vimconnNotFoundException as e:
1100 logger.warn("VIM flavor %s not exist at datacenter %s", flavor_vim["vim_id"], flavor_vim["datacenter_id"] )
1101 except vimconn.vimconnException as e:
1102 logger.error("Not possible to delete VIM flavor %s from datacenter %s: %s %s",
1103 flavor_vim["vim_id"], flavor_vim["datacenter_id"], type(e).__name__, str(e))
1104 undeletedItems.append("flavor {} from VIM {}".format(flavor_vim["vim_id"], flavor_vim["datacenter_id"] ))
tiernof97fd272016-07-11 14:32:37 +02001105 #delete flavor from Database, using table flavors and with cascade foreign key also at datacenters_flavors
1106 mydb.delete_row_by_id('flavors', flavor)
1107 except db_base_Exception as e:
1108 logger.error("delete_vnf_error. Not possible to get flavor details and delete '%s'. %s", flavor, str(e))
tierno7edb6752016-03-21 17:37:52 +01001109 undeletedItems.append("flavor %s" % flavor)
tiernof97fd272016-07-11 14:32:37 +02001110
tierno42026a02017-02-10 15:13:40 +01001111
tierno7edb6752016-03-21 17:37:52 +01001112 for image in imageList:
tiernof97fd272016-07-11 14:32:37 +02001113 try:
1114 #check if image is used by other vnf
1115 c = mydb.get_rows(FROM='vms', WHERE={'image_id':image} )
1116 if len(c) > 0:
1117 logger.debug("Image '%s' not deleted because it is being used by another VNF", image)
1118 continue
1119 #image not used, must be deleted
1120 #delelte at VIM
1121 c = mydb.get_rows(FROM='datacenters_images', WHERE={'image_id':image})
tierno7edb6752016-03-21 17:37:52 +01001122 for image_vim in c:
1123 if image_vim["datacenter_id"] not in vims:
1124 continue
1125 if image_vim['created']=='false': #skip this image because not created by openmano
1126 continue
1127 myvim=vims[ image_vim["datacenter_id"] ]
tiernoae4a8d12016-07-08 12:30:39 +02001128 try:
1129 myvim.delete_image(image_vim["vim_id"])
1130 except vimconn.vimconnNotFoundException as e:
1131 logger.warn("VIM image %s not exist at datacenter %s", image_vim["vim_id"], image_vim["datacenter_id"] )
1132 except vimconn.vimconnException as e:
1133 logger.error("Not possible to delete VIM image %s from datacenter %s: %s %s",
1134 image_vim["vim_id"], image_vim["datacenter_id"], type(e).__name__, str(e))
1135 undeletedItems.append("image {} from VIM {}".format(image_vim["vim_id"], image_vim["datacenter_id"] ))
tiernof97fd272016-07-11 14:32:37 +02001136 #delete image from Database, using table images and with cascade foreign key also at datacenters_images
1137 mydb.delete_row_by_id('images', image)
1138 except db_base_Exception as e:
1139 logger.error("delete_vnf_error. Not possible to get image details and delete '%s'. %s", image, str(e))
tierno7edb6752016-03-21 17:37:52 +01001140 undeletedItems.append("image %s" % image)
1141
tiernof97fd272016-07-11 14:32:37 +02001142 return vnf_id + " " + vnf["name"]
tierno42026a02017-02-10 15:13:40 +01001143 #if undeletedItems:
tiernof97fd272016-07-11 14:32:37 +02001144 # return "delete_vnf. Undeleted: %s" %(undeletedItems)
tierno7edb6752016-03-21 17:37:52 +01001145
tiernob3d36742017-03-03 23:51:05 +01001146
tierno7edb6752016-03-21 17:37:52 +01001147def get_hosts_info(mydb, nfvo_tenant_id, datacenter_name=None):
1148 result, vims = get_vim(mydb, nfvo_tenant_id, None, datacenter_name)
1149 if result < 0:
1150 return result, vims
1151 elif result == 0:
1152 return -HTTP_Not_Found, "datacenter '%s' not found" % datacenter_name
1153 myvim = vims.values()[0]
1154 result,servers = myvim.get_hosts_info()
1155 if result < 0:
1156 return result, servers
1157 topology = {'name':myvim['name'] , 'servers': servers}
1158 return result, topology
1159
tiernob3d36742017-03-03 23:51:05 +01001160
tierno7edb6752016-03-21 17:37:52 +01001161def get_hosts(mydb, nfvo_tenant_id):
tiernof97fd272016-07-11 14:32:37 +02001162 vims = get_vim(mydb, nfvo_tenant_id)
1163 if len(vims) == 0:
1164 raise NfvoException("No datacenter found for tenant '{}'".format(str(nfvo_tenant_id)), HTTP_Not_Found)
1165 elif len(vims)>1:
1166 #print "nfvo.datacenter_action() error. Several datacenters found"
1167 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01001168 myvim = vims.values()[0]
tiernof97fd272016-07-11 14:32:37 +02001169 try:
1170 hosts = myvim.get_hosts()
1171 logger.debug('VIM hosts response: '+ yaml.safe_dump(hosts, indent=4, default_flow_style=False))
tierno7edb6752016-03-21 17:37:52 +01001172
tiernof97fd272016-07-11 14:32:37 +02001173 datacenter = {'Datacenters': [ {'name':myvim['name'],'servers':[]} ] }
1174 for host in hosts:
1175 server={'name':host['name'], 'vms':[]}
1176 for vm in host['instances']:
1177 #get internal name and model
tierno42026a02017-02-10 15:13:40 +01001178 try:
tiernof97fd272016-07-11 14:32:37 +02001179 c = mydb.get_rows(SELECT=('name',), FROM='instance_vms as iv join vms on iv.vm_id=vms.uuid',\
1180 WHERE={'vim_vm_id':vm['id']} )
1181 if len(c) == 0:
1182 logger.warn("nfvo.get_hosts virtual machine at VIM '{}' not found at tidnfvo".format(vm['id']))
1183 continue
1184 server['vms'].append( {'name':vm['name'] , 'model':c[0]['name']} )
tierno42026a02017-02-10 15:13:40 +01001185
tiernof97fd272016-07-11 14:32:37 +02001186 except db_base_Exception as e:
1187 logger.warn("nfvo.get_hosts virtual machine at VIM '{}' error {}".format(vm['id'], str(e)))
1188 datacenter['Datacenters'][0]['servers'].append(server)
1189 #return -400, "en construccion"
tierno42026a02017-02-10 15:13:40 +01001190
tiernof97fd272016-07-11 14:32:37 +02001191 #print 'datacenters '+ json.dumps(datacenter, indent=4)
1192 return datacenter
1193 except vimconn.vimconnException as e:
1194 raise NfvoException("Not possible to get_host_list from VIM: {}".format(str(e)), e.http_code)
tierno7edb6752016-03-21 17:37:52 +01001195
tiernob3d36742017-03-03 23:51:05 +01001196
tierno7edb6752016-03-21 17:37:52 +01001197def new_scenario(mydb, tenant_id, topo):
1198
1199# result, vims = get_vim(mydb, tenant_id)
1200# if result < 0:
1201# return result, vims
1202#1: parse input
1203 if tenant_id != "any":
tierno42026a02017-02-10 15:13:40 +01001204 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001205 if "tenant_id" in topo:
1206 if topo["tenant_id"] != tenant_id:
tiernof97fd272016-07-11 14:32:37 +02001207 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(topo["tenant_id"], tenant_id),
1208 HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +01001209 else:
1210 tenant_id=None
1211
tierno42026a02017-02-10 15:13:40 +01001212#1.1: get VNFs and external_networks (other_nets).
tierno7edb6752016-03-21 17:37:52 +01001213 vnfs={}
1214 other_nets={} #external_networks, bridge_networks and data_networkds
1215 nodes = topo['topology']['nodes']
1216 for k in nodes.keys():
1217 if nodes[k]['type'] == 'VNF':
1218 vnfs[k] = nodes[k]
1219 vnfs[k]['ifaces'] = {}
tierno42026a02017-02-10 15:13:40 +01001220 elif nodes[k]['type'] == 'other_network' or nodes[k]['type'] == 'external_network':
tierno7edb6752016-03-21 17:37:52 +01001221 other_nets[k] = nodes[k]
1222 other_nets[k]['external']=True
tierno42026a02017-02-10 15:13:40 +01001223 elif nodes[k]['type'] == 'network':
tierno7edb6752016-03-21 17:37:52 +01001224 other_nets[k] = nodes[k]
1225 other_nets[k]['external']=False
tierno42026a02017-02-10 15:13:40 +01001226
tierno7edb6752016-03-21 17:37:52 +01001227
1228#1.2: Check that VNF are present at database table vnfs. Insert uuid, description and external interfaces
1229 for name,vnf in vnfs.items():
tiernocea279c2016-07-18 12:36:49 +02001230 where={}
1231 where_or={"tenant_id": tenant_id, 'public': "true"}
tierno7edb6752016-03-21 17:37:52 +01001232 error_text = ""
1233 error_pos = "'topology':'nodes':'" + name + "'"
1234 if 'vnf_id' in vnf:
1235 error_text += " 'vnf_id' " + vnf['vnf_id']
tiernocea279c2016-07-18 12:36:49 +02001236 where['uuid'] = vnf['vnf_id']
tierno7edb6752016-03-21 17:37:52 +01001237 if 'VNF model' in vnf:
1238 error_text += " 'VNF model' " + vnf['VNF model']
tiernocea279c2016-07-18 12:36:49 +02001239 where['name'] = vnf['VNF model']
1240 if len(where) == 0:
tiernof97fd272016-07-11 14:32:37 +02001241 raise NfvoException("Descriptor need a 'vnf_id' or 'VNF model' field at " + error_pos, HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +01001242
tiernocea279c2016-07-18 12:36:49 +02001243 vnf_db = mydb.get_rows(SELECT=('uuid','name','description'),
1244 FROM='vnfs',
tierno42026a02017-02-10 15:13:40 +01001245 WHERE=where,
tiernocea279c2016-07-18 12:36:49 +02001246 WHERE_OR=where_or,
1247 WHERE_AND_OR="AND")
tiernof97fd272016-07-11 14:32:37 +02001248 if len(vnf_db)==0:
1249 raise NfvoException("unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
1250 elif len(vnf_db)>1:
1251 raise NfvoException("more than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01001252 vnf['uuid']=vnf_db[0]['uuid']
1253 vnf['description']=vnf_db[0]['description']
1254 #get external interfaces
tierno42026a02017-02-10 15:13:40 +01001255 ext_ifaces = mydb.get_rows(SELECT=('external_name as name','i.uuid as iface_uuid', 'i.type as type'),
1256 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
tierno7edb6752016-03-21 17:37:52 +01001257 WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name':None} )
tierno7edb6752016-03-21 17:37:52 +01001258 for ext_iface in ext_ifaces:
1259 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type':ext_iface['type']}
1260
1261#1.4 get list of connections
1262 conections = topo['topology']['connections']
1263 conections_list = []
tiernoefd80c92016-09-16 14:17:46 +02001264 conections_list_name = []
tierno7edb6752016-03-21 17:37:52 +01001265 for k in conections.keys():
1266 if type(conections[k]['nodes'])==dict: #dict with node:iface pairs
1267 ifaces_list = conections[k]['nodes'].items()
1268 elif type(conections[k]['nodes'])==list: #list with dictionary
1269 ifaces_list=[]
1270 conection_pair_list = map(lambda x: x.items(), conections[k]['nodes'] )
1271 for k2 in conection_pair_list:
1272 ifaces_list += k2
1273
1274 con_type = conections[k].get("type", "link")
1275 if con_type != "link":
1276 if k in other_nets:
tiernof97fd272016-07-11 14:32:37 +02001277 raise NfvoException("Format error. Reapeted network name at 'topology':'connections':'{}'".format(str(k)), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001278 other_nets[k] = {'external': False}
1279 if conections[k].get("graph"):
1280 other_nets[k]["graph"] = conections[k]["graph"]
1281 ifaces_list.append( (k, None) )
1282
tierno42026a02017-02-10 15:13:40 +01001283
tierno7edb6752016-03-21 17:37:52 +01001284 if con_type == "external_network":
1285 other_nets[k]['external'] = True
1286 if conections[k].get("model"):
1287 other_nets[k]["model"] = conections[k]["model"]
1288 else:
1289 other_nets[k]["model"] = k
tierno42026a02017-02-10 15:13:40 +01001290 if con_type == "dataplane_net" or con_type == "bridge_net":
tierno7edb6752016-03-21 17:37:52 +01001291 other_nets[k]["model"] = con_type
tierno42026a02017-02-10 15:13:40 +01001292
tiernoefd80c92016-09-16 14:17:46 +02001293 conections_list_name.append(k)
tierno7edb6752016-03-21 17:37:52 +01001294 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)
1295 #print set(ifaces_list)
1296 #check valid VNF and iface names
1297 for iface in ifaces_list:
1298 if iface[0] not in vnfs and iface[0] not in other_nets :
tiernof97fd272016-07-11 14:32:37 +02001299 raise NfvoException("format error. Invalid VNF name at 'topology':'connections':'{}':'nodes':'{}'".format(
1300 str(k), iface[0]), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001301 if iface[0] in vnfs and iface[1] not in vnfs[ iface[0] ]['ifaces']:
tiernof97fd272016-07-11 14:32:37 +02001302 raise NfvoException("format error. Invalid interface name at 'topology':'connections':'{}':'nodes':'{}':'{}'".format(
1303 str(k), iface[0], iface[1]), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001304
1305#1.5 unify connections from the pair list to a consolidated list
1306 index=0
1307 while index < len(conections_list):
1308 index2 = index+1
1309 while index2 < len(conections_list):
1310 if len(conections_list[index] & conections_list[index2])>0: #common interface, join nets
1311 conections_list[index] |= conections_list[index2]
1312 del conections_list[index2]
tiernoefd80c92016-09-16 14:17:46 +02001313 del conections_list_name[index2]
tierno7edb6752016-03-21 17:37:52 +01001314 else:
1315 index2 += 1
1316 conections_list[index] = list(conections_list[index]) # from set to list again
1317 index += 1
1318 #for k in conections_list:
1319 # print k
tierno42026a02017-02-10 15:13:40 +01001320
tierno7edb6752016-03-21 17:37:52 +01001321
1322
1323#1.6 Delete non external nets
1324# for k in other_nets.keys():
1325# if other_nets[k]['model']=='bridge' or other_nets[k]['model']=='dataplane_net' or other_nets[k]['model']=='bridge_net':
1326# for con in conections_list:
1327# delete_indexes=[]
1328# for index in range(0,len(con)):
1329# if con[index][0] == k: delete_indexes.insert(0,index) #order from higher to lower
1330# for index in delete_indexes:
1331# del con[index]
1332# del other_nets[k]
1333#1.7: Check external_ports are present at database table datacenter_nets
1334 for k,net in other_nets.items():
1335 error_pos = "'topology':'nodes':'" + k + "'"
1336 if net['external']==False:
1337 if 'name' not in net:
1338 net['name']=k
1339 if 'model' not in net:
tiernof97fd272016-07-11 14:32:37 +02001340 raise NfvoException("needed a 'model' at " + error_pos, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001341 if net['model']=='bridge_net':
1342 net['type']='bridge';
1343 elif net['model']=='dataplane_net':
1344 net['type']='data';
1345 else:
tiernof97fd272016-07-11 14:32:37 +02001346 raise NfvoException("unknown 'model' '"+ net['model'] +"' at " + error_pos, HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001347 else: #external
1348#IF we do not want to check that external network exist at datacenter
1349 pass
tierno42026a02017-02-10 15:13:40 +01001350#ELSE
tierno7edb6752016-03-21 17:37:52 +01001351# error_text = ""
1352# WHERE_={}
1353# if 'net_id' in net:
1354# error_text += " 'net_id' " + net['net_id']
1355# WHERE_['uuid'] = net['net_id']
1356# if 'model' in net:
1357# error_text += " 'model' " + net['model']
1358# WHERE_['name'] = net['model']
1359# if len(WHERE_) == 0:
1360# return -HTTP_Bad_Request, "needed a 'net_id' or 'model' at " + error_pos
1361# r,net_db = mydb.get_table(SELECT=('uuid','name','description','type','shared'),
1362# FROM='datacenter_nets', WHERE=WHERE_ )
1363# if r<0:
1364# print "nfvo.new_scenario Error getting datacenter_nets",r,net_db
1365# elif r==0:
1366# print "nfvo.new_scenario Error" +error_text+ " is not present at database"
1367# return -HTTP_Bad_Request, "unknown " +error_text+ " at " + error_pos
1368# elif r>1:
tierno42026a02017-02-10 15:13:40 +01001369# print "nfvo.new_scenario Error more than one external_network for " +error_text+ " is present at database"
1370# return -HTTP_Bad_Request, "more than one external_network for " +error_text+ "at "+ error_pos + " Concrete with 'net_id'"
tierno7edb6752016-03-21 17:37:52 +01001371# other_nets[k].update(net_db[0])
tierno42026a02017-02-10 15:13:40 +01001372#ENDIF
tierno7edb6752016-03-21 17:37:52 +01001373 net_list={}
1374 net_nb=0 #Number of nets
1375 for con in conections_list:
1376 #check if this is connected to a external net
1377 other_net_index=-1
1378 #print
1379 #print "con", con
1380 for index in range(0,len(con)):
1381 #check if this is connected to a external net
1382 for net_key in other_nets.keys():
1383 if con[index][0]==net_key:
1384 if other_net_index>=0:
tierno42026a02017-02-10 15:13:40 +01001385 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 +02001386 #print "nfvo.new_scenario " + error_text
1387 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001388 else:
1389 other_net_index = index
1390 net_target = net_key
1391 break
1392 #print "other_net_index", other_net_index
1393 try:
1394 if other_net_index>=0:
1395 del con[other_net_index]
1396#IF we do not want to check that external network exist at datacenter
1397 if other_nets[net_target]['external'] :
1398 if "name" not in other_nets[net_target]:
1399 other_nets[net_target]['name'] = other_nets[net_target]['model']
1400 if other_nets[net_target]["type"] == "external_network":
1401 if vnfs[ con[0][0] ]['ifaces'][ con[0][1] ]["type"] == "data":
1402 other_nets[net_target]["type"] = "data"
1403 else:
1404 other_nets[net_target]["type"] = "bridge"
tierno42026a02017-02-10 15:13:40 +01001405#ELSE
tierno7edb6752016-03-21 17:37:52 +01001406# if other_nets[net_target]['external'] :
1407# 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
1408# if type_=='data' and other_nets[net_target]['type']=="ptp":
1409# error_text = "Error connecting %d nodes on a not multipoint net %s" % (len(con), net_target)
1410# print "nfvo.new_scenario " + error_text
1411# return -HTTP_Bad_Request, error_text
tierno42026a02017-02-10 15:13:40 +01001412#ENDIF
tierno7edb6752016-03-21 17:37:52 +01001413 for iface in con:
1414 vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target
1415 else:
1416 #create a net
1417 net_type_bridge=False
1418 net_type_data=False
1419 net_target = "__-__net"+str(net_nb)
tierno42026a02017-02-10 15:13:40 +01001420 net_list[net_target] = {'name': conections_list_name[net_nb], #"net-"+str(net_nb),
tiernoefd80c92016-09-16 14:17:46 +02001421 'description':"net-%s in scenario %s" %(net_nb,topo['name']),
tierno42026a02017-02-10 15:13:40 +01001422 'external':False}
tierno7edb6752016-03-21 17:37:52 +01001423 for iface in con:
1424 vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target
1425 iface_type = vnfs[ iface[0] ]['ifaces'][ iface[1] ]['type']
1426 if iface_type=='mgmt' or iface_type=='bridge':
1427 net_type_bridge = True
1428 else:
1429 net_type_data = True
1430 if net_type_bridge and net_type_data:
1431 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 +02001432 #print "nfvo.new_scenario " + error_text
1433 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001434 elif net_type_bridge:
1435 type_='bridge'
1436 else:
1437 type_='data' if len(con)>2 else 'ptp'
1438 net_list[net_target]['type'] = type_
1439 net_nb+=1
1440 except Exception:
1441 error_text = "Error connection node %s : %s does not match any VNF or interface" % (iface[0], iface[1])
tiernof97fd272016-07-11 14:32:37 +02001442 #print "nfvo.new_scenario " + error_text
tierno7edb6752016-03-21 17:37:52 +01001443 #raise e
tiernof97fd272016-07-11 14:32:37 +02001444 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001445
1446#1.8: Connect to management net all not already connected interfaces of type 'mgmt'
tierno42026a02017-02-10 15:13:40 +01001447 #1.8.1 obtain management net
tiernof97fd272016-07-11 14:32:37 +02001448 mgmt_net = mydb.get_rows(SELECT=('uuid','name','description','type','shared'),
tierno7edb6752016-03-21 17:37:52 +01001449 FROM='datacenter_nets', WHERE={'name':'mgmt'} )
tierno42026a02017-02-10 15:13:40 +01001450 #1.8.2 check all interfaces from all vnfs
tiernof97fd272016-07-11 14:32:37 +02001451 if len(mgmt_net)>0:
tierno7edb6752016-03-21 17:37:52 +01001452 add_mgmt_net = False
1453 for vnf in vnfs.values():
1454 for iface in vnf['ifaces'].values():
1455 if iface['type']=='mgmt' and 'net_key' not in iface:
1456 #iface not connected
1457 iface['net_key'] = 'mgmt'
1458 add_mgmt_net = True
1459 if add_mgmt_net and 'mgmt' not in net_list:
1460 net_list['mgmt']=mgmt_net[0]
1461 net_list['mgmt']['external']=True
1462 net_list['mgmt']['graph']={'visible':False}
1463
1464 net_list.update(other_nets)
tiernof97fd272016-07-11 14:32:37 +02001465 #print
1466 #print 'net_list', net_list
1467 #print
1468 #print 'vnfs', vnfs
1469 #print
tierno7edb6752016-03-21 17:37:52 +01001470
1471#2: insert scenario. filling tables scenarios,sce_vnfs,sce_interfaces,sce_nets
tiernof97fd272016-07-11 14:32:37 +02001472 c = mydb.new_scenario( { 'vnfs':vnfs, 'nets':net_list,
tierno392f2852016-05-13 12:28:55 +02001473 'tenant_id':tenant_id, 'name':topo['name'],
1474 'description':topo.get('description',topo['name']),
1475 'public': topo.get('public', False)
1476 })
tierno42026a02017-02-10 15:13:40 +01001477
tiernof97fd272016-07-11 14:32:37 +02001478 return c
tierno7edb6752016-03-21 17:37:52 +01001479
tiernob3d36742017-03-03 23:51:05 +01001480
tierno5bb59dc2017-02-13 14:53:54 +01001481def new_scenario_v02(mydb, tenant_id, scenario_dict, version):
1482 """ This creates a new scenario for version 0.2 and 0.3"""
tierno392f2852016-05-13 12:28:55 +02001483 scenario = scenario_dict["scenario"]
tierno7edb6752016-03-21 17:37:52 +01001484 if tenant_id != "any":
tierno42026a02017-02-10 15:13:40 +01001485 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001486 if "tenant_id" in scenario:
1487 if scenario["tenant_id"] != tenant_id:
tierno5bb59dc2017-02-13 14:53:54 +01001488 # print "nfvo.new_scenario_v02() tenant '%s' not found" % tenant_id
tiernof97fd272016-07-11 14:32:37 +02001489 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(
1490 scenario["tenant_id"], tenant_id), HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +01001491 else:
1492 tenant_id=None
1493
tierno5bb59dc2017-02-13 14:53:54 +01001494 # 1: Check that VNF are present at database table vnfs and update content into scenario dict
tierno7edb6752016-03-21 17:37:52 +01001495 for name,vnf in scenario["vnfs"].iteritems():
tiernocea279c2016-07-18 12:36:49 +02001496 where={}
1497 where_or={"tenant_id": tenant_id, 'public': "true"}
tierno7edb6752016-03-21 17:37:52 +01001498 error_text = ""
garciadeblas71781ea2016-09-19 14:41:59 +02001499 error_pos = "'scenario':'vnfs':'" + name + "'"
tierno7edb6752016-03-21 17:37:52 +01001500 if 'vnf_id' in vnf:
tierno5bb59dc2017-02-13 14:53:54 +01001501 error_text += " 'vnf_id' " + vnf['vnf_id']
tiernocea279c2016-07-18 12:36:49 +02001502 where['uuid'] = vnf['vnf_id']
tierno392f2852016-05-13 12:28:55 +02001503 if 'vnf_name' in vnf:
tierno5bb59dc2017-02-13 14:53:54 +01001504 error_text += " 'vnf_name' " + vnf['vnf_name']
tiernocea279c2016-07-18 12:36:49 +02001505 where['name'] = vnf['vnf_name']
1506 if len(where) == 0:
garciadeblas71781ea2016-09-19 14:41:59 +02001507 raise NfvoException("Needed a 'vnf_id' or 'vnf_name' at " + error_pos, HTTP_Bad_Request)
tierno5bb59dc2017-02-13 14:53:54 +01001508 vnf_db = mydb.get_rows(SELECT=('uuid', 'name', 'description'),
tiernocea279c2016-07-18 12:36:49 +02001509 FROM='vnfs',
1510 WHERE=where,
1511 WHERE_OR=where_or,
1512 WHERE_AND_OR="AND")
tierno5bb59dc2017-02-13 14:53:54 +01001513 if len(vnf_db) == 0:
tiernof97fd272016-07-11 14:32:37 +02001514 raise NfvoException("Unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
tierno5bb59dc2017-02-13 14:53:54 +01001515 elif len(vnf_db) > 1:
tiernof97fd272016-07-11 14:32:37 +02001516 raise NfvoException("More than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
tierno5bb59dc2017-02-13 14:53:54 +01001517 vnf['uuid'] = vnf_db[0]['uuid']
1518 vnf['description'] = vnf_db[0]['description']
tierno7edb6752016-03-21 17:37:52 +01001519 vnf['ifaces'] = {}
tierno5bb59dc2017-02-13 14:53:54 +01001520 # get external interfaces
1521 ext_ifaces = mydb.get_rows(SELECT=('external_name as name', 'i.uuid as iface_uuid', 'i.type as type'),
1522 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
1523 WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name': None} )
tierno7edb6752016-03-21 17:37:52 +01001524 for ext_iface in ext_ifaces:
tierno5bb59dc2017-02-13 14:53:54 +01001525 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type': ext_iface['type']}
1526 # TODO? get internal-connections from db.nets and their profiles, and update scenario[vnfs][internal-connections] accordingly
tierno7edb6752016-03-21 17:37:52 +01001527
tierno5bb59dc2017-02-13 14:53:54 +01001528 # 2: Insert net_key and ip_address at every vnf interface
1529 for net_name, net in scenario["networks"].items():
1530 net_type_bridge = False
1531 net_type_data = False
tierno7edb6752016-03-21 17:37:52 +01001532 for iface_dict in net["interfaces"]:
tierno5bb59dc2017-02-13 14:53:54 +01001533 if version == "0.2":
1534 temp_dict = iface_dict
1535 ip_address = None
1536 elif version == "0.3":
1537 temp_dict = {iface_dict["vnf"] : iface_dict["vnf_interface"]}
1538 ip_address = iface_dict.get('ip_address', None)
1539 for vnf, iface in temp_dict.items():
tierno7edb6752016-03-21 17:37:52 +01001540 if vnf not in scenario["vnfs"]:
tierno5bb59dc2017-02-13 14:53:54 +01001541 error_text = "Error at 'networks':'{}':'interfaces' VNF '{}' not match any VNF at 'vnfs'".format(
1542 net_name, vnf)
1543 # logger.debug("nfvo.new_scenario_v02 " + error_text)
tiernof97fd272016-07-11 14:32:37 +02001544 raise NfvoException(error_text, HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001545 if iface not in scenario["vnfs"][vnf]['ifaces']:
tierno5bb59dc2017-02-13 14:53:54 +01001546 error_text = "Error at 'networks':'{}':'interfaces':'{}' interface not match any VNF interface"\
1547 .format(net_name, iface)
1548 # logger.debug("nfvo.new_scenario_v02 " + error_text)
tiernof97fd272016-07-11 14:32:37 +02001549 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001550 if "net_key" in scenario["vnfs"][vnf]['ifaces'][iface]:
tierno5bb59dc2017-02-13 14:53:54 +01001551 error_text = "Error at 'networks':'{}':'interfaces':'{}' interface already connected at network"\
1552 "'{}'".format(net_name, iface,scenario["vnfs"][vnf]['ifaces'][iface]['net_key'])
1553 # logger.debug("nfvo.new_scenario_v02 " + error_text)
tiernof97fd272016-07-11 14:32:37 +02001554 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001555 scenario["vnfs"][vnf]['ifaces'][ iface ]['net_key'] = net_name
tierno5bb59dc2017-02-13 14:53:54 +01001556 scenario["vnfs"][vnf]['ifaces'][iface]['ip_address'] = ip_address
tierno7edb6752016-03-21 17:37:52 +01001557 iface_type = scenario["vnfs"][vnf]['ifaces'][iface]['type']
tierno5bb59dc2017-02-13 14:53:54 +01001558 if iface_type == 'mgmt' or iface_type == 'bridge':
tierno7edb6752016-03-21 17:37:52 +01001559 net_type_bridge = True
1560 else:
1561 net_type_data = True
tierno5bb59dc2017-02-13 14:53:54 +01001562
tierno7edb6752016-03-21 17:37:52 +01001563 if net_type_bridge and net_type_data:
tierno5bb59dc2017-02-13 14:53:54 +01001564 error_text = "Error connection interfaces of 'bridge' type and 'data' type at 'networks':'{}':'interfaces'"\
1565 .format(net_name)
1566 # logger.debug("nfvo.new_scenario " + error_text)
tiernof97fd272016-07-11 14:32:37 +02001567 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001568 elif net_type_bridge:
tierno5bb59dc2017-02-13 14:53:54 +01001569 type_ = 'bridge'
tierno7edb6752016-03-21 17:37:52 +01001570 else:
tierno5bb59dc2017-02-13 14:53:54 +01001571 type_ = 'data' if len(net["interfaces"]) > 2 else 'ptp'
1572
1573 if net.get("implementation"): # for v0.3
1574 if type_ == "bridge" and net["implementation"] == "underlay":
1575 error_text = "Error connecting interfaces of data type to a network declared as 'underlay' at "\
1576 "'network':'{}'".format(net_name)
1577 # logger.debug(error_text)
1578 raise NfvoException(error_text, HTTP_Bad_Request)
1579 elif type_ != "bridge" and net["implementation"] == "overlay":
1580 error_text = "Error connecting interfaces of data type to a network declared as 'overlay' at "\
1581 "'network':'{}'".format(net_name)
1582 # logger.debug(error_text)
1583 raise NfvoException(error_text, HTTP_Bad_Request)
1584 net.pop("implementation")
1585 if "type" in net and version == "0.3": # for v0.3
1586 if type_ == "data" and net["type"] == "e-line":
1587 error_text = "Error connecting more than 2 interfaces of data type to a network declared as type "\
1588 "'e-line' at 'network':'{}'".format(net_name)
1589 # logger.debug(error_text)
1590 raise NfvoException(error_text, HTTP_Bad_Request)
1591 elif type_ == "ptp" and net["type"] == "e-lan":
1592 type_ = "data"
1593
tierno7edb6752016-03-21 17:37:52 +01001594 net['type'] = type_
1595 net['name'] = net_name
1596 net['external'] = net.get('external', False)
1597
tierno5bb59dc2017-02-13 14:53:54 +01001598 # 3: insert at database
tierno7edb6752016-03-21 17:37:52 +01001599 scenario["nets"] = scenario["networks"]
1600 scenario['tenant_id'] = tenant_id
tierno5bb59dc2017-02-13 14:53:54 +01001601 scenario_id = mydb.new_scenario(scenario)
tiernof97fd272016-07-11 14:32:37 +02001602 return scenario_id
tierno7edb6752016-03-21 17:37:52 +01001603
tiernob3d36742017-03-03 23:51:05 +01001604
tierno7edb6752016-03-21 17:37:52 +01001605def edit_scenario(mydb, tenant_id, scenario_id, data):
1606 data["uuid"] = scenario_id
1607 data["tenant_id"] = tenant_id
tiernof97fd272016-07-11 14:32:37 +02001608 c = mydb.edit_scenario( data )
1609 return c
tierno7edb6752016-03-21 17:37:52 +01001610
tiernob3d36742017-03-03 23:51:05 +01001611
tierno7edb6752016-03-21 17:37:52 +01001612def 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 +02001613 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tiernoa2793912016-10-04 08:15:08 +00001614 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter, vim_tenant=vim_tenant)
1615 vims = {datacenter_id: myvim}
tierno392f2852016-05-13 12:28:55 +02001616 myvim_tenant = myvim['tenant_id']
tierno7edb6752016-03-21 17:37:52 +01001617 datacenter_name = myvim['name']
tiernoa2793912016-10-04 08:15:08 +00001618
tierno7edb6752016-03-21 17:37:52 +01001619 rollbackList=[]
tiernoae4a8d12016-07-08 12:30:39 +02001620 try:
1621 #print "Checking that the scenario_id exists and getting the scenario dictionary"
tiernof97fd272016-07-11 14:32:37 +02001622 scenarioDict = mydb.get_scenario(scenario_id, tenant_id, datacenter_id)
tiernoa2793912016-10-04 08:15:08 +00001623 scenarioDict['datacenter2tenant'] = { datacenter_id: myvim['config']['datacenter_tenant_id'] }
tiernoae4a8d12016-07-08 12:30:39 +02001624 scenarioDict['datacenter_id'] = datacenter_id
1625 #print '================scenarioDict======================='
1626 #print json.dumps(scenarioDict, indent=4)
1627 #print 'BEGIN launching instance scenario "%s" based on "%s"' % (instance_scenario_name,scenarioDict['name'])
tierno42026a02017-02-10 15:13:40 +01001628
tiernoae4a8d12016-07-08 12:30:39 +02001629 logger.debug("start_scenario Scenario %s: consisting of %d VNF(s)", scenarioDict['name'],len(scenarioDict['vnfs']))
1630 #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
tierno42026a02017-02-10 15:13:40 +01001631
tiernoae4a8d12016-07-08 12:30:39 +02001632 auxNetDict = {} #Auxiliar dictionary. First key:'scenario' or sce_vnf uuid. Second Key: uuid of the net/sce_net. Value: vim_net_id
1633 auxNetDict['scenario'] = {}
tierno42026a02017-02-10 15:13:40 +01001634
tiernoae4a8d12016-07-08 12:30:39 +02001635 logger.debug("start_scenario 1. Creating new nets (sce_nets) in the VIM")
1636 for sce_net in scenarioDict['nets']:
1637 #print "Net name: %s. Description: %s" % (sce_net["name"], sce_net["description"])
tierno42026a02017-02-10 15:13:40 +01001638
tiernoae4a8d12016-07-08 12:30:39 +02001639 myNetName = "%s.%s" % (instance_scenario_name, sce_net['name'])
tierno7edb6752016-03-21 17:37:52 +01001640 myNetName = myNetName[0:255] #limit length
tiernoae4a8d12016-07-08 12:30:39 +02001641 myNetType = sce_net['type']
tierno7edb6752016-03-21 17:37:52 +01001642 myNetDict = {}
1643 myNetDict["name"] = myNetName
1644 myNetDict["type"] = myNetType
1645 myNetDict["tenant_id"] = myvim_tenant
garciadeblas9f8456e2016-09-05 05:02:59 +02001646 myNetIPProfile = sce_net.get('ip_profile', None)
tierno7edb6752016-03-21 17:37:52 +01001647 #TODO:
tiernoae4a8d12016-07-08 12:30:39 +02001648 #We should use the dictionary as input parameter for new_network
tiernof97fd272016-07-11 14:32:37 +02001649 #print myNetDict
tiernoae4a8d12016-07-08 12:30:39 +02001650 if not sce_net["external"]:
garciadeblas9f8456e2016-09-05 05:02:59 +02001651 network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile)
tiernoae4a8d12016-07-08 12:30:39 +02001652 #print "New VIM network created for scenario %s. Network id: %s" % (scenarioDict['name'],network_id)
1653 sce_net['vim_id'] = network_id
1654 auxNetDict['scenario'][sce_net['uuid']] = network_id
1655 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
tierno66345bc2016-09-26 11:37:55 +02001656 sce_net["created"] = True
tiernoae4a8d12016-07-08 12:30:39 +02001657 else:
1658 if sce_net['vim_id'] == None:
1659 error_text = "Error, datacenter '%s' does not have external network '%s'." % (datacenter_name, sce_net['name'])
1660 _, message = rollback(mydb, vims, rollbackList)
1661 logger.error("nfvo.start_scenario: %s", error_text)
tiernof97fd272016-07-11 14:32:37 +02001662 raise NfvoException(error_text, HTTP_Bad_Request)
tiernoae4a8d12016-07-08 12:30:39 +02001663 logger.debug("Using existent VIM network for scenario %s. Network id %s", scenarioDict['name'],sce_net['vim_id'])
1664 auxNetDict['scenario'][sce_net['uuid']] = sce_net['vim_id']
tierno42026a02017-02-10 15:13:40 +01001665
tiernoae4a8d12016-07-08 12:30:39 +02001666 logger.debug("start_scenario 2. Creating new nets (vnf internal nets) in the VIM")
1667 #For each vnf net, we create it and we add it to instanceNetlist.
1668 for sce_vnf in scenarioDict['vnfs']:
1669 for net in sce_vnf['nets']:
1670 #print "Net name: %s. Description: %s" % (net["name"], net["description"])
tierno42026a02017-02-10 15:13:40 +01001671
tiernoae4a8d12016-07-08 12:30:39 +02001672 myNetName = "%s.%s" % (instance_scenario_name,net['name'])
1673 myNetName = myNetName[0:255] #limit length
1674 myNetType = net['type']
1675 myNetDict = {}
1676 myNetDict["name"] = myNetName
1677 myNetDict["type"] = myNetType
1678 myNetDict["tenant_id"] = myvim_tenant
garciadeblas9f8456e2016-09-05 05:02:59 +02001679 myNetIPProfile = net.get('ip_profile', None)
tiernoae4a8d12016-07-08 12:30:39 +02001680 #print myNetDict
1681 #TODO:
1682 #We should use the dictionary as input parameter for new_network
garciadeblas9f8456e2016-09-05 05:02:59 +02001683 network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile)
tiernoae4a8d12016-07-08 12:30:39 +02001684 #print "VIM network id for scenario %s: %s" % (scenarioDict['name'],network_id)
1685 net['vim_id'] = network_id
1686 if sce_vnf['uuid'] not in auxNetDict:
1687 auxNetDict[sce_vnf['uuid']] = {}
1688 auxNetDict[sce_vnf['uuid']][net['uuid']] = network_id
1689 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
tierno66345bc2016-09-26 11:37:55 +02001690 net["created"] = True
tierno42026a02017-02-10 15:13:40 +01001691
tiernoae4a8d12016-07-08 12:30:39 +02001692 #print "auxNetDict:"
1693 #print yaml.safe_dump(auxNetDict, indent=4, default_flow_style=False)
tierno42026a02017-02-10 15:13:40 +01001694
tiernoae4a8d12016-07-08 12:30:39 +02001695 logger.debug("start_scenario 3. Creating new vm instances in the VIM")
1696 #myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict)
1697 i = 0
1698 for sce_vnf in scenarioDict['vnfs']:
1699 for vm in sce_vnf['vms']:
1700 i += 1
1701 myVMDict = {}
1702 #myVMDict['name'] = "%s-%s-%s" % (scenarioDict['name'],sce_vnf['name'], vm['name'])
tiernoae65a482016-11-24 16:20:05 +01001703 myVMDict['name'] = "{}.{}.{}".format(instance_scenario_name,sce_vnf['name'],chr(96+i))
tiernoae4a8d12016-07-08 12:30:39 +02001704 #myVMDict['description'] = vm['description']
1705 myVMDict['description'] = myVMDict['name'][0:99]
1706 if not startvms:
1707 myVMDict['start'] = "no"
1708 myVMDict['name'] = myVMDict['name'][0:255] #limit name length
1709 #print "VM name: %s. Description: %s" % (myVMDict['name'], myVMDict['name'])
tierno42026a02017-02-10 15:13:40 +01001710
tiernoae4a8d12016-07-08 12:30:39 +02001711 #create image at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001712 image_dict = mydb.get_table_by_uuid_name("images", vm['image_id'])
tierno42026a02017-02-10 15:13:40 +01001713 image_id = create_or_use_image(mydb, vims, image_dict, [], True)
tiernoae4a8d12016-07-08 12:30:39 +02001714 vm['vim_image_id'] = image_id
tierno42026a02017-02-10 15:13:40 +01001715
tiernoae4a8d12016-07-08 12:30:39 +02001716 #create flavor at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02001717 flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id'])
tiernoae4a8d12016-07-08 12:30:39 +02001718 if flavor_dict['extended']!=None:
1719 flavor_dict['extended']= yaml.load(flavor_dict['extended'])
tierno42026a02017-02-10 15:13:40 +01001720 flavor_id = create_or_use_flavor(mydb, vims, flavor_dict, [], True)
tiernoae4a8d12016-07-08 12:30:39 +02001721 vm['vim_flavor_id'] = flavor_id
tierno42026a02017-02-10 15:13:40 +01001722
1723
tiernoae4a8d12016-07-08 12:30:39 +02001724 myVMDict['imageRef'] = vm['vim_image_id']
1725 myVMDict['flavorRef'] = vm['vim_flavor_id']
1726 myVMDict['networks'] = []
1727 for iface in vm['interfaces']:
1728 netDict = {}
1729 if iface['type']=="data":
1730 netDict['type'] = iface['model']
1731 elif "model" in iface and iface["model"]!=None:
1732 netDict['model']=iface['model']
1733 #TODO in future, remove this because mac_address will not be set, and the type of PV,VF is obtained from iterface table model
1734 #discover type of interface looking at flavor
1735 for numa in flavor_dict.get('extended',{}).get('numas',[]):
1736 for flavor_iface in numa.get('interfaces',[]):
1737 if flavor_iface.get('name') == iface['internal_name']:
1738 if flavor_iface['dedicated'] == 'yes':
1739 netDict['type']="PF" #passthrough
1740 elif flavor_iface['dedicated'] == 'no':
1741 netDict['type']="VF" #siov
1742 elif flavor_iface['dedicated'] == 'yes:sriov':
1743 netDict['type']="VFnotShared" #sriov but only one sriov on the PF
1744 netDict["mac_address"] = flavor_iface.get("mac_address")
1745 break;
1746 netDict["use"]=iface['type']
1747 if netDict["use"]=="data" and not netDict.get("type"):
1748 #print "netDict", netDict
1749 #print "iface", iface
1750 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'])
1751 if flavor_dict.get('extended')==None:
tiernof97fd272016-07-11 14:32:37 +02001752 raise NfvoException(e_text + "After database migration some information is not available. \
1753 Try to delete and create the scenarios and VNFs again", HTTP_Conflict)
tiernoae4a8d12016-07-08 12:30:39 +02001754 else:
tiernof97fd272016-07-11 14:32:37 +02001755 raise NfvoException(e_text, HTTP_Internal_Server_Error)
tiernoae4a8d12016-07-08 12:30:39 +02001756 if netDict["use"]=="mgmt" or netDict["use"]=="bridge":
1757 netDict["type"]="virtual"
1758 if "vpci" in iface and iface["vpci"] is not None:
1759 netDict['vpci'] = iface['vpci']
1760 if "mac" in iface and iface["mac"] is not None:
1761 netDict['mac_address'] = iface['mac']
montesmoreno2a1fc4e2017-01-09 16:46:04 +00001762 if "port-security" in iface and iface["port-security"] is not None:
1763 netDict['port_security'] = iface['port-security']
1764 if "floating-ip" in iface and iface["floating-ip"] is not None:
1765 netDict['floating_ip'] = iface['floating-ip']
tiernoae4a8d12016-07-08 12:30:39 +02001766 netDict['name'] = iface['internal_name']
1767 if iface['net_id'] is None:
1768 for vnf_iface in sce_vnf["interfaces"]:
tiernof97fd272016-07-11 14:32:37 +02001769 #print iface
1770 #print vnf_iface
tiernoae4a8d12016-07-08 12:30:39 +02001771 if vnf_iface['interface_id']==iface['uuid']:
1772 netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ]
1773 break
1774 else:
1775 netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ]
1776 #skip bridge ifaces not connected to any net
1777 #if 'net_id' not in netDict or netDict['net_id']==None:
1778 # continue
1779 myVMDict['networks'].append(netDict)
1780 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
1781 #print myVMDict['name']
1782 #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
1783 #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
1784 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
1785 vm_id = myvim.new_vminstance(myVMDict['name'],myVMDict['description'],myVMDict.get('start', None),
1786 myVMDict['imageRef'],myVMDict['flavorRef'],myVMDict['networks'])
1787 #print "VIM vm instance id (server id) for scenario %s: %s" % (scenarioDict['name'],vm_id)
1788 vm['vim_id'] = vm_id
1789 rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id})
1790 #put interface uuid back to scenario[vnfs][vms[[interfaces]
1791 for net in myVMDict['networks']:
1792 if "vim_id" in net:
1793 for iface in vm['interfaces']:
1794 if net["name"]==iface["internal_name"]:
1795 iface["vim_id"]=net["vim_id"]
1796 break
tierno42026a02017-02-10 15:13:40 +01001797
tiernoae4a8d12016-07-08 12:30:39 +02001798 logger.debug("start scenario Deployment done")
1799 #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
1800 #r,c = mydb.new_instance_scenario_as_a_whole(nfvo_tenant,scenarioDict['name'],scenarioDict)
tiernof97fd272016-07-11 14:32:37 +02001801 instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_scenario_name, instance_scenario_description, scenarioDict)
1802 return mydb.get_instance_scenario(instance_id)
tierno42026a02017-02-10 15:13:40 +01001803
tiernof97fd272016-07-11 14:32:37 +02001804 except (db_base_Exception, vimconn.vimconnException) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001805 _, message = rollback(mydb, vims, rollbackList)
tiernof97fd272016-07-11 14:32:37 +02001806 if isinstance(e, db_base_Exception):
1807 error_text = "Exception at database"
1808 else:
1809 error_text = "Exception at VIM"
1810 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
1811 #logger.error("start_scenario %s", error_text)
1812 raise NfvoException(error_text, e.http_code)
tierno7edb6752016-03-21 17:37:52 +01001813
tiernob3d36742017-03-03 23:51:05 +01001814
tierno36c0b172017-01-12 18:32:28 +01001815def unify_cloud_config(cloud_config_preserve, cloud_config):
1816 ''' join the cloud config information into cloud_config_preserve.
1817 In case of conflict cloud_config_preserve preserves
1818 None is admited
1819 '''
1820 if not cloud_config_preserve and not cloud_config:
1821 return None
1822
1823 new_cloud_config = {"key-pairs":[], "users":[]}
1824 # key-pairs
1825 if cloud_config_preserve:
1826 for key in cloud_config_preserve.get("key-pairs", () ):
1827 if key not in new_cloud_config["key-pairs"]:
1828 new_cloud_config["key-pairs"].append(key)
1829 if cloud_config:
1830 for key in cloud_config.get("key-pairs", () ):
1831 if key not in new_cloud_config["key-pairs"]:
1832 new_cloud_config["key-pairs"].append(key)
1833 if not new_cloud_config["key-pairs"]:
1834 del new_cloud_config["key-pairs"]
1835
1836 # users
1837 if cloud_config:
1838 new_cloud_config["users"] += cloud_config.get("users", () )
1839 if cloud_config_preserve:
1840 new_cloud_config["users"] += cloud_config_preserve.get("users", () )
tiernoa4e1a6e2016-08-31 14:19:40 +02001841 index_to_delete = []
tierno36c0b172017-01-12 18:32:28 +01001842 users = new_cloud_config.get("users", [])
tiernoa4e1a6e2016-08-31 14:19:40 +02001843 for index0 in range(0,len(users)):
1844 if index0 in index_to_delete:
1845 continue
1846 for index1 in range(index0+1,len(users)):
1847 if index1 in index_to_delete:
1848 continue
1849 if users[index0]["name"] == users[index1]["name"]:
1850 index_to_delete.append(index1)
1851 for key in users[index1].get("key-pairs",()):
tierno36c0b172017-01-12 18:32:28 +01001852 if "key-pairs" not in users[index0]:
tiernoa4e1a6e2016-08-31 14:19:40 +02001853 users[index0]["key-pairs"] = [key]
1854 elif key not in users[index0]["key-pairs"]:
1855 users[index0]["key-pairs"].append(key)
1856 index_to_delete.sort(reverse=True)
1857 for index in index_to_delete:
1858 del users[index]
tierno36c0b172017-01-12 18:32:28 +01001859 if not new_cloud_config["users"]:
1860 del new_cloud_config["users"]
1861
1862 #boot-data-drive
1863 if cloud_config and cloud_config.get("boot-data-drive") != None:
1864 new_cloud_config["boot-data-drive"] = cloud_config["boot-data-drive"]
1865 if cloud_config_preserve and cloud_config_preserve.get("boot-data-drive") != None:
1866 new_cloud_config["boot-data-drive"] = cloud_config_preserve["boot-data-drive"]
1867
1868 # user-data
1869 if cloud_config and cloud_config.get("user-data") != None:
1870 new_cloud_config["user-data"] = cloud_config["user-data"]
1871 if cloud_config_preserve and cloud_config_preserve.get("user-data") != None:
1872 new_cloud_config["user-data"] = cloud_config_preserve["user-data"]
1873
1874 # config files
1875 new_cloud_config["config-files"] = []
1876 if cloud_config and cloud_config.get("config-files") != None:
1877 new_cloud_config["config-files"] += cloud_config["config-files"]
1878 if cloud_config_preserve:
1879 for file in cloud_config_preserve.get("config-files", ()):
1880 for index in range(0, len(new_cloud_config["config-files"])):
1881 if new_cloud_config["config-files"][index]["dest"] == file["dest"]:
1882 new_cloud_config["config-files"][index] = file
1883 break
1884 else:
1885 new_cloud_config["config-files"].append(file)
1886 if not new_cloud_config["config-files"]:
1887 del new_cloud_config["config-files"]
1888 return new_cloud_config
1889
1890
tierno867ffe92017-03-27 12:50:34 +02001891def get_vim_thread(mydb, tenant_id, datacenter_id_name=None, datacenter_tenant_id=None):
tiernob3d36742017-03-03 23:51:05 +01001892 datacenter_id = None
1893 datacenter_name = None
1894 thread = None
tierno867ffe92017-03-27 12:50:34 +02001895 try:
1896 if datacenter_tenant_id:
1897 thread_id = datacenter_tenant_id
1898 thread = vim_threads["running"].get(datacenter_tenant_id)
tiernob3d36742017-03-03 23:51:05 +01001899 else:
tierno867ffe92017-03-27 12:50:34 +02001900 where_={"td.nfvo_tenant_id": tenant_id}
1901 if datacenter_id_name:
1902 if utils.check_valid_uuid(datacenter_id_name):
1903 datacenter_id = datacenter_id_name
1904 where_["dt.datacenter_id"] = datacenter_id
1905 else:
1906 datacenter_name = datacenter_id_name
1907 where_["d.name"] = datacenter_name
1908 if datacenter_tenant_id:
1909 where_["dt.uuid"] = datacenter_tenant_id
1910 datacenters = mydb.get_rows(
1911 SELECT=("dt.uuid as datacenter_tenant_id",),
1912 FROM="datacenter_tenants as dt join tenants_datacenters as td on dt.uuid=td.datacenter_tenant_id "
1913 "join datacenters as d on d.uuid=dt.datacenter_id",
1914 WHERE=where_)
1915 if len(datacenters) > 1:
1916 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
1917 elif datacenters:
1918 thread_id = datacenters[0]["datacenter_tenant_id"]
1919 thread = vim_threads["running"].get(thread_id)
1920 if not thread:
1921 raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found)
1922 return thread_id, thread
1923 except db_base_Exception as e:
1924 raise NfvoException("{} {}".format(type(e).__name__ , str(e)), e.http_code)
tiernoa4e1a6e2016-08-31 14:19:40 +02001925
tiernoa2793912016-10-04 08:15:08 +00001926def get_datacenter_by_name_uuid(mydb, tenant_id, datacenter_id_name=None, **extra_filter):
tiernobe41e222016-09-02 15:16:13 +02001927 datacenter_id = None
1928 datacenter_name = None
1929 if datacenter_id_name:
tierno42026a02017-02-10 15:13:40 +01001930 if utils.check_valid_uuid(datacenter_id_name):
tiernobe41e222016-09-02 15:16:13 +02001931 datacenter_id = datacenter_id_name
1932 else:
1933 datacenter_name = datacenter_id_name
tiernoa2793912016-10-04 08:15:08 +00001934 vims = get_vim(mydb, tenant_id, datacenter_id, datacenter_name, **extra_filter)
tiernobe41e222016-09-02 15:16:13 +02001935 if len(vims) == 0:
1936 raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found)
1937 elif len(vims)>1:
1938 #print "nfvo.datacenter_action() error. Several datacenters found"
1939 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
1940 return vims.keys()[0], vims.values()[0]
1941
tiernob3d36742017-03-03 23:51:05 +01001942
garciadeblas9f8456e2016-09-05 05:02:59 +02001943def update(d, u):
1944 '''Takes dict d and updates it with the values in dict u.'''
1945 '''It merges all depth levels'''
1946 for k, v in u.iteritems():
1947 if isinstance(v, collections.Mapping):
1948 r = update(d.get(k, {}), v)
1949 d[k] = r
1950 else:
1951 d[k] = u[k]
1952 return d
1953
tiernob3d36742017-03-03 23:51:05 +01001954
tierno7edb6752016-03-21 17:37:52 +01001955def create_instance(mydb, tenant_id, instance_dict):
tiernob3d36742017-03-03 23:51:05 +01001956 # print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
1957 # logger.debug("Creating instance...")
tierno7edb6752016-03-21 17:37:52 +01001958 scenario = instance_dict["scenario"]
tierno42026a02017-02-10 15:13:40 +01001959
tiernobe41e222016-09-02 15:16:13 +02001960 #find main datacenter
1961 myvims = {}
tierno867ffe92017-03-27 12:50:34 +02001962 myvim_threads_id = {}
1963 instance_tasks={}
1964 tasks_to_launch={}
tierno7edb6752016-03-21 17:37:52 +01001965 datacenter = instance_dict.get("datacenter")
tiernobe41e222016-09-02 15:16:13 +02001966 default_datacenter_id, vim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
1967 myvims[default_datacenter_id] = vim
tierno867ffe92017-03-27 12:50:34 +02001968 myvim_threads_id[default_datacenter_id], _ = get_vim_thread(mydb, tenant_id, default_datacenter_id)
1969 tasks_to_launch[myvim_threads_id[default_datacenter_id]] = []
tierno392f2852016-05-13 12:28:55 +02001970 #myvim_tenant = myvim['tenant_id']
tiernobe41e222016-09-02 15:16:13 +02001971# default_datacenter_name = vim['name']
tierno7edb6752016-03-21 17:37:52 +01001972 rollbackList=[]
tierno42026a02017-02-10 15:13:40 +01001973
tiernoae4a8d12016-07-08 12:30:39 +02001974 #print "Checking that the scenario exists and getting the scenario dictionary"
tiernobe41e222016-09-02 15:16:13 +02001975 scenarioDict = mydb.get_scenario(scenario, tenant_id, default_datacenter_id)
tierno42026a02017-02-10 15:13:40 +01001976
garciadeblasbb6a1ed2016-09-30 14:02:09 +00001977 #logger.debug(">>>>>>> Dictionaries before merging")
1978 #logger.debug(">>>>>>> InstanceDict:\n{}".format(yaml.safe_dump(instance_dict,default_flow_style=False, width=256)))
1979 #logger.debug(">>>>>>> ScenarioDict:\n{}".format(yaml.safe_dump(scenarioDict,default_flow_style=False, width=256)))
tierno42026a02017-02-10 15:13:40 +01001980
tiernobe41e222016-09-02 15:16:13 +02001981 scenarioDict['datacenter_id'] = default_datacenter_id
garciadeblas9f8456e2016-09-05 05:02:59 +02001982
tierno7edb6752016-03-21 17:37:52 +01001983 auxNetDict = {} #Auxiliar dictionary. First key:'scenario' or sce_vnf uuid. Second Key: uuid of the net/sce_net. Value: vim_net_id
1984 auxNetDict['scenario'] = {}
tierno42026a02017-02-10 15:13:40 +01001985
1986 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 +01001987 instance_name = instance_dict["name"]
1988 instance_description = instance_dict.get("description")
1989 try:
tiernob3d36742017-03-03 23:51:05 +01001990 # 0 check correct parameters
tiernobe41e222016-09-02 15:16:13 +02001991 for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems():
tiernob3d36742017-03-03 23:51:05 +01001992 found = False
tierno7edb6752016-03-21 17:37:52 +01001993 for scenario_net in scenarioDict['nets']:
tiernobe41e222016-09-02 15:16:13 +02001994 if net_name == scenario_net["name"]:
tierno7edb6752016-03-21 17:37:52 +01001995 found = True
1996 break
1997 if not found:
tiernobe41e222016-09-02 15:16:13 +02001998 raise NfvoException("Invalid scenario network name '{}' at instance:networks".format(net_name), HTTP_Bad_Request)
1999 if "sites" not in net_instance_desc:
2000 net_instance_desc["sites"] = [ {} ]
2001 site_without_datacenter_field = False
2002 for site in net_instance_desc["sites"]:
2003 if site.get("datacenter"):
2004 if site["datacenter"] not in myvims:
2005 #Add this datacenter to myvims
2006 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, site["datacenter"])
2007 myvims[d] = v
tierno867ffe92017-03-27 12:50:34 +02002008 myvim_threads_id[d],_ = get_vim_thread(mydb, tenant_id, site["datacenter"])
2009 tasks_to_launch[myvim_threads_id[d]] = []
tiernob3d36742017-03-03 23:51:05 +01002010 site["datacenter"] = d #change name to id
tiernobe41e222016-09-02 15:16:13 +02002011 else:
2012 if site_without_datacenter_field:
2013 raise NfvoException("Found more than one entries without datacenter field at instance:networks:{}:sites".format(net_name), HTTP_Bad_Request)
2014 site_without_datacenter_field = True
tiernob3d36742017-03-03 23:51:05 +01002015 site["datacenter"] = default_datacenter_id #change name to id
tierno42026a02017-02-10 15:13:40 +01002016
tiernobe41e222016-09-02 15:16:13 +02002017 for vnf_name, vnf_instance_desc in instance_dict.get("vnfs",{}).iteritems():
tierno7edb6752016-03-21 17:37:52 +01002018 found=False
2019 for scenario_vnf in scenarioDict['vnfs']:
tiernobe41e222016-09-02 15:16:13 +02002020 if vnf_name == scenario_vnf['name']:
tierno7edb6752016-03-21 17:37:52 +01002021 found = True
2022 break
2023 if not found:
tiernobe41e222016-09-02 15:16:13 +02002024 raise NfvoException("Invalid vnf name '{}' at instance:vnfs".format(vnf_instance_desc), HTTP_Bad_Request)
2025 if "datacenter" in vnf_instance_desc:
tiernob3d36742017-03-03 23:51:05 +01002026 # Add this datacenter to myvims
tiernobe41e222016-09-02 15:16:13 +02002027 if vnf_instance_desc["datacenter"] not in myvims:
2028 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, vnf_instance_desc["datacenter"])
2029 myvims[d] = v
tierno867ffe92017-03-27 12:50:34 +02002030 myvim_threads_id[d],_ = get_vim_thread(mydb, tenant_id, vnf_instance_desc["datacenter"])
2031 tasks_to_launch[myvim_threads_id[d]] = []
tiernoa2793912016-10-04 08:15:08 +00002032 scenario_vnf["datacenter"] = vnf_instance_desc["datacenter"]
garciadeblas30833382017-01-09 09:46:31 +01002033
tiernoa4e1a6e2016-08-31 14:19:40 +02002034 #0.1 parse cloud-config parameters
tierno36c0b172017-01-12 18:32:28 +01002035 cloud_config = unify_cloud_config(instance_dict.get("cloud-config"), scenarioDict.get("cloud-config"))
garciadeblas9f8456e2016-09-05 05:02:59 +02002036
2037 #0.2 merge instance information into scenario
2038 #Ideally, the operation should be as simple as: update(scenarioDict,instance_dict)
2039 #However, this is not possible yet.
2040 for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems():
2041 for scenario_net in scenarioDict['nets']:
2042 if net_name == scenario_net["name"]:
2043 if 'ip-profile' in net_instance_desc:
tierno455612d2017-05-30 16:40:10 +02002044 # translate from input format to database format
2045 ipprofile_in = net_instance_desc['ip-profile']
2046 ipprofile_db = {}
2047 ipprofile_db['subnet_address'] = ipprofile_in.get('subnet-address')
2048 ipprofile_db['ip_version'] = ipprofile_in.get('ip-version', 'IPv4')
2049 ipprofile_db['gateway_address'] = ipprofile_in.get('gateway-address')
2050 ipprofile_db['dns_address'] = ipprofile_in.get('dns-address')
2051 if isinstance(ipprofile_db['dns_address'], (list, tuple)):
2052 ipprofile_db['dns_address'] = ";".join(ipprofile_db['dns_address'])
2053 if 'dhcp' in ipprofile_in:
2054 ipprofile_db['dhcp_start_address'] = ipprofile_in['dhcp'].get('start-address')
2055 ipprofile_db['dhcp_enabled'] = ipprofile_in['dhcp'].get('enabled', True)
2056 ipprofile_db['dhcp_count'] = ipprofile_in['dhcp'].get('count' )
garciadeblasedca7b32016-09-29 14:01:52 +00002057 if 'ip_profile' not in scenario_net:
tierno455612d2017-05-30 16:40:10 +02002058 scenario_net['ip_profile'] = ipprofile_db
garciadeblasedca7b32016-09-29 14:01:52 +00002059 else:
tierno455612d2017-05-30 16:40:10 +02002060 update(scenario_net['ip_profile'], ipprofile_db)
tiernoe6c58ce2016-09-14 16:02:49 +02002061 for interface in net_instance_desc.get('interfaces', () ):
garciadeblas9f8456e2016-09-05 05:02:59 +02002062 if 'ip_address' in interface:
2063 for vnf in scenarioDict['vnfs']:
2064 if interface['vnf'] == vnf['name']:
2065 for vnf_interface in vnf['interfaces']:
2066 if interface['vnf_interface'] == vnf_interface['external_name']:
2067 vnf_interface['ip_address']=interface['ip_address']
2068
garciadeblasbb6a1ed2016-09-30 14:02:09 +00002069 #logger.debug(">>>>>>>> Merged dictionary")
tierno4319dad2016-09-05 12:11:11 +02002070 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 +02002071
tierno42026a02017-02-10 15:13:40 +01002072
tiernob3d36742017-03-03 23:51:05 +01002073 # 1. Creating new nets (sce_nets) in the VIM"
tierno7edb6752016-03-21 17:37:52 +01002074 for sce_net in scenarioDict['nets']:
tiernobe41e222016-09-02 15:16:13 +02002075 sce_net["vim_id_sites"]={}
tierno7edb6752016-03-21 17:37:52 +01002076 descriptor_net = instance_dict.get("networks",{}).get(sce_net["name"],{})
tiernobe41e222016-09-02 15:16:13 +02002077 net_name = descriptor_net.get("vim-network-name")
2078 auxNetDict['scenario'][sce_net['uuid']] = {}
2079
2080 sites = descriptor_net.get("sites", [ {} ])
2081 for site in sites:
2082 if site.get("datacenter"):
2083 vim = myvims[ site["datacenter"] ]
2084 datacenter_id = site["datacenter"]
tierno867ffe92017-03-27 12:50:34 +02002085 myvim_thread_id = myvim_threads_id[ site["datacenter"] ]
tierno7edb6752016-03-21 17:37:52 +01002086 else:
tiernobe41e222016-09-02 15:16:13 +02002087 vim = myvims[ default_datacenter_id ]
2088 datacenter_id = default_datacenter_id
tierno867ffe92017-03-27 12:50:34 +02002089 myvim_thread_id = myvim_threads_id[default_datacenter_id]
tiernobe41e222016-09-02 15:16:13 +02002090 net_type = sce_net['type']
2091 lookfor_filter = {'admin_state_up': True, 'status': 'ACTIVE'} #'shared': True
2092 if sce_net["external"]:
2093 if not net_name:
tierno42026a02017-02-10 15:13:40 +01002094 net_name = sce_net["name"]
tiernobe41e222016-09-02 15:16:13 +02002095 if "netmap-use" in site or "netmap-create" in site:
2096 create_network = False
2097 lookfor_network = False
2098 if "netmap-use" in site:
2099 lookfor_network = True
2100 if utils.check_valid_uuid(site["netmap-use"]):
2101 filter_text = "scenario id '%s'" % site["netmap-use"]
2102 lookfor_filter["id"] = site["netmap-use"]
tierno42026a02017-02-10 15:13:40 +01002103 else:
tiernobe41e222016-09-02 15:16:13 +02002104 filter_text = "scenario name '%s'" % site["netmap-use"]
2105 lookfor_filter["name"] = site["netmap-use"]
2106 if "netmap-create" in site:
2107 create_network = True
2108 net_vim_name = net_name
2109 if site["netmap-create"]:
2110 net_vim_name = site["netmap-create"]
tierno42026a02017-02-10 15:13:40 +01002111
tiernobe41e222016-09-02 15:16:13 +02002112 elif sce_net['vim_id'] != None:
2113 #there is a netmap at datacenter_nets database #TODO REVISE!!!!
2114 create_network = False
2115 lookfor_network = True
2116 lookfor_filter["id"] = sce_net['vim_id']
2117 filter_text = "vim_id '%s' datacenter_netmap name '%s'. Try to reload vims with datacenter-net-update" % (sce_net['vim_id'], sce_net["name"])
2118 #look for network at datacenter and return error
2119 else:
2120 #There is not a netmap, look at datacenter for a net with this name and create if not found
2121 create_network = True
2122 lookfor_network = True
2123 lookfor_filter["name"] = sce_net["name"]
2124 net_vim_name = sce_net["name"]
2125 filter_text = "scenario name '%s'" % sce_net["name"]
tierno7edb6752016-03-21 17:37:52 +01002126 else:
tiernobe41e222016-09-02 15:16:13 +02002127 if not net_name:
2128 net_name = "%s.%s" %(instance_name, sce_net["name"])
2129 net_name = net_name[:255] #limit length
2130 net_vim_name = net_name
2131 create_network = True
2132 lookfor_network = False
tierno42026a02017-02-10 15:13:40 +01002133
tiernobe41e222016-09-02 15:16:13 +02002134 if lookfor_network:
2135 vim_nets = vim.get_network_list(filter_dict=lookfor_filter)
2136 if len(vim_nets) > 1:
2137 raise NfvoException("More than one candidate VIM network found for " + filter_text, HTTP_Bad_Request )
2138 elif len(vim_nets) == 0:
2139 if not create_network:
2140 raise NfvoException("No candidate VIM network found for " + filter_text, HTTP_Bad_Request )
2141 else:
2142 sce_net["vim_id_sites"][datacenter_id] = vim_nets[0]['id']
tiernobe41e222016-09-02 15:16:13 +02002143 auxNetDict['scenario'][sce_net['uuid']][datacenter_id] = vim_nets[0]['id']
2144 create_network = False
2145 if create_network:
2146 #if network is not external
tiernob3d36742017-03-03 23:51:05 +01002147 task = new_task("new-net", (net_vim_name, net_type, sce_net.get('ip_profile',None)))
tierno867ffe92017-03-27 12:50:34 +02002148 task_id = task["id"]
tiernob3d36742017-03-03 23:51:05 +01002149 instance_tasks[task_id] = task
tierno867ffe92017-03-27 12:50:34 +02002150 tasks_to_launch[myvim_thread_id].append(task)
tiernob3d36742017-03-03 23:51:05 +01002151 #network_id = vim.new_network(net_vim_name, net_type, sce_net.get('ip_profile',None))
2152 sce_net["vim_id_sites"][datacenter_id] = task_id
2153 auxNetDict['scenario'][sce_net['uuid']][datacenter_id] = task_id
2154 rollbackList.append({'what':'network', 'where':'vim', 'vim_id':datacenter_id, 'uuid':task_id})
tierno66345bc2016-09-26 11:37:55 +02002155 sce_net["created"] = True
tierno42026a02017-02-10 15:13:40 +01002156
tiernob3d36742017-03-03 23:51:05 +01002157 # 2. Creating new nets (vnf internal nets) in the VIM"
tierno7edb6752016-03-21 17:37:52 +01002158 #For each vnf net, we create it and we add it to instanceNetlist.
2159 for sce_vnf in scenarioDict['vnfs']:
2160 for net in sce_vnf['nets']:
tiernobe41e222016-09-02 15:16:13 +02002161 if sce_vnf.get("datacenter"):
2162 vim = myvims[ sce_vnf["datacenter"] ]
2163 datacenter_id = sce_vnf["datacenter"]
tierno867ffe92017-03-27 12:50:34 +02002164 myvim_thread_id = myvim_threads_id[ sce_vnf["datacenter"]]
tiernobe41e222016-09-02 15:16:13 +02002165 else:
2166 vim = myvims[ default_datacenter_id ]
2167 datacenter_id = default_datacenter_id
tierno867ffe92017-03-27 12:50:34 +02002168 myvim_thread_id = myvim_threads_id[default_datacenter_id]
tierno7edb6752016-03-21 17:37:52 +01002169 descriptor_net = instance_dict.get("vnfs",{}).get(sce_vnf["name"],{})
2170 net_name = descriptor_net.get("name")
2171 if not net_name:
2172 net_name = "%s.%s" %(instance_name, net["name"])
2173 net_name = net_name[:255] #limit length
2174 net_type = net['type']
tiernob3d36742017-03-03 23:51:05 +01002175 task = new_task("new-net", (net_name, net_type, net.get('ip_profile',None)))
tierno867ffe92017-03-27 12:50:34 +02002176 task_id = task["id"]
tiernob3d36742017-03-03 23:51:05 +01002177 instance_tasks[task_id] = task
tierno867ffe92017-03-27 12:50:34 +02002178 tasks_to_launch[myvim_thread_id].append(task)
tiernob3d36742017-03-03 23:51:05 +01002179 # network_id = vim.new_network(net_name, net_type, net.get('ip_profile',None))
2180 net['vim_id'] = task_id
tierno7edb6752016-03-21 17:37:52 +01002181 if sce_vnf['uuid'] not in auxNetDict:
2182 auxNetDict[sce_vnf['uuid']] = {}
tiernob3d36742017-03-03 23:51:05 +01002183 auxNetDict[sce_vnf['uuid']][net['uuid']] = task_id
2184 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':task_id})
tierno66345bc2016-09-26 11:37:55 +02002185 net["created"] = True
2186
tierno42026a02017-02-10 15:13:40 +01002187
tiernoae4a8d12016-07-08 12:30:39 +02002188 #print "auxNetDict:"
2189 #print yaml.safe_dump(auxNetDict, indent=4, default_flow_style=False)
tierno42026a02017-02-10 15:13:40 +01002190
tiernob3d36742017-03-03 23:51:05 +01002191 # 3. Creating new vm instances in the VIM
tiernoae4a8d12016-07-08 12:30:39 +02002192 #myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict)
tierno7edb6752016-03-21 17:37:52 +01002193 for sce_vnf in scenarioDict['vnfs']:
tiernobe41e222016-09-02 15:16:13 +02002194 if sce_vnf.get("datacenter"):
2195 vim = myvims[ sce_vnf["datacenter"] ]
tierno867ffe92017-03-27 12:50:34 +02002196 myvim_thread_id = myvim_threads_id[ sce_vnf["datacenter"] ]
tiernobe41e222016-09-02 15:16:13 +02002197 datacenter_id = sce_vnf["datacenter"]
2198 else:
2199 vim = myvims[ default_datacenter_id ]
tierno867ffe92017-03-27 12:50:34 +02002200 myvim_thread_id = myvim_threads_id[ default_datacenter_id ]
tiernobe41e222016-09-02 15:16:13 +02002201 datacenter_id = default_datacenter_id
2202 sce_vnf["datacenter_id"] = datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002203 i = 0
2204 for vm in sce_vnf['vms']:
2205 i += 1
2206 myVMDict = {}
tiernoae65a482016-11-24 16:20:05 +01002207 myVMDict['name'] = "{}.{}.{}".format(instance_name,sce_vnf['name'],chr(96+i))
tierno7edb6752016-03-21 17:37:52 +01002208 myVMDict['description'] = myVMDict['name'][0:99]
2209# if not startvms:
2210# myVMDict['start'] = "no"
2211 myVMDict['name'] = myVMDict['name'][0:255] #limit name length
2212 #create image at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02002213 image_dict = mydb.get_table_by_uuid_name("images", vm['image_id'])
tierno5e91eb82016-10-04 09:39:07 +00002214 image_id = create_or_use_image(mydb, {datacenter_id: vim}, image_dict, [], True)
tierno7edb6752016-03-21 17:37:52 +01002215 vm['vim_image_id'] = image_id
tierno42026a02017-02-10 15:13:40 +01002216
tierno7edb6752016-03-21 17:37:52 +01002217 #create flavor at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02002218 flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id'])
tierno7edb6752016-03-21 17:37:52 +01002219 if flavor_dict['extended']!=None:
2220 flavor_dict['extended']= yaml.load(flavor_dict['extended'])
montesmoreno0c8def02016-12-22 12:16:23 +00002221 flavor_id = create_or_use_flavor(mydb, {datacenter_id: vim}, flavor_dict, rollbackList, True)
2222
montesmoreno0c8def02016-12-22 12:16:23 +00002223 #Obtain information for additional disks
2224 extended_flavor_dict = mydb.get_rows(FROM='datacenters_flavors', SELECT=('extended',), WHERE={'vim_id': flavor_id})
2225 if not extended_flavor_dict:
2226 raise NfvoException("flavor '{}' not found".format(flavor_id), HTTP_Not_Found)
2227 return
2228
2229 #extended_flavor_dict_yaml = yaml.load(extended_flavor_dict[0])
2230 myVMDict['disks'] = None
2231 extended_info = extended_flavor_dict[0]['extended']
2232 if extended_info != None:
2233 extended_flavor_dict_yaml = yaml.load(extended_info)
2234 if 'disks' in extended_flavor_dict_yaml:
2235 myVMDict['disks'] = extended_flavor_dict_yaml['disks']
2236
tierno7edb6752016-03-21 17:37:52 +01002237 vm['vim_flavor_id'] = flavor_id
tierno7edb6752016-03-21 17:37:52 +01002238 myVMDict['imageRef'] = vm['vim_image_id']
2239 myVMDict['flavorRef'] = vm['vim_flavor_id']
2240 myVMDict['networks'] = []
tiernob3d36742017-03-03 23:51:05 +01002241 task_depends = {}
tiernoa2793912016-10-04 08:15:08 +00002242 #TODO ALF. connect_mgmt_interfaces. Connect management interfaces if this is true
tierno7edb6752016-03-21 17:37:52 +01002243 for iface in vm['interfaces']:
2244 netDict = {}
2245 if iface['type']=="data":
2246 netDict['type'] = iface['model']
2247 elif "model" in iface and iface["model"]!=None:
2248 netDict['model']=iface['model']
2249 #TODO in future, remove this because mac_address will not be set, and the type of PV,VF is obtained from iterface table model
2250 #discover type of interface looking at flavor
2251 for numa in flavor_dict.get('extended',{}).get('numas',[]):
2252 for flavor_iface in numa.get('interfaces',[]):
2253 if flavor_iface.get('name') == iface['internal_name']:
2254 if flavor_iface['dedicated'] == 'yes':
2255 netDict['type']="PF" #passthrough
2256 elif flavor_iface['dedicated'] == 'no':
2257 netDict['type']="VF" #siov
2258 elif flavor_iface['dedicated'] == 'yes:sriov':
2259 netDict['type']="VFnotShared" #sriov but only one sriov on the PF
2260 netDict["mac_address"] = flavor_iface.get("mac_address")
2261 break;
2262 netDict["use"]=iface['type']
2263 if netDict["use"]=="data" and not netDict.get("type"):
2264 #print "netDict", netDict
2265 #print "iface", iface
2266 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'])
2267 if flavor_dict.get('extended')==None:
tiernoae4a8d12016-07-08 12:30:39 +02002268 raise NfvoException(e_text + "After database migration some information is not available. \
2269 Try to delete and create the scenarios and VNFs again", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002270 else:
tiernoae4a8d12016-07-08 12:30:39 +02002271 raise NfvoException(e_text, HTTP_Internal_Server_Error)
tierno7edb6752016-03-21 17:37:52 +01002272 if netDict["use"]=="mgmt" or netDict["use"]=="bridge":
2273 netDict["type"]="virtual"
2274 if "vpci" in iface and iface["vpci"] is not None:
2275 netDict['vpci'] = iface['vpci']
2276 if "mac" in iface and iface["mac"] is not None:
2277 netDict['mac_address'] = iface['mac']
montesmoreno2a1fc4e2017-01-09 16:46:04 +00002278 if "port-security" in iface and iface["port-security"] is not None:
2279 netDict['port_security'] = iface['port-security']
2280 if "floating-ip" in iface and iface["floating-ip"] is not None:
2281 netDict['floating_ip'] = iface['floating-ip']
tierno7edb6752016-03-21 17:37:52 +01002282 netDict['name'] = iface['internal_name']
2283 if iface['net_id'] is None:
2284 for vnf_iface in sce_vnf["interfaces"]:
tiernof97fd272016-07-11 14:32:37 +02002285 #print iface
2286 #print vnf_iface
tierno7edb6752016-03-21 17:37:52 +01002287 if vnf_iface['interface_id']==iface['uuid']:
tiernobe41e222016-09-02 15:16:13 +02002288 netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ][datacenter_id]
tierno7edb6752016-03-21 17:37:52 +01002289 break
2290 else:
2291 netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ]
tierno867ffe92017-03-27 12:50:34 +02002292 if netDict.get('net_id') and is_task_id(netDict['net_id']):
tiernob3d36742017-03-03 23:51:05 +01002293 task_depends[netDict['net_id']] = instance_tasks[netDict['net_id']]
tierno7edb6752016-03-21 17:37:52 +01002294 #skip bridge ifaces not connected to any net
2295 #if 'net_id' not in netDict or netDict['net_id']==None:
2296 # continue
2297 myVMDict['networks'].append(netDict)
tiernoae4a8d12016-07-08 12:30:39 +02002298 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
2299 #print myVMDict['name']
2300 #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
2301 #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
2302 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
tierno36c0b172017-01-12 18:32:28 +01002303 if vm.get("boot_data"):
2304 cloud_config_vm = unify_cloud_config(vm["boot_data"], cloud_config)
2305 else:
2306 cloud_config_vm = cloud_config
tiernob3d36742017-03-03 23:51:05 +01002307 task = new_task("new-vm", (myVMDict['name'], myVMDict['description'], myVMDict.get('start', None),
2308 myVMDict['imageRef'], myVMDict['flavorRef'], myVMDict['networks'],
2309 cloud_config_vm, myVMDict['disks']), depends=task_depends)
tierno867ffe92017-03-27 12:50:34 +02002310 instance_tasks[task["id"]] = task
2311 tasks_to_launch[myvim_thread_id].append(task)
2312 vm_id = task["id"]
tierno7edb6752016-03-21 17:37:52 +01002313 vm['vim_id'] = vm_id
2314 rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id})
2315 #put interface uuid back to scenario[vnfs][vms[[interfaces]
2316 for net in myVMDict['networks']:
2317 if "vim_id" in net:
2318 for iface in vm['interfaces']:
2319 if net["name"]==iface["internal_name"]:
2320 iface["vim_id"]=net["vim_id"]
2321 break
tierno867ffe92017-03-27 12:50:34 +02002322 scenarioDict["datacenter2tenant"] = myvim_threads_id
tiernoa2793912016-10-04 08:15:08 +00002323 logger.debug("create_instance Deployment done scenarioDict: %s",
2324 yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False) )
tiernof97fd272016-07-11 14:32:37 +02002325 instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_name, instance_description, scenarioDict)
tierno867ffe92017-03-27 12:50:34 +02002326 for myvim_thread_id,task_list in tasks_to_launch.items():
2327 for task in task_list:
2328 vim_threads["running"][myvim_thread_id].insert_task(task)
2329
2330 global_instance_tasks[instance_id] = instance_tasks
2331 # Update database with those ended instance_tasks
2332 # for task in instance_tasks.values():
2333 # if task["status"] == "ok":
2334 # if task["name"] == "new-vm":
2335 # mydb.update_rows("instance_vms", UPDATE={"vim_vm_id": task["result"]},
2336 # WHERE={"vim_vm_id": task["id"]})
2337 # elif task["name"] == "new-net":
2338 # mydb.update_rows("instance_nets", UPDATE={"vim_net_id": task["result"]},
2339 # WHERE={"vim_net_id": task["id"]})
tiernof97fd272016-07-11 14:32:37 +02002340 return mydb.get_instance_scenario(instance_id)
2341 except (NfvoException, vimconn.vimconnException,db_base_Exception) as e:
tiernobe41e222016-09-02 15:16:13 +02002342 message = rollback(mydb, myvims, rollbackList)
tiernof97fd272016-07-11 14:32:37 +02002343 if isinstance(e, db_base_Exception):
2344 error_text = "database Exception"
2345 elif isinstance(e, vimconn.vimconnException):
2346 error_text = "VIM Exception"
2347 else:
2348 error_text = "Exception"
2349 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
2350 #logger.error("create_instance: %s", error_text)
2351 raise NfvoException(error_text, e.http_code)
tierno42026a02017-02-10 15:13:40 +01002352
tiernob3d36742017-03-03 23:51:05 +01002353
tierno7edb6752016-03-21 17:37:52 +01002354def delete_instance(mydb, tenant_id, instance_id):
tiernoae4a8d12016-07-08 12:30:39 +02002355 #print "Checking that the instance_id exists and getting the instance dictionary"
tiernof97fd272016-07-11 14:32:37 +02002356 instanceDict = mydb.get_instance_scenario(instance_id, tenant_id)
tiernoae4a8d12016-07-08 12:30:39 +02002357 #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +01002358 tenant_id = instanceDict["tenant_id"]
tiernoae4a8d12016-07-08 12:30:39 +02002359 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tierno7edb6752016-03-21 17:37:52 +01002360
tiernoa2793912016-10-04 08:15:08 +00002361 #1. Delete from Database
tiernof97fd272016-07-11 14:32:37 +02002362 message = mydb.delete_instance_scenario(instance_id, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01002363
2364 #2. delete from VIM
tiernoa2793912016-10-04 08:15:08 +00002365 error_msg = ""
tiernob3d36742017-03-03 23:51:05 +01002366 myvims = {}
2367 myvim_threads = {}
tierno7edb6752016-03-21 17:37:52 +01002368
2369 #2.1 deleting VMs
2370 #vm_fail_list=[]
2371 for sce_vnf in instanceDict['vnfs']:
tiernoa2793912016-10-04 08:15:08 +00002372 datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
2373 if datacenter_key not in myvims:
tiernob3d36742017-03-03 23:51:05 +01002374 try:
tierno867ffe92017-03-27 12:50:34 +02002375 _,myvim_thread = get_vim_thread(mydb, tenant_id, sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
tiernob3d36742017-03-03 23:51:05 +01002376 except NfvoException as e:
2377 logger.error(str(e))
2378 myvim_thread = None
2379 myvim_threads[datacenter_key] = myvim_thread
tiernoa2793912016-10-04 08:15:08 +00002380 vims = get_vim(mydb, tenant_id, datacenter_id=sce_vnf["datacenter_id"],
2381 datacenter_tenant_id=sce_vnf["datacenter_tenant_id"])
2382 if len(vims) == 0:
2383 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"],
2384 sce_vnf["datacenter_tenant_id"]))
2385 myvims[datacenter_key] = None
2386 else:
2387 myvims[datacenter_key] = vims.values()[0]
2388 myvim = myvims[datacenter_key]
tiernob3d36742017-03-03 23:51:05 +01002389 myvim_thread = myvim_threads[datacenter_key]
tierno7edb6752016-03-21 17:37:52 +01002390 for vm in sce_vnf['vms']:
tiernoa2793912016-10-04 08:15:08 +00002391 if not myvim:
2392 error_msg += "\n VM id={} cannot be deleted because datacenter={} not found".format(vm['vim_vm_id'], sce_vnf["datacenter_id"])
2393 continue
tiernoae4a8d12016-07-08 12:30:39 +02002394 try:
tiernob3d36742017-03-03 23:51:05 +01002395 task=None
2396 if is_task_id(vm['vim_vm_id']):
2397 task_id = vm['vim_vm_id']
tierno867ffe92017-03-27 12:50:34 +02002398 old_task = global_instance_tasks[instance_id].get(task_id)
tiernob3d36742017-03-03 23:51:05 +01002399 if not old_task:
2400 error_msg += "\n VM was scheduled for create, but task {} is not found".format(task_id)
2401 continue
2402 with task_lock:
2403 if old_task["status"] == "enqueued":
2404 old_task["status"] = "deleted"
2405 elif old_task["status"] == "error":
2406 continue
2407 elif old_task["status"] == "processing":
tierno867ffe92017-03-27 12:50:34 +02002408 task = new_task("del-vm", (task_id, vm["interfaces"]), depends={task_id: old_task})
tiernob3d36742017-03-03 23:51:05 +01002409 else: #ok
tierno867ffe92017-03-27 12:50:34 +02002410 task = new_task("del-vm", (old_task["result"], vm["interfaces"]))
tiernob3d36742017-03-03 23:51:05 +01002411 else:
tierno867ffe92017-03-27 12:50:34 +02002412 task = new_task("del-vm", (vm['vim_vm_id'], vm["interfaces"]) )
tiernob3d36742017-03-03 23:51:05 +01002413 if task:
2414 myvim_thread.insert_task(task)
tiernoae4a8d12016-07-08 12:30:39 +02002415 except vimconn.vimconnNotFoundException as e:
tiernoa2793912016-10-04 08:15:08 +00002416 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 +02002417 logger.warn("VM instance '%s'uuid '%s', VIM id '%s', from VNF_id '%s' not found",
2418 vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id'])
2419 except vimconn.vimconnException as e:
tiernoa2793912016-10-04 08:15:08 +00002420 error_msg+="\n VM VIM_id={} at datacenter={} Error: {} {}".format(vm['vim_vm_id'], sce_vnf["datacenter_id"], e.http_code, str(e))
2421 logger.error("Error %d deleting VM instance '%s'uuid '%s', VIM_id '%s', from VNF_id '%s': %s",
tiernoae4a8d12016-07-08 12:30:39 +02002422 e.http_code, vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id'], str(e))
tierno42026a02017-02-10 15:13:40 +01002423
tierno7edb6752016-03-21 17:37:52 +01002424 #2.2 deleting NETS
2425 #net_fail_list=[]
2426 for net in instanceDict['nets']:
tierno66345bc2016-09-26 11:37:55 +02002427 if not net['created']:
tierno7edb6752016-03-21 17:37:52 +01002428 continue #skip not created nets
tiernoa2793912016-10-04 08:15:08 +00002429 datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"])
2430 if datacenter_key not in myvims:
tiernob3d36742017-03-03 23:51:05 +01002431 try:
tierno867ffe92017-03-27 12:50:34 +02002432 _,myvim_thread = get_vim_thread(mydb, tenant_id, sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
tiernob3d36742017-03-03 23:51:05 +01002433 except NfvoException as e:
2434 logger.error(str(e))
2435 myvim_thread = None
2436 myvim_threads[datacenter_key] = myvim_thread
tiernoa2793912016-10-04 08:15:08 +00002437 vims = get_vim(mydb, tenant_id, datacenter_id=net["datacenter_id"],
2438 datacenter_tenant_id=net["datacenter_tenant_id"])
2439 if len(vims) == 0:
2440 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]))
2441 myvims[datacenter_key] = None
2442 else:
2443 myvims[datacenter_key] = vims.values()[0]
2444 myvim = myvims[datacenter_key]
tiernob3d36742017-03-03 23:51:05 +01002445 myvim_thread = myvim_threads[datacenter_key]
tiernoa2793912016-10-04 08:15:08 +00002446
tierno7edb6752016-03-21 17:37:52 +01002447 if not myvim:
tiernoa2793912016-10-04 08:15:08 +00002448 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 +01002449 continue
tiernoae4a8d12016-07-08 12:30:39 +02002450 try:
tiernob3d36742017-03-03 23:51:05 +01002451 task = None
2452 if is_task_id(net['vim_net_id']):
2453 task_id = net['vim_net_id']
tierno867ffe92017-03-27 12:50:34 +02002454 old_task = global_instance_tasks[instance_id].get(task_id)
tiernob3d36742017-03-03 23:51:05 +01002455 if not old_task:
2456 error_msg += "\n NET was scheduled for create, but task {} is not found".format(task_id)
2457 continue
2458 with task_lock:
2459 if old_task["status"] == "enqueued":
2460 old_task["status"] = "deleted"
2461 elif old_task["status"] == "error":
2462 continue
2463 elif old_task["status"] == "processing":
2464 task = new_task("del-net", task_id, depends={task_id: old_task})
2465 else: # ok
2466 task = new_task("del-net", old_task["result"])
2467 else:
tierno867ffe92017-03-27 12:50:34 +02002468 task = new_task("del-net", (net['vim_net_id'], net['sdn_net_id']))
tiernob3d36742017-03-03 23:51:05 +01002469 if task:
2470 myvim_thread.insert_task(task)
tiernoae4a8d12016-07-08 12:30:39 +02002471 except vimconn.vimconnNotFoundException as e:
tiernob3d36742017-03-03 23:51:05 +01002472 error_msg += "\n NET VIM_id={} not found at datacenter={}".format(net['vim_net_id'], net["datacenter_id"])
tiernoa2793912016-10-04 08:15:08 +00002473 logger.warn("NET '%s', VIM_id '%s', from VNF_net_id '%s' not found",
tiernob3d36742017-03-03 23:51:05 +01002474 net['uuid'], net['vim_net_id'], str(net['vnf_net_id']))
tiernoae4a8d12016-07-08 12:30:39 +02002475 except vimconn.vimconnException as e:
tiernob3d36742017-03-03 23:51:05 +01002476 error_msg += "\n NET VIM_id={} at datacenter={} Error: {} {}".format(net['vim_net_id'],
2477 net["datacenter_id"],
2478 e.http_code, str(e))
tiernoa2793912016-10-04 08:15:08 +00002479 logger.error("Error %d deleting NET '%s', VIM_id '%s', from VNF_net_id '%s': %s",
tiernob3d36742017-03-03 23:51:05 +01002480 e.http_code, net['uuid'], net['vim_net_id'], str(net['vnf_net_id']), str(e))
2481 if len(error_msg) > 0:
tiernof97fd272016-07-11 14:32:37 +02002482 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 +01002483 else:
tiernof97fd272016-07-11 14:32:37 +02002484 return 'instance ' + message + ' deleted'
tierno7edb6752016-03-21 17:37:52 +01002485
tiernob3d36742017-03-03 23:51:05 +01002486
tierno7edb6752016-03-21 17:37:52 +01002487def refresh_instance(mydb, nfvo_tenant, instanceDict, datacenter=None, vim_tenant=None):
2488 '''Refreshes a scenario instance. It modifies instanceDict'''
2489 '''Returns:
2490 - 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
2491 - error_msg
2492 '''
tierno867ffe92017-03-27 12:50:34 +02002493 # # Assumption: nfvo_tenant and instance_id were checked before entering into this function
2494 # #print "nfvo.refresh_instance begins"
2495 # #print json.dumps(instanceDict, indent=4)
2496 #
2497 # #print "Getting the VIM URL and the VIM tenant_id"
2498 # myvims={}
2499 #
2500 # # 1. Getting VIM vm and net list
2501 # vms_updated = [] #List of VM instance uuids in openmano that were updated
2502 # vms_notupdated=[]
2503 # vm_list = {}
2504 # for sce_vnf in instanceDict['vnfs']:
2505 # datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
2506 # if datacenter_key not in vm_list:
2507 # vm_list[datacenter_key] = []
2508 # if datacenter_key not in myvims:
2509 # vims = get_vim(mydb, nfvo_tenant, datacenter_id=sce_vnf["datacenter_id"],
2510 # datacenter_tenant_id=sce_vnf["datacenter_tenant_id"])
2511 # if len(vims) == 0:
2512 # logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"]))
2513 # myvims[datacenter_key] = None
2514 # else:
2515 # myvims[datacenter_key] = vims.values()[0]
2516 # for vm in sce_vnf['vms']:
2517 # vm_list[datacenter_key].append(vm['vim_vm_id'])
2518 # vms_notupdated.append(vm["uuid"])
2519 #
2520 # nets_updated = [] #List of VM instance uuids in openmano that were updated
2521 # nets_notupdated=[]
2522 # net_list = {}
2523 # for net in instanceDict['nets']:
2524 # datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"])
2525 # if datacenter_key not in net_list:
2526 # net_list[datacenter_key] = []
2527 # if datacenter_key not in myvims:
2528 # vims = get_vim(mydb, nfvo_tenant, datacenter_id=net["datacenter_id"],
2529 # datacenter_tenant_id=net["datacenter_tenant_id"])
2530 # if len(vims) == 0:
2531 # logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]))
2532 # myvims[datacenter_key] = None
2533 # else:
2534 # myvims[datacenter_key] = vims.values()[0]
2535 #
2536 # net_list[datacenter_key].append(net['vim_net_id'])
2537 # nets_notupdated.append(net["uuid"])
2538 #
2539 # # 1. Getting the status of all VMs
2540 # vm_dict={}
2541 # for datacenter_key in myvims:
2542 # if not vm_list.get(datacenter_key):
2543 # continue
2544 # failed = True
2545 # failed_message=""
2546 # if not myvims[datacenter_key]:
2547 # failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])
2548 # else:
2549 # try:
2550 # vm_dict.update(myvims[datacenter_key].refresh_vms_status(vm_list[datacenter_key]) )
2551 # failed = False
2552 # except vimconn.vimconnException as e:
2553 # logger.error("VIM exception %s %s", type(e).__name__, str(e))
2554 # failed_message = str(e)
2555 # if failed:
2556 # for vm in vm_list[datacenter_key]:
2557 # vm_dict[vm] = {'status': "VIM_ERROR", 'error_msg': failed_message}
2558 #
2559 # # 2. Update the status of VMs in the instanceDict, while collects the VMs whose status changed
2560 # for sce_vnf in instanceDict['vnfs']:
2561 # for vm in sce_vnf['vms']:
2562 # vm_id = vm['vim_vm_id']
2563 # interfaces = vm_dict[vm_id].pop('interfaces', [])
2564 # #2.0 look if contain manamgement interface, and if not change status from ACTIVE:NoMgmtIP to ACTIVE
2565 # has_mgmt_iface = False
2566 # for iface in vm["interfaces"]:
2567 # if iface["type"]=="mgmt":
2568 # has_mgmt_iface = True
2569 # if vm_dict[vm_id]['status'] == "ACTIVE:NoMgmtIP" and not has_mgmt_iface:
2570 # vm_dict[vm_id]['status'] = "ACTIVE"
2571 # if vm_dict[vm_id].get('error_msg') and len(vm_dict[vm_id]['error_msg']) >= 1024:
2572 # vm_dict[vm_id]['error_msg'] = vm_dict[vm_id]['error_msg'][:516] + " ... " + vm_dict[vm_id]['error_msg'][-500:]
2573 # 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'):
2574 # vm['status'] = vm_dict[vm_id]['status']
2575 # vm['error_msg'] = vm_dict[vm_id].get('error_msg')
2576 # vm['vim_info'] = vm_dict[vm_id].get('vim_info')
2577 # # 2.1. Update in openmano DB the VMs whose status changed
2578 # try:
2579 # updates = mydb.update_rows('instance_vms', UPDATE=vm_dict[vm_id], WHERE={'uuid':vm["uuid"]})
2580 # vms_notupdated.remove(vm["uuid"])
2581 # if updates>0:
2582 # vms_updated.append(vm["uuid"])
2583 # except db_base_Exception as e:
2584 # logger.error("nfvo.refresh_instance error database update: %s", str(e))
2585 # # 2.2. Update in openmano DB the interface VMs
2586 # for interface in interfaces:
2587 # #translate from vim_net_id to instance_net_id
2588 # network_id_list=[]
2589 # for net in instanceDict['nets']:
2590 # if net["vim_net_id"] == interface["vim_net_id"]:
2591 # network_id_list.append(net["uuid"])
2592 # if not network_id_list:
2593 # continue
2594 # del interface["vim_net_id"]
2595 # try:
2596 # for network_id in network_id_list:
2597 # mydb.update_rows('instance_interfaces', UPDATE=interface, WHERE={'instance_vm_id':vm["uuid"], "instance_net_id":network_id})
2598 # except db_base_Exception as e:
2599 # logger.error( "nfvo.refresh_instance error with vm=%s, interface_net_id=%s", vm["uuid"], network_id)
2600 #
2601 # # 3. Getting the status of all nets
2602 # net_dict = {}
2603 # for datacenter_key in myvims:
2604 # if not net_list.get(datacenter_key):
2605 # continue
2606 # failed = True
2607 # failed_message = ""
2608 # if not myvims[datacenter_key]:
2609 # failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])
2610 # else:
2611 # try:
2612 # net_dict.update(myvims[datacenter_key].refresh_nets_status(net_list[datacenter_key]) )
2613 # failed = False
2614 # except vimconn.vimconnException as e:
2615 # logger.error("VIM exception %s %s", type(e).__name__, str(e))
2616 # failed_message = str(e)
2617 # if failed:
2618 # for net in net_list[datacenter_key]:
2619 # net_dict[net] = {'status': "VIM_ERROR", 'error_msg': failed_message}
2620 #
2621 # # 4. Update the status of nets in the instanceDict, while collects the nets whose status changed
2622 # # TODO: update nets inside a vnf
2623 # for net in instanceDict['nets']:
2624 # net_id = net['vim_net_id']
2625 # if net_dict[net_id].get('error_msg') and len(net_dict[net_id]['error_msg']) >= 1024:
2626 # net_dict[net_id]['error_msg'] = net_dict[net_id]['error_msg'][:516] + " ... " + net_dict[vm_id]['error_msg'][-500:]
2627 # 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'):
2628 # net['status'] = net_dict[net_id]['status']
2629 # net['error_msg'] = net_dict[net_id].get('error_msg')
2630 # net['vim_info'] = net_dict[net_id].get('vim_info')
2631 # # 5.1. Update in openmano DB the nets whose status changed
2632 # try:
2633 # updated = mydb.update_rows('instance_nets', UPDATE=net_dict[net_id], WHERE={'uuid':net["uuid"]})
2634 # nets_notupdated.remove(net["uuid"])
2635 # if updated>0:
2636 # nets_updated.append(net["uuid"])
2637 # except db_base_Exception as e:
2638 # logger.error("nfvo.refresh_instance error database update: %s", str(e))
2639 #
2640 # # Returns appropriate output
2641 # #print "nfvo.refresh_instance finishes"
2642 # logger.debug("VMs updated in the database: %s; nets updated in the database %s; VMs not updated: %s; nets not updated: %s",
2643 # str(vms_updated), str(nets_updated), str(vms_notupdated), str(nets_notupdated))
tierno7edb6752016-03-21 17:37:52 +01002644 instance_id = instanceDict['uuid']
tierno867ffe92017-03-27 12:50:34 +02002645 # if len(vms_notupdated)+len(nets_notupdated)>0:
2646 # error_msg = "VMs not updated: " + str(vms_notupdated) + "; nets not updated: " + str(nets_notupdated)
2647 # return len(vms_notupdated)+len(nets_notupdated), 'Scenario instance ' + instance_id + ' refreshed but some elements could not be updated in the database: ' + error_msg
tierno42026a02017-02-10 15:13:40 +01002648
tiernoae4a8d12016-07-08 12:30:39 +02002649 return 0, 'Scenario instance ' + instance_id + ' refreshed.'
tierno7edb6752016-03-21 17:37:52 +01002650
tiernob3d36742017-03-03 23:51:05 +01002651
tierno7edb6752016-03-21 17:37:52 +01002652def instance_action(mydb,nfvo_tenant,instance_id, action_dict):
tiernoae4a8d12016-07-08 12:30:39 +02002653 #print "Checking that the instance_id exists and getting the instance dictionary"
tiernof97fd272016-07-11 14:32:37 +02002654 instanceDict = mydb.get_instance_scenario(instance_id, nfvo_tenant)
tierno7edb6752016-03-21 17:37:52 +01002655 #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
2656
tiernoae4a8d12016-07-08 12:30:39 +02002657 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tiernof97fd272016-07-11 14:32:37 +02002658 vims = get_vim(mydb, nfvo_tenant, instanceDict['datacenter_id'])
2659 if len(vims) == 0:
2660 raise NfvoException("datacenter '{}' not found".format(str(instanceDict['datacenter_id'])), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002661 myvim = vims.values()[0]
tierno42026a02017-02-10 15:13:40 +01002662
tierno7edb6752016-03-21 17:37:52 +01002663
2664 input_vnfs = action_dict.pop("vnfs", [])
2665 input_vms = action_dict.pop("vms", [])
2666 action_over_all = True if len(input_vnfs)==0 and len (input_vms)==0 else False
2667 vm_result = {}
2668 vm_error = 0
2669 vm_ok = 0
2670 for sce_vnf in instanceDict['vnfs']:
2671 for vm in sce_vnf['vms']:
2672 if not action_over_all:
2673 if sce_vnf['uuid'] not in input_vnfs and sce_vnf['vnf_name'] not in input_vnfs and \
2674 vm['uuid'] not in input_vms and vm['name'] not in input_vms:
2675 continue
tiernoae4a8d12016-07-08 12:30:39 +02002676 try:
2677 data = myvim.action_vminstance(vm['vim_vm_id'], action_dict)
tierno7edb6752016-03-21 17:37:52 +01002678 if "console" in action_dict:
tierno20fc2a22016-08-19 17:02:35 +02002679 if not global_config["http_console_proxy"]:
2680 vm_result[ vm['uuid'] ] = {"vim_result": 200,
2681 "description": "{protocol}//{ip}:{port}/{suffix}".format(
2682 protocol=data["protocol"],
2683 ip = data["server"],
2684 port = data["port"],
2685 suffix = data["suffix"]),
2686 "name":vm['name']
2687 }
2688 vm_ok +=1
2689 elif data["server"]=="127.0.0.1" or data["server"]=="localhost":
tierno7edb6752016-03-21 17:37:52 +01002690 vm_result[ vm['uuid'] ] = {"vim_result": -HTTP_Unauthorized,
2691 "description": "this console is only reachable by local interface",
2692 "name":vm['name']
2693 }
2694 vm_error+=1
tierno20fc2a22016-08-19 17:02:35 +02002695 else:
tierno7edb6752016-03-21 17:37:52 +01002696 #print "console data", data
tierno42026a02017-02-10 15:13:40 +01002697 try:
tierno20fc2a22016-08-19 17:02:35 +02002698 console_thread = create_or_use_console_proxy_thread(data["server"], data["port"])
2699 vm_result[ vm['uuid'] ] = {"vim_result": 200,
2700 "description": "{protocol}//{ip}:{port}/{suffix}".format(
2701 protocol=data["protocol"],
2702 ip = global_config["http_console_host"],
2703 port = console_thread.port,
2704 suffix = data["suffix"]),
2705 "name":vm['name']
2706 }
2707 vm_ok +=1
2708 except NfvoException as e:
2709 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
2710 vm_error+=1
2711
tierno7edb6752016-03-21 17:37:52 +01002712 else:
tiernof97fd272016-07-11 14:32:37 +02002713 vm_result[ vm['uuid'] ] = {"vim_result": 200, "description": "ok", "name":vm['name']}
tierno7edb6752016-03-21 17:37:52 +01002714 vm_ok +=1
tiernoae4a8d12016-07-08 12:30:39 +02002715 except vimconn.vimconnException as e:
2716 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
2717 vm_error+=1
tierno7edb6752016-03-21 17:37:52 +01002718
2719 if vm_ok==0: #all goes wrong
tierno351863c2016-07-23 01:46:03 +02002720 return vm_result
tierno7edb6752016-03-21 17:37:52 +01002721 else:
tierno351863c2016-07-23 01:46:03 +02002722 return vm_result
tierno42026a02017-02-10 15:13:40 +01002723
tiernob3d36742017-03-03 23:51:05 +01002724
tierno7edb6752016-03-21 17:37:52 +01002725def create_or_use_console_proxy_thread(console_server, console_port):
2726 #look for a non-used port
2727 console_thread_key = console_server + ":" + str(console_port)
2728 if console_thread_key in global_config["console_thread"]:
2729 #global_config["console_thread"][console_thread_key].start_timeout()
tiernof97fd272016-07-11 14:32:37 +02002730 return global_config["console_thread"][console_thread_key]
tierno42026a02017-02-10 15:13:40 +01002731
tierno7edb6752016-03-21 17:37:52 +01002732 for port in global_config["console_port_iterator"]():
tierno20fc2a22016-08-19 17:02:35 +02002733 #print "create_or_use_console_proxy_thread() port:", port
tierno7edb6752016-03-21 17:37:52 +01002734 if port in global_config["console_ports"]:
2735 continue
2736 try:
2737 clithread = cli.ConsoleProxyThread(global_config['http_host'], port, console_server, console_port)
2738 clithread.start()
2739 global_config["console_thread"][console_thread_key] = clithread
2740 global_config["console_ports"][port] = console_thread_key
tiernof97fd272016-07-11 14:32:37 +02002741 return clithread
tierno7edb6752016-03-21 17:37:52 +01002742 except cli.ConsoleProxyExceptionPortUsed as e:
2743 #port used, try with onoher
2744 continue
2745 except cli.ConsoleProxyException as e:
tiernof97fd272016-07-11 14:32:37 +02002746 raise NfvoException(str(e), HTTP_Bad_Request)
2747 raise NfvoException("Not found any free 'http_console_ports'", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002748
tiernob3d36742017-03-03 23:51:05 +01002749
tierno7edb6752016-03-21 17:37:52 +01002750def check_tenant(mydb, tenant_id):
2751 '''check that tenant exists at database'''
tiernof97fd272016-07-11 14:32:37 +02002752 tenant = mydb.get_rows(FROM='nfvo_tenants', SELECT=('uuid',), WHERE={'uuid': tenant_id})
2753 if not tenant:
2754 raise NfvoException("tenant '{}' not found".format(tenant_id), HTTP_Not_Found)
2755 return
tierno7edb6752016-03-21 17:37:52 +01002756
tiernob3d36742017-03-03 23:51:05 +01002757
tierno7edb6752016-03-21 17:37:52 +01002758def new_tenant(mydb, tenant_dict):
tiernof97fd272016-07-11 14:32:37 +02002759 tenant_id = mydb.new_row("nfvo_tenants", tenant_dict, add_uuid=True)
2760 return tenant_id
tierno7edb6752016-03-21 17:37:52 +01002761
tiernob3d36742017-03-03 23:51:05 +01002762
tierno7edb6752016-03-21 17:37:52 +01002763def delete_tenant(mydb, tenant):
2764 #get nfvo_tenant info
tierno42026a02017-02-10 15:13:40 +01002765
tiernof97fd272016-07-11 14:32:37 +02002766 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant, 'tenant')
2767 mydb.delete_row_by_id("nfvo_tenants", tenant_dict['uuid'])
2768 return tenant_dict['uuid'] + " " + tenant_dict["name"]
tierno7edb6752016-03-21 17:37:52 +01002769
tiernob3d36742017-03-03 23:51:05 +01002770
tierno7edb6752016-03-21 17:37:52 +01002771def new_datacenter(mydb, datacenter_descriptor):
2772 if "config" in datacenter_descriptor:
2773 datacenter_descriptor["config"]=yaml.safe_dump(datacenter_descriptor["config"],default_flow_style=True,width=256)
tierno3ae39742016-09-07 12:17:51 +02002774 #Check that datacenter-type is correct
2775 datacenter_type = datacenter_descriptor.get("type", "openvim");
2776 module_info = None
2777 try:
2778 module = "vimconn_" + datacenter_type
tierno361275f2017-04-25 16:24:34 +02002779 pkg = __import__("osm_ro." + module)
2780 vim_conn = getattr(pkg, module)
2781 # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]])
tierno3ae39742016-09-07 12:17:51 +02002782 except (IOError, ImportError):
tierno361275f2017-04-25 16:24:34 +02002783 # if module_info and module_info[0]:
2784 # file.close(module_info[0])
tierno3ae39742016-09-07 12:17:51 +02002785 raise NfvoException("Incorrect datacenter type '{}'. Plugin '{}'.py not installed".format(datacenter_type, module), HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +01002786
tiernof97fd272016-07-11 14:32:37 +02002787 datacenter_id = mydb.new_row("datacenters", datacenter_descriptor, add_uuid=True)
2788 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002789
tiernob3d36742017-03-03 23:51:05 +01002790
tierno7edb6752016-03-21 17:37:52 +01002791def edit_datacenter(mydb, datacenter_id_name, datacenter_descriptor):
2792 #obtain data, check that only one exist
tiernof97fd272016-07-11 14:32:37 +02002793 datacenter = mydb.get_table_by_uuid_name('datacenters', datacenter_id_name)
tierno42026a02017-02-10 15:13:40 +01002794 #edit data
tiernof97fd272016-07-11 14:32:37 +02002795 datacenter_id = datacenter['uuid']
2796 where={'uuid': datacenter['uuid']}
tierno7edb6752016-03-21 17:37:52 +01002797 if "config" in datacenter_descriptor:
2798 if datacenter_descriptor['config']!=None:
2799 try:
2800 new_config_dict = datacenter_descriptor["config"]
2801 #delete null fields
2802 to_delete=[]
2803 for k in new_config_dict:
2804 if new_config_dict[k]==None:
2805 to_delete.append(k)
tierno42026a02017-02-10 15:13:40 +01002806
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01002807 config_text = datacenter.get("config")
2808 if not config_text:
2809 config_text = '{}'
2810 config_dict = yaml.load(config_text)
tierno7edb6752016-03-21 17:37:52 +01002811 config_dict.update(new_config_dict)
2812 #delete null fields
2813 for k in to_delete:
2814 del config_dict[k]
tiernof97fd272016-07-11 14:32:37 +02002815 except Exception as e:
2816 raise NfvoException("Bad format at datacenter:config " + str(e), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01002817 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 +02002818 mydb.update_rows('datacenters', datacenter_descriptor, where)
2819 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002820
tiernob3d36742017-03-03 23:51:05 +01002821
tierno7edb6752016-03-21 17:37:52 +01002822def delete_datacenter(mydb, datacenter):
2823 #get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02002824 datacenter_dict = mydb.get_table_by_uuid_name('datacenters', datacenter, 'datacenter')
2825 mydb.delete_row_by_id("datacenters", datacenter_dict['uuid'])
2826 return datacenter_dict['uuid'] + " " + datacenter_dict['name']
tierno7edb6752016-03-21 17:37:52 +01002827
tiernob3d36742017-03-03 23:51:05 +01002828
tierno8008c3a2016-10-13 15:34:28 +00002829def 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 +01002830 #get datacenter info
Vance Shipleyc24b4e22017-05-12 02:34:53 +05302831 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, None, datacenter, vim_user=vim_username, vim_passwd=vim_password)
tierno42026a02017-02-10 15:13:40 +01002832 datacenter_name = myvim["name"]
tierno7edb6752016-03-21 17:37:52 +01002833
tierno42026a02017-02-10 15:13:40 +01002834 create_vim_tenant = True if not vim_tenant_id and not vim_tenant_name else False
2835
2836 # get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02002837 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', nfvo_tenant)
tierno7edb6752016-03-21 17:37:52 +01002838 if vim_tenant_name==None:
2839 vim_tenant_name=tenant_dict['name']
tierno42026a02017-02-10 15:13:40 +01002840
tierno7edb6752016-03-21 17:37:52 +01002841 #check that this association does not exist before
2842 tenants_datacenter_dict={"nfvo_tenant_id":tenant_dict['uuid'], "datacenter_id":datacenter_id }
tiernof97fd272016-07-11 14:32:37 +02002843 tenants_datacenters = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
2844 if len(tenants_datacenters)>0:
2845 raise NfvoException("datacenter '{}' and tenant'{}' are already attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01002846
2847 vim_tenant_id_exist_atdb=False
2848 if not create_vim_tenant:
2849 where_={"datacenter_id": datacenter_id}
2850 if vim_tenant_id!=None:
2851 where_["vim_tenant_id"] = vim_tenant_id
2852 if vim_tenant_name!=None:
2853 where_["vim_tenant_name"] = vim_tenant_name
2854 #check if vim_tenant_id is already at database
tiernof97fd272016-07-11 14:32:37 +02002855 datacenter_tenants_dict = mydb.get_rows(FROM='datacenter_tenants', WHERE=where_)
2856 if len(datacenter_tenants_dict)>=1:
tierno7edb6752016-03-21 17:37:52 +01002857 datacenter_tenants_dict = datacenter_tenants_dict[0]
2858 vim_tenant_id_exist_atdb=True
2859 #TODO check if a field has changed and edit entry at datacenter_tenants at DB
2860 else: #result=0
2861 datacenter_tenants_dict = {}
2862 #insert at table datacenter_tenants
2863 else: #if vim_tenant_id==None:
2864 #create tenant at VIM if not provided
tiernoae4a8d12016-07-08 12:30:39 +02002865 try:
2866 vim_tenant_id = myvim.new_tenant(vim_tenant_name, "created by openmano for datacenter "+datacenter_name)
2867 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002868 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 +01002869 datacenter_tenants_dict = {}
2870 datacenter_tenants_dict["created"]="true"
tierno42026a02017-02-10 15:13:40 +01002871
tierno7edb6752016-03-21 17:37:52 +01002872 #fill datacenter_tenants table
2873 if not vim_tenant_id_exist_atdb:
tierno42026a02017-02-10 15:13:40 +01002874 datacenter_tenants_dict["vim_tenant_id"] = vim_tenant_id
tierno7edb6752016-03-21 17:37:52 +01002875 datacenter_tenants_dict["vim_tenant_name"] = vim_tenant_name
tierno42026a02017-02-10 15:13:40 +01002876 datacenter_tenants_dict["user"] = vim_username
2877 datacenter_tenants_dict["passwd"] = vim_password
2878 datacenter_tenants_dict["datacenter_id"] = datacenter_id
tierno8008c3a2016-10-13 15:34:28 +00002879 if config:
2880 datacenter_tenants_dict["config"] = yaml.safe_dump(config, default_flow_style=True, width=256)
tiernof97fd272016-07-11 14:32:37 +02002881 id_ = mydb.new_row('datacenter_tenants', datacenter_tenants_dict, add_uuid=True)
tierno7edb6752016-03-21 17:37:52 +01002882 datacenter_tenants_dict["uuid"] = id_
tierno42026a02017-02-10 15:13:40 +01002883
tierno7edb6752016-03-21 17:37:52 +01002884 #fill tenants_datacenters table
tierno99314902017-04-26 13:23:09 +02002885 datacenter_tenant_id = datacenter_tenants_dict["uuid"]
2886 tenants_datacenter_dict["datacenter_tenant_id"] = datacenter_tenant_id
tiernof97fd272016-07-11 14:32:37 +02002887 mydb.new_row('tenants_datacenters', tenants_datacenter_dict)
tierno42026a02017-02-10 15:13:40 +01002888 # create thread
2889 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_dict['uuid'], datacenter_id) # reload data
2890 thread_name = get_non_used_vim_name(datacenter_name, datacenter_id, tenant_dict['name'], tenant_dict['uuid'])
tierno99314902017-04-26 13:23:09 +02002891 new_thread = vim_thread.vim_thread(myvim, task_lock, thread_name, datacenter_name, datacenter_tenant_id,
2892 db=db, db_lock=db_lock, ovim=ovim)
tierno42026a02017-02-10 15:13:40 +01002893 new_thread.start()
tierno867ffe92017-03-27 12:50:34 +02002894 thread_id = datacenter_tenants_dict["uuid"]
tiernob3d36742017-03-03 23:51:05 +01002895 vim_threads["running"][thread_id] = new_thread
tiernof97fd272016-07-11 14:32:37 +02002896 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002897
tierno99314902017-04-26 13:23:09 +02002898
2899def edit_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=None, vim_tenant_name=None,
2900 vim_username=None, vim_password=None, config=None):
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01002901 #Obtain the data of this datacenter_tenant_id
2902 vim_data = mydb.get_rows(
2903 SELECT=("datacenter_tenants.vim_tenant_name", "datacenter_tenants.vim_tenant_id", "datacenter_tenants.user",
2904 "datacenter_tenants.passwd", "datacenter_tenants.config"),
2905 FROM="datacenter_tenants JOIN tenants_datacenters ON datacenter_tenants.uuid=tenants_datacenters.datacenter_tenant_id",
2906 WHERE={"tenants_datacenters.nfvo_tenant_id": nfvo_tenant,
2907 "tenants_datacenters.datacenter_id": datacenter_id})
2908
2909 logger.debug(str(vim_data))
2910 if len(vim_data) < 1:
2911 raise NfvoException("Datacenter {} is not attached for tenant {}".format(datacenter_id, nfvo_tenant), HTTP_Conflict)
2912
2913 v = vim_data[0]
2914 if v['config']:
2915 v['config'] = yaml.load(v['config'])
2916
2917 if vim_tenant_id:
2918 v['vim_tenant_id'] = vim_tenant_id
2919 if vim_tenant_name:
2920 v['vim_tenant_name'] = vim_tenant_name
2921 if vim_username:
2922 v['user'] = vim_username
2923 if vim_password:
2924 v['passwd'] = vim_password
2925 if config:
2926 if not v['config']:
2927 v['config'] = {}
2928 v['config'].update(config)
2929
2930 logger.debug(str(v))
2931 deassociate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=v['vim_tenant_id'])
2932 associate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=v['vim_tenant_id'], vim_tenant_name=v['vim_tenant_name'],
2933 vim_username=v['user'], vim_password=v['passwd'], config=v['config'])
2934
2935 return datacenter_id
tiernob3d36742017-03-03 23:51:05 +01002936
tierno7edb6752016-03-21 17:37:52 +01002937def deassociate_datacenter_to_tenant(mydb, tenant_id, datacenter, vim_tenant_id=None):
2938 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002939 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, None, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002940
2941 #get nfvo_tenant info
2942 if not tenant_id or tenant_id=="any":
2943 tenant_uuid = None
2944 else:
tiernof97fd272016-07-11 14:32:37 +02002945 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant_id)
tierno7edb6752016-03-21 17:37:52 +01002946 tenant_uuid = tenant_dict['uuid']
2947
2948 #check that this association exist before
2949 tenants_datacenter_dict={"datacenter_id":datacenter_id }
2950 if tenant_uuid:
2951 tenants_datacenter_dict["nfvo_tenant_id"] = tenant_uuid
tiernof97fd272016-07-11 14:32:37 +02002952 tenant_datacenter_list = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
2953 if len(tenant_datacenter_list)==0 and tenant_uuid:
2954 raise NfvoException("datacenter '{}' and tenant '{}' are not attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01002955
2956 #delete this association
tiernof97fd272016-07-11 14:32:37 +02002957 mydb.delete_row(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
tierno7edb6752016-03-21 17:37:52 +01002958
2959 #get vim_tenant info and deletes
2960 warning=''
2961 for tenant_datacenter_item in tenant_datacenter_list:
tiernof97fd272016-07-11 14:32:37 +02002962 vim_tenant_dict = mydb.get_table_by_uuid_name('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
2963 #try to delete vim:tenant
2964 try:
2965 mydb.delete_row_by_id('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
2966 if vim_tenant_dict['created']=='true':
tierno7edb6752016-03-21 17:37:52 +01002967 #delete tenant at VIM if created by NFVO
tierno42026a02017-02-10 15:13:40 +01002968 try:
tiernoae4a8d12016-07-08 12:30:39 +02002969 myvim.delete_tenant(vim_tenant_dict['vim_tenant_id'])
2970 except vimconn.vimconnException as e:
2971 warning = "Not possible to delete vim_tenant_id {} from VIM: {} ".format(vim_tenant_dict['vim_tenant_id'], str(e))
2972 logger.warn(warning)
tiernof97fd272016-07-11 14:32:37 +02002973 except db_base_Exception as e:
2974 logger.error("Cannot delete datacenter_tenants " + str(e))
tierno42026a02017-02-10 15:13:40 +01002975 pass # the error will be caused because dependencies, vim_tenant can not be deleted
tierno867ffe92017-03-27 12:50:34 +02002976 thread_id = tenant_datacenter_item["datacenter_tenant_id"]
tierno42026a02017-02-10 15:13:40 +01002977 thread = vim_threads["running"][thread_id]
tierno867ffe92017-03-27 12:50:34 +02002978 thread.insert_task(new_task("exit", None))
tierno42026a02017-02-10 15:13:40 +01002979 vim_threads["deleting"][thread_id] = thread
tiernof97fd272016-07-11 14:32:37 +02002980 return "datacenter {} detached. {}".format(datacenter_id, warning)
tierno7edb6752016-03-21 17:37:52 +01002981
tiernob3d36742017-03-03 23:51:05 +01002982
tierno7edb6752016-03-21 17:37:52 +01002983def datacenter_action(mydb, tenant_id, datacenter, action_dict):
2984 #DEPRECATED
tierno42026a02017-02-10 15:13:40 +01002985 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00002986 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01002987
2988 if 'net-update' in action_dict:
tiernoae4a8d12016-07-08 12:30:39 +02002989 try:
tiernof97fd272016-07-11 14:32:37 +02002990 nets = myvim.get_network_list(filter_dict={'shared': True, 'admin_state_up': True, 'status': 'ACTIVE'})
tiernoae4a8d12016-07-08 12:30:39 +02002991 #print content
2992 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02002993 #logger.error("nfvo.datacenter_action() Not possible to get_network_list from VIM: %s ", str(e))
2994 raise NfvoException(str(e), HTTP_Internal_Server_Error)
tierno7edb6752016-03-21 17:37:52 +01002995 #update nets Change from VIM format to NFVO format
2996 net_list=[]
tiernof97fd272016-07-11 14:32:37 +02002997 for net in nets:
tierno7edb6752016-03-21 17:37:52 +01002998 net_nfvo={'datacenter_id': datacenter_id}
2999 net_nfvo['name'] = net['name']
3000 #net_nfvo['description']= net['name']
3001 net_nfvo['vim_net_id'] = net['id']
3002 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
3003 net_nfvo['shared'] = net['shared']
3004 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
3005 net_list.append(net_nfvo)
tiernof97fd272016-07-11 14:32:37 +02003006 inserted, deleted = mydb.update_datacenter_nets(datacenter_id, net_list)
3007 logger.info("Inserted %d nets, deleted %d old nets", inserted, deleted)
3008 return inserted
tierno7edb6752016-03-21 17:37:52 +01003009 elif 'net-edit' in action_dict:
3010 net = action_dict['net-edit'].pop('net')
tierno42fcc3b2016-07-06 17:20:40 +02003011 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
tierno42026a02017-02-10 15:13:40 +01003012 result = mydb.update_rows('datacenter_nets', action_dict['net-edit'],
tierno7edb6752016-03-21 17:37:52 +01003013 WHERE={'datacenter_id':datacenter_id, what: net})
tiernof97fd272016-07-11 14:32:37 +02003014 return result
tierno7edb6752016-03-21 17:37:52 +01003015 elif 'net-delete' in action_dict:
3016 net = action_dict['net-deelte'].get('net')
tierno42fcc3b2016-07-06 17:20:40 +02003017 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
tierno42026a02017-02-10 15:13:40 +01003018 result = mydb.delete_row(FROM='datacenter_nets',
tierno7edb6752016-03-21 17:37:52 +01003019 WHERE={'datacenter_id':datacenter_id, what: net})
tiernof97fd272016-07-11 14:32:37 +02003020 return result
tierno7edb6752016-03-21 17:37:52 +01003021
3022 else:
tiernof97fd272016-07-11 14:32:37 +02003023 raise NfvoException("Unknown action " + str(action_dict), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01003024
tiernob3d36742017-03-03 23:51:05 +01003025
tierno7edb6752016-03-21 17:37:52 +01003026def datacenter_edit_netmap(mydb, tenant_id, datacenter, netmap, action_dict):
3027 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00003028 datacenter_id, _ = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01003029
tierno42fcc3b2016-07-06 17:20:40 +02003030 what = 'uuid' if utils.check_valid_uuid(netmap) else 'name'
tierno42026a02017-02-10 15:13:40 +01003031 result = mydb.update_rows('datacenter_nets', action_dict['netmap'],
tierno7edb6752016-03-21 17:37:52 +01003032 WHERE={'datacenter_id':datacenter_id, what: netmap})
tiernof97fd272016-07-11 14:32:37 +02003033 return result
tierno7edb6752016-03-21 17:37:52 +01003034
tiernob3d36742017-03-03 23:51:05 +01003035
tierno7edb6752016-03-21 17:37:52 +01003036def datacenter_new_netmap(mydb, tenant_id, datacenter, action_dict=None):
3037 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00003038 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01003039 filter_dict={}
3040 if action_dict:
3041 action_dict = action_dict["netmap"]
3042 if 'vim_id' in action_dict:
3043 filter_dict["id"] = action_dict['vim_id']
3044 if 'vim_name' in action_dict:
3045 filter_dict["name"] = action_dict['vim_name']
3046 else:
3047 filter_dict["shared"] = True
tierno42026a02017-02-10 15:13:40 +01003048
tiernoae4a8d12016-07-08 12:30:39 +02003049 try:
tiernof97fd272016-07-11 14:32:37 +02003050 vim_nets = myvim.get_network_list(filter_dict=filter_dict)
tiernoae4a8d12016-07-08 12:30:39 +02003051 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02003052 #logger.error("nfvo.datacenter_new_netmap() Not possible to get_network_list from VIM: %s ", str(e))
3053 raise NfvoException(str(e), HTTP_Internal_Server_Error)
3054 if len(vim_nets)>1 and action_dict:
3055 raise NfvoException("more than two networks found, specify with vim_id", HTTP_Conflict)
3056 elif len(vim_nets)==0: # and action_dict:
3057 raise NfvoException("Not found a network at VIM with " + str(filter_dict), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01003058 net_list=[]
tiernof97fd272016-07-11 14:32:37 +02003059 for net in vim_nets:
tierno7edb6752016-03-21 17:37:52 +01003060 net_nfvo={'datacenter_id': datacenter_id}
3061 if action_dict and "name" in action_dict:
3062 net_nfvo['name'] = action_dict['name']
3063 else:
3064 net_nfvo['name'] = net['name']
3065 #net_nfvo['description']= net['name']
3066 net_nfvo['vim_net_id'] = net['id']
3067 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
3068 net_nfvo['shared'] = net['shared']
3069 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
tiernof97fd272016-07-11 14:32:37 +02003070 try:
3071 net_id = mydb.new_row("datacenter_nets", net_nfvo, add_uuid=True)
tierno7edb6752016-03-21 17:37:52 +01003072 net_nfvo["status"] = "OK"
tiernof97fd272016-07-11 14:32:37 +02003073 net_nfvo["uuid"] = net_id
3074 except db_base_Exception as e:
3075 if action_dict:
3076 raise
3077 else:
3078 net_nfvo["status"] = "FAIL: " + str(e)
tierno42026a02017-02-10 15:13:40 +01003079 net_list.append(net_nfvo)
3080 return net_list
tierno7edb6752016-03-21 17:37:52 +01003081
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02003082def get_sdn_net_id(mydb, tenant_id, datacenter, network_id):
3083 # obtain all network data
3084 try:
3085 if utils.check_valid_uuid(network_id):
3086 filter_dict = {"id": network_id}
3087 else:
3088 filter_dict = {"name": network_id}
3089
3090 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
3091 network = myvim.get_network_list(filter_dict=filter_dict)
3092 except vimconn.vimconnException as e:
3093 print "vim_action Not possible to get_%s_list from VIM: %s " % (item, str(e))
3094 raise NfvoException("Not possible to get_{}_list from VIM: {}".format(item, str(e)), e.http_code)
3095
3096 # ensure the network is defined
3097 if len(network) == 0:
3098 raise NfvoException("Network {} is not present in the system".format(network_id),
3099 HTTP_Bad_Request)
3100
3101 # ensure there is only one network with the provided name
3102 if len(network) > 1:
3103 raise NfvoException("Multiple networks present in vim identified by {}".format(network_id), HTTP_Bad_Request)
3104
3105 # ensure it is a dataplane network
3106 if network[0]['type'] != 'data':
3107 return None
3108
3109 # ensure we use the id
3110 network_id = network[0]['id']
3111
3112 # search in dabase mano_db in table instance nets for the sdn_net_id that corresponds to the vim_net_id==network_id
3113 # and with instance_scenario_id==NULL
3114 #search_dict = {'vim_net_id': network_id, 'instance_scenario_id': None}
3115 search_dict = {'vim_net_id': network_id}
3116
3117 try:
3118 #sdn_network_id = mydb.get_rows(SELECT=('sdn_net_id',), FROM='instance_nets', WHERE=search_dict)[0]['sdn_net_id']
3119 result = mydb.get_rows(SELECT=('sdn_net_id',), FROM='instance_nets', WHERE=search_dict)
3120 except db_base_Exception as e:
3121 raise NfvoException("db_base_Exception obtaining SDN network to associated to vim network {}".format(
3122 network_id) + str(e), HTTP_Internal_Server_Error)
3123
3124 sdn_net_counter = 0
3125 for net in result:
3126 if net['sdn_net_id'] != None:
3127 sdn_net_counter+=1
3128 sdn_net_id = net['sdn_net_id']
3129
3130 if sdn_net_counter == 0:
3131 return None
3132 elif sdn_net_counter == 1:
3133 return sdn_net_id
3134 else:
3135 raise NfvoException("More than one SDN network is associated to vim network {}".format(
3136 network_id), HTTP_Internal_Server_Error)
3137
3138def get_sdn_controller_id(mydb, datacenter):
3139 # Obtain sdn controller id
3140 config = mydb.get_rows(SELECT=('config',), FROM='datacenters', WHERE={'uuid': datacenter})[0].get('config', '{}')
3141 if not config:
3142 return None
3143
3144 return yaml.load(config).get('sdn-controller')
3145
3146def vim_net_sdn_attach(mydb, tenant_id, datacenter, network_id, descriptor):
3147 try:
3148 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, network_id)
3149 if not sdn_network_id:
3150 raise NfvoException("No SDN network is associated to vim-network {}".format(network_id), HTTP_Internal_Server_Error)
3151
3152 #Obtain sdn controller id
3153 controller_id = get_sdn_controller_id(mydb, datacenter)
3154 if not controller_id:
3155 raise NfvoException("No SDN controller is set for datacenter {}".format(datacenter), HTTP_Internal_Server_Error)
3156
3157 #Obtain sdn controller info
3158 sdn_controller = ovim.show_of_controller(controller_id)
3159
3160 port_data = {
3161 'name': 'external_port',
3162 'net_id': sdn_network_id,
3163 'ofc_id': controller_id,
3164 'switch_dpid': sdn_controller['dpid'],
3165 'switch_port': descriptor['port']
3166 }
3167
3168 if 'vlan' in descriptor:
3169 port_data['vlan'] = descriptor['vlan']
3170 if 'mac' in descriptor:
3171 port_data['mac'] = descriptor['mac']
3172
3173 result = ovim.new_port(port_data)
3174 except ovimException as e:
3175 raise NfvoException("ovimException attaching SDN network {} to vim network {}".format(
3176 sdn_network_id, network_id) + str(e), HTTP_Internal_Server_Error)
3177 except db_base_Exception as e:
3178 raise NfvoException("db_base_Exception attaching SDN network to vim network {}".format(
3179 network_id) + str(e), HTTP_Internal_Server_Error)
3180
3181 return 'Port uuid: '+ result
3182
3183def vim_net_sdn_detach(mydb, tenant_id, datacenter, network_id, port_id=None):
3184 if port_id:
3185 filter = {'uuid': port_id}
3186 else:
3187 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, network_id)
3188 if not sdn_network_id:
3189 raise NfvoException("No SDN network is associated to vim-network {}".format(network_id),
3190 HTTP_Internal_Server_Error)
3191 #in case no port_id is specified only ports marked as 'external_port' will be detached
3192 filter = {'name': 'external_port', 'net_id': sdn_network_id}
3193
3194 try:
3195 port_list = ovim.get_ports(columns={'uuid'}, filter=filter)
3196 except ovimException as e:
3197 raise NfvoException("ovimException obtaining external ports for net {}. ".format(network_id) + str(e),
3198 HTTP_Internal_Server_Error)
3199
3200 if len(port_list) == 0:
3201 raise NfvoException("No ports attached to the network {} were found with the requested criteria".format(network_id),
3202 HTTP_Bad_Request)
3203
3204 port_uuid_list = []
3205 for port in port_list:
3206 try:
3207 port_uuid_list.append(port['uuid'])
3208 ovim.delete_port(port['uuid'])
3209 except ovimException as e:
3210 raise NfvoException("ovimException deleting port {} for net {}. ".format(port['uuid'], network_id) + str(e), HTTP_Internal_Server_Error)
3211
3212 return 'Detached ports uuid: {}'.format(','.join(port_uuid_list))
tiernob3d36742017-03-03 23:51:05 +01003213
tierno7edb6752016-03-21 17:37:52 +01003214def vim_action_get(mydb, tenant_id, datacenter, item, name):
3215 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00003216 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01003217 filter_dict={}
3218 if name:
tierno42fcc3b2016-07-06 17:20:40 +02003219 if utils.check_valid_uuid(name):
tierno7edb6752016-03-21 17:37:52 +01003220 filter_dict["id"] = name
3221 else:
3222 filter_dict["name"] = name
tiernoae4a8d12016-07-08 12:30:39 +02003223 try:
3224 if item=="networks":
3225 #filter_dict['tenant_id'] = myvim['tenant_id']
3226 content = myvim.get_network_list(filter_dict=filter_dict)
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02003227
3228 if len(content) == 0:
3229 raise NfvoException("Network {} is not present in the system. ".format(name),
3230 HTTP_Bad_Request)
3231
3232 #Update the networks with the attached ports
3233 for net in content:
3234 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, net['id'])
3235 if sdn_network_id != None:
3236 try:
3237 #port_list = ovim.get_ports(columns={'uuid', 'switch_port', 'vlan'}, filter={'name': 'external_port', 'net_id': sdn_network_id})
3238 port_list = ovim.get_ports(columns={'uuid', 'switch_port', 'vlan','name'}, filter={'net_id': sdn_network_id})
3239 except ovimException as e:
3240 raise NfvoException("ovimException obtaining external ports for net {}. ".format(network_id) + str(e), HTTP_Internal_Server_Error)
3241 #Remove field name and if port name is external_port save it as 'type'
3242 for port in port_list:
3243 if port['name'] == 'external_port':
3244 port['type'] = "External"
3245 del port['name']
3246 net['sdn_network_id'] = sdn_network_id
3247 net['sdn_attached_ports'] = port_list
3248
tiernoae4a8d12016-07-08 12:30:39 +02003249 elif item=="tenants":
3250 content = myvim.get_tenant_list(filter_dict=filter_dict)
tierno4540ea52017-01-18 17:44:32 +01003251 elif item == "images":
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02003252
tierno4540ea52017-01-18 17:44:32 +01003253 content = myvim.get_image_list(filter_dict=filter_dict)
tiernoae4a8d12016-07-08 12:30:39 +02003254 else:
tiernof97fd272016-07-11 14:32:37 +02003255 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernobe41e222016-09-02 15:16:13 +02003256 logger.debug("vim_action response %s", content) #update nets Change from VIM format to NFVO format
tiernoae4a8d12016-07-08 12:30:39 +02003257 if name and len(content)==1:
tiernof97fd272016-07-11 14:32:37 +02003258 return {item[:-1]: content[0]}
tiernoae4a8d12016-07-08 12:30:39 +02003259 elif name and len(content)==0:
tiernof97fd272016-07-11 14:32:37 +02003260 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 +02003261 datacenter)
tiernoae4a8d12016-07-08 12:30:39 +02003262 else:
tiernof97fd272016-07-11 14:32:37 +02003263 return {item: content}
tiernoae4a8d12016-07-08 12:30:39 +02003264 except vimconn.vimconnException as e:
3265 print "vim_action Not possible to get_%s_list from VIM: %s " % (item, str(e))
tiernof97fd272016-07-11 14:32:37 +02003266 raise NfvoException("Not possible to get_{}_list from VIM: {}".format(item, str(e)), e.http_code)
tierno42026a02017-02-10 15:13:40 +01003267
tiernob3d36742017-03-03 23:51:05 +01003268
tierno7edb6752016-03-21 17:37:52 +01003269def vim_action_delete(mydb, tenant_id, datacenter, item, name):
3270 #get datacenter info
tierno392f2852016-05-13 12:28:55 +02003271 if tenant_id == "any":
3272 tenant_id=None
3273
tiernoa2793912016-10-04 08:15:08 +00003274 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno392f2852016-05-13 12:28:55 +02003275 #get uuid name
tiernof97fd272016-07-11 14:32:37 +02003276 content = vim_action_get(mydb, tenant_id, datacenter, item, name)
3277 logger.debug("vim_action_delete vim response: " + str(content))
tierno392f2852016-05-13 12:28:55 +02003278 items = content.values()[0]
3279 if type(items)==list and len(items)==0:
tiernof97fd272016-07-11 14:32:37 +02003280 raise NfvoException("Not found " + item, HTTP_Not_Found)
tierno392f2852016-05-13 12:28:55 +02003281 elif type(items)==list and len(items)>1:
tiernof97fd272016-07-11 14:32:37 +02003282 raise NfvoException("Found more than one {} with this name. Use uuid.".format(item), HTTP_Not_Found)
tierno392f2852016-05-13 12:28:55 +02003283 else: # it is a dict
3284 item_id = items["id"]
3285 item_name = str(items.get("name"))
tierno42026a02017-02-10 15:13:40 +01003286
tiernoae4a8d12016-07-08 12:30:39 +02003287 try:
3288 if item=="networks":
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02003289 # If there is a SDN network associated to the vim-network, proceed to clear the relationship and delete it
3290 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, item_id)
3291 if sdn_network_id != None:
3292 #Delete any port attachment to this network
3293 try:
3294 port_list = ovim.get_ports(columns={'uuid'}, filter={'net_id': sdn_network_id})
3295 except ovimException as e:
3296 raise NfvoException(
3297 "ovimException obtaining external ports for net {}. ".format(network_id) + str(e),
3298 HTTP_Internal_Server_Error)
3299
3300 # By calling one by one all ports to be detached we ensure that not only the external_ports get detached
3301 for port in port_list:
3302 vim_net_sdn_detach(mydb, tenant_id, datacenter, item_id, port['uuid'])
3303
3304 #Delete from 'instance_nets' the correspondence between the vim-net-id and the sdn-net-id
3305 try:
3306 mydb.delete_row(FROM='instance_nets', WHERE={'instance_scenario_id': None, 'sdn_net_id': sdn_network_id, 'vim_net_id': item_id})
3307 except db_base_Exception as e:
3308 raise NfvoException("Error deleting correspondence for VIM/SDN dataplane networks{}: ".format(correspondence) +
3309 str(e), HTTP_Internal_Server_Error)
3310
3311 #Delete the SDN network
3312 try:
3313 ovim.delete_network(sdn_network_id)
3314 except ovimException as e:
3315 logger.error("ovimException deleting SDN network={} ".format(sdn_network_id) + str(e), exc_info=True)
3316 raise NfvoException("ovimException deleting SDN network={} ".format(sdn_network_id) + str(e),
3317 HTTP_Internal_Server_Error)
3318
tiernoae4a8d12016-07-08 12:30:39 +02003319 content = myvim.delete_network(item_id)
3320 elif item=="tenants":
3321 content = myvim.delete_tenant(item_id)
tierno4540ea52017-01-18 17:44:32 +01003322 elif item == "images":
3323 content = myvim.delete_image(item_id)
tiernoae4a8d12016-07-08 12:30:39 +02003324 else:
tierno42026a02017-02-10 15:13:40 +01003325 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernoae4a8d12016-07-08 12:30:39 +02003326 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02003327 #logger.error( "vim_action Not possible to delete_{} {}from VIM: {} ".format(item, name, str(e)))
3328 raise NfvoException("Not possible to delete_{} {} from VIM: {}".format(item, name, str(e)), e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02003329
tiernof97fd272016-07-11 14:32:37 +02003330 return "{} {} {} deleted".format(item[:-1], item_id,item_name)
tierno42026a02017-02-10 15:13:40 +01003331
tiernob3d36742017-03-03 23:51:05 +01003332
tierno7edb6752016-03-21 17:37:52 +01003333def vim_action_create(mydb, tenant_id, datacenter, item, descriptor):
3334 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00003335 logger.debug("vim_action_create descriptor %s", str(descriptor))
tierno392f2852016-05-13 12:28:55 +02003336 if tenant_id == "any":
3337 tenant_id=None
tiernoa2793912016-10-04 08:15:08 +00003338 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tiernoae4a8d12016-07-08 12:30:39 +02003339 try:
3340 if item=="networks":
3341 net = descriptor["network"]
3342 net_name = net.pop("name")
3343 net_type = net.pop("type", "bridge")
garciadeblas9f8456e2016-09-05 05:02:59 +02003344 net_public = net.pop("shared", False)
3345 net_ipprofile = net.pop("ip_profile", None)
tiernoa7d34d02017-02-23 14:42:07 +01003346 net_vlan = net.pop("vlan", None)
3347 content = myvim.new_network(net_name, net_type, net_ipprofile, shared=net_public, vlan=net_vlan) #, **net)
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02003348
3349 #If the datacenter has a SDN controller defined and the network is of dataplane type, then create the sdn network
3350 if get_sdn_controller_id(mydb, datacenter) != None and (net_type == 'data' or net_type == 'ptp'):
3351 try:
3352 sdn_network = {}
3353 sdn_network['vlan'] = net_vlan
3354 sdn_network['type'] = net_type
3355 sdn_network['name'] = net_name
3356 ovim_content = ovim.new_network(sdn_network)
3357 except ovimException as e:
3358 self.logger.error("ovimException creating SDN network={} ".format(
3359 sdn_network) + str(e), exc_info=True)
3360 raise NfvoException("ovimException creating SDN network={} ".format(sdn_network) + str(e),
3361 HTTP_Internal_Server_Error)
3362
3363 # Save entry in in dabase mano_db in table instance_nets to stablish a dictionary vim_net_id <->sdn_net_id
3364 # use instance_scenario_id=None to distinguish from real instaces of nets
3365 correspondence = {'instance_scenario_id': None, 'sdn_net_id': ovim_content, 'vim_net_id': content}
3366 #obtain datacenter_tenant_id
3367 correspondence['datacenter_tenant_id'] = mydb.get_rows(SELECT=('uuid',), FROM='datacenter_tenants', WHERE={'datacenter_id': datacenter})[0]['uuid']
3368
3369 try:
3370 mydb.new_row('instance_nets', correspondence, add_uuid=True)
3371 except db_base_Exception as e:
3372 raise NfvoException("Error saving correspondence for VIM/SDN dataplane networks{}: ".format(correspondence) +
3373 str(e), HTTP_Internal_Server_Error)
tiernoae4a8d12016-07-08 12:30:39 +02003374 elif item=="tenants":
3375 tenant = descriptor["tenant"]
3376 content = myvim.new_tenant(tenant["name"], tenant.get("description"))
3377 else:
tierno42026a02017-02-10 15:13:40 +01003378 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernoae4a8d12016-07-08 12:30:39 +02003379 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02003380 raise NfvoException("Not possible to create {} at VIM: {}".format(item, str(e)), e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02003381
tierno7edb6752016-03-21 17:37:52 +01003382 return vim_action_get(mydb, tenant_id, datacenter, item, content)
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003383
3384def sdn_controller_create(mydb, tenant_id, sdn_controller):
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02003385 data = ovim.new_of_controller(sdn_controller)
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003386 logger.debug('New SDN controller created with uuid {}'.format(data))
3387 return data
3388
3389def sdn_controller_update(mydb, tenant_id, controller_id, sdn_controller):
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02003390 data = ovim.edit_of_controller(controller_id, sdn_controller)
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003391 msg = 'SDN controller {} updated'.format(data)
3392 logger.debug(msg)
3393 return msg
3394
3395def sdn_controller_list(mydb, tenant_id, controller_id=None):
3396 if controller_id == None:
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02003397 data = ovim.get_of_controllers()
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003398 else:
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02003399 data = ovim.show_of_controller(controller_id)
3400
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003401 msg = 'SDN controller list:\n {}'.format(data)
3402 logger.debug(msg)
3403 return data
3404
3405def sdn_controller_delete(mydb, tenant_id, controller_id):
3406 select_ = ('uuid', 'config')
3407 datacenters = mydb.get_rows(FROM='datacenters', SELECT=select_)
3408 for datacenter in datacenters:
3409 if datacenter['config']:
3410 config = yaml.load(datacenter['config'])
3411 if 'sdn-controller' in config and config['sdn-controller'] == controller_id:
3412 raise NfvoException("SDN controller {} is in use by datacenter {}".format(controller_id, datacenter['uuid']), HTTP_Conflict)
3413
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02003414 data = ovim.delete_of_controller(controller_id)
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003415 msg = 'SDN controller {} deleted'.format(data)
3416 logger.debug(msg)
3417 return msg
3418
3419def datacenter_sdn_port_mapping_set(mydb, tenant_id, datacenter_id, sdn_port_mapping):
3420 controller = mydb.get_rows(FROM="datacenters", SELECT=("config",), WHERE={"uuid":datacenter_id})
3421 if len(controller) < 1:
3422 raise NfvoException("Datacenter {} not present in the database".format(datacenter_id), HTTP_Not_Found)
3423
3424 try:
3425 sdn_controller_id = yaml.load(controller[0]["config"])["sdn-controller"]
3426 except:
3427 raise NfvoException("The datacenter {} has not an SDN controller associated".format(datacenter_id), HTTP_Bad_Request)
3428
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02003429 sdn_controller = ovim.show_of_controller(sdn_controller_id)
3430 switch_dpid = sdn_controller["dpid"]
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003431
3432 maps = list()
3433 for compute_node in sdn_port_mapping:
3434 #element = {"ofc_id": sdn_controller_id, "region": datacenter_id, "switch_dpid": switch_dpid}
3435 element = dict()
3436 element["compute_node"] = compute_node["compute_node"]
3437 for port in compute_node["ports"]:
3438 element["pci"] = port.get("pci")
3439 element["switch_port"] = port.get("switch_port")
3440 element["switch_mac"] = port.get("switch_mac")
3441 if not element["pci"] or not (element["switch_port"] or element["switch_mac"]):
3442 raise NfvoException ("The mapping must contain the 'pci' and at least one of the elements 'switch_port'"
3443 " or 'switch_mac'", HTTP_Bad_Request)
3444 maps.append(dict(element))
3445
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02003446 return ovim.set_of_port_mapping(maps, ofc_id=sdn_controller_id, switch_dpid=switch_dpid, region=datacenter_id)
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003447
3448def datacenter_sdn_port_mapping_list(mydb, tenant_id, datacenter_id):
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02003449 maps = ovim.get_of_port_mappings(db_filter={"region": datacenter_id})
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003450
3451 result = {
3452 "sdn-controller": None,
3453 "datacenter-id": datacenter_id,
3454 "dpid": None,
3455 "ports_mapping": list()
3456 }
3457
3458 datacenter = mydb.get_table_by_uuid_name('datacenters', datacenter_id)
3459 if datacenter['config']:
3460 config = yaml.load(datacenter['config'])
3461 if 'sdn-controller' in config:
3462 controller_id = config['sdn-controller']
3463 sdn_controller = sdn_controller_list(mydb, tenant_id, controller_id)
3464 result["sdn-controller"] = controller_id
3465 result["dpid"] = sdn_controller["dpid"]
3466
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02003467 if result["sdn-controller"] == None:
3468 raise NfvoException("SDN controller is not defined for datacenter {}".format(datacenter_id), HTTP_Bad_Request)
3469 if result["dpid"] == None:
3470 raise NfvoException("It was not possible to determine DPID for SDN controller {}".format(result["sdn-controller"]),
3471 HTTP_Internal_Server_Error)
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003472
3473 if len(maps) == 0:
3474 return result
3475
3476 ports_correspondence_dict = dict()
3477 for link in maps:
3478 if result["sdn-controller"] != link["ofc_id"]:
3479 raise NfvoException("The sdn-controller specified for different port mappings differ", HTTP_Internal_Server_Error)
3480 if result["dpid"] != link["switch_dpid"]:
3481 raise NfvoException("The dpid specified for different port mappings differ", HTTP_Internal_Server_Error)
3482 element = dict()
3483 element["pci"] = link["pci"]
3484 if link["switch_port"]:
3485 element["switch_port"] = link["switch_port"]
3486 if link["switch_mac"]:
3487 element["switch_mac"] = link["switch_mac"]
3488
3489 if not link["compute_node"] in ports_correspondence_dict:
3490 content = dict()
3491 content["compute_node"] = link["compute_node"]
3492 content["ports"] = list()
3493 ports_correspondence_dict[link["compute_node"]] = content
3494
3495 ports_correspondence_dict[link["compute_node"]]["ports"].append(element)
3496
3497 for key in sorted(ports_correspondence_dict):
3498 result["ports_mapping"].append(ports_correspondence_dict[key])
3499
3500 return result
3501
3502def datacenter_sdn_port_mapping_delete(mydb, tenant_id, datacenter_id):
tierno639520f2017-04-05 19:55:36 +02003503 return ovim.clear_of_port_mapping(db_filter={"region":datacenter_id})