blob: e16f70902f1259fb638d6453f55a1e059dfb0bba [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
tierno8e690322017-08-10 15:58:50 +020041from uuid import uuid4
tiernof97fd272016-07-11 14:32:37 +020042from db_base import db_base_Exception
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +010043
tiernob3d36742017-03-03 23:51:05 +010044import nfvo_db
45from threading import Lock
tierno868220c2017-09-26 00:11:05 +020046import time as t
tierno01b3e172017-04-21 10:52:34 +020047from lib_osm_openvim import ovim as ovim_module
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +020048from lib_osm_openvim.ovim import ovimException
gcalvinoe580c7d2017-09-22 14:09:51 +020049from Crypto.PublicKey import RSA
tierno7edb6752016-03-21 17:37:52 +010050
tiernof1ba57e2017-09-07 12:23:19 +020051import osm_im.vnfd as vnfd_catalog
52import osm_im.nsd as nsd_catalog
tiernof1ba57e2017-09-07 12:23:19 +020053from pyangbind.lib.serialise import pybindJSONDecoder
54from itertools import chain
55
tierno7edb6752016-03-21 17:37:52 +010056global global_config
57global vimconn_imported
tierno73ad9e42016-09-12 18:11:11 +020058global logger
montesmoreno0c8def02016-12-22 12:16:23 +000059global default_volume_size
60default_volume_size = '5' #size in GB
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +010061global ovim
62ovim = None
tiernoc5651792017-03-27 10:50:43 +020063global_config = None
tiernoae4a8d12016-07-08 12:30:39 +020064
tierno42026a02017-02-10 15:13:40 +010065vimconn_imported = {} # dictionary with VIM type as key, loaded module as value
66vim_threads = {"running":{}, "deleting": {}, "names": []} # threads running for attached-VIMs
tiernob3d36742017-03-03 23:51:05 +010067vim_persistent_info = {}
tierno73ad9e42016-09-12 18:11:11 +020068logger = logging.getLogger('openmano.nfvo')
tiernob3d36742017-03-03 23:51:05 +010069task_lock = Lock()
tiernob3d36742017-03-03 23:51:05 +010070last_task_id = 0.0
tierno868220c2017-09-26 00:11:05 +020071db = None
72db_lock = Lock()
tierno7edb6752016-03-21 17:37:52 +010073
74class NfvoException(Exception):
tiernoae4a8d12016-07-08 12:30:39 +020075 def __init__(self, message, http_code):
76 self.http_code = http_code
77 Exception.__init__(self, message)
tierno7edb6752016-03-21 17:37:52 +010078
79
tiernob3d36742017-03-03 23:51:05 +010080def get_task_id():
81 global last_task_id
tierno868220c2017-09-26 00:11:05 +020082 task_id = t.time()
tiernob3d36742017-03-03 23:51:05 +010083 if task_id <= last_task_id:
84 task_id = last_task_id + 0.000001
85 last_task_id = task_id
tierno868220c2017-09-26 00:11:05 +020086 return "ACTION-{:.6f}".format(task_id)
87 # return (t.strftime("%Y%m%dT%H%M%S.{}%Z", t.localtime(task_id))).format(int((task_id % 1)*1e6))
tiernob3d36742017-03-03 23:51:05 +010088
89
tierno867ffe92017-03-27 12:50:34 +020090def new_task(name, params, depends=None):
tierno868220c2017-09-26 00:11:05 +020091 """Deprected!!!"""
tiernob3d36742017-03-03 23:51:05 +010092 task_id = get_task_id()
93 task = {"status": "enqueued", "id": task_id, "name": name, "params": params}
94 if depends:
95 task["depends"] = depends
tiernob3d36742017-03-03 23:51:05 +010096 return task
97
98
99def is_task_id(id):
tierno868220c2017-09-26 00:11:05 +0200100 return True if id[:5] == "TASK-" else False
tiernob3d36742017-03-03 23:51:05 +0100101
102
tierno42026a02017-02-10 15:13:40 +0100103def get_non_used_vim_name(datacenter_name, datacenter_id, tenant_name, tenant_id):
104 name = datacenter_name[:16]
105 if name not in vim_threads["names"]:
106 vim_threads["names"].append(name)
107 return name
tiernob3d36742017-03-03 23:51:05 +0100108 name = datacenter_name[:16] + "." + tenant_name[:16]
tierno42026a02017-02-10 15:13:40 +0100109 if name not in vim_threads["names"]:
110 vim_threads["names"].append(name)
111 return name
112 name = datacenter_id + "-" + tenant_id
113 vim_threads["names"].append(name)
114 return name
115
116
117def start_service(mydb):
tiernob3d36742017-03-03 23:51:05 +0100118 global db, global_config
119 db = nfvo_db.nfvo_db()
120 db.connect(global_config['db_host'], global_config['db_user'], global_config['db_passwd'], global_config['db_name'])
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100121 global ovim
122
123 # Initialize openvim for SDN control
124 # TODO: Avoid static configuration by adding new parameters to openmanod.cfg
125 # TODO: review ovim.py to delete not needed configuration
126 ovim_configuration = {
tierno639520f2017-04-05 19:55:36 +0200127 'logger_name': 'openmano.ovim',
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100128 'network_vlan_range_start': 1000,
129 'network_vlan_range_end': 4096,
tierno639520f2017-04-05 19:55:36 +0200130 'db_name': global_config["db_ovim_name"],
131 'db_host': global_config["db_ovim_host"],
132 'db_user': global_config["db_ovim_user"],
133 'db_passwd': global_config["db_ovim_passwd"],
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100134 'bridge_ifaces': {},
135 'mode': 'normal',
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100136 'network_type': 'bridge',
137 #TODO: log_level_of should not be needed. To be modified in ovim
138 'log_level_of': 'DEBUG'
139 }
tierno42026a02017-02-10 15:13:40 +0100140 try:
tierno46df9672017-05-26 13:12:21 +0200141 ovim = ovim_module.ovim(ovim_configuration)
142 ovim.start_service()
143
144 from_= 'tenants_datacenters as td join datacenters as d on td.datacenter_id=d.uuid join '\
145 'datacenter_tenants as dt on td.datacenter_tenant_id=dt.uuid'
146 select_ = ('type', 'd.config as config', 'd.uuid as datacenter_id', 'vim_url', 'vim_url_admin',
147 'd.name as datacenter_name', 'dt.uuid as datacenter_tenant_id',
148 'dt.vim_tenant_name as vim_tenant_name', 'dt.vim_tenant_id as vim_tenant_id',
149 'user', 'passwd', 'dt.config as dt_config', 'nfvo_tenant_id')
tierno42026a02017-02-10 15:13:40 +0100150 vims = mydb.get_rows(FROM=from_, SELECT=select_)
151 for vim in vims:
tierno867ffe92017-03-27 12:50:34 +0200152 extra={'datacenter_tenant_id': vim.get('datacenter_tenant_id'),
153 'datacenter_id': vim.get('datacenter_id')}
tierno42026a02017-02-10 15:13:40 +0100154 if vim["config"]:
155 extra.update(yaml.load(vim["config"]))
156 if vim.get('dt_config'):
157 extra.update(yaml.load(vim["dt_config"]))
158 if vim["type"] not in vimconn_imported:
159 module_info=None
160 try:
161 module = "vimconn_" + vim["type"]
tierno361275f2017-04-25 16:24:34 +0200162 pkg = __import__("osm_ro." + module)
163 vim_conn = getattr(pkg, module)
164 # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]])
165 # vim_conn = imp.load_module(vim["type"], *module_info)
tierno42026a02017-02-10 15:13:40 +0100166 vimconn_imported[vim["type"]] = vim_conn
167 except (IOError, ImportError) as e:
tierno361275f2017-04-25 16:24:34 +0200168 # if module_info and module_info[0]:
169 # file.close(module_info[0])
tiernocdee8cc2017-04-25 13:42:06 +0200170 raise NfvoException("Unknown vim type '{}'. Cannot open file '{}.py'; {}: {}".format(
tiernob3d36742017-03-03 23:51:05 +0100171 vim["type"], module, type(e).__name__, str(e)), HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +0100172
tierno867ffe92017-03-27 12:50:34 +0200173 thread_id = vim['datacenter_tenant_id']
tiernob3d36742017-03-03 23:51:05 +0100174 vim_persistent_info[thread_id] = {}
tierno42026a02017-02-10 15:13:40 +0100175 try:
176 #if not tenant:
177 # return -HTTP_Bad_Request, "You must provide a valid tenant name or uuid for VIM %s" % ( vim["type"])
178 myvim = vimconn_imported[ vim["type"] ].vimconnector(
tiernob3d36742017-03-03 23:51:05 +0100179 uuid=vim['datacenter_id'], name=vim['datacenter_name'],
180 tenant_id=vim['vim_tenant_id'], tenant_name=vim['vim_tenant_name'],
181 url=vim['vim_url'], url_admin=vim['vim_url_admin'],
182 user=vim['user'], passwd=vim['passwd'],
183 config=extra, persistent_info=vim_persistent_info[thread_id]
184 )
tierno9c22f2d2017-10-09 16:23:55 +0200185 except vimconn.vimconnException as e:
186 myvim = e
187 logger.error("Cannot launch thread for VIM {} '{}': {}".format(vim['datacenter_name'],
188 vim['datacenter_id'], e))
tierno42026a02017-02-10 15:13:40 +0100189 except Exception as e:
tierno46df9672017-05-26 13:12:21 +0200190 raise NfvoException("Error at VIM {}; {}: {}".format(vim["type"], type(e).__name__, e),
191 HTTP_Internal_Server_Error)
192 thread_name = get_non_used_vim_name(vim['datacenter_name'], vim['vim_tenant_id'], vim['vim_tenant_name'],
193 vim['vim_tenant_id'])
tiernob3d36742017-03-03 23:51:05 +0100194 new_thread = vim_thread.vim_thread(myvim, task_lock, thread_name, vim['datacenter_name'],
tierno867ffe92017-03-27 12:50:34 +0200195 vim['datacenter_tenant_id'], db=db, db_lock=db_lock, ovim=ovim)
tierno42026a02017-02-10 15:13:40 +0100196 new_thread.start()
tierno42026a02017-02-10 15:13:40 +0100197 vim_threads["running"][thread_id] = new_thread
198 except db_base_Exception as e:
199 raise NfvoException(str(e) + " at nfvo.get_vim", e.http_code)
tierno46df9672017-05-26 13:12:21 +0200200 except ovim_module.ovimException as e:
201 message = str(e)
202 if message[:22] == "DATABASE wrong version":
203 message = "DATABASE wrong version of lib_osm_openvim {msg} -d{dbname} -u{dbuser} -p{dbpass} {ver}' "\
204 "at host {dbhost}".format(
205 msg=message[22:-3], dbname=global_config["db_ovim_name"],
206 dbuser=global_config["db_ovim_user"], dbpass=global_config["db_ovim_passwd"],
207 ver=message[-3:-1], dbhost=global_config["db_ovim_host"])
208 raise NfvoException(message, HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +0100209
tierno867ffe92017-03-27 12:50:34 +0200210
tierno42026a02017-02-10 15:13:40 +0100211def stop_service():
tiernoc5651792017-03-27 10:50:43 +0200212 global ovim, global_config
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100213 if ovim:
214 ovim.stop_service()
tierno42026a02017-02-10 15:13:40 +0100215 for thread_id,thread in vim_threads["running"].items():
tierno868220c2017-09-26 00:11:05 +0200216 thread.insert_task("exit")
tierno42026a02017-02-10 15:13:40 +0100217 vim_threads["deleting"][thread_id] = thread
tiernob3d36742017-03-03 23:51:05 +0100218 vim_threads["running"] = {}
tiernoc5651792017-03-27 10:50:43 +0200219 if global_config and global_config.get("console_thread"):
220 for thread in global_config["console_thread"]:
221 thread.terminate = True
tiernob3d36742017-03-03 23:51:05 +0100222
tierno6ddeded2017-05-16 15:40:26 +0200223def get_version():
224 return ("openmanod version {} {}\n(c) Copyright Telefonica".format(global_config["version"],
225 global_config["version_date"] ))
226
tierno42026a02017-02-10 15:13:40 +0100227
tierno7edb6752016-03-21 17:37:52 +0100228def get_flavorlist(mydb, vnf_id, nfvo_tenant=None):
229 '''Obtain flavorList
230 return result, content:
231 <0, error_text upon error
232 nb_records, flavor_list on success
233 '''
234 WHERE_dict={}
235 WHERE_dict['vnf_id'] = vnf_id
236 if nfvo_tenant is not None:
237 WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
tierno42026a02017-02-10 15:13:40 +0100238
tierno7edb6752016-03-21 17:37:52 +0100239 #result, content = mydb.get_table(FROM='vms join vnfs on vms.vnf_id = vnfs.uuid',SELECT=('uuid'),WHERE=WHERE_dict )
240 #result, content = mydb.get_table(FROM='vms',SELECT=('vim_flavor_id',),WHERE=WHERE_dict )
tiernof97fd272016-07-11 14:32:37 +0200241 flavors = mydb.get_rows(FROM='vms join flavors on vms.flavor_id=flavors.uuid',SELECT=('flavor_id',),WHERE=WHERE_dict )
242 #print "get_flavor_list result:", result
243 #print "get_flavor_list content:", content
tierno7edb6752016-03-21 17:37:52 +0100244 flavorList=[]
tiernof97fd272016-07-11 14:32:37 +0200245 for flavor in flavors:
tierno7edb6752016-03-21 17:37:52 +0100246 flavorList.append(flavor['flavor_id'])
tiernof97fd272016-07-11 14:32:37 +0200247 return flavorList
tierno7edb6752016-03-21 17:37:52 +0100248
tiernob3d36742017-03-03 23:51:05 +0100249
tierno7edb6752016-03-21 17:37:52 +0100250def get_imagelist(mydb, vnf_id, nfvo_tenant=None):
251 '''Obtain imageList
252 return result, content:
253 <0, error_text upon error
254 nb_records, flavor_list on success
255 '''
256 WHERE_dict={}
257 WHERE_dict['vnf_id'] = vnf_id
258 if nfvo_tenant is not None:
259 WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
tierno42026a02017-02-10 15:13:40 +0100260
tierno7edb6752016-03-21 17:37:52 +0100261 #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 +0200262 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 +0100263 imageList=[]
tiernof97fd272016-07-11 14:32:37 +0200264 for image in images:
tierno7edb6752016-03-21 17:37:52 +0100265 imageList.append(image['image_id'])
tiernof97fd272016-07-11 14:32:37 +0200266 return imageList
tierno7edb6752016-03-21 17:37:52 +0100267
tiernob3d36742017-03-03 23:51:05 +0100268
tiernoa2793912016-10-04 08:15:08 +0000269def get_vim(mydb, nfvo_tenant=None, datacenter_id=None, datacenter_name=None, datacenter_tenant_id=None,
270 vim_tenant=None, vim_tenant_name=None, vim_user=None, vim_passwd=None):
tierno7edb6752016-03-21 17:37:52 +0100271 '''Obtain a dictionary of VIM (datacenter) classes with some of the input parameters
tierno42026a02017-02-10 15:13:40 +0100272 return dictionary with {datacenter_id: vim_class, ... }. vim_class contain:
tierno7edb6752016-03-21 17:37:52 +0100273 'nfvo_tenant_id','datacenter_id','vim_tenant_id','vim_url','vim_url_admin','datacenter_name','type','user','passwd'
tiernobe41e222016-09-02 15:16:13 +0200274 raise exception upon error
tierno7edb6752016-03-21 17:37:52 +0100275 '''
276 WHERE_dict={}
277 if nfvo_tenant is not None: WHERE_dict['nfvo_tenant_id'] = nfvo_tenant
278 if datacenter_id is not None: WHERE_dict['d.uuid'] = datacenter_id
tiernoa2793912016-10-04 08:15:08 +0000279 if datacenter_tenant_id is not None: WHERE_dict['datacenter_tenant_id'] = datacenter_tenant_id
tierno7edb6752016-03-21 17:37:52 +0100280 if datacenter_name is not None: WHERE_dict['d.name'] = datacenter_name
281 if vim_tenant is not None: WHERE_dict['dt.vim_tenant_id'] = vim_tenant
tiernoa2793912016-10-04 08:15:08 +0000282 if vim_tenant_name is not None: WHERE_dict['vim_tenant_name'] = vim_tenant_name
283 if nfvo_tenant or vim_tenant or vim_tenant_name or datacenter_tenant_id:
tierno7edb6752016-03-21 17:37:52 +0100284 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 +0000285 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 +0100286 '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 +0000287 'user','passwd', 'dt.config as dt_config')
tierno7edb6752016-03-21 17:37:52 +0100288 else:
289 from_ = 'datacenters as d'
290 select_ = ('type','config','d.uuid as datacenter_id', 'vim_url', 'vim_url_admin', 'd.name as datacenter_name')
tiernof97fd272016-07-11 14:32:37 +0200291 try:
292 vims = mydb.get_rows(FROM=from_, SELECT=select_, WHERE=WHERE_dict )
293 vim_dict={}
294 for vim in vims:
tierno867ffe92017-03-27 12:50:34 +0200295 extra={'datacenter_tenant_id': vim.get('datacenter_tenant_id'),
296 'datacenter_id': vim.get('datacenter_id')}
tierno8008c3a2016-10-13 15:34:28 +0000297 if vim["config"]:
tiernof97fd272016-07-11 14:32:37 +0200298 extra.update(yaml.load(vim["config"]))
tierno8008c3a2016-10-13 15:34:28 +0000299 if vim.get('dt_config'):
300 extra.update(yaml.load(vim["dt_config"]))
tiernof97fd272016-07-11 14:32:37 +0200301 if vim["type"] not in vimconn_imported:
302 module_info=None
303 try:
304 module = "vimconn_" + vim["type"]
tierno361275f2017-04-25 16:24:34 +0200305 pkg = __import__("osm_ro." + module)
306 vim_conn = getattr(pkg, module)
307 # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]])
308 # vim_conn = imp.load_module(vim["type"], *module_info)
tiernof97fd272016-07-11 14:32:37 +0200309 vimconn_imported[vim["type"]] = vim_conn
310 except (IOError, ImportError) as e:
tierno361275f2017-04-25 16:24:34 +0200311 # if module_info and module_info[0]:
312 # file.close(module_info[0])
tiernof97fd272016-07-11 14:32:37 +0200313 raise NfvoException("Unknown vim type '{}'. Can not open file '{}.py'; {}: {}".format(
314 vim["type"], module, type(e).__name__, str(e)), HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +0100315
tierno7edb6752016-03-21 17:37:52 +0100316 try:
tierno867ffe92017-03-27 12:50:34 +0200317 if 'datacenter_tenant_id' in vim:
318 thread_id = vim["datacenter_tenant_id"]
tiernob3d36742017-03-03 23:51:05 +0100319 if thread_id not in vim_persistent_info:
320 vim_persistent_info[thread_id] = {}
321 persistent_info = vim_persistent_info[thread_id]
322 else:
323 persistent_info = {}
tiernof97fd272016-07-11 14:32:37 +0200324 #if not tenant:
325 # return -HTTP_Bad_Request, "You must provide a valid tenant name or uuid for VIM %s" % ( vim["type"])
326 vim_dict[ vim['datacenter_id'] ] = vimconn_imported[ vim["type"] ].vimconnector(
327 uuid=vim['datacenter_id'], name=vim['datacenter_name'],
tiernob3d36742017-03-03 23:51:05 +0100328 tenant_id=vim.get('vim_tenant_id',vim_tenant),
329 tenant_name=vim.get('vim_tenant_name',vim_tenant_name),
tierno42026a02017-02-10 15:13:40 +0100330 url=vim['vim_url'], url_admin=vim['vim_url_admin'],
tierno3ae39742016-09-07 12:17:51 +0200331 user=vim.get('user',vim_user), passwd=vim.get('passwd',vim_passwd),
tiernob3d36742017-03-03 23:51:05 +0100332 config=extra, persistent_info=persistent_info
tiernof97fd272016-07-11 14:32:37 +0200333 )
334 except Exception as e:
335 raise NfvoException("Error at VIM {}; {}: {}".format(vim["type"], type(e).__name__, str(e)), HTTP_Internal_Server_Error)
336 return vim_dict
337 except db_base_Exception as e:
338 raise NfvoException(str(e) + " at nfvo.get_vim", e.http_code)
tierno42026a02017-02-10 15:13:40 +0100339
tiernob3d36742017-03-03 23:51:05 +0100340
tierno7edb6752016-03-21 17:37:52 +0100341def rollback(mydb, vims, rollback_list):
342 undeleted_items=[]
tierno42026a02017-02-10 15:13:40 +0100343 #delete things by reverse order
tierno7edb6752016-03-21 17:37:52 +0100344 for i in range(len(rollback_list)-1, -1, -1):
345 item = rollback_list[i]
346 if item["where"]=="vim":
347 if item["vim_id"] not in vims:
348 continue
tierno56d73d22017-08-02 13:53:02 +0200349 if is_task_id(item["uuid"]):
350 continue
351 vim = vims[item["vim_id"]]
tiernoae4a8d12016-07-08 12:30:39 +0200352 try:
353 if item["what"]=="image":
354 vim.delete_image(item["uuid"])
tierno868220c2017-09-26 00:11:05 +0200355 mydb.delete_row(FROM="datacenters_images", WHERE={"datacenter_vim_id": vim["id"], "vim_id":item["uuid"]})
tiernoae4a8d12016-07-08 12:30:39 +0200356 elif item["what"]=="flavor":
357 vim.delete_flavor(item["uuid"])
garciadeblas9f8456e2016-09-05 05:02:59 +0200358 mydb.delete_row(FROM="datacenters_flavors", WHERE={"datacenter_id": vim["id"], "vim_id":item["uuid"]})
tiernoae4a8d12016-07-08 12:30:39 +0200359 elif item["what"]=="network":
360 vim.delete_network(item["uuid"])
361 elif item["what"]=="vm":
362 vim.delete_vminstance(item["uuid"])
363 except vimconn.vimconnException as e:
364 logger.error("Error in rollback. Not possible to delete VIM %s '%s'. Message: %s", item['what'], item["uuid"], str(e))
365 undeleted_items.append("{} {} from VIM {}".format(item['what'], item["uuid"], vim["name"]))
tiernof97fd272016-07-11 14:32:37 +0200366 except db_base_Exception as e:
367 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 +0100368
tierno7edb6752016-03-21 17:37:52 +0100369 else: # where==mano
tiernof97fd272016-07-11 14:32:37 +0200370 try:
371 if item["what"]=="image":
372 mydb.delete_row(FROM="images", WHERE={"uuid": item["uuid"]})
373 elif item["what"]=="flavor":
374 mydb.delete_row(FROM="flavors", WHERE={"uuid": item["uuid"]})
375 except db_base_Exception as e:
376 logger.error("Error in rollback. Not possible to delete %s '%s' from DB. Message: %s", item['what'], item["uuid"], str(e))
377 undeleted_items.append("{} '{}'".format(item['what'], item["uuid"]))
tierno42026a02017-02-10 15:13:40 +0100378 if len(undeleted_items)==0:
tierno7edb6752016-03-21 17:37:52 +0100379 return True," Rollback successful."
380 else:
381 return False," Rollback fails to delete: " + str(undeleted_items)
tierno42026a02017-02-10 15:13:40 +0100382
tiernob3d36742017-03-03 23:51:05 +0100383
tiernoafed5f12017-01-26 17:57:43 +0100384def check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=1):
tierno7edb6752016-03-21 17:37:52 +0100385 global global_config
tierno42026a02017-02-10 15:13:40 +0100386 #create a dictionary with vnfc-name: vnfc:interface-list key:values pairs
tierno7edb6752016-03-21 17:37:52 +0100387 vnfc_interfaces={}
388 for vnfc in vnf_descriptor["vnf"]["VNFC"]:
tiernoafed5f12017-01-26 17:57:43 +0100389 name_dict = {}
tierno7edb6752016-03-21 17:37:52 +0100390 #dataplane interfaces
391 for numa in vnfc.get("numas",() ):
392 for interface in numa.get("interfaces",()):
tiernoafed5f12017-01-26 17:57:43 +0100393 if interface["name"] in name_dict:
394 raise NfvoException(
395 "Error at vnf:VNFC[name:'{}']:numas:interfaces:name, interface name '{}' already used in this VNFC".format(
396 vnfc["name"], interface["name"]),
397 HTTP_Bad_Request)
398 name_dict[ interface["name"] ] = "underlay"
tierno7edb6752016-03-21 17:37:52 +0100399 #bridge interfaces
400 for interface in vnfc.get("bridge-ifaces",() ):
tiernoafed5f12017-01-26 17:57:43 +0100401 if interface["name"] in name_dict:
402 raise NfvoException(
403 "Error at vnf:VNFC[name:'{}']:bridge-ifaces:name, interface name '{}' already used in this VNFC".format(
404 vnfc["name"], interface["name"]),
405 HTTP_Bad_Request)
406 name_dict[ interface["name"] ] = "overlay"
407 vnfc_interfaces[ vnfc["name"] ] = name_dict
tierno36c0b172017-01-12 18:32:28 +0100408 # check bood-data info
tierno40e1bce2017-08-09 09:12:04 +0200409 # if "boot-data" in vnfc:
410 # # check that user-data is incompatible with users and config-files
411 # if (vnfc["boot-data"].get("users") or vnfc["boot-data"].get("config-files")) and vnfc["boot-data"].get("user-data"):
412 # raise NfvoException(
413 # "Error at vnf:VNFC:boot-data, fields 'users' and 'config-files' are not compatible with 'user-data'",
414 # HTTP_Bad_Request)
tierno36c0b172017-01-12 18:32:28 +0100415
tierno7edb6752016-03-21 17:37:52 +0100416 #check if the info in external_connections matches with the one in the vnfcs
417 name_list=[]
418 for external_connection in vnf_descriptor["vnf"].get("external-connections",() ):
419 if external_connection["name"] in name_list:
tiernoafed5f12017-01-26 17:57:43 +0100420 raise NfvoException(
421 "Error at vnf:external-connections:name, value '{}' already used as an external-connection".format(
422 external_connection["name"]),
423 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100424 name_list.append(external_connection["name"])
425 if external_connection["VNFC"] not in vnfc_interfaces:
tiernoafed5f12017-01-26 17:57:43 +0100426 raise NfvoException(
427 "Error at vnf:external-connections[name:'{}']:VNFC, value '{}' does not match any VNFC".format(
428 external_connection["name"], external_connection["VNFC"]),
429 HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +0100430
tierno7edb6752016-03-21 17:37:52 +0100431 if external_connection["local_iface_name"] not in vnfc_interfaces[ external_connection["VNFC"] ]:
tiernoafed5f12017-01-26 17:57:43 +0100432 raise NfvoException(
433 "Error at vnf:external-connections[name:'{}']:local_iface_name, value '{}' does not match any interface of this VNFC".format(
434 external_connection["name"],
435 external_connection["local_iface_name"]),
436 HTTP_Bad_Request )
tierno42026a02017-02-10 15:13:40 +0100437
tierno7edb6752016-03-21 17:37:52 +0100438 #check if the info in internal_connections matches with the one in the vnfcs
439 name_list=[]
440 for internal_connection in vnf_descriptor["vnf"].get("internal-connections",() ):
441 if internal_connection["name"] in name_list:
tiernoafed5f12017-01-26 17:57:43 +0100442 raise NfvoException(
443 "Error at vnf:internal-connections:name, value '%s' already used as an internal-connection".format(
444 internal_connection["name"]),
445 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100446 name_list.append(internal_connection["name"])
447 #We should check that internal-connections of type "ptp" have only 2 elements
tiernoafed5f12017-01-26 17:57:43 +0100448
449 if len(internal_connection["elements"])>2 and (internal_connection.get("type") == "ptp" or internal_connection.get("type") == "e-line"):
450 raise NfvoException(
451 "Error at 'vnf:internal-connections[name:'{}']:elements', size must be 2 for a '{}' type. Consider change it to '{}' type".format(
452 internal_connection["name"],
453 'ptp' if vnf_descriptor_version==1 else 'e-line',
454 'data' if vnf_descriptor_version==1 else "e-lan"),
455 HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100456 for port in internal_connection["elements"]:
tiernoafed5f12017-01-26 17:57:43 +0100457 vnf = port["VNFC"]
458 iface = port["local_iface_name"]
459 if vnf not in vnfc_interfaces:
460 raise NfvoException(
461 "Error at vnf:internal-connections[name:'{}']:elements[]:VNFC, value '{}' does not match any VNFC".format(
462 internal_connection["name"], vnf),
463 HTTP_Bad_Request)
464 if iface not in vnfc_interfaces[ vnf ]:
465 raise NfvoException(
466 "Error at vnf:internal-connections[name:'{}']:elements[]:local_iface_name, value '{}' does not match any interface of this VNFC".format(
467 internal_connection["name"], iface),
468 HTTP_Bad_Request)
469 return -HTTP_Bad_Request,
470 if vnf_descriptor_version==1 and "type" not in internal_connection:
471 if vnfc_interfaces[vnf][iface] == "overlay":
472 internal_connection["type"] = "bridge"
473 else:
474 internal_connection["type"] = "data"
475 if vnf_descriptor_version==2 and "implementation" not in internal_connection:
476 if vnfc_interfaces[vnf][iface] == "overlay":
477 internal_connection["implementation"] = "overlay"
478 else:
479 internal_connection["implementation"] = "underlay"
480 if (internal_connection.get("type") == "data" or internal_connection.get("type") == "ptp" or \
481 internal_connection.get("implementation") == "underlay") and vnfc_interfaces[vnf][iface] == "overlay":
482 raise NfvoException(
483 "Error at vnf:internal-connections[name:'{}']:elements[]:{}, interface of type {} connected to an {} network".format(
484 internal_connection["name"],
485 iface, 'bridge' if vnf_descriptor_version==1 else 'overlay',
486 'data' if vnf_descriptor_version==1 else 'underlay'),
487 HTTP_Bad_Request)
488 if (internal_connection.get("type") == "bridge" or internal_connection.get("implementation") == "overlay") and \
489 vnfc_interfaces[vnf][iface] == "underlay":
490 raise NfvoException(
491 "Error at vnf:internal-connections[name:'{}']:elements[]:{}, interface of type {} connected to an {} network".format(
492 internal_connection["name"], iface,
493 'data' if vnf_descriptor_version==1 else 'underlay',
494 'bridge' if vnf_descriptor_version==1 else 'overlay'),
495 HTTP_Bad_Request)
496
tierno7edb6752016-03-21 17:37:52 +0100497
tierno56d73d22017-08-02 13:53:02 +0200498def 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 +0100499 #look if image exist
500 if only_create_at_vim:
501 image_mano_id = image_dict['uuid']
tierno5e91eb82016-10-04 09:39:07 +0000502 if return_on_error == None:
503 return_on_error = True
tierno7edb6752016-03-21 17:37:52 +0100504 else:
garciadeblas14480452017-01-10 13:08:07 +0100505 if image_dict['location']:
garciadeblasb69fa9f2016-09-28 12:04:10 +0200506 images = mydb.get_rows(FROM="images", WHERE={'location':image_dict['location'], 'metadata':image_dict['metadata']})
507 else:
508 images = mydb.get_rows(FROM="images", WHERE={'universal_name':image_dict['universal_name'], 'checksum':image_dict['checksum']})
tiernof97fd272016-07-11 14:32:37 +0200509 if len(images)>=1:
510 image_mano_id = images[0]['uuid']
tierno7edb6752016-03-21 17:37:52 +0100511 else:
garciadeblas14480452017-01-10 13:08:07 +0100512 #create image in MANO DB
tierno7edb6752016-03-21 17:37:52 +0100513 temp_image_dict={'name':image_dict['name'], 'description':image_dict.get('description',None),
garciadeblasb69fa9f2016-09-28 12:04:10 +0200514 'location':image_dict['location'], 'metadata':image_dict.get('metadata',None),
515 'universal_name':image_dict['universal_name'] , 'checksum':image_dict['checksum']
tierno7edb6752016-03-21 17:37:52 +0100516 }
garciadeblas14480452017-01-10 13:08:07 +0100517 #temp_image_dict['location'] = image_dict.get('new_location') if image_dict['location'] is None
tiernof97fd272016-07-11 14:32:37 +0200518 image_mano_id = mydb.new_row('images', temp_image_dict, add_uuid=True)
519 rollback_list.append({"where":"mano", "what":"image","uuid":image_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100520 #create image at every vim
521 for vim_id,vim in vims.iteritems():
tierno868220c2017-09-26 00:11:05 +0200522 datacenter_vim_id = vim["config"]["datacenter_tenant_id"]
tierno7edb6752016-03-21 17:37:52 +0100523 image_created="false"
524 #look at database
tierno868220c2017-09-26 00:11:05 +0200525 image_db = mydb.get_rows(FROM="datacenters_images",
526 WHERE={'datacenter_vim_id': datacenter_vim_id, 'image_id': image_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100527 #look at VIM if this image exist
tiernoae4a8d12016-07-08 12:30:39 +0200528 try:
garciadeblasb69fa9f2016-09-28 12:04:10 +0200529 if image_dict['location'] is not None:
530 image_vim_id = vim.get_image_id_from_path(image_dict['location'])
531 else:
garciadeblas30833382017-01-09 09:46:31 +0100532 filter_dict = {}
533 filter_dict['name'] = image_dict['universal_name']
534 if image_dict.get('checksum') != None:
535 filter_dict['checksum'] = image_dict['checksum']
garciadeblasbb6a1ed2016-09-30 14:02:09 +0000536 #logger.debug('>>>>>>>> Filter dict: %s', str(filter_dict))
garciadeblasb69fa9f2016-09-28 12:04:10 +0200537 vim_images = vim.get_image_list(filter_dict)
garciadeblas14480452017-01-10 13:08:07 +0100538 #logger.debug('>>>>>>>> VIM images: %s', str(vim_images))
garciadeblasb69fa9f2016-09-28 12:04:10 +0200539 if len(vim_images) > 1:
garciadeblas3fa2c052017-01-05 12:00:08 +0100540 raise vimconn.vimconnException("More than one candidate VIM image found for filter: {}".format(str(filter_dict)), HTTP_Conflict)
garciadeblasbb6a1ed2016-09-30 14:02:09 +0000541 elif len(vim_images) == 0:
garciadeblas3fa2c052017-01-05 12:00:08 +0100542 raise vimconn.vimconnNotFoundException("Image not found at VIM with filter: '{}'".format(str(filter_dict)))
garciadeblasb69fa9f2016-09-28 12:04:10 +0200543 else:
garciadeblas14480452017-01-10 13:08:07 +0100544 #logger.debug('>>>>>>>> VIM image 0: %s', str(vim_images[0]))
545 image_vim_id = vim_images[0]['id']
garciadeblasb69fa9f2016-09-28 12:04:10 +0200546
tiernoae4a8d12016-07-08 12:30:39 +0200547 except vimconn.vimconnNotFoundException as e:
garciadeblas14480452017-01-10 13:08:07 +0100548 #Create the image in VIM only if image_dict['location'] or image_dict['new_location'] is not None
tierno42026a02017-02-10 15:13:40 +0100549 try:
garciadeblas14480452017-01-10 13:08:07 +0100550 #image_dict['location']=image_dict.get('new_location') if image_dict['location'] is None
551 if image_dict['location']:
552 image_vim_id = vim.new_image(image_dict)
553 rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"image","uuid":image_vim_id})
554 image_created="true"
555 else:
garciadeblasb6153a22017-02-06 15:38:33 +0100556 #If we reach this point, then the image has image name, and optionally checksum, and could not be found
557 raise vimconn.vimconnException(str(e))
tiernoae4a8d12016-07-08 12:30:39 +0200558 except vimconn.vimconnException as e:
559 if return_on_error:
garciadeblas14480452017-01-10 13:08:07 +0100560 logger.error("Error creating image at VIM '%s': %s", vim["name"], str(e))
tiernof97fd272016-07-11 14:32:37 +0200561 raise
tierno5e91eb82016-10-04 09:39:07 +0000562 image_vim_id = None
garciadeblas14480452017-01-10 13:08:07 +0100563 logger.warn("Error creating image at VIM '%s': %s", vim["name"], str(e))
tiernoae4a8d12016-07-08 12:30:39 +0200564 continue
565 except vimconn.vimconnException as e:
tierno5e91eb82016-10-04 09:39:07 +0000566 if return_on_error:
567 logger.error("Error contacting VIM to know if the image exists at VIM: %s", str(e))
568 raise
garciadeblasb69fa9f2016-09-28 12:04:10 +0200569 logger.warn("Error contacting VIM to know if the image exists at VIM: %s", str(e))
tierno5e91eb82016-10-04 09:39:07 +0000570 image_vim_id = None
garciadeblas30833382017-01-09 09:46:31 +0100571 continue
garciadeblasb69fa9f2016-09-28 12:04:10 +0200572 #if we reach here, the image has been created or existed
tiernof97fd272016-07-11 14:32:37 +0200573 if len(image_db)==0:
tierno7edb6752016-03-21 17:37:52 +0100574 #add new vim_id at datacenters_images
tierno868220c2017-09-26 00:11:05 +0200575 mydb.new_row('datacenters_images', {'datacenter_vim_id': datacenter_vim_id,
576 'image_id':image_mano_id,
577 'vim_id': image_vim_id,
578 'created':image_created})
tierno7edb6752016-03-21 17:37:52 +0100579 elif image_db[0]["vim_id"]!=image_vim_id:
580 #modify existing vim_id at datacenters_images
tierno868220c2017-09-26 00:11:05 +0200581 mydb.update_rows('datacenters_images', UPDATE={'vim_id':image_vim_id}, WHERE={'datacenter_vim_id':vim_id, 'image_id':image_mano_id})
tierno42026a02017-02-10 15:13:40 +0100582
tiernof97fd272016-07-11 14:32:37 +0200583 return image_vim_id if only_create_at_vim else image_mano_id
tierno7edb6752016-03-21 17:37:52 +0100584
tiernob3d36742017-03-03 23:51:05 +0100585
tierno5e91eb82016-10-04 09:39:07 +0000586def 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 +0100587 temp_flavor_dict= {'disk':flavor_dict.get('disk',1),
588 'ram':flavor_dict.get('ram'),
589 'vcpus':flavor_dict.get('vcpus'),
590 }
591 if 'extended' in flavor_dict and flavor_dict['extended']==None:
592 del flavor_dict['extended']
593 if 'extended' in flavor_dict:
594 temp_flavor_dict['extended']=yaml.safe_dump(flavor_dict['extended'],default_flow_style=True,width=256)
595
596 #look if flavor exist
597 if only_create_at_vim:
598 flavor_mano_id = flavor_dict['uuid']
tierno5e91eb82016-10-04 09:39:07 +0000599 if return_on_error == None:
600 return_on_error = True
tierno7edb6752016-03-21 17:37:52 +0100601 else:
tiernof97fd272016-07-11 14:32:37 +0200602 flavors = mydb.get_rows(FROM="flavors", WHERE=temp_flavor_dict)
603 if len(flavors)>=1:
604 flavor_mano_id = flavors[0]['uuid']
tierno7edb6752016-03-21 17:37:52 +0100605 else:
606 #create flavor
607 #create one by one the images of aditional disks
608 dev_image_list=[] #list of images
609 if 'extended' in flavor_dict and flavor_dict['extended']!=None:
610 dev_nb=0
611 for device in flavor_dict['extended'].get('devices',[]):
garciadeblas41f18be2016-10-04 09:09:58 +0200612 if "image" not in device and "image name" not in device:
tierno7edb6752016-03-21 17:37:52 +0100613 continue
garciadeblasb69fa9f2016-09-28 12:04:10 +0200614 image_dict={}
615 image_dict['name']=device.get('image name',flavor_dict['name']+str(dev_nb)+"-img")
616 image_dict['universal_name']=device.get('image name')
617 image_dict['description']=flavor_dict['name']+str(dev_nb)+"-img"
618 image_dict['location']=device.get('image')
garciadeblas14480452017-01-10 13:08:07 +0100619 #image_dict['new_location']=vnfc.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +0200620 image_dict['checksum']=device.get('image checksum')
tierno7edb6752016-03-21 17:37:52 +0100621 image_metadata_dict = device.get('image metadata', None)
622 image_metadata_str = None
tierno42026a02017-02-10 15:13:40 +0100623 if image_metadata_dict != None:
tierno7edb6752016-03-21 17:37:52 +0100624 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
625 image_dict['metadata']=image_metadata_str
tiernof97fd272016-07-11 14:32:37 +0200626 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
627 #print "Additional disk image id for VNFC %s: %s" % (flavor_dict['name']+str(dev_nb)+"-img", image_id)
tierno7edb6752016-03-21 17:37:52 +0100628 dev_image_list.append(image_id)
tierno42026a02017-02-10 15:13:40 +0100629 dev_nb += 1
tierno7edb6752016-03-21 17:37:52 +0100630 temp_flavor_dict['name'] = flavor_dict['name']
631 temp_flavor_dict['description'] = flavor_dict.get('description',None)
tiernof97fd272016-07-11 14:32:37 +0200632 content = mydb.new_row('flavors', temp_flavor_dict, add_uuid=True)
633 flavor_mano_id= content
634 rollback_list.append({"where":"mano", "what":"flavor","uuid":flavor_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100635 #create flavor at every vim
636 if 'uuid' in flavor_dict:
637 del flavor_dict['uuid']
638 flavor_vim_id=None
639 for vim_id,vim in vims.items():
tierno868220c2017-09-26 00:11:05 +0200640 datacenter_vim_id = vim["config"]["datacenter_tenant_id"]
tierno7edb6752016-03-21 17:37:52 +0100641 flavor_created="false"
642 #look at database
tierno868220c2017-09-26 00:11:05 +0200643 flavor_db = mydb.get_rows(FROM="datacenters_flavors",
644 WHERE={'datacenter_vim_id': datacenter_vim_id, 'flavor_id': flavor_mano_id})
tierno7edb6752016-03-21 17:37:52 +0100645 #look at VIM if this flavor exist SKIPPED
646 #res_vim, flavor_vim_id = vim.get_flavor_id_from_path(flavor_dict['location'])
647 #if res_vim < 0:
648 # print "Error contacting VIM to know if the flavor %s existed previously." %flavor_vim_id
649 # continue
650 #elif res_vim==0:
tierno42026a02017-02-10 15:13:40 +0100651
tiernof1ba57e2017-09-07 12:23:19 +0200652 # Create the flavor in VIM
653 # Translate images at devices from MANO id to VIM id
montesmoreno0c8def02016-12-22 12:16:23 +0000654 disk_list = []
tierno7edb6752016-03-21 17:37:52 +0100655 if 'extended' in flavor_dict and flavor_dict['extended']!=None and "devices" in flavor_dict['extended']:
tiernof1ba57e2017-09-07 12:23:19 +0200656 # make a copy of original devices
tierno7edb6752016-03-21 17:37:52 +0100657 devices_original=[]
montesmoreno0c8def02016-12-22 12:16:23 +0000658
tierno7edb6752016-03-21 17:37:52 +0100659 for device in flavor_dict["extended"].get("devices",[]):
660 dev={}
661 dev.update(device)
662 devices_original.append(dev)
663 if 'image' in device:
664 del device['image']
665 if 'image metadata' in device:
666 del device['image metadata']
tiernof1ba57e2017-09-07 12:23:19 +0200667 if 'image checksum' in device:
668 del device['image checksum']
669 dev_nb = 0
tierno7edb6752016-03-21 17:37:52 +0100670 for index in range(0,len(devices_original)) :
671 device=devices_original[index]
montesmoreno0c8def02016-12-22 12:16:23 +0000672 if "image" not in device and "image name" not in device:
673 if 'size' in device:
674 disk_list.append({'size': device.get('size', default_volume_size)})
tierno7edb6752016-03-21 17:37:52 +0100675 continue
garciadeblasb69fa9f2016-09-28 12:04:10 +0200676 image_dict={}
677 image_dict['name']=device.get('image name',flavor_dict['name']+str(dev_nb)+"-img")
678 image_dict['universal_name']=device.get('image name')
679 image_dict['description']=flavor_dict['name']+str(dev_nb)+"-img"
680 image_dict['location']=device.get('image')
tiernof1ba57e2017-09-07 12:23:19 +0200681 # image_dict['new_location']=device.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +0200682 image_dict['checksum']=device.get('image checksum')
tierno7edb6752016-03-21 17:37:52 +0100683 image_metadata_dict = device.get('image metadata', None)
684 image_metadata_str = None
tierno42026a02017-02-10 15:13:40 +0100685 if image_metadata_dict != None:
tierno7edb6752016-03-21 17:37:52 +0100686 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
687 image_dict['metadata']=image_metadata_str
tiernof97fd272016-07-11 14:32:37 +0200688 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 +0100689 image_dict["uuid"]=image_mano_id
tiernof97fd272016-07-11 14:32:37 +0200690 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 +0000691
692 #save disk information (image must be based on and size
693 disk_list.append({'image_id': image_vim_id, 'size': device.get('size', default_volume_size)})
694
tierno7edb6752016-03-21 17:37:52 +0100695 flavor_dict["extended"]["devices"][index]['imageRef']=image_vim_id
696 dev_nb += 1
tiernof97fd272016-07-11 14:32:37 +0200697 if len(flavor_db)>0:
tierno7edb6752016-03-21 17:37:52 +0100698 #check that this vim_id exist in VIM, if not create
699 flavor_vim_id=flavor_db[0]["vim_id"]
tiernoae4a8d12016-07-08 12:30:39 +0200700 try:
701 vim.get_flavor(flavor_vim_id)
702 continue #flavor exist
703 except vimconn.vimconnException:
704 pass
tierno7edb6752016-03-21 17:37:52 +0100705 #create flavor at vim
tiernoae4a8d12016-07-08 12:30:39 +0200706 logger.debug("nfvo.create_or_use_flavor() adding flavor to VIM %s", vim["name"])
707 try:
tiernocf157a82017-01-30 14:07:06 +0100708 flavor_vim_id = None
709 flavor_vim_id=vim.get_flavor_id_from_data(flavor_dict)
710 flavor_create="false"
711 except vimconn.vimconnException as e:
712 pass
713 try:
714 if not flavor_vim_id:
715 flavor_vim_id = vim.new_flavor(flavor_dict)
716 rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"flavor","uuid":flavor_vim_id})
717 flavor_created="true"
tiernoae4a8d12016-07-08 12:30:39 +0200718 except vimconn.vimconnException as e:
719 if return_on_error:
720 logger.error("Error creating flavor at VIM %s: %s.", vim["name"], str(e))
tiernof97fd272016-07-11 14:32:37 +0200721 raise
tiernoae4a8d12016-07-08 12:30:39 +0200722 logger.warn("Error creating flavor at VIM %s: %s.", vim["name"], str(e))
tierno5e91eb82016-10-04 09:39:07 +0000723 flavor_vim_id = None
tiernoae4a8d12016-07-08 12:30:39 +0200724 continue
tierno7edb6752016-03-21 17:37:52 +0100725 #if reach here the flavor has been create or exist
tiernof97fd272016-07-11 14:32:37 +0200726 if len(flavor_db)==0:
tierno7edb6752016-03-21 17:37:52 +0100727 #add new vim_id at datacenters_flavors
montesmoreno0c8def02016-12-22 12:16:23 +0000728 extended_devices_yaml = None
729 if len(disk_list) > 0:
730 extended_devices = dict()
731 extended_devices['disks'] = disk_list
732 extended_devices_yaml = yaml.safe_dump(extended_devices,default_flow_style=True,width=256)
733 mydb.new_row('datacenters_flavors',
tierno868220c2017-09-26 00:11:05 +0200734 {'datacenter_vim_id': datacenter_vim_id, 'flavor_id': flavor_mano_id, 'vim_id': flavor_vim_id,
735 'created': flavor_created, 'extended': extended_devices_yaml})
tierno7edb6752016-03-21 17:37:52 +0100736 elif flavor_db[0]["vim_id"]!=flavor_vim_id:
737 #modify existing vim_id at datacenters_flavors
tierno868220c2017-09-26 00:11:05 +0200738 mydb.update_rows('datacenters_flavors', UPDATE={'vim_id':flavor_vim_id},
739 WHERE={'datacenter_vim_id': datacenter_vim_id, 'flavor_id': flavor_mano_id})
tierno42026a02017-02-10 15:13:40 +0100740
tiernof97fd272016-07-11 14:32:37 +0200741 return flavor_vim_id if only_create_at_vim else flavor_mano_id
tierno7edb6752016-03-21 17:37:52 +0100742
tiernob3d36742017-03-03 23:51:05 +0100743
tiernof1ba57e2017-09-07 12:23:19 +0200744def get_str(obj, field, length):
745 """
746 Obtain the str value,
747 :param obj:
748 :param length:
749 :return:
750 """
751 value = obj.get(field)
752 if value is not None:
753 value = str(value)[:length]
754 return value
755
756def _lookfor_or_create_image(db_image, mydb, descriptor):
757 """
758 fill image content at db_image dictionary. Check if the image with this image and checksum exist
759 :param db_image: dictionary to insert data
760 :param mydb: database connector
761 :param descriptor: yang descriptor
762 :return: uuid if the image exist at DB, or None if a new image must be created with the data filled at db_image
763 """
764
765 db_image["name"] = get_str(descriptor, "image", 255)
766 db_image["checksum"] = get_str(descriptor, "image-checksum", 32)
767 if not db_image["checksum"]: # Ensure that if empty string, None is stored
768 db_image["checksum"] = None
769 if db_image["name"].startswith("/"):
770 db_image["location"] = db_image["name"]
771 existing_images = mydb.get_rows(FROM="images", WHERE={'location': db_image["location"]})
772 else:
773 db_image["universal_name"] = db_image["name"]
774 existing_images = mydb.get_rows(FROM="images", WHERE={'universal_name': db_image['universal_name'],
775 'checksum': db_image['checksum']})
776 if existing_images:
777 return existing_images[0]["uuid"]
778 else:
779 image_uuid = str(uuid4())
780 db_image["uuid"] = image_uuid
781 return None
782
783def new_vnfd_v3(mydb, tenant_id, vnf_descriptor):
784 """
785 Parses an OSM IM vnfd_catalog and insert at DB
786 :param mydb:
787 :param tenant_id:
788 :param vnf_descriptor:
789 :return: The list of cretated vnf ids
790 """
791 try:
792 myvnfd = vnfd_catalog.vnfd()
tiernoa9550202017-09-22 13:31:35 +0200793 try:
794 pybindJSONDecoder.load_ietf_json(vnf_descriptor, None, None, obj=myvnfd)
795 except Exception as e:
tiernob2880eb2017-10-04 15:04:53 +0200796 raise NfvoException("Error. Invalid VNF descriptor format " + str(e), HTTP_Bad_Request)
tiernof1ba57e2017-09-07 12:23:19 +0200797 db_vnfs = []
798 db_nets = []
799 db_vms = []
800 db_vms_index = 0
801 db_interfaces = []
802 db_images = []
803 db_flavors = []
804 uuid_list = []
805 vnfd_uuid_list = []
tiernob2880eb2017-10-04 15:04:53 +0200806 for vnfd_yang in myvnfd.vnfd_catalog.vnfd.itervalues():
807 vnfd = vnfd_yang.get()
tiernof1ba57e2017-09-07 12:23:19 +0200808
809 # table vnf
810 vnf_uuid = str(uuid4())
811 uuid_list.append(vnf_uuid)
812 vnfd_uuid_list.append(vnf_uuid)
813 db_vnf = {
814 "uuid": vnf_uuid,
815 "osm_id": get_str(vnfd, "id", 255),
816 "name": get_str(vnfd, "name", 255),
817 "description": get_str(vnfd, "description", 255),
818 "tenant_id": tenant_id,
819 "vendor": get_str(vnfd, "vendor", 255),
820 "short_name": get_str(vnfd, "short-name", 255),
821 "descriptor": str(vnf_descriptor)[:60000]
822 }
823
824 # table nets (internal-vld)
825 net_id2uuid = {} # for mapping interface with network
826 for vld in vnfd.get("internal-vld").itervalues():
827 net_uuid = str(uuid4())
828 uuid_list.append(net_uuid)
829 db_net = {
830 "name": get_str(vld, "name", 255),
831 "vnf_id": vnf_uuid,
832 "uuid": net_uuid,
833 "description": get_str(vld, "description", 255),
834 "type": "bridge", # TODO adjust depending on connection point type
835 }
836 net_id2uuid[vld.get("id")] = net_uuid
837 db_nets.append(db_net)
838
839 # table vms (vdus)
840 vdu_id2uuid = {}
841 vdu_id2db_table_index = {}
842 for vdu in vnfd.get("vdu").itervalues():
843 vm_uuid = str(uuid4())
844 uuid_list.append(vm_uuid)
845 db_vm = {
846 "uuid": vm_uuid,
847 "osm_id": get_str(vdu, "id", 255),
848 "name": get_str(vdu, "name", 255),
849 "description": get_str(vdu, "description", 255),
850 "vnf_id": vnf_uuid,
851 }
852 vdu_id2uuid[db_vm["osm_id"]] = vm_uuid
853 vdu_id2db_table_index[db_vm["osm_id"]] = db_vms_index
854 if vdu.get("count"):
855 db_vm["count"] = int(vdu["count"])
856
857 # table image
858 image_present = False
859 if vdu.get("image"):
860 image_present = True
861 db_image = {}
862 image_uuid = _lookfor_or_create_image(db_image, mydb, vdu)
863 if not image_uuid:
864 image_uuid = db_image["uuid"]
865 db_images.append(db_image)
866 db_vm["image_id"] = image_uuid
867
868 # volumes
869 devices = []
870 if vdu.get("volumes"):
871 for volume_key in sorted(vdu["volumes"]):
872 volume = vdu["volumes"][volume_key]
873 if not image_present:
874 # Convert the first volume to vnfc.image
875 image_present = True
876 db_image = {}
877 image_uuid = _lookfor_or_create_image(db_image, mydb, volume)
878 if not image_uuid:
879 image_uuid = db_image["uuid"]
880 db_images.append(db_image)
881 db_vm["image_id"] = image_uuid
882 else:
883 # Add Openmano devices
884 device = {}
885 device["type"] = str(volume.get("device-type"))
886 if volume.get("size"):
887 device["size"] = int(volume["size"])
888 if volume.get("image"):
889 device["image name"] = str(volume["image"])
890 if volume.get("image-checksum"):
891 device["image checksum"] = str(volume["image-checksum"])
892 devices.append(device)
893
894 # table flavors
895 db_flavor = {
896 "name": get_str(vdu, "name", 250) + "-flv",
897 "vcpus": int(vdu["vm-flavor"].get("vcpu-count", 1)),
898 "ram": int(vdu["vm-flavor"].get("memory-mb", 1)),
899 "disk": int(vdu["vm-flavor"].get("storage-gb", 1)),
900 }
901 # EPA TODO revise
902 extended = {}
903 numa = {}
904 if devices:
905 extended["devices"] = devices
906 if vdu.get("guest-epa"): # TODO or dedicated_int:
907 epa_vcpu_set = False
908 if vdu["guest-epa"].get("numa-node-policy"): # TODO or dedicated_int:
909 numa_node_policy = vdu["guest-epa"].get("numa-node-policy")
910 if numa_node_policy.get("node"):
tierno39dddcc2017-10-05 18:48:06 +0200911 numa_node = numa_node_policy["node"]['0']
tiernof1ba57e2017-09-07 12:23:19 +0200912 if numa_node.get("num-cores"):
913 numa["cores"] = numa_node["num-cores"]
914 epa_vcpu_set = True
915 if numa_node.get("paired-threads"):
916 if numa_node["paired-threads"].get("num-paired-threads"):
tierno39dddcc2017-10-05 18:48:06 +0200917 numa["paired-threads"] = int(numa_node["paired-threads"]["num-paired-threads"])
tiernof1ba57e2017-09-07 12:23:19 +0200918 epa_vcpu_set = True
tierno39dddcc2017-10-05 18:48:06 +0200919 if len(numa_node["paired-threads"].get("paired-thread-ids")):
tiernof1ba57e2017-09-07 12:23:19 +0200920 numa["paired-threads-id"] = []
tierno39dddcc2017-10-05 18:48:06 +0200921 for pair in numa_node["paired-threads"]["paired-thread-ids"].itervalues():
tiernof1ba57e2017-09-07 12:23:19 +0200922 numa["paired-threads-id"].append(
923 (str(pair["thread-a"]), str(pair["thread-b"]))
924 )
925 if numa_node.get("num-threads"):
tierno39dddcc2017-10-05 18:48:06 +0200926 numa["threads"] = int(numa_node["num-threads"])
tiernof1ba57e2017-09-07 12:23:19 +0200927 epa_vcpu_set = True
928 if numa_node.get("memory-mb"):
929 numa["memory"] = max(int(numa_node["memory-mb"] / 1024), 1)
930 if vdu["guest-epa"].get("mempage-size"):
931 if vdu["guest-epa"]["mempage-size"] != "SMALL":
932 numa["memory"] = max(int(db_flavor["ram"] / 1024), 1)
933 if vdu["guest-epa"].get("cpu-pinning-policy") and not epa_vcpu_set:
934 if vdu["guest-epa"]["cpu-pinning-policy"] == "DEDICATED":
935 if vdu["guest-epa"].get("cpu-thread-pinning-policy") and \
936 vdu["guest-epa"]["cpu-thread-pinning-policy"] != "PREFER":
937 numa["cores"] = max(db_flavor["vcpus"], 1)
938 else:
939 numa["threads"] = max(db_flavor["vcpus"], 1)
940 if numa:
941 extended["numas"] = [numa]
942 if extended:
943 extended_text = yaml.safe_dump(extended, default_flow_style=True, width=256)
944 db_flavor["extended"] = extended_text
945 # look if flavor exist
946
947 temp_flavor_dict = {'disk': db_flavor.get('disk', 1),
948 'ram': db_flavor.get('ram'),
949 'vcpus': db_flavor.get('vcpus'),
950 'extended': db_flavor.get('extended')
951 }
952 existing_flavors = mydb.get_rows(FROM="flavors", WHERE=temp_flavor_dict)
953 if existing_flavors:
954 flavor_uuid = existing_flavors[0]["uuid"]
955 else:
956 flavor_uuid = str(uuid4())
957 uuid_list.append(flavor_uuid)
958 db_flavor["uuid"] = flavor_uuid
959 db_flavors.append(db_flavor)
960 db_vm["flavor_id"] = flavor_uuid
961
962 # cloud-init
963 boot_data = {}
964 if vdu.get("cloud-init"):
gcalvinoe580c7d2017-09-22 14:09:51 +0200965 boot_data["user-data"] = str(vdu["cloud-init"])
tiernof1ba57e2017-09-07 12:23:19 +0200966 elif vdu.get("cloud-init-file"):
967 # TODO Where this file content is present???
tiernob2880eb2017-10-04 15:04:53 +0200968 # boot_data["user-data"] = vnfd_yang.files[vdu["cloud-init-file"]]
tiernof1ba57e2017-09-07 12:23:19 +0200969 boot_data["user-data"] = str(vdu["cloud-init-file"])
970
971 if vdu.get("supplemental-boot-data"):
972 if vdu["supplemental-boot-data"].get('boot-data-drive'):
973 boot_data['boot-data-drive'] = True
974 if vdu["supplemental-boot-data"].get('config-file'):
975 om_cfgfile_list = list()
976 for custom_config_file in vdu["supplemental-boot-data"]['config-file'].itervalues():
977 # TODO Where this file content is present???
978 cfg_source = str(custom_config_file["source"])
979 om_cfgfile_list.append({"dest": custom_config_file["dest"],
980 "content": cfg_source})
981 boot_data['config-files'] = om_cfgfile_list
982 if boot_data:
gcalvino51757e92017-10-03 11:31:31 +0200983 db_vm["boot_data"] = yaml.safe_dump(boot_data, default_flow_style=True, width=256)
tiernof1ba57e2017-09-07 12:23:19 +0200984
985 db_vms.append(db_vm)
986 db_vms_index += 1
987
988 # table interfaces (internal/external interfaces)
989 cp_name2iface_uuid = {}
990 cp_name2vm_uuid = {}
tiernoa9550202017-09-22 13:31:35 +0200991 # for iface in chain(vdu.get("internal-interface").itervalues(), vdu.get("external-interface").itervalues()):
992 for iface in vdu.get("interface").itervalues():
tiernof1ba57e2017-09-07 12:23:19 +0200993 iface_uuid = str(uuid4())
994 uuid_list.append(iface_uuid)
995 db_interface = {
996 "uuid": iface_uuid,
997 "internal_name": get_str(iface, "name", 255),
998 "vm_id": vm_uuid,
999 }
1000 if iface.get("virtual-interface").get("vpci"):
1001 db_interface["vpci"] = get_str(iface.get("virtual-interface"), "vpci", 12)
1002
1003 if iface.get("virtual-interface").get("bandwidth"):
1004 bps = int(iface.get("virtual-interface").get("bandwidth"))
1005 db_interface["bw"] = bps/1000
1006
1007 if iface.get("virtual-interface").get("type") == "OM-MGMT":
1008 db_interface["type"] = "mgmt"
1009 elif iface.get("virtual-interface").get("type") in ("VIRTIO", "E1000"):
1010 db_interface["type"] = "bridge"
1011 db_interface["model"] = get_str(iface.get("virtual-interface"), "type", 12)
1012 elif iface.get("virtual-interface").get("type") in ("SR-IOV", "PCI-PASSTHROUGH"):
1013 db_interface["type"] = "data"
1014 db_interface["model"] = get_str(iface.get("virtual-interface"), "type", 12)
1015 else:
tiernob2880eb2017-10-04 15:04:53 +02001016 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{}]':'vdu[{}]':'interface':'virtual"
1017 "-interface':'type':'{}'. Interface type is not supported".format(
1018 str(vnfd["id"])[:255], str(vdu["id"])[:255],
1019 iface.get("virtual-interface").get("type")),
1020 HTTP_Bad_Request)
tiernof1ba57e2017-09-07 12:23:19 +02001021
tiernoa9550202017-09-22 13:31:35 +02001022 if iface.get("external-connection-point-ref"):
tiernof1ba57e2017-09-07 12:23:19 +02001023 try:
tiernoa9550202017-09-22 13:31:35 +02001024 cp = vnfd.get("connection-point")[iface.get("external-connection-point-ref")]
tiernof1ba57e2017-09-07 12:23:19 +02001025 db_interface["external_name"] = get_str(cp, "name", 255)
1026 cp_name2iface_uuid[db_interface["external_name"]] = iface_uuid
1027 cp_name2vm_uuid[db_interface["external_name"]] = vm_uuid
tierno137b0d92017-10-06 14:03:05 +02001028 if cp.get("port-security-enabled") == False:
1029 db_interface["port_security"] = 0
1030 elif cp.get("port-security-enabled") == True:
1031 db_interface["port_security"] = 1
tiernof1ba57e2017-09-07 12:23:19 +02001032 except KeyError:
tiernob2880eb2017-10-04 15:04:53 +02001033 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{vnf}]':'vdu[{vdu}]':"
1034 "'interface[{iface}]':'vnfd-connection-point-ref':'{cp}' is not present"
1035 " at connection-point".format(
1036 vnf=vnfd["id"], vdu=vdu["id"], iface=iface["name"],
1037 cp=iface.get("vnfd-connection-point-ref")),
1038 HTTP_Bad_Request)
tiernoa9550202017-09-22 13:31:35 +02001039 elif iface.get("internal-connection-point-ref"):
tiernof1ba57e2017-09-07 12:23:19 +02001040 try:
1041 for vld in vnfd.get("internal-vld").itervalues():
1042 for cp in vld.get("internal-connection-point").itervalues():
tiernoa9550202017-09-22 13:31:35 +02001043 if cp.get("id-ref") == iface.get("internal-connection-point-ref"):
tiernof1ba57e2017-09-07 12:23:19 +02001044 db_interface["net_id"] = net_id2uuid[vld.get("id")]
tierno137b0d92017-10-06 14:03:05 +02001045 if cp.get("port-security-enabled") == False:
1046 db_interface["port_security"] = 0
1047 elif cp.get("port-security-enabled") == True:
1048 db_interface["port_security"] = 1
tiernof1ba57e2017-09-07 12:23:19 +02001049 break
1050 except KeyError:
tiernob2880eb2017-10-04 15:04:53 +02001051 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{vnf}]':'vdu[{vdu}]':"
1052 "'interface[{iface}]':'vdu-internal-connection-point-ref':'{cp}' is not"
1053 " referenced by any internal-vld".format(
1054 vnf=vnfd["id"], vdu=vdu["id"], iface=iface["name"],
1055 cp=iface.get("vdu-internal-connection-point-ref")),
1056 HTTP_Bad_Request)
tiernoa9550202017-09-22 13:31:35 +02001057 if iface.get("position") is not None:
1058 db_interface["created_at"] = int(iface.get("position")) - 1000
tiernof1ba57e2017-09-07 12:23:19 +02001059 db_interfaces.append(db_interface)
1060
1061 # VNF affinity and antiaffinity
1062 for pg in vnfd.get("placement-groups").itervalues():
1063 pg_name = get_str(pg, "name", 255)
1064 for vdu in pg.get("member-vdus").itervalues():
1065 vdu_id = get_str(vdu, "member-vdu-ref", 255)
1066 if vdu_id not in vdu_id2db_table_index:
tiernob2880eb2017-10-04 15:04:53 +02001067 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{vnf}]':'placement-groups[{pg}]':"
1068 "'member-vdus':'{vdu}'. Reference to a non-existing vdu".format(
1069 vnf=vnfd["id"], pg=pg_name, vdu=vdu_id),
1070 HTTP_Bad_Request)
tiernof1ba57e2017-09-07 12:23:19 +02001071 db_vms[vdu_id2db_table_index[vdu_id]]["availability_zone"] = pg_name
1072 # TODO consider the case of isolation and not colocation
1073 # if pg.get("strategy") == "ISOLATION":
1074
1075 # VNF mgmt configuration
1076 mgmt_access = {}
1077 if vnfd["mgmt-interface"].get("vdu-id"):
1078 if vnfd["mgmt-interface"]["vdu-id"] not in vdu_id2uuid:
tiernob2880eb2017-10-04 15:04:53 +02001079 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{vnf}]':'mgmt-interface':'vdu-id':"
1080 "'{vdu}'. Reference to a non-existing vdu".format(
1081 vnf=vnfd["id"], vdu=vnfd["mgmt-interface"]["vdu-id"]),
1082 HTTP_Bad_Request)
tiernof1ba57e2017-09-07 12:23:19 +02001083 mgmt_access["vm_id"] = vdu_id2uuid[vnfd["mgmt-interface"]["vdu-id"]]
1084 if vnfd["mgmt-interface"].get("ip-address"):
1085 mgmt_access["ip-address"] = str(vnfd["mgmt-interface"].get("ip-address"))
1086 if vnfd["mgmt-interface"].get("cp"):
1087 if vnfd["mgmt-interface"]["cp"] not in cp_name2iface_uuid:
tiernob2880eb2017-10-04 15:04:53 +02001088 raise NfvoException("Error. Invalid VNF descriptor at 'vnfd[{vnf}]':'mgmt-interface':'cp':'{cp}'. "
1089 "Reference to a non-existing connection-point".format(
1090 vnf=vnfd["id"], cp=vnfd["mgmt-interface"]["cp"]),
1091 HTTP_Bad_Request)
tiernof1ba57e2017-09-07 12:23:19 +02001092 mgmt_access["vm_id"] = cp_name2vm_uuid[vnfd["mgmt-interface"]["cp"]]
1093 mgmt_access["interface_id"] = cp_name2iface_uuid[vnfd["mgmt-interface"]["cp"]]
tiernoa9550202017-09-22 13:31:35 +02001094 default_user = get_str(vnfd.get("vnf-configuration", {}).get("config-access", {}).get("ssh-access", {}),
tiernof1ba57e2017-09-07 12:23:19 +02001095 "default-user", 64)
gcalvinoe580c7d2017-09-22 14:09:51 +02001096
tiernof1ba57e2017-09-07 12:23:19 +02001097 if default_user:
1098 mgmt_access["default_user"] = default_user
gcalvinoe580c7d2017-09-22 14:09:51 +02001099 required = get_str(vnfd.get("vnf-configuration", {}).get("config-access", {}).get("ssh-access", {}),
1100 "required", 6)
1101 if required:
1102 mgmt_access["required"] = required
1103
tiernof1ba57e2017-09-07 12:23:19 +02001104 if mgmt_access:
1105 db_vnf["mgmt_access"] = yaml.safe_dump(mgmt_access, default_flow_style=True, width=256)
1106
gcalvinoe580c7d2017-09-22 14:09:51 +02001107
1108
tiernof1ba57e2017-09-07 12:23:19 +02001109 db_vnfs.append(db_vnf)
1110 db_tables=[
1111 {"vnfs": db_vnfs},
1112 {"nets": db_nets},
1113 {"images": db_images},
1114 {"flavors": db_flavors},
1115 {"vms": db_vms},
1116 {"interfaces": db_interfaces},
1117 ]
1118
1119 logger.debug("create_vnf Deployment done vnfDict: %s",
1120 yaml.safe_dump(db_tables, indent=4, default_flow_style=False) )
1121 mydb.new_rows(db_tables, uuid_list)
1122 return vnfd_uuid_list
tiernob2880eb2017-10-04 15:04:53 +02001123 except NfvoException:
1124 raise
tiernof1ba57e2017-09-07 12:23:19 +02001125 except Exception as e:
1126 logger.error("Exception {}".format(e))
1127 raise # NfvoException("Exception {}".format(e), HTTP_Bad_Request)
1128
1129
tierno7edb6752016-03-21 17:37:52 +01001130def new_vnf(mydb, tenant_id, vnf_descriptor):
1131 global global_config
tierno42026a02017-02-10 15:13:40 +01001132
tierno7edb6752016-03-21 17:37:52 +01001133 # Step 1. Check the VNF descriptor
tiernoafed5f12017-01-26 17:57:43 +01001134 check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=1)
tierno7edb6752016-03-21 17:37:52 +01001135 # Step 2. Check tenant exist
tiernod29b1d32017-01-25 11:02:52 +01001136 vims = {}
tierno7edb6752016-03-21 17:37:52 +01001137 if tenant_id != "any":
tierno42026a02017-02-10 15:13:40 +01001138 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001139 if "tenant_id" in vnf_descriptor["vnf"]:
1140 if vnf_descriptor["vnf"]["tenant_id"] != tenant_id:
tiernof97fd272016-07-11 14:32:37 +02001141 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id),
1142 HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +01001143 else:
1144 vnf_descriptor['vnf']['tenant_id'] = tenant_id
1145 # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter
tiernod29b1d32017-01-25 11:02:52 +01001146 if global_config["auto_push_VNF_to_VIMs"]:
1147 vims = get_vim(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001148
1149 # Step 4. Review the descriptor and add missing fields
1150 #print vnf_descriptor
tiernof97fd272016-07-11 14:32:37 +02001151 #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)")
tierno7edb6752016-03-21 17:37:52 +01001152 vnf_name = vnf_descriptor['vnf']['name']
1153 vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name)
1154 if "physical" in vnf_descriptor['vnf']:
1155 del vnf_descriptor['vnf']['physical']
1156 #print vnf_descriptor
tiernoafed5f12017-01-26 17:57:43 +01001157
tierno42026a02017-02-10 15:13:40 +01001158 # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM
tiernof97fd272016-07-11 14:32:37 +02001159 logger.debug('BEGIN creation of VNF "%s"' % vnf_name)
1160 logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC'])))
tierno42026a02017-02-10 15:13:40 +01001161
tierno7edb6752016-03-21 17:37:52 +01001162 #For each VNFC, we add it to the VNFCDict and we create a flavor.
1163 VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database
1164 rollback_list = [] # It will contain the new images created in mano. It is used for rollback
tierno7edb6752016-03-21 17:37:52 +01001165 try:
tiernof97fd272016-07-11 14:32:37 +02001166 logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC")
tierno7edb6752016-03-21 17:37:52 +01001167 for vnfc in vnf_descriptor['vnf']['VNFC']:
1168 VNFCitem={}
1169 VNFCitem["name"] = vnfc['name']
mirabal29356312017-07-27 12:21:22 +02001170 VNFCitem["availability_zone"] = vnfc.get('availability_zone')
tierno7edb6752016-03-21 17:37:52 +01001171 VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name))
tierno42026a02017-02-10 15:13:40 +01001172
tiernof97fd272016-07-11 14:32:37 +02001173 #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"])
tierno42026a02017-02-10 15:13:40 +01001174
tierno7edb6752016-03-21 17:37:52 +01001175 myflavorDict = {}
garciadeblasb69fa9f2016-09-28 12:04:10 +02001176 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 +01001177 myflavorDict["description"] = VNFCitem["description"]
1178 myflavorDict["ram"] = vnfc.get("ram", 0)
1179 myflavorDict["vcpus"] = vnfc.get("vcpus", 0)
1180 myflavorDict["disk"] = vnfc.get("disk", 1)
1181 myflavorDict["extended"] = {}
tierno42026a02017-02-10 15:13:40 +01001182
tierno7edb6752016-03-21 17:37:52 +01001183 devices = vnfc.get("devices")
1184 if devices != None:
1185 myflavorDict["extended"]["devices"] = devices
tierno42026a02017-02-10 15:13:40 +01001186
tierno7edb6752016-03-21 17:37:52 +01001187 # TODO:
1188 # 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 +01001189 # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host
1190
tierno7edb6752016-03-21 17:37:52 +01001191 # Previous code has been commented
1192 #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" :
1193 # myflavorDict["flavor"]['extended']['processor_ranking'] = 200
1194 #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" :
1195 # myflavorDict["flavor"]['extended']['processor_ranking'] = 300
1196 #else:
1197 # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList)
1198 # if result2:
1199 # print "Error creating flavor: unknown processor model. Rollback successful."
1200 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful."
1201 # else:
1202 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message
1203 myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done
tierno42026a02017-02-10 15:13:40 +01001204
tierno7edb6752016-03-21 17:37:52 +01001205 if 'numas' in vnfc and len(vnfc['numas'])>0:
1206 myflavorDict['extended']['numas'] = vnfc['numas']
1207
1208 #print myflavorDict
tierno42026a02017-02-10 15:13:40 +01001209
tierno7edb6752016-03-21 17:37:52 +01001210 # Step 6.2 New flavors are created in the VIM
tiernof97fd272016-07-11 14:32:37 +02001211 flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list)
tierno7edb6752016-03-21 17:37:52 +01001212
tiernof97fd272016-07-11 14:32:37 +02001213 #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id)
tierno7edb6752016-03-21 17:37:52 +01001214 VNFCitem["flavor_id"] = flavor_id
1215 VNFCDict[vnfc['name']] = VNFCitem
tierno42026a02017-02-10 15:13:40 +01001216
tiernof97fd272016-07-11 14:32:37 +02001217 logger.debug("Creating new images in the VIM for each VNFC")
tierno7edb6752016-03-21 17:37:52 +01001218 # Step 6.3 New images are created in the VIM
1219 #For each VNFC, we must create the appropriate image.
tierno42026a02017-02-10 15:13:40 +01001220 #This "for" loop might be integrated with the previous one
tierno7edb6752016-03-21 17:37:52 +01001221 #In case this integration is made, the VNFCDict might become a VNFClist.
1222 for vnfc in vnf_descriptor['vnf']['VNFC']:
tiernof97fd272016-07-11 14:32:37 +02001223 #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description'])
garciadeblasb69fa9f2016-09-28 12:04:10 +02001224 image_dict={}
1225 image_dict['name']=vnfc.get('image name',vnf_name+"-"+vnfc['name']+"-img")
1226 image_dict['universal_name']=vnfc.get('image name')
1227 image_dict['description']=vnfc.get('image name', VNFCDict[vnfc['name']]['description'])
1228 image_dict['location']=vnfc.get('VNFC image')
garciadeblas14480452017-01-10 13:08:07 +01001229 #image_dict['new_location']=vnfc.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +02001230 image_dict['checksum']=vnfc.get('image checksum')
tierno7edb6752016-03-21 17:37:52 +01001231 image_metadata_dict = vnfc.get('image metadata', None)
1232 image_metadata_str = None
tierno42026a02017-02-10 15:13:40 +01001233 if image_metadata_dict is not None:
tierno7edb6752016-03-21 17:37:52 +01001234 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
1235 image_dict['metadata']=image_metadata_str
1236 #print "create_or_use_image", mydb, vims, image_dict, rollback_list
tiernof97fd272016-07-11 14:32:37 +02001237 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
1238 #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id)
tierno7edb6752016-03-21 17:37:52 +01001239 VNFCDict[vnfc['name']]["image_id"] = image_id
garciadeblasb69fa9f2016-09-28 12:04:10 +02001240 VNFCDict[vnfc['name']]["image_path"] = vnfc.get('VNFC image')
tierno8e690322017-08-10 15:58:50 +02001241 VNFCDict[vnfc['name']]["count"] = vnfc.get('count', 1)
tierno36c0b172017-01-12 18:32:28 +01001242 if vnfc.get("boot-data"):
1243 VNFCDict[vnfc['name']]["boot_data"] = yaml.safe_dump(vnfc["boot-data"], default_flow_style=True, width=256)
tierno7edb6752016-03-21 17:37:52 +01001244
tierno42026a02017-02-10 15:13:40 +01001245
tiernof97fd272016-07-11 14:32:37 +02001246 # Step 7. Storing the VNF descriptor in the repository
1247 if "descriptor" not in vnf_descriptor["vnf"]:
1248 vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False)
tierno42026a02017-02-10 15:13:40 +01001249
tiernof97fd272016-07-11 14:32:37 +02001250 # Step 8. Adding the VNF to the NFVO DB
1251 vnf_id = mydb.new_vnf_as_a_whole(tenant_id,vnf_name,vnf_descriptor,VNFCDict)
1252 return vnf_id
1253 except (db_base_Exception, vimconn.vimconnException, KeyError) as e:
tierno7edb6752016-03-21 17:37:52 +01001254 _, message = rollback(mydb, vims, rollback_list)
tiernof97fd272016-07-11 14:32:37 +02001255 if isinstance(e, db_base_Exception):
1256 error_text = "Exception at database"
1257 elif isinstance(e, KeyError):
1258 error_text = "KeyError exception "
1259 e.http_code = HTTP_Internal_Server_Error
1260 else:
1261 error_text = "Exception at VIM"
1262 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
1263 #logger.error("start_scenario %s", error_text)
1264 raise NfvoException(error_text, e.http_code)
tierno42026a02017-02-10 15:13:40 +01001265
tiernob3d36742017-03-03 23:51:05 +01001266
garciadeblas9f8456e2016-09-05 05:02:59 +02001267def new_vnf_v02(mydb, tenant_id, vnf_descriptor):
1268 global global_config
tierno42026a02017-02-10 15:13:40 +01001269
garciadeblas9f8456e2016-09-05 05:02:59 +02001270 # Step 1. Check the VNF descriptor
tiernoafed5f12017-01-26 17:57:43 +01001271 check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=2)
garciadeblas9f8456e2016-09-05 05:02:59 +02001272 # Step 2. Check tenant exist
tiernod29b1d32017-01-25 11:02:52 +01001273 vims = {}
garciadeblas9f8456e2016-09-05 05:02:59 +02001274 if tenant_id != "any":
tierno42026a02017-02-10 15:13:40 +01001275 check_tenant(mydb, tenant_id)
garciadeblas9f8456e2016-09-05 05:02:59 +02001276 if "tenant_id" in vnf_descriptor["vnf"]:
1277 if vnf_descriptor["vnf"]["tenant_id"] != tenant_id:
1278 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id),
1279 HTTP_Unauthorized)
1280 else:
1281 vnf_descriptor['vnf']['tenant_id'] = tenant_id
1282 # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter
tiernod29b1d32017-01-25 11:02:52 +01001283 if global_config["auto_push_VNF_to_VIMs"]:
1284 vims = get_vim(mydb, tenant_id)
garciadeblas9f8456e2016-09-05 05:02:59 +02001285
1286 # Step 4. Review the descriptor and add missing fields
1287 #print vnf_descriptor
1288 #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)")
1289 vnf_name = vnf_descriptor['vnf']['name']
1290 vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name)
1291 if "physical" in vnf_descriptor['vnf']:
1292 del vnf_descriptor['vnf']['physical']
1293 #print vnf_descriptor
tiernoafed5f12017-01-26 17:57:43 +01001294
tierno42026a02017-02-10 15:13:40 +01001295 # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM
garciadeblas9f8456e2016-09-05 05:02:59 +02001296 logger.debug('BEGIN creation of VNF "%s"' % vnf_name)
1297 logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC'])))
tierno42026a02017-02-10 15:13:40 +01001298
garciadeblas9f8456e2016-09-05 05:02:59 +02001299 #For each VNFC, we add it to the VNFCDict and we create a flavor.
1300 VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database
1301 rollback_list = [] # It will contain the new images created in mano. It is used for rollback
1302 try:
1303 logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC")
1304 for vnfc in vnf_descriptor['vnf']['VNFC']:
1305 VNFCitem={}
1306 VNFCitem["name"] = vnfc['name']
1307 VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name))
tierno42026a02017-02-10 15:13:40 +01001308
garciadeblas9f8456e2016-09-05 05:02:59 +02001309 #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"])
tierno42026a02017-02-10 15:13:40 +01001310
garciadeblas9f8456e2016-09-05 05:02:59 +02001311 myflavorDict = {}
garciadeblasb69fa9f2016-09-28 12:04:10 +02001312 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 +02001313 myflavorDict["description"] = VNFCitem["description"]
1314 myflavorDict["ram"] = vnfc.get("ram", 0)
1315 myflavorDict["vcpus"] = vnfc.get("vcpus", 0)
1316 myflavorDict["disk"] = vnfc.get("disk", 1)
1317 myflavorDict["extended"] = {}
tierno42026a02017-02-10 15:13:40 +01001318
garciadeblas9f8456e2016-09-05 05:02:59 +02001319 devices = vnfc.get("devices")
1320 if devices != None:
1321 myflavorDict["extended"]["devices"] = devices
tierno42026a02017-02-10 15:13:40 +01001322
garciadeblas9f8456e2016-09-05 05:02:59 +02001323 # TODO:
1324 # 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 +01001325 # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host
1326
garciadeblas9f8456e2016-09-05 05:02:59 +02001327 # Previous code has been commented
1328 #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" :
1329 # myflavorDict["flavor"]['extended']['processor_ranking'] = 200
1330 #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" :
1331 # myflavorDict["flavor"]['extended']['processor_ranking'] = 300
1332 #else:
1333 # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList)
1334 # if result2:
1335 # print "Error creating flavor: unknown processor model. Rollback successful."
1336 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful."
1337 # else:
1338 # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message
1339 myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done
tierno42026a02017-02-10 15:13:40 +01001340
garciadeblas9f8456e2016-09-05 05:02:59 +02001341 if 'numas' in vnfc and len(vnfc['numas'])>0:
1342 myflavorDict['extended']['numas'] = vnfc['numas']
1343
1344 #print myflavorDict
tierno42026a02017-02-10 15:13:40 +01001345
garciadeblas9f8456e2016-09-05 05:02:59 +02001346 # Step 6.2 New flavors are created in the VIM
1347 flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list)
1348
1349 #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id)
1350 VNFCitem["flavor_id"] = flavor_id
1351 VNFCDict[vnfc['name']] = VNFCitem
tierno42026a02017-02-10 15:13:40 +01001352
garciadeblas9f8456e2016-09-05 05:02:59 +02001353 logger.debug("Creating new images in the VIM for each VNFC")
1354 # Step 6.3 New images are created in the VIM
1355 #For each VNFC, we must create the appropriate image.
tierno42026a02017-02-10 15:13:40 +01001356 #This "for" loop might be integrated with the previous one
garciadeblas9f8456e2016-09-05 05:02:59 +02001357 #In case this integration is made, the VNFCDict might become a VNFClist.
1358 for vnfc in vnf_descriptor['vnf']['VNFC']:
1359 #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description'])
garciadeblasb69fa9f2016-09-28 12:04:10 +02001360 image_dict={}
1361 image_dict['name']=vnfc.get('image name',vnf_name+"-"+vnfc['name']+"-img")
1362 image_dict['universal_name']=vnfc.get('image name')
1363 image_dict['description']=vnfc.get('image name', VNFCDict[vnfc['name']]['description'])
1364 image_dict['location']=vnfc.get('VNFC image')
garciadeblas14480452017-01-10 13:08:07 +01001365 #image_dict['new_location']=vnfc.get('image location')
garciadeblasb69fa9f2016-09-28 12:04:10 +02001366 image_dict['checksum']=vnfc.get('image checksum')
garciadeblas9f8456e2016-09-05 05:02:59 +02001367 image_metadata_dict = vnfc.get('image metadata', None)
1368 image_metadata_str = None
tierno42026a02017-02-10 15:13:40 +01001369 if image_metadata_dict is not None:
garciadeblas9f8456e2016-09-05 05:02:59 +02001370 image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256)
1371 image_dict['metadata']=image_metadata_str
1372 #print "create_or_use_image", mydb, vims, image_dict, rollback_list
1373 image_id = create_or_use_image(mydb, vims, image_dict, rollback_list)
1374 #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id)
1375 VNFCDict[vnfc['name']]["image_id"] = image_id
garciadeblasb69fa9f2016-09-28 12:04:10 +02001376 VNFCDict[vnfc['name']]["image_path"] = vnfc.get('VNFC image')
tierno8e690322017-08-10 15:58:50 +02001377 VNFCDict[vnfc['name']]["count"] = vnfc.get('count', 1)
tierno36c0b172017-01-12 18:32:28 +01001378 if vnfc.get("boot-data"):
1379 VNFCDict[vnfc['name']]["boot_data"] = yaml.safe_dump(vnfc["boot-data"], default_flow_style=True, width=256)
garciadeblas9f8456e2016-09-05 05:02:59 +02001380
garciadeblas9f8456e2016-09-05 05:02:59 +02001381 # Step 7. Storing the VNF descriptor in the repository
1382 if "descriptor" not in vnf_descriptor["vnf"]:
1383 vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False)
tierno42026a02017-02-10 15:13:40 +01001384
garciadeblas9f8456e2016-09-05 05:02:59 +02001385 # Step 8. Adding the VNF to the NFVO DB
1386 vnf_id = mydb.new_vnf_as_a_whole2(tenant_id,vnf_name,vnf_descriptor,VNFCDict)
1387 return vnf_id
1388 except (db_base_Exception, vimconn.vimconnException, KeyError) as e:
1389 _, message = rollback(mydb, vims, rollback_list)
1390 if isinstance(e, db_base_Exception):
1391 error_text = "Exception at database"
1392 elif isinstance(e, KeyError):
1393 error_text = "KeyError exception "
1394 e.http_code = HTTP_Internal_Server_Error
1395 else:
1396 error_text = "Exception at VIM"
1397 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
1398 #logger.error("start_scenario %s", error_text)
1399 raise NfvoException(error_text, e.http_code)
1400
tiernob3d36742017-03-03 23:51:05 +01001401
tierno7edb6752016-03-21 17:37:52 +01001402def get_vnf_id(mydb, tenant_id, vnf_id):
1403 #check valid tenant_id
tierno42026a02017-02-10 15:13:40 +01001404 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001405 #obtain data
1406 where_or = {}
1407 if tenant_id != "any":
1408 where_or["tenant_id"] = tenant_id
1409 where_or["public"] = True
tierno42026a02017-02-10 15:13:40 +01001410 vnf = mydb.get_table_by_uuid_name('vnfs', vnf_id, "VNF", WHERE_OR=where_or, WHERE_AND_OR="AND")
1411
tiernof1ba57e2017-09-07 12:23:19 +02001412 vnf_id = vnf["uuid"]
1413 filter_keys = ('uuid', 'name', 'description', 'public', "tenant_id", "osm_id", "created_at")
tiernof97fd272016-07-11 14:32:37 +02001414 filtered_content = dict( (k,v) for k,v in vnf.iteritems() if k in filter_keys )
tierno7edb6752016-03-21 17:37:52 +01001415 #change_keys_http2db(filtered_content, http2db_vnf, reverse=True)
1416 data={'vnf' : filtered_content}
1417 #GET VM
tiernof97fd272016-07-11 14:32:37 +02001418 content = mydb.get_rows(FROM='vnfs join vms on vnfs.uuid=vms.vnf_id',
tiernof1ba57e2017-09-07 12:23:19 +02001419 SELECT=('vms.uuid as uuid', 'vms.osm_id as osm_id', 'vms.name as name', 'vms.description as description',
1420 'boot_data'),
tierno7edb6752016-03-21 17:37:52 +01001421 WHERE={'vnfs.uuid': vnf_id} )
tiernof97fd272016-07-11 14:32:37 +02001422 if len(content)==0:
1423 raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found)
tierno36c0b172017-01-12 18:32:28 +01001424 # change boot_data into boot-data
1425 for vm in content:
1426 if vm.get("boot_data"):
1427 vm["boot-data"] = yaml.safe_load(vm["boot_data"])
1428 del vm["boot_data"]
tierno7edb6752016-03-21 17:37:52 +01001429
1430 data['vnf']['VNFC'] = content
garciadeblas9f8456e2016-09-05 05:02:59 +02001431 #TODO: GET all the information from a VNFC and include it in the output.
tierno42026a02017-02-10 15:13:40 +01001432
tierno7edb6752016-03-21 17:37:52 +01001433 #GET NET
tierno42026a02017-02-10 15:13:40 +01001434 content = mydb.get_rows(FROM='vnfs join nets on vnfs.uuid=nets.vnf_id',
tierno7edb6752016-03-21 17:37:52 +01001435 SELECT=('nets.uuid as uuid','nets.name as name','nets.description as description', 'nets.type as type', 'nets.multipoint as multipoint'),
1436 WHERE={'vnfs.uuid': vnf_id} )
tiernof97fd272016-07-11 14:32:37 +02001437 data['vnf']['nets'] = content
garciadeblas9f8456e2016-09-05 05:02:59 +02001438
1439 #GET ip-profile for each net
1440 for net in data['vnf']['nets']:
1441 ipprofiles = mydb.get_rows(FROM='ip_profiles',
1442 SELECT=('ip_version','subnet_address','gateway_address','dns_address','dhcp_enabled','dhcp_start_address','dhcp_count'),
1443 WHERE={'net_id': net["uuid"]} )
1444 if len(ipprofiles)==1:
1445 net["ip_profile"] = ipprofiles[0]
1446 elif len(ipprofiles)>1:
1447 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 +01001448
1449
garciadeblas9f8456e2016-09-05 05:02:59 +02001450 #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 +01001451
garciadeblas9f8456e2016-09-05 05:02:59 +02001452 #GET External Interfaces
tiernof97fd272016-07-11 14:32:37 +02001453 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 +01001454 SELECT=('interfaces.uuid as uuid','interfaces.external_name as external_name', 'vms.name as vm_name', 'interfaces.vm_id as vm_id', \
1455 'interfaces.internal_name as internal_name', 'interfaces.type as type', 'interfaces.vpci as vpci','interfaces.bw as bw'),\
tierno42026a02017-02-10 15:13:40 +01001456 WHERE={'vnfs.uuid': vnf_id},
tierno7edb6752016-03-21 17:37:52 +01001457 WHERE_NOT={'interfaces.external_name': None} )
1458 #print content
tiernof97fd272016-07-11 14:32:37 +02001459 data['vnf']['external-connections'] = content
tierno42026a02017-02-10 15:13:40 +01001460
tiernof97fd272016-07-11 14:32:37 +02001461 return data
tierno7edb6752016-03-21 17:37:52 +01001462
1463
1464def delete_vnf(mydb,tenant_id,vnf_id,datacenter=None,vim_tenant=None):
1465 # Check tenant exist
1466 if tenant_id != "any":
tiernof97fd272016-07-11 14:32:37 +02001467 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001468 # Get the URL of the VIM from the nfvo_tenant and the datacenter
tiernof97fd272016-07-11 14:32:37 +02001469 vims = get_vim(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001470 else:
1471 vims={}
1472
1473 # Checking if it is a valid uuid and, if not, getting the uuid assuming that the name was provided"
1474 where_or = {}
1475 if tenant_id != "any":
1476 where_or["tenant_id"] = tenant_id
1477 where_or["public"] = True
tierno42026a02017-02-10 15:13:40 +01001478 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 +02001479 vnf_id = vnf["uuid"]
tierno42026a02017-02-10 15:13:40 +01001480
tierno7edb6752016-03-21 17:37:52 +01001481 # "Getting the list of flavors and tenants of the VNF"
tierno42026a02017-02-10 15:13:40 +01001482 flavorList = get_flavorlist(mydb, vnf_id)
tiernof97fd272016-07-11 14:32:37 +02001483 if len(flavorList)==0:
1484 logger.warn("delete_vnf error. No flavors found for the VNF id '%s'", vnf_id)
tierno42026a02017-02-10 15:13:40 +01001485
tiernof97fd272016-07-11 14:32:37 +02001486 imageList = get_imagelist(mydb, vnf_id)
1487 if len(imageList)==0:
1488 logger.warn( "delete_vnf error. No images found for the VNF id '%s'", vnf_id)
tierno42026a02017-02-10 15:13:40 +01001489
tiernof97fd272016-07-11 14:32:37 +02001490 deleted = mydb.delete_row_by_id('vnfs', vnf_id)
1491 if deleted == 0:
1492 raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found)
tierno42026a02017-02-10 15:13:40 +01001493
tierno7edb6752016-03-21 17:37:52 +01001494 undeletedItems = []
1495 for flavor in flavorList:
1496 #check if flavor is used by other vnf
tiernof97fd272016-07-11 14:32:37 +02001497 try:
1498 c = mydb.get_rows(FROM='vms', WHERE={'flavor_id':flavor} )
1499 if len(c) > 0:
1500 logger.debug("Flavor '%s' not deleted because it is being used by another VNF", flavor)
1501 continue
1502 #flavor not used, must be deleted
1503 #delelte at VIM
1504 c = mydb.get_rows(FROM='datacenters_flavors', WHERE={'flavor_id':flavor})
tierno7edb6752016-03-21 17:37:52 +01001505 for flavor_vim in c:
tierno868220c2017-09-26 00:11:05 +02001506 if flavor_vim["datacenter_vim_id"] not in vims: # TODO change to datacenter_tenant_id
tierno7edb6752016-03-21 17:37:52 +01001507 continue
1508 if flavor_vim['created']=='false': #skip this flavor because not created by openmano
1509 continue
1510 myvim=vims[ flavor_vim["datacenter_id"] ]
tiernoae4a8d12016-07-08 12:30:39 +02001511 try:
1512 myvim.delete_flavor(flavor_vim["vim_id"])
1513 except vimconn.vimconnNotFoundException as e:
1514 logger.warn("VIM flavor %s not exist at datacenter %s", flavor_vim["vim_id"], flavor_vim["datacenter_id"] )
1515 except vimconn.vimconnException as e:
1516 logger.error("Not possible to delete VIM flavor %s from datacenter %s: %s %s",
1517 flavor_vim["vim_id"], flavor_vim["datacenter_id"], type(e).__name__, str(e))
1518 undeletedItems.append("flavor {} from VIM {}".format(flavor_vim["vim_id"], flavor_vim["datacenter_id"] ))
tiernof97fd272016-07-11 14:32:37 +02001519 #delete flavor from Database, using table flavors and with cascade foreign key also at datacenters_flavors
1520 mydb.delete_row_by_id('flavors', flavor)
1521 except db_base_Exception as e:
1522 logger.error("delete_vnf_error. Not possible to get flavor details and delete '%s'. %s", flavor, str(e))
tierno7edb6752016-03-21 17:37:52 +01001523 undeletedItems.append("flavor %s" % flavor)
tiernof97fd272016-07-11 14:32:37 +02001524
tierno42026a02017-02-10 15:13:40 +01001525
tierno7edb6752016-03-21 17:37:52 +01001526 for image in imageList:
tiernof97fd272016-07-11 14:32:37 +02001527 try:
1528 #check if image is used by other vnf
1529 c = mydb.get_rows(FROM='vms', WHERE={'image_id':image} )
1530 if len(c) > 0:
1531 logger.debug("Image '%s' not deleted because it is being used by another VNF", image)
1532 continue
1533 #image not used, must be deleted
1534 #delelte at VIM
1535 c = mydb.get_rows(FROM='datacenters_images', WHERE={'image_id':image})
tierno7edb6752016-03-21 17:37:52 +01001536 for image_vim in c:
tierno868220c2017-09-26 00:11:05 +02001537 if image_vim["datacenter_vim_id"] not in vims: # TODO change to datacenter_tenant_id
tierno7edb6752016-03-21 17:37:52 +01001538 continue
1539 if image_vim['created']=='false': #skip this image because not created by openmano
1540 continue
1541 myvim=vims[ image_vim["datacenter_id"] ]
tiernoae4a8d12016-07-08 12:30:39 +02001542 try:
1543 myvim.delete_image(image_vim["vim_id"])
1544 except vimconn.vimconnNotFoundException as e:
1545 logger.warn("VIM image %s not exist at datacenter %s", image_vim["vim_id"], image_vim["datacenter_id"] )
1546 except vimconn.vimconnException as e:
1547 logger.error("Not possible to delete VIM image %s from datacenter %s: %s %s",
1548 image_vim["vim_id"], image_vim["datacenter_id"], type(e).__name__, str(e))
1549 undeletedItems.append("image {} from VIM {}".format(image_vim["vim_id"], image_vim["datacenter_id"] ))
tiernof97fd272016-07-11 14:32:37 +02001550 #delete image from Database, using table images and with cascade foreign key also at datacenters_images
1551 mydb.delete_row_by_id('images', image)
1552 except db_base_Exception as e:
1553 logger.error("delete_vnf_error. Not possible to get image details and delete '%s'. %s", image, str(e))
tierno7edb6752016-03-21 17:37:52 +01001554 undeletedItems.append("image %s" % image)
1555
tiernof97fd272016-07-11 14:32:37 +02001556 return vnf_id + " " + vnf["name"]
tierno42026a02017-02-10 15:13:40 +01001557 #if undeletedItems:
tiernof97fd272016-07-11 14:32:37 +02001558 # return "delete_vnf. Undeleted: %s" %(undeletedItems)
tierno7edb6752016-03-21 17:37:52 +01001559
tiernob3d36742017-03-03 23:51:05 +01001560
tierno7edb6752016-03-21 17:37:52 +01001561def get_hosts_info(mydb, nfvo_tenant_id, datacenter_name=None):
1562 result, vims = get_vim(mydb, nfvo_tenant_id, None, datacenter_name)
1563 if result < 0:
1564 return result, vims
1565 elif result == 0:
1566 return -HTTP_Not_Found, "datacenter '%s' not found" % datacenter_name
1567 myvim = vims.values()[0]
1568 result,servers = myvim.get_hosts_info()
1569 if result < 0:
1570 return result, servers
1571 topology = {'name':myvim['name'] , 'servers': servers}
1572 return result, topology
1573
tiernob3d36742017-03-03 23:51:05 +01001574
tierno7edb6752016-03-21 17:37:52 +01001575def get_hosts(mydb, nfvo_tenant_id):
tiernof97fd272016-07-11 14:32:37 +02001576 vims = get_vim(mydb, nfvo_tenant_id)
1577 if len(vims) == 0:
1578 raise NfvoException("No datacenter found for tenant '{}'".format(str(nfvo_tenant_id)), HTTP_Not_Found)
1579 elif len(vims)>1:
1580 #print "nfvo.datacenter_action() error. Several datacenters found"
1581 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01001582 myvim = vims.values()[0]
tiernof97fd272016-07-11 14:32:37 +02001583 try:
1584 hosts = myvim.get_hosts()
1585 logger.debug('VIM hosts response: '+ yaml.safe_dump(hosts, indent=4, default_flow_style=False))
tierno7edb6752016-03-21 17:37:52 +01001586
tiernof97fd272016-07-11 14:32:37 +02001587 datacenter = {'Datacenters': [ {'name':myvim['name'],'servers':[]} ] }
1588 for host in hosts:
1589 server={'name':host['name'], 'vms':[]}
1590 for vm in host['instances']:
1591 #get internal name and model
tierno42026a02017-02-10 15:13:40 +01001592 try:
tiernof97fd272016-07-11 14:32:37 +02001593 c = mydb.get_rows(SELECT=('name',), FROM='instance_vms as iv join vms on iv.vm_id=vms.uuid',\
1594 WHERE={'vim_vm_id':vm['id']} )
1595 if len(c) == 0:
1596 logger.warn("nfvo.get_hosts virtual machine at VIM '{}' not found at tidnfvo".format(vm['id']))
1597 continue
1598 server['vms'].append( {'name':vm['name'] , 'model':c[0]['name']} )
tierno42026a02017-02-10 15:13:40 +01001599
tiernof97fd272016-07-11 14:32:37 +02001600 except db_base_Exception as e:
1601 logger.warn("nfvo.get_hosts virtual machine at VIM '{}' error {}".format(vm['id'], str(e)))
1602 datacenter['Datacenters'][0]['servers'].append(server)
1603 #return -400, "en construccion"
tierno42026a02017-02-10 15:13:40 +01001604
tiernof97fd272016-07-11 14:32:37 +02001605 #print 'datacenters '+ json.dumps(datacenter, indent=4)
1606 return datacenter
1607 except vimconn.vimconnException as e:
1608 raise NfvoException("Not possible to get_host_list from VIM: {}".format(str(e)), e.http_code)
tierno7edb6752016-03-21 17:37:52 +01001609
tiernob3d36742017-03-03 23:51:05 +01001610
tierno7edb6752016-03-21 17:37:52 +01001611def new_scenario(mydb, tenant_id, topo):
1612
1613# result, vims = get_vim(mydb, tenant_id)
1614# if result < 0:
1615# return result, vims
1616#1: parse input
1617 if tenant_id != "any":
tierno42026a02017-02-10 15:13:40 +01001618 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001619 if "tenant_id" in topo:
1620 if topo["tenant_id"] != tenant_id:
tiernof97fd272016-07-11 14:32:37 +02001621 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(topo["tenant_id"], tenant_id),
1622 HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +01001623 else:
1624 tenant_id=None
1625
tierno42026a02017-02-10 15:13:40 +01001626#1.1: get VNFs and external_networks (other_nets).
tierno7edb6752016-03-21 17:37:52 +01001627 vnfs={}
1628 other_nets={} #external_networks, bridge_networks and data_networkds
1629 nodes = topo['topology']['nodes']
1630 for k in nodes.keys():
1631 if nodes[k]['type'] == 'VNF':
1632 vnfs[k] = nodes[k]
1633 vnfs[k]['ifaces'] = {}
tierno42026a02017-02-10 15:13:40 +01001634 elif nodes[k]['type'] == 'other_network' or nodes[k]['type'] == 'external_network':
tierno7edb6752016-03-21 17:37:52 +01001635 other_nets[k] = nodes[k]
1636 other_nets[k]['external']=True
tierno42026a02017-02-10 15:13:40 +01001637 elif nodes[k]['type'] == 'network':
tierno7edb6752016-03-21 17:37:52 +01001638 other_nets[k] = nodes[k]
1639 other_nets[k]['external']=False
tierno42026a02017-02-10 15:13:40 +01001640
tierno7edb6752016-03-21 17:37:52 +01001641
1642#1.2: Check that VNF are present at database table vnfs. Insert uuid, description and external interfaces
1643 for name,vnf in vnfs.items():
tiernocea279c2016-07-18 12:36:49 +02001644 where={}
1645 where_or={"tenant_id": tenant_id, 'public': "true"}
tierno7edb6752016-03-21 17:37:52 +01001646 error_text = ""
1647 error_pos = "'topology':'nodes':'" + name + "'"
1648 if 'vnf_id' in vnf:
1649 error_text += " 'vnf_id' " + vnf['vnf_id']
tiernocea279c2016-07-18 12:36:49 +02001650 where['uuid'] = vnf['vnf_id']
tierno7edb6752016-03-21 17:37:52 +01001651 if 'VNF model' in vnf:
1652 error_text += " 'VNF model' " + vnf['VNF model']
tiernocea279c2016-07-18 12:36:49 +02001653 where['name'] = vnf['VNF model']
1654 if len(where) == 0:
tiernof97fd272016-07-11 14:32:37 +02001655 raise NfvoException("Descriptor need a 'vnf_id' or 'VNF model' field at " + error_pos, HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +01001656
tiernocea279c2016-07-18 12:36:49 +02001657 vnf_db = mydb.get_rows(SELECT=('uuid','name','description'),
1658 FROM='vnfs',
tierno42026a02017-02-10 15:13:40 +01001659 WHERE=where,
tiernocea279c2016-07-18 12:36:49 +02001660 WHERE_OR=where_or,
1661 WHERE_AND_OR="AND")
tiernof97fd272016-07-11 14:32:37 +02001662 if len(vnf_db)==0:
1663 raise NfvoException("unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
1664 elif len(vnf_db)>1:
1665 raise NfvoException("more than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01001666 vnf['uuid']=vnf_db[0]['uuid']
1667 vnf['description']=vnf_db[0]['description']
1668 #get external interfaces
tierno42026a02017-02-10 15:13:40 +01001669 ext_ifaces = mydb.get_rows(SELECT=('external_name as name','i.uuid as iface_uuid', 'i.type as type'),
1670 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 +01001671 WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name':None} )
tierno7edb6752016-03-21 17:37:52 +01001672 for ext_iface in ext_ifaces:
1673 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type':ext_iface['type']}
1674
1675#1.4 get list of connections
1676 conections = topo['topology']['connections']
1677 conections_list = []
tiernoefd80c92016-09-16 14:17:46 +02001678 conections_list_name = []
tierno7edb6752016-03-21 17:37:52 +01001679 for k in conections.keys():
1680 if type(conections[k]['nodes'])==dict: #dict with node:iface pairs
1681 ifaces_list = conections[k]['nodes'].items()
1682 elif type(conections[k]['nodes'])==list: #list with dictionary
1683 ifaces_list=[]
1684 conection_pair_list = map(lambda x: x.items(), conections[k]['nodes'] )
1685 for k2 in conection_pair_list:
1686 ifaces_list += k2
1687
1688 con_type = conections[k].get("type", "link")
1689 if con_type != "link":
1690 if k in other_nets:
tiernof97fd272016-07-11 14:32:37 +02001691 raise NfvoException("Format error. Reapeted network name at 'topology':'connections':'{}'".format(str(k)), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001692 other_nets[k] = {'external': False}
1693 if conections[k].get("graph"):
1694 other_nets[k]["graph"] = conections[k]["graph"]
1695 ifaces_list.append( (k, None) )
1696
tierno42026a02017-02-10 15:13:40 +01001697
tierno7edb6752016-03-21 17:37:52 +01001698 if con_type == "external_network":
1699 other_nets[k]['external'] = True
1700 if conections[k].get("model"):
1701 other_nets[k]["model"] = conections[k]["model"]
1702 else:
1703 other_nets[k]["model"] = k
tierno42026a02017-02-10 15:13:40 +01001704 if con_type == "dataplane_net" or con_type == "bridge_net":
tierno7edb6752016-03-21 17:37:52 +01001705 other_nets[k]["model"] = con_type
tierno42026a02017-02-10 15:13:40 +01001706
tiernoefd80c92016-09-16 14:17:46 +02001707 conections_list_name.append(k)
tierno7edb6752016-03-21 17:37:52 +01001708 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)
1709 #print set(ifaces_list)
1710 #check valid VNF and iface names
1711 for iface in ifaces_list:
1712 if iface[0] not in vnfs and iface[0] not in other_nets :
tiernof97fd272016-07-11 14:32:37 +02001713 raise NfvoException("format error. Invalid VNF name at 'topology':'connections':'{}':'nodes':'{}'".format(
1714 str(k), iface[0]), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001715 if iface[0] in vnfs and iface[1] not in vnfs[ iface[0] ]['ifaces']:
tiernof97fd272016-07-11 14:32:37 +02001716 raise NfvoException("format error. Invalid interface name at 'topology':'connections':'{}':'nodes':'{}':'{}'".format(
1717 str(k), iface[0], iface[1]), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001718
1719#1.5 unify connections from the pair list to a consolidated list
1720 index=0
1721 while index < len(conections_list):
1722 index2 = index+1
1723 while index2 < len(conections_list):
1724 if len(conections_list[index] & conections_list[index2])>0: #common interface, join nets
1725 conections_list[index] |= conections_list[index2]
1726 del conections_list[index2]
tiernoefd80c92016-09-16 14:17:46 +02001727 del conections_list_name[index2]
tierno7edb6752016-03-21 17:37:52 +01001728 else:
1729 index2 += 1
1730 conections_list[index] = list(conections_list[index]) # from set to list again
1731 index += 1
1732 #for k in conections_list:
1733 # print k
tierno42026a02017-02-10 15:13:40 +01001734
tierno7edb6752016-03-21 17:37:52 +01001735
1736
1737#1.6 Delete non external nets
1738# for k in other_nets.keys():
1739# if other_nets[k]['model']=='bridge' or other_nets[k]['model']=='dataplane_net' or other_nets[k]['model']=='bridge_net':
1740# for con in conections_list:
1741# delete_indexes=[]
1742# for index in range(0,len(con)):
1743# if con[index][0] == k: delete_indexes.insert(0,index) #order from higher to lower
1744# for index in delete_indexes:
1745# del con[index]
1746# del other_nets[k]
1747#1.7: Check external_ports are present at database table datacenter_nets
1748 for k,net in other_nets.items():
1749 error_pos = "'topology':'nodes':'" + k + "'"
1750 if net['external']==False:
1751 if 'name' not in net:
1752 net['name']=k
1753 if 'model' not in net:
tiernof97fd272016-07-11 14:32:37 +02001754 raise NfvoException("needed a 'model' at " + error_pos, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001755 if net['model']=='bridge_net':
1756 net['type']='bridge';
1757 elif net['model']=='dataplane_net':
1758 net['type']='data';
1759 else:
tiernof97fd272016-07-11 14:32:37 +02001760 raise NfvoException("unknown 'model' '"+ net['model'] +"' at " + error_pos, HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001761 else: #external
1762#IF we do not want to check that external network exist at datacenter
1763 pass
tierno42026a02017-02-10 15:13:40 +01001764#ELSE
tierno7edb6752016-03-21 17:37:52 +01001765# error_text = ""
1766# WHERE_={}
1767# if 'net_id' in net:
1768# error_text += " 'net_id' " + net['net_id']
1769# WHERE_['uuid'] = net['net_id']
1770# if 'model' in net:
1771# error_text += " 'model' " + net['model']
1772# WHERE_['name'] = net['model']
1773# if len(WHERE_) == 0:
1774# return -HTTP_Bad_Request, "needed a 'net_id' or 'model' at " + error_pos
1775# r,net_db = mydb.get_table(SELECT=('uuid','name','description','type','shared'),
1776# FROM='datacenter_nets', WHERE=WHERE_ )
1777# if r<0:
1778# print "nfvo.new_scenario Error getting datacenter_nets",r,net_db
1779# elif r==0:
1780# print "nfvo.new_scenario Error" +error_text+ " is not present at database"
1781# return -HTTP_Bad_Request, "unknown " +error_text+ " at " + error_pos
1782# elif r>1:
tierno42026a02017-02-10 15:13:40 +01001783# print "nfvo.new_scenario Error more than one external_network for " +error_text+ " is present at database"
1784# 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 +01001785# other_nets[k].update(net_db[0])
tierno42026a02017-02-10 15:13:40 +01001786#ENDIF
tierno7edb6752016-03-21 17:37:52 +01001787 net_list={}
1788 net_nb=0 #Number of nets
1789 for con in conections_list:
1790 #check if this is connected to a external net
1791 other_net_index=-1
1792 #print
1793 #print "con", con
1794 for index in range(0,len(con)):
1795 #check if this is connected to a external net
1796 for net_key in other_nets.keys():
1797 if con[index][0]==net_key:
1798 if other_net_index>=0:
tierno42026a02017-02-10 15:13:40 +01001799 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 +02001800 #print "nfvo.new_scenario " + error_text
1801 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001802 else:
1803 other_net_index = index
1804 net_target = net_key
1805 break
1806 #print "other_net_index", other_net_index
1807 try:
1808 if other_net_index>=0:
1809 del con[other_net_index]
1810#IF we do not want to check that external network exist at datacenter
1811 if other_nets[net_target]['external'] :
1812 if "name" not in other_nets[net_target]:
1813 other_nets[net_target]['name'] = other_nets[net_target]['model']
1814 if other_nets[net_target]["type"] == "external_network":
1815 if vnfs[ con[0][0] ]['ifaces'][ con[0][1] ]["type"] == "data":
1816 other_nets[net_target]["type"] = "data"
1817 else:
1818 other_nets[net_target]["type"] = "bridge"
tierno42026a02017-02-10 15:13:40 +01001819#ELSE
tierno7edb6752016-03-21 17:37:52 +01001820# if other_nets[net_target]['external'] :
1821# 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
1822# if type_=='data' and other_nets[net_target]['type']=="ptp":
1823# error_text = "Error connecting %d nodes on a not multipoint net %s" % (len(con), net_target)
1824# print "nfvo.new_scenario " + error_text
1825# return -HTTP_Bad_Request, error_text
tierno42026a02017-02-10 15:13:40 +01001826#ENDIF
tierno7edb6752016-03-21 17:37:52 +01001827 for iface in con:
1828 vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target
1829 else:
1830 #create a net
1831 net_type_bridge=False
1832 net_type_data=False
1833 net_target = "__-__net"+str(net_nb)
tierno42026a02017-02-10 15:13:40 +01001834 net_list[net_target] = {'name': conections_list_name[net_nb], #"net-"+str(net_nb),
tiernoefd80c92016-09-16 14:17:46 +02001835 'description':"net-%s in scenario %s" %(net_nb,topo['name']),
tierno42026a02017-02-10 15:13:40 +01001836 'external':False}
tierno7edb6752016-03-21 17:37:52 +01001837 for iface in con:
1838 vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target
1839 iface_type = vnfs[ iface[0] ]['ifaces'][ iface[1] ]['type']
1840 if iface_type=='mgmt' or iface_type=='bridge':
1841 net_type_bridge = True
1842 else:
1843 net_type_data = True
1844 if net_type_bridge and net_type_data:
1845 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 +02001846 #print "nfvo.new_scenario " + error_text
1847 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001848 elif net_type_bridge:
1849 type_='bridge'
1850 else:
1851 type_='data' if len(con)>2 else 'ptp'
1852 net_list[net_target]['type'] = type_
1853 net_nb+=1
1854 except Exception:
1855 error_text = "Error connection node %s : %s does not match any VNF or interface" % (iface[0], iface[1])
tiernof97fd272016-07-11 14:32:37 +02001856 #print "nfvo.new_scenario " + error_text
tierno7edb6752016-03-21 17:37:52 +01001857 #raise e
tiernof97fd272016-07-11 14:32:37 +02001858 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001859
1860#1.8: Connect to management net all not already connected interfaces of type 'mgmt'
tierno42026a02017-02-10 15:13:40 +01001861 #1.8.1 obtain management net
tiernof97fd272016-07-11 14:32:37 +02001862 mgmt_net = mydb.get_rows(SELECT=('uuid','name','description','type','shared'),
tierno7edb6752016-03-21 17:37:52 +01001863 FROM='datacenter_nets', WHERE={'name':'mgmt'} )
tierno42026a02017-02-10 15:13:40 +01001864 #1.8.2 check all interfaces from all vnfs
tiernof97fd272016-07-11 14:32:37 +02001865 if len(mgmt_net)>0:
tierno7edb6752016-03-21 17:37:52 +01001866 add_mgmt_net = False
1867 for vnf in vnfs.values():
1868 for iface in vnf['ifaces'].values():
1869 if iface['type']=='mgmt' and 'net_key' not in iface:
1870 #iface not connected
1871 iface['net_key'] = 'mgmt'
1872 add_mgmt_net = True
1873 if add_mgmt_net and 'mgmt' not in net_list:
1874 net_list['mgmt']=mgmt_net[0]
1875 net_list['mgmt']['external']=True
1876 net_list['mgmt']['graph']={'visible':False}
1877
1878 net_list.update(other_nets)
tiernof97fd272016-07-11 14:32:37 +02001879 #print
1880 #print 'net_list', net_list
1881 #print
1882 #print 'vnfs', vnfs
1883 #print
tierno7edb6752016-03-21 17:37:52 +01001884
1885#2: insert scenario. filling tables scenarios,sce_vnfs,sce_interfaces,sce_nets
tiernof97fd272016-07-11 14:32:37 +02001886 c = mydb.new_scenario( { 'vnfs':vnfs, 'nets':net_list,
tierno392f2852016-05-13 12:28:55 +02001887 'tenant_id':tenant_id, 'name':topo['name'],
1888 'description':topo.get('description',topo['name']),
1889 'public': topo.get('public', False)
1890 })
tierno42026a02017-02-10 15:13:40 +01001891
tiernof97fd272016-07-11 14:32:37 +02001892 return c
tierno7edb6752016-03-21 17:37:52 +01001893
tiernob3d36742017-03-03 23:51:05 +01001894
tierno5bb59dc2017-02-13 14:53:54 +01001895def new_scenario_v02(mydb, tenant_id, scenario_dict, version):
1896 """ This creates a new scenario for version 0.2 and 0.3"""
tierno392f2852016-05-13 12:28:55 +02001897 scenario = scenario_dict["scenario"]
tierno7edb6752016-03-21 17:37:52 +01001898 if tenant_id != "any":
tierno42026a02017-02-10 15:13:40 +01001899 check_tenant(mydb, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01001900 if "tenant_id" in scenario:
1901 if scenario["tenant_id"] != tenant_id:
tierno5bb59dc2017-02-13 14:53:54 +01001902 # print "nfvo.new_scenario_v02() tenant '%s' not found" % tenant_id
tiernof97fd272016-07-11 14:32:37 +02001903 raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(
1904 scenario["tenant_id"], tenant_id), HTTP_Unauthorized)
tierno7edb6752016-03-21 17:37:52 +01001905 else:
1906 tenant_id=None
1907
tierno5bb59dc2017-02-13 14:53:54 +01001908 # 1: Check that VNF are present at database table vnfs and update content into scenario dict
tierno7edb6752016-03-21 17:37:52 +01001909 for name,vnf in scenario["vnfs"].iteritems():
tiernocea279c2016-07-18 12:36:49 +02001910 where={}
1911 where_or={"tenant_id": tenant_id, 'public': "true"}
tierno7edb6752016-03-21 17:37:52 +01001912 error_text = ""
garciadeblas71781ea2016-09-19 14:41:59 +02001913 error_pos = "'scenario':'vnfs':'" + name + "'"
tierno7edb6752016-03-21 17:37:52 +01001914 if 'vnf_id' in vnf:
tierno5bb59dc2017-02-13 14:53:54 +01001915 error_text += " 'vnf_id' " + vnf['vnf_id']
tiernocea279c2016-07-18 12:36:49 +02001916 where['uuid'] = vnf['vnf_id']
tierno392f2852016-05-13 12:28:55 +02001917 if 'vnf_name' in vnf:
tierno5bb59dc2017-02-13 14:53:54 +01001918 error_text += " 'vnf_name' " + vnf['vnf_name']
tiernocea279c2016-07-18 12:36:49 +02001919 where['name'] = vnf['vnf_name']
1920 if len(where) == 0:
garciadeblas71781ea2016-09-19 14:41:59 +02001921 raise NfvoException("Needed a 'vnf_id' or 'vnf_name' at " + error_pos, HTTP_Bad_Request)
tierno5bb59dc2017-02-13 14:53:54 +01001922 vnf_db = mydb.get_rows(SELECT=('uuid', 'name', 'description'),
tiernocea279c2016-07-18 12:36:49 +02001923 FROM='vnfs',
1924 WHERE=where,
1925 WHERE_OR=where_or,
1926 WHERE_AND_OR="AND")
tierno5bb59dc2017-02-13 14:53:54 +01001927 if len(vnf_db) == 0:
tiernof97fd272016-07-11 14:32:37 +02001928 raise NfvoException("Unknown" + error_text + " at " + error_pos, HTTP_Not_Found)
tierno5bb59dc2017-02-13 14:53:54 +01001929 elif len(vnf_db) > 1:
tiernof97fd272016-07-11 14:32:37 +02001930 raise NfvoException("More than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict)
tierno5bb59dc2017-02-13 14:53:54 +01001931 vnf['uuid'] = vnf_db[0]['uuid']
1932 vnf['description'] = vnf_db[0]['description']
tierno7edb6752016-03-21 17:37:52 +01001933 vnf['ifaces'] = {}
tierno5bb59dc2017-02-13 14:53:54 +01001934 # get external interfaces
1935 ext_ifaces = mydb.get_rows(SELECT=('external_name as name', 'i.uuid as iface_uuid', 'i.type as type'),
1936 FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id',
1937 WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name': None} )
tierno7edb6752016-03-21 17:37:52 +01001938 for ext_iface in ext_ifaces:
tierno5bb59dc2017-02-13 14:53:54 +01001939 vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type': ext_iface['type']}
1940 # TODO? get internal-connections from db.nets and their profiles, and update scenario[vnfs][internal-connections] accordingly
tierno7edb6752016-03-21 17:37:52 +01001941
tierno5bb59dc2017-02-13 14:53:54 +01001942 # 2: Insert net_key and ip_address at every vnf interface
1943 for net_name, net in scenario["networks"].items():
1944 net_type_bridge = False
1945 net_type_data = False
tierno7edb6752016-03-21 17:37:52 +01001946 for iface_dict in net["interfaces"]:
tierno5bb59dc2017-02-13 14:53:54 +01001947 if version == "0.2":
1948 temp_dict = iface_dict
1949 ip_address = None
1950 elif version == "0.3":
1951 temp_dict = {iface_dict["vnf"] : iface_dict["vnf_interface"]}
1952 ip_address = iface_dict.get('ip_address', None)
1953 for vnf, iface in temp_dict.items():
tierno7edb6752016-03-21 17:37:52 +01001954 if vnf not in scenario["vnfs"]:
tierno5bb59dc2017-02-13 14:53:54 +01001955 error_text = "Error at 'networks':'{}':'interfaces' VNF '{}' not match any VNF at 'vnfs'".format(
1956 net_name, vnf)
1957 # logger.debug("nfvo.new_scenario_v02 " + error_text)
tiernof97fd272016-07-11 14:32:37 +02001958 raise NfvoException(error_text, HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01001959 if iface not in scenario["vnfs"][vnf]['ifaces']:
tierno5bb59dc2017-02-13 14:53:54 +01001960 error_text = "Error at 'networks':'{}':'interfaces':'{}' interface not match any VNF interface"\
1961 .format(net_name, iface)
1962 # logger.debug("nfvo.new_scenario_v02 " + error_text)
tiernof97fd272016-07-11 14:32:37 +02001963 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001964 if "net_key" in scenario["vnfs"][vnf]['ifaces'][iface]:
tierno5bb59dc2017-02-13 14:53:54 +01001965 error_text = "Error at 'networks':'{}':'interfaces':'{}' interface already connected at network"\
1966 "'{}'".format(net_name, iface,scenario["vnfs"][vnf]['ifaces'][iface]['net_key'])
1967 # logger.debug("nfvo.new_scenario_v02 " + error_text)
tiernof97fd272016-07-11 14:32:37 +02001968 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001969 scenario["vnfs"][vnf]['ifaces'][ iface ]['net_key'] = net_name
tierno5bb59dc2017-02-13 14:53:54 +01001970 scenario["vnfs"][vnf]['ifaces'][iface]['ip_address'] = ip_address
tierno7edb6752016-03-21 17:37:52 +01001971 iface_type = scenario["vnfs"][vnf]['ifaces'][iface]['type']
tierno5bb59dc2017-02-13 14:53:54 +01001972 if iface_type == 'mgmt' or iface_type == 'bridge':
tierno7edb6752016-03-21 17:37:52 +01001973 net_type_bridge = True
1974 else:
1975 net_type_data = True
tierno5bb59dc2017-02-13 14:53:54 +01001976
tierno7edb6752016-03-21 17:37:52 +01001977 if net_type_bridge and net_type_data:
tierno5bb59dc2017-02-13 14:53:54 +01001978 error_text = "Error connection interfaces of 'bridge' type and 'data' type at 'networks':'{}':'interfaces'"\
1979 .format(net_name)
1980 # logger.debug("nfvo.new_scenario " + error_text)
tiernof97fd272016-07-11 14:32:37 +02001981 raise NfvoException(error_text, HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001982 elif net_type_bridge:
tierno5bb59dc2017-02-13 14:53:54 +01001983 type_ = 'bridge'
tierno7edb6752016-03-21 17:37:52 +01001984 else:
tierno5bb59dc2017-02-13 14:53:54 +01001985 type_ = 'data' if len(net["interfaces"]) > 2 else 'ptp'
1986
1987 if net.get("implementation"): # for v0.3
1988 if type_ == "bridge" and net["implementation"] == "underlay":
1989 error_text = "Error connecting interfaces of data type to a network declared as 'underlay' at "\
1990 "'network':'{}'".format(net_name)
1991 # logger.debug(error_text)
1992 raise NfvoException(error_text, HTTP_Bad_Request)
1993 elif type_ != "bridge" and net["implementation"] == "overlay":
1994 error_text = "Error connecting interfaces of data type to a network declared as 'overlay' at "\
1995 "'network':'{}'".format(net_name)
1996 # logger.debug(error_text)
1997 raise NfvoException(error_text, HTTP_Bad_Request)
1998 net.pop("implementation")
1999 if "type" in net and version == "0.3": # for v0.3
2000 if type_ == "data" and net["type"] == "e-line":
2001 error_text = "Error connecting more than 2 interfaces of data type to a network declared as type "\
2002 "'e-line' at 'network':'{}'".format(net_name)
2003 # logger.debug(error_text)
2004 raise NfvoException(error_text, HTTP_Bad_Request)
2005 elif type_ == "ptp" and net["type"] == "e-lan":
2006 type_ = "data"
2007
tierno7edb6752016-03-21 17:37:52 +01002008 net['type'] = type_
2009 net['name'] = net_name
2010 net['external'] = net.get('external', False)
2011
tierno5bb59dc2017-02-13 14:53:54 +01002012 # 3: insert at database
tierno7edb6752016-03-21 17:37:52 +01002013 scenario["nets"] = scenario["networks"]
2014 scenario['tenant_id'] = tenant_id
tierno5bb59dc2017-02-13 14:53:54 +01002015 scenario_id = mydb.new_scenario(scenario)
tiernof97fd272016-07-11 14:32:37 +02002016 return scenario_id
tierno7edb6752016-03-21 17:37:52 +01002017
tiernob3d36742017-03-03 23:51:05 +01002018
tiernof1ba57e2017-09-07 12:23:19 +02002019def new_nsd_v3(mydb, tenant_id, nsd_descriptor):
2020 """
2021 Parses an OSM IM nsd_catalog and insert at DB
2022 :param mydb:
2023 :param tenant_id:
2024 :param nsd_descriptor:
2025 :return: The list of cretated NSD ids
2026 """
2027 try:
2028 mynsd = nsd_catalog.nsd()
tiernoa9550202017-09-22 13:31:35 +02002029 try:
2030 pybindJSONDecoder.load_ietf_json(nsd_descriptor, None, None, obj=mynsd)
2031 except Exception as e:
tiernob2880eb2017-10-04 15:04:53 +02002032 raise NfvoException("Error. Invalid NS descriptor format: " + str(e), HTTP_Bad_Request)
tiernof1ba57e2017-09-07 12:23:19 +02002033 db_scenarios = []
2034 db_sce_nets = []
2035 db_sce_vnfs = []
2036 db_sce_interfaces = []
2037 db_ip_profiles = []
2038 db_ip_profiles_index = 0
2039 uuid_list = []
2040 nsd_uuid_list = []
tiernob2880eb2017-10-04 15:04:53 +02002041 for nsd_yang in mynsd.nsd_catalog.nsd.itervalues():
2042 nsd = nsd_yang.get()
tiernof1ba57e2017-09-07 12:23:19 +02002043
2044 # table sceanrios
2045 scenario_uuid = str(uuid4())
2046 uuid_list.append(scenario_uuid)
2047 nsd_uuid_list.append(scenario_uuid)
2048 db_scenario = {
2049 "uuid": scenario_uuid,
2050 "osm_id": get_str(nsd, "id", 255),
2051 "name": get_str(nsd, "name", 255),
2052 "description": get_str(nsd, "description", 255),
2053 "tenant_id": tenant_id,
2054 "vendor": get_str(nsd, "vendor", 255),
2055 "short_name": get_str(nsd, "short-name", 255),
2056 "descriptor": str(nsd_descriptor)[:60000],
2057 }
2058 db_scenarios.append(db_scenario)
2059
2060 # table sce_vnfs (constituent-vnfd)
2061 vnf_index2scevnf_uuid = {}
2062 vnf_index2vnf_uuid = {}
2063 for vnf in nsd.get("constituent-vnfd").itervalues():
2064 existing_vnf = mydb.get_rows(FROM="vnfs", WHERE={'osm_id': str(vnf["vnfd-id-ref"])[:255],
2065 'tenant_id': tenant_id})
2066 if not existing_vnf:
tiernob2880eb2017-10-04 15:04:53 +02002067 raise NfvoException("Error. Invalid NS descriptor at 'nsd[{}]':'constituent-vnfd':'vnfd-id-ref':"
2068 "'{}'. Reference to a non-existing VNFD in the catalog".format(
2069 str(nsd["id"]), str(vnf["vnfd-id-ref"])[:255]),
2070 HTTP_Bad_Request)
tiernof1ba57e2017-09-07 12:23:19 +02002071 sce_vnf_uuid = str(uuid4())
2072 uuid_list.append(sce_vnf_uuid)
2073 db_sce_vnf = {
2074 "uuid": sce_vnf_uuid,
2075 "scenario_id": scenario_uuid,
2076 "name": existing_vnf[0]["name"][:200] + "." + get_str(vnf, "member-vnf-index", 5),
2077 "vnf_id": existing_vnf[0]["uuid"],
2078 "member_vnf_index": int(vnf["member-vnf-index"]),
2079 # TODO 'start-by-default': True
2080 }
2081 vnf_index2scevnf_uuid[int(vnf['member-vnf-index'])] = sce_vnf_uuid
2082 vnf_index2vnf_uuid[int(vnf['member-vnf-index'])] = existing_vnf[0]["uuid"]
2083 db_sce_vnfs.append(db_sce_vnf)
2084
2085 # table ip_profiles (ip-profiles)
2086 ip_profile_name2db_table_index = {}
2087 for ip_profile in nsd.get("ip-profiles").itervalues():
2088 db_ip_profile = {
2089 "ip_version": str(ip_profile["ip-profile-params"].get("ip-version", "ipv4")),
2090 "subnet_address": str(ip_profile["ip-profile-params"].get("subnet-address")),
2091 "gateway_address": str(ip_profile["ip-profile-params"].get("gateway-address")),
2092 "dhcp_enabled": str(ip_profile["ip-profile-params"]["dhcp-params"].get("enabled", True)),
2093 "dhcp_start_address": str(ip_profile["ip-profile-params"]["dhcp-params"].get("start-address")),
2094 "dhcp_count": str(ip_profile["ip-profile-params"]["dhcp-params"].get("count")),
2095 }
2096 dns_list = []
2097 for dns in ip_profile["ip-profile-params"]["dns-server"].itervalues():
2098 dns_list.append(str(dns.get("address")))
2099 db_ip_profile["dns_address"] = ";".join(dns_list)
2100 if ip_profile["ip-profile-params"].get('security-group'):
2101 db_ip_profile["security_group"] = ip_profile["ip-profile-params"]['security-group']
2102 ip_profile_name2db_table_index[str(ip_profile["name"])] = db_ip_profiles_index
2103 db_ip_profiles_index += 1
2104 db_ip_profiles.append(db_ip_profile)
2105
2106 # table sce_nets (internal-vld)
2107 for vld in nsd.get("vld").itervalues():
2108 sce_net_uuid = str(uuid4())
2109 uuid_list.append(sce_net_uuid)
2110 db_sce_net = {
2111 "uuid": sce_net_uuid,
2112 "name": get_str(vld, "name", 255),
2113 "scenario_id": scenario_uuid,
2114 # "type": #TODO
2115 "multipoint": not vld.get("type") == "ELINE",
2116 # "external": #TODO
2117 "description": get_str(vld, "description", 255),
2118 }
2119 # guess type of network
2120 if vld.get("mgmt-network"):
2121 db_sce_net["type"] = "bridge"
2122 db_sce_net["external"] = True
2123 elif vld.get("provider-network").get("overlay-type") == "VLAN":
2124 db_sce_net["type"] = "data"
2125 else:
2126 db_sce_net["type"] = "bridge"
2127 db_sce_nets.append(db_sce_net)
2128
2129 # ip-profile, link db_ip_profile with db_sce_net
2130 if vld.get("ip-profile-ref"):
2131 ip_profile_name = vld.get("ip-profile-ref")
2132 if ip_profile_name not in ip_profile_name2db_table_index:
tiernob2880eb2017-10-04 15:04:53 +02002133 raise NfvoException("Error. Invalid NS descriptor at 'nsd[{}]':'vld[{}]':'ip-profile-ref':'{}'."
2134 " Reference to a non-existing 'ip_profiles'".format(
2135 str(nsd["id"]), str(vld["id"]), str(vld["ip-profile-ref"])),
2136 HTTP_Bad_Request)
tiernof1ba57e2017-09-07 12:23:19 +02002137 db_ip_profiles[ip_profile_name2db_table_index[ip_profile_name]]["sce_net_id"] = sce_net_uuid
2138
2139 # table sce_interfaces (vld:vnfd-connection-point-ref)
2140 for iface in vld.get("vnfd-connection-point-ref").itervalues():
2141 vnf_index = int(iface['member-vnf-index-ref'])
2142 # check correct parameters
2143 if vnf_index not in vnf_index2vnf_uuid:
tiernob2880eb2017-10-04 15:04:53 +02002144 raise NfvoException("Error. Invalid NS descriptor at 'nsd[{}]':'vld[{}]':'vnfd-connection-point"
2145 "-ref':'member-vnf-index-ref':'{}'. Reference to a non-existing index at "
2146 "'nsd':'constituent-vnfd'".format(
2147 str(nsd["id"]), str(vld["id"]), str(iface["member-vnf-index-ref"])),
2148 HTTP_Bad_Request)
tiernof1ba57e2017-09-07 12:23:19 +02002149
2150 existing_ifaces = mydb.get_rows(SELECT=('i.uuid as uuid',),
2151 FROM="interfaces as i join vms on i.vm_id=vms.uuid",
2152 WHERE={'vnf_id': vnf_index2vnf_uuid[vnf_index],
2153 'external_name': get_str(iface, "vnfd-connection-point-ref",
2154 255)})
2155 if not existing_ifaces:
tiernob2880eb2017-10-04 15:04:53 +02002156 raise NfvoException("Error. Invalid NS descriptor at 'nsd[{}]':'vld[{}]':'vnfd-connection-point"
2157 "-ref':'vnfd-connection-point-ref':'{}'. Reference to a non-existing "
2158 "connection-point name at VNFD '{}'".format(
2159 str(nsd["id"]), str(vld["id"]), str(iface["vnfd-connection-point-ref"]),
2160 str(iface.get("vnfd-id-ref"))[:255]),
2161 HTTP_Bad_Request)
tiernof1ba57e2017-09-07 12:23:19 +02002162 interface_uuid = existing_ifaces[0]["uuid"]
2163 sce_interface_uuid = str(uuid4())
2164 uuid_list.append(sce_net_uuid)
2165 db_sce_interface = {
2166 "uuid": sce_interface_uuid,
2167 "sce_vnf_id": vnf_index2scevnf_uuid[vnf_index],
2168 "sce_net_id": sce_net_uuid,
2169 "interface_id": interface_uuid,
2170 # "ip_address": #TODO
2171 }
2172 db_sce_interfaces.append(db_sce_interface)
2173
2174 db_tables = [
2175 {"scenarios": db_scenarios},
2176 {"sce_nets": db_sce_nets},
2177 {"ip_profiles": db_ip_profiles},
2178 {"sce_vnfs": db_sce_vnfs},
2179 {"sce_interfaces": db_sce_interfaces},
2180 ]
2181
2182 logger.debug("create_vnf Deployment done vnfDict: %s",
2183 yaml.safe_dump(db_tables, indent=4, default_flow_style=False) )
2184 mydb.new_rows(db_tables, uuid_list)
2185 return nsd_uuid_list
tiernob2880eb2017-10-04 15:04:53 +02002186 except NfvoException:
2187 raise
tiernof1ba57e2017-09-07 12:23:19 +02002188 except Exception as e:
2189 logger.error("Exception {}".format(e))
2190 raise # NfvoException("Exception {}".format(e), HTTP_Bad_Request)
2191
2192
tierno7edb6752016-03-21 17:37:52 +01002193def edit_scenario(mydb, tenant_id, scenario_id, data):
2194 data["uuid"] = scenario_id
2195 data["tenant_id"] = tenant_id
tiernof97fd272016-07-11 14:32:37 +02002196 c = mydb.edit_scenario( data )
2197 return c
tierno7edb6752016-03-21 17:37:52 +01002198
tiernob3d36742017-03-03 23:51:05 +01002199
tierno7edb6752016-03-21 17:37:52 +01002200def 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 +02002201 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tiernoa2793912016-10-04 08:15:08 +00002202 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter, vim_tenant=vim_tenant)
2203 vims = {datacenter_id: myvim}
tierno392f2852016-05-13 12:28:55 +02002204 myvim_tenant = myvim['tenant_id']
tierno7edb6752016-03-21 17:37:52 +01002205 datacenter_name = myvim['name']
tiernoa2793912016-10-04 08:15:08 +00002206
tierno7edb6752016-03-21 17:37:52 +01002207 rollbackList=[]
tiernoae4a8d12016-07-08 12:30:39 +02002208 try:
2209 #print "Checking that the scenario_id exists and getting the scenario dictionary"
tierno868220c2017-09-26 00:11:05 +02002210 scenarioDict = mydb.get_scenario(scenario_id, tenant_id, datacenter_id=datacenter_id)
tiernoa2793912016-10-04 08:15:08 +00002211 scenarioDict['datacenter2tenant'] = { datacenter_id: myvim['config']['datacenter_tenant_id'] }
tiernoae4a8d12016-07-08 12:30:39 +02002212 scenarioDict['datacenter_id'] = datacenter_id
2213 #print '================scenarioDict======================='
2214 #print json.dumps(scenarioDict, indent=4)
2215 #print 'BEGIN launching instance scenario "%s" based on "%s"' % (instance_scenario_name,scenarioDict['name'])
tierno42026a02017-02-10 15:13:40 +01002216
tiernoae4a8d12016-07-08 12:30:39 +02002217 logger.debug("start_scenario Scenario %s: consisting of %d VNF(s)", scenarioDict['name'],len(scenarioDict['vnfs']))
2218 #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
tierno42026a02017-02-10 15:13:40 +01002219
tiernoae4a8d12016-07-08 12:30:39 +02002220 auxNetDict = {} #Auxiliar dictionary. First key:'scenario' or sce_vnf uuid. Second Key: uuid of the net/sce_net. Value: vim_net_id
2221 auxNetDict['scenario'] = {}
tierno42026a02017-02-10 15:13:40 +01002222
tiernoae4a8d12016-07-08 12:30:39 +02002223 logger.debug("start_scenario 1. Creating new nets (sce_nets) in the VIM")
2224 for sce_net in scenarioDict['nets']:
2225 #print "Net name: %s. Description: %s" % (sce_net["name"], sce_net["description"])
tierno42026a02017-02-10 15:13:40 +01002226
tiernoae4a8d12016-07-08 12:30:39 +02002227 myNetName = "%s.%s" % (instance_scenario_name, sce_net['name'])
tierno7edb6752016-03-21 17:37:52 +01002228 myNetName = myNetName[0:255] #limit length
tiernoae4a8d12016-07-08 12:30:39 +02002229 myNetType = sce_net['type']
tierno7edb6752016-03-21 17:37:52 +01002230 myNetDict = {}
2231 myNetDict["name"] = myNetName
2232 myNetDict["type"] = myNetType
2233 myNetDict["tenant_id"] = myvim_tenant
garciadeblas9f8456e2016-09-05 05:02:59 +02002234 myNetIPProfile = sce_net.get('ip_profile', None)
tierno7edb6752016-03-21 17:37:52 +01002235 #TODO:
tiernoae4a8d12016-07-08 12:30:39 +02002236 #We should use the dictionary as input parameter for new_network
tiernof97fd272016-07-11 14:32:37 +02002237 #print myNetDict
tiernoae4a8d12016-07-08 12:30:39 +02002238 if not sce_net["external"]:
garciadeblas9f8456e2016-09-05 05:02:59 +02002239 network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile)
tiernoae4a8d12016-07-08 12:30:39 +02002240 #print "New VIM network created for scenario %s. Network id: %s" % (scenarioDict['name'],network_id)
2241 sce_net['vim_id'] = network_id
2242 auxNetDict['scenario'][sce_net['uuid']] = network_id
2243 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
tierno66345bc2016-09-26 11:37:55 +02002244 sce_net["created"] = True
tiernoae4a8d12016-07-08 12:30:39 +02002245 else:
2246 if sce_net['vim_id'] == None:
2247 error_text = "Error, datacenter '%s' does not have external network '%s'." % (datacenter_name, sce_net['name'])
2248 _, message = rollback(mydb, vims, rollbackList)
2249 logger.error("nfvo.start_scenario: %s", error_text)
tiernof97fd272016-07-11 14:32:37 +02002250 raise NfvoException(error_text, HTTP_Bad_Request)
tiernoae4a8d12016-07-08 12:30:39 +02002251 logger.debug("Using existent VIM network for scenario %s. Network id %s", scenarioDict['name'],sce_net['vim_id'])
2252 auxNetDict['scenario'][sce_net['uuid']] = sce_net['vim_id']
tierno42026a02017-02-10 15:13:40 +01002253
tiernoae4a8d12016-07-08 12:30:39 +02002254 logger.debug("start_scenario 2. Creating new nets (vnf internal nets) in the VIM")
2255 #For each vnf net, we create it and we add it to instanceNetlist.
mirabal29356312017-07-27 12:21:22 +02002256
tiernoae4a8d12016-07-08 12:30:39 +02002257 for sce_vnf in scenarioDict['vnfs']:
2258 for net in sce_vnf['nets']:
2259 #print "Net name: %s. Description: %s" % (net["name"], net["description"])
tierno42026a02017-02-10 15:13:40 +01002260
tiernoae4a8d12016-07-08 12:30:39 +02002261 myNetName = "%s.%s" % (instance_scenario_name,net['name'])
2262 myNetName = myNetName[0:255] #limit length
2263 myNetType = net['type']
2264 myNetDict = {}
2265 myNetDict["name"] = myNetName
2266 myNetDict["type"] = myNetType
2267 myNetDict["tenant_id"] = myvim_tenant
garciadeblas9f8456e2016-09-05 05:02:59 +02002268 myNetIPProfile = net.get('ip_profile', None)
tiernoae4a8d12016-07-08 12:30:39 +02002269 #print myNetDict
2270 #TODO:
2271 #We should use the dictionary as input parameter for new_network
garciadeblas9f8456e2016-09-05 05:02:59 +02002272 network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile)
tiernoae4a8d12016-07-08 12:30:39 +02002273 #print "VIM network id for scenario %s: %s" % (scenarioDict['name'],network_id)
2274 net['vim_id'] = network_id
2275 if sce_vnf['uuid'] not in auxNetDict:
2276 auxNetDict[sce_vnf['uuid']] = {}
2277 auxNetDict[sce_vnf['uuid']][net['uuid']] = network_id
2278 rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id})
tierno66345bc2016-09-26 11:37:55 +02002279 net["created"] = True
tierno42026a02017-02-10 15:13:40 +01002280
tiernoae4a8d12016-07-08 12:30:39 +02002281 #print "auxNetDict:"
2282 #print yaml.safe_dump(auxNetDict, indent=4, default_flow_style=False)
tierno42026a02017-02-10 15:13:40 +01002283
tiernoae4a8d12016-07-08 12:30:39 +02002284 logger.debug("start_scenario 3. Creating new vm instances in the VIM")
2285 #myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict)
2286 i = 0
2287 for sce_vnf in scenarioDict['vnfs']:
tierno5a3273c2017-08-29 11:43:46 +02002288 vnf_availability_zones = []
mirabal29356312017-07-27 12:21:22 +02002289 for vm in sce_vnf['vms']:
2290 vm_av = vm.get('availability_zone')
tierno5a3273c2017-08-29 11:43:46 +02002291 if vm_av and vm_av not in vnf_availability_zones:
2292 vnf_availability_zones.append(vm_av)
2293
2294 # check if there is enough availability zones available at vim level.
2295 if myvims[datacenter_id].availability_zone and vnf_availability_zones:
2296 if len(vnf_availability_zones) > len(myvims[datacenter_id].availability_zone):
2297 raise NfvoException('No enough availability zones at VIM for this deployment', HTTP_Bad_Request)
2298
tiernoae4a8d12016-07-08 12:30:39 +02002299 for vm in sce_vnf['vms']:
2300 i += 1
2301 myVMDict = {}
2302 #myVMDict['name'] = "%s-%s-%s" % (scenarioDict['name'],sce_vnf['name'], vm['name'])
tiernoae65a482016-11-24 16:20:05 +01002303 myVMDict['name'] = "{}.{}.{}".format(instance_scenario_name,sce_vnf['name'],chr(96+i))
tiernoae4a8d12016-07-08 12:30:39 +02002304 #myVMDict['description'] = vm['description']
2305 myVMDict['description'] = myVMDict['name'][0:99]
2306 if not startvms:
2307 myVMDict['start'] = "no"
2308 myVMDict['name'] = myVMDict['name'][0:255] #limit name length
2309 #print "VM name: %s. Description: %s" % (myVMDict['name'], myVMDict['name'])
tierno42026a02017-02-10 15:13:40 +01002310
tiernoae4a8d12016-07-08 12:30:39 +02002311 #create image at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02002312 image_dict = mydb.get_table_by_uuid_name("images", vm['image_id'])
tierno42026a02017-02-10 15:13:40 +01002313 image_id = create_or_use_image(mydb, vims, image_dict, [], True)
tiernoae4a8d12016-07-08 12:30:39 +02002314 vm['vim_image_id'] = image_id
tierno42026a02017-02-10 15:13:40 +01002315
tiernoae4a8d12016-07-08 12:30:39 +02002316 #create flavor at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02002317 flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id'])
tiernoae4a8d12016-07-08 12:30:39 +02002318 if flavor_dict['extended']!=None:
2319 flavor_dict['extended']= yaml.load(flavor_dict['extended'])
tierno42026a02017-02-10 15:13:40 +01002320 flavor_id = create_or_use_flavor(mydb, vims, flavor_dict, [], True)
tiernoae4a8d12016-07-08 12:30:39 +02002321 vm['vim_flavor_id'] = flavor_id
tierno42026a02017-02-10 15:13:40 +01002322
2323
tiernoae4a8d12016-07-08 12:30:39 +02002324 myVMDict['imageRef'] = vm['vim_image_id']
2325 myVMDict['flavorRef'] = vm['vim_flavor_id']
2326 myVMDict['networks'] = []
2327 for iface in vm['interfaces']:
2328 netDict = {}
2329 if iface['type']=="data":
2330 netDict['type'] = iface['model']
2331 elif "model" in iface and iface["model"]!=None:
2332 netDict['model']=iface['model']
2333 #TODO in future, remove this because mac_address will not be set, and the type of PV,VF is obtained from iterface table model
2334 #discover type of interface looking at flavor
2335 for numa in flavor_dict.get('extended',{}).get('numas',[]):
2336 for flavor_iface in numa.get('interfaces',[]):
2337 if flavor_iface.get('name') == iface['internal_name']:
2338 if flavor_iface['dedicated'] == 'yes':
2339 netDict['type']="PF" #passthrough
2340 elif flavor_iface['dedicated'] == 'no':
2341 netDict['type']="VF" #siov
2342 elif flavor_iface['dedicated'] == 'yes:sriov':
2343 netDict['type']="VFnotShared" #sriov but only one sriov on the PF
2344 netDict["mac_address"] = flavor_iface.get("mac_address")
2345 break;
2346 netDict["use"]=iface['type']
2347 if netDict["use"]=="data" and not netDict.get("type"):
2348 #print "netDict", netDict
2349 #print "iface", iface
2350 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'])
2351 if flavor_dict.get('extended')==None:
tiernof97fd272016-07-11 14:32:37 +02002352 raise NfvoException(e_text + "After database migration some information is not available. \
2353 Try to delete and create the scenarios and VNFs again", HTTP_Conflict)
tiernoae4a8d12016-07-08 12:30:39 +02002354 else:
tiernof97fd272016-07-11 14:32:37 +02002355 raise NfvoException(e_text, HTTP_Internal_Server_Error)
tiernoae4a8d12016-07-08 12:30:39 +02002356 if netDict["use"]=="mgmt" or netDict["use"]=="bridge":
2357 netDict["type"]="virtual"
2358 if "vpci" in iface and iface["vpci"] is not None:
2359 netDict['vpci'] = iface['vpci']
2360 if "mac" in iface and iface["mac"] is not None:
2361 netDict['mac_address'] = iface['mac']
montesmoreno2a1fc4e2017-01-09 16:46:04 +00002362 if "port-security" in iface and iface["port-security"] is not None:
2363 netDict['port_security'] = iface['port-security']
2364 if "floating-ip" in iface and iface["floating-ip"] is not None:
2365 netDict['floating_ip'] = iface['floating-ip']
tiernoae4a8d12016-07-08 12:30:39 +02002366 netDict['name'] = iface['internal_name']
2367 if iface['net_id'] is None:
2368 for vnf_iface in sce_vnf["interfaces"]:
tiernof97fd272016-07-11 14:32:37 +02002369 #print iface
2370 #print vnf_iface
tiernoae4a8d12016-07-08 12:30:39 +02002371 if vnf_iface['interface_id']==iface['uuid']:
2372 netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ]
2373 break
2374 else:
2375 netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ]
2376 #skip bridge ifaces not connected to any net
2377 #if 'net_id' not in netDict or netDict['net_id']==None:
2378 # continue
2379 myVMDict['networks'].append(netDict)
2380 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
2381 #print myVMDict['name']
2382 #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
2383 #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
2384 #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
mirabal29356312017-07-27 12:21:22 +02002385
2386 if 'availability_zone' in myVMDict:
tierno5a3273c2017-08-29 11:43:46 +02002387 av_index = vnf_availability_zones.index(myVMDict['availability_zone'])
mirabal29356312017-07-27 12:21:22 +02002388 else:
tierno5a3273c2017-08-29 11:43:46 +02002389 av_index = None
mirabal29356312017-07-27 12:21:22 +02002390
2391 vm_id = myvim.new_vminstance(myVMDict['name'], myVMDict['description'], myVMDict.get('start', None),
2392 myVMDict['imageRef'], myVMDict['flavorRef'], myVMDict['networks'],
tierno5a3273c2017-08-29 11:43:46 +02002393 availability_zone_index=av_index,
2394 availability_zone_list=vnf_availability_zones)
tiernoae4a8d12016-07-08 12:30:39 +02002395 #print "VIM vm instance id (server id) for scenario %s: %s" % (scenarioDict['name'],vm_id)
2396 vm['vim_id'] = vm_id
2397 rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id})
2398 #put interface uuid back to scenario[vnfs][vms[[interfaces]
2399 for net in myVMDict['networks']:
2400 if "vim_id" in net:
2401 for iface in vm['interfaces']:
2402 if net["name"]==iface["internal_name"]:
2403 iface["vim_id"]=net["vim_id"]
2404 break
tierno42026a02017-02-10 15:13:40 +01002405
tiernoae4a8d12016-07-08 12:30:39 +02002406 logger.debug("start scenario Deployment done")
2407 #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)
2408 #r,c = mydb.new_instance_scenario_as_a_whole(nfvo_tenant,scenarioDict['name'],scenarioDict)
tiernof97fd272016-07-11 14:32:37 +02002409 instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_scenario_name, instance_scenario_description, scenarioDict)
2410 return mydb.get_instance_scenario(instance_id)
tierno42026a02017-02-10 15:13:40 +01002411
tiernof97fd272016-07-11 14:32:37 +02002412 except (db_base_Exception, vimconn.vimconnException) as e:
tiernoae4a8d12016-07-08 12:30:39 +02002413 _, message = rollback(mydb, vims, rollbackList)
tiernof97fd272016-07-11 14:32:37 +02002414 if isinstance(e, db_base_Exception):
2415 error_text = "Exception at database"
2416 else:
2417 error_text = "Exception at VIM"
2418 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
2419 #logger.error("start_scenario %s", error_text)
2420 raise NfvoException(error_text, e.http_code)
tierno7edb6752016-03-21 17:37:52 +01002421
tierno36c0b172017-01-12 18:32:28 +01002422def unify_cloud_config(cloud_config_preserve, cloud_config):
tierno40e1bce2017-08-09 09:12:04 +02002423 """ join the cloud config information into cloud_config_preserve.
tierno36c0b172017-01-12 18:32:28 +01002424 In case of conflict cloud_config_preserve preserves
tierno40e1bce2017-08-09 09:12:04 +02002425 None is allowed
2426 """
tierno36c0b172017-01-12 18:32:28 +01002427 if not cloud_config_preserve and not cloud_config:
2428 return None
2429
2430 new_cloud_config = {"key-pairs":[], "users":[]}
2431 # key-pairs
2432 if cloud_config_preserve:
2433 for key in cloud_config_preserve.get("key-pairs", () ):
2434 if key not in new_cloud_config["key-pairs"]:
2435 new_cloud_config["key-pairs"].append(key)
2436 if cloud_config:
2437 for key in cloud_config.get("key-pairs", () ):
2438 if key not in new_cloud_config["key-pairs"]:
2439 new_cloud_config["key-pairs"].append(key)
2440 if not new_cloud_config["key-pairs"]:
2441 del new_cloud_config["key-pairs"]
2442
2443 # users
2444 if cloud_config:
2445 new_cloud_config["users"] += cloud_config.get("users", () )
2446 if cloud_config_preserve:
2447 new_cloud_config["users"] += cloud_config_preserve.get("users", () )
tiernoa4e1a6e2016-08-31 14:19:40 +02002448 index_to_delete = []
tierno36c0b172017-01-12 18:32:28 +01002449 users = new_cloud_config.get("users", [])
tiernoa4e1a6e2016-08-31 14:19:40 +02002450 for index0 in range(0,len(users)):
2451 if index0 in index_to_delete:
2452 continue
2453 for index1 in range(index0+1,len(users)):
2454 if index1 in index_to_delete:
2455 continue
2456 if users[index0]["name"] == users[index1]["name"]:
2457 index_to_delete.append(index1)
2458 for key in users[index1].get("key-pairs",()):
tierno36c0b172017-01-12 18:32:28 +01002459 if "key-pairs" not in users[index0]:
tiernoa4e1a6e2016-08-31 14:19:40 +02002460 users[index0]["key-pairs"] = [key]
2461 elif key not in users[index0]["key-pairs"]:
2462 users[index0]["key-pairs"].append(key)
2463 index_to_delete.sort(reverse=True)
2464 for index in index_to_delete:
2465 del users[index]
tierno36c0b172017-01-12 18:32:28 +01002466 if not new_cloud_config["users"]:
2467 del new_cloud_config["users"]
2468
2469 #boot-data-drive
2470 if cloud_config and cloud_config.get("boot-data-drive") != None:
2471 new_cloud_config["boot-data-drive"] = cloud_config["boot-data-drive"]
2472 if cloud_config_preserve and cloud_config_preserve.get("boot-data-drive") != None:
2473 new_cloud_config["boot-data-drive"] = cloud_config_preserve["boot-data-drive"]
2474
2475 # user-data
tierno40e1bce2017-08-09 09:12:04 +02002476 new_cloud_config["user-data"] = []
2477 if cloud_config and cloud_config.get("user-data"):
2478 if isinstance(cloud_config["user-data"], list):
2479 new_cloud_config["user-data"] += cloud_config["user-data"]
2480 else:
2481 new_cloud_config["user-data"].append(cloud_config["user-data"])
2482 if cloud_config_preserve and cloud_config_preserve.get("user-data"):
2483 if isinstance(cloud_config_preserve["user-data"], list):
2484 new_cloud_config["user-data"] += cloud_config_preserve["user-data"]
2485 else:
2486 new_cloud_config["user-data"].append(cloud_config_preserve["user-data"])
2487 if not new_cloud_config["user-data"]:
2488 del new_cloud_config["user-data"]
tierno36c0b172017-01-12 18:32:28 +01002489
2490 # config files
2491 new_cloud_config["config-files"] = []
2492 if cloud_config and cloud_config.get("config-files") != None:
2493 new_cloud_config["config-files"] += cloud_config["config-files"]
2494 if cloud_config_preserve:
2495 for file in cloud_config_preserve.get("config-files", ()):
2496 for index in range(0, len(new_cloud_config["config-files"])):
2497 if new_cloud_config["config-files"][index]["dest"] == file["dest"]:
2498 new_cloud_config["config-files"][index] = file
2499 break
2500 else:
2501 new_cloud_config["config-files"].append(file)
2502 if not new_cloud_config["config-files"]:
2503 del new_cloud_config["config-files"]
2504 return new_cloud_config
2505
2506
tierno867ffe92017-03-27 12:50:34 +02002507def get_vim_thread(mydb, tenant_id, datacenter_id_name=None, datacenter_tenant_id=None):
tiernob3d36742017-03-03 23:51:05 +01002508 datacenter_id = None
2509 datacenter_name = None
2510 thread = None
tierno867ffe92017-03-27 12:50:34 +02002511 try:
2512 if datacenter_tenant_id:
2513 thread_id = datacenter_tenant_id
2514 thread = vim_threads["running"].get(datacenter_tenant_id)
tiernob3d36742017-03-03 23:51:05 +01002515 else:
tierno867ffe92017-03-27 12:50:34 +02002516 where_={"td.nfvo_tenant_id": tenant_id}
2517 if datacenter_id_name:
2518 if utils.check_valid_uuid(datacenter_id_name):
2519 datacenter_id = datacenter_id_name
2520 where_["dt.datacenter_id"] = datacenter_id
2521 else:
2522 datacenter_name = datacenter_id_name
2523 where_["d.name"] = datacenter_name
2524 if datacenter_tenant_id:
2525 where_["dt.uuid"] = datacenter_tenant_id
2526 datacenters = mydb.get_rows(
2527 SELECT=("dt.uuid as datacenter_tenant_id",),
2528 FROM="datacenter_tenants as dt join tenants_datacenters as td on dt.uuid=td.datacenter_tenant_id "
2529 "join datacenters as d on d.uuid=dt.datacenter_id",
2530 WHERE=where_)
2531 if len(datacenters) > 1:
2532 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
2533 elif datacenters:
2534 thread_id = datacenters[0]["datacenter_tenant_id"]
2535 thread = vim_threads["running"].get(thread_id)
2536 if not thread:
2537 raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found)
2538 return thread_id, thread
2539 except db_base_Exception as e:
2540 raise NfvoException("{} {}".format(type(e).__name__ , str(e)), e.http_code)
tiernoa4e1a6e2016-08-31 14:19:40 +02002541
tiernof5755962017-07-13 15:44:34 +02002542
tiernoa15c4b92017-10-05 12:41:44 +02002543def get_datacenter_uuid(mydb, tenant_id, datacenter_id_name):
2544 WHERE_dict={}
2545 if utils.check_valid_uuid(datacenter_id_name):
2546 WHERE_dict['d.uuid'] = datacenter_id_name
2547 else:
2548 WHERE_dict['d.name'] = datacenter_id_name
2549
2550 if tenant_id:
2551 WHERE_dict['nfvo_tenant_id'] = tenant_id
2552 from_= "tenants_datacenters as td join datacenters as d on td.datacenter_id=d.uuid join datacenter_tenants as" \
2553 " dt on td.datacenter_tenant_id=dt.uuid"
2554 else:
2555 from_ = 'datacenters as d'
2556 vimaccounts = mydb.get_rows(FROM=from_, SELECT=("d.uuid as uuid",), WHERE=WHERE_dict )
2557 if len(vimaccounts) == 0:
2558 raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found)
2559 elif len(vimaccounts)>1:
2560 #print "nfvo.datacenter_action() error. Several datacenters found"
2561 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
2562 return vimaccounts[0]["uuid"]
2563
2564
tiernoa2793912016-10-04 08:15:08 +00002565def get_datacenter_by_name_uuid(mydb, tenant_id, datacenter_id_name=None, **extra_filter):
tiernobe41e222016-09-02 15:16:13 +02002566 datacenter_id = None
2567 datacenter_name = None
2568 if datacenter_id_name:
tierno42026a02017-02-10 15:13:40 +01002569 if utils.check_valid_uuid(datacenter_id_name):
tiernobe41e222016-09-02 15:16:13 +02002570 datacenter_id = datacenter_id_name
2571 else:
2572 datacenter_name = datacenter_id_name
tiernoa2793912016-10-04 08:15:08 +00002573 vims = get_vim(mydb, tenant_id, datacenter_id, datacenter_name, **extra_filter)
tiernobe41e222016-09-02 15:16:13 +02002574 if len(vims) == 0:
2575 raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found)
2576 elif len(vims)>1:
2577 #print "nfvo.datacenter_action() error. Several datacenters found"
2578 raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict)
2579 return vims.keys()[0], vims.values()[0]
2580
tiernob3d36742017-03-03 23:51:05 +01002581
garciadeblas9f8456e2016-09-05 05:02:59 +02002582def update(d, u):
2583 '''Takes dict d and updates it with the values in dict u.'''
2584 '''It merges all depth levels'''
2585 for k, v in u.iteritems():
2586 if isinstance(v, collections.Mapping):
2587 r = update(d.get(k, {}), v)
2588 d[k] = r
2589 else:
2590 d[k] = u[k]
2591 return d
2592
tierno7edb6752016-03-21 17:37:52 +01002593def create_instance(mydb, tenant_id, instance_dict):
tiernob3d36742017-03-03 23:51:05 +01002594 # print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
2595 # logger.debug("Creating instance...")
tierno7edb6752016-03-21 17:37:52 +01002596 scenario = instance_dict["scenario"]
tierno42026a02017-02-10 15:13:40 +01002597
tierno868220c2017-09-26 00:11:05 +02002598 # find main datacenter
tiernobe41e222016-09-02 15:16:13 +02002599 myvims = {}
tierno867ffe92017-03-27 12:50:34 +02002600 myvim_threads_id = {}
tierno7edb6752016-03-21 17:37:52 +01002601 datacenter = instance_dict.get("datacenter")
tiernobe41e222016-09-02 15:16:13 +02002602 default_datacenter_id, vim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
2603 myvims[default_datacenter_id] = vim
tierno867ffe92017-03-27 12:50:34 +02002604 myvim_threads_id[default_datacenter_id], _ = get_vim_thread(mydb, tenant_id, default_datacenter_id)
gcalvinoe580c7d2017-09-22 14:09:51 +02002605 tenant = mydb.get_rows_by_id('nfvo_tenants', tenant_id)
tierno868220c2017-09-26 00:11:05 +02002606 # myvim_tenant = myvim['tenant_id']
gcalvinoe580c7d2017-09-22 14:09:51 +02002607
tierno7edb6752016-03-21 17:37:52 +01002608 rollbackList=[]
tierno42026a02017-02-10 15:13:40 +01002609
tierno868220c2017-09-26 00:11:05 +02002610 # print "Checking that the scenario exists and getting the scenario dictionary"
2611 scenarioDict = mydb.get_scenario(scenario, tenant_id, datacenter_vim_id=myvim_threads_id[default_datacenter_id],
2612 datacenter_id=default_datacenter_id)
tierno42026a02017-02-10 15:13:40 +01002613
tierno868220c2017-09-26 00:11:05 +02002614 # logger.debug(">>>>>> Dictionaries before merging")
2615 # logger.debug(">>>>>> InstanceDict:\n{}".format(yaml.safe_dump(instance_dict,default_flow_style=False, width=256)))
2616 # logger.debug(">>>>>> ScenarioDict:\n{}".format(yaml.safe_dump(scenarioDict,default_flow_style=False, width=256)))
tierno42026a02017-02-10 15:13:40 +01002617
tierno868220c2017-09-26 00:11:05 +02002618 db_instance_vnfs = []
2619 db_instance_vms = []
2620 db_instance_interfaces = []
2621 db_ip_profiles = []
2622 db_vim_actions = []
tierno8e690322017-08-10 15:58:50 +02002623 uuid_list = []
tierno868220c2017-09-26 00:11:05 +02002624 task_index = 0
tierno8e690322017-08-10 15:58:50 +02002625 instance_name = instance_dict["name"]
2626 instance_uuid = str(uuid4())
2627 uuid_list.append(instance_uuid)
2628 db_instance_scenario = {
2629 "uuid": instance_uuid,
2630 "name": instance_name,
2631 "tenant_id": tenant_id,
2632 "scenario_id": scenarioDict['uuid'],
2633 "datacenter_id": default_datacenter_id,
2634 # filled bellow 'datacenter_tenant_id'
2635 "description": instance_dict.get("description"),
2636 }
tierno8e690322017-08-10 15:58:50 +02002637 if scenarioDict.get("cloud-config"):
2638 db_instance_scenario["cloud_config"] = yaml.safe_dump(scenarioDict["cloud-config"],
2639 default_flow_style=True, width=256)
tierno868220c2017-09-26 00:11:05 +02002640 instance_action_id = get_task_id()
2641 db_instance_action = {
2642 "uuid": instance_action_id, # same uuid for the instance and the action on create
2643 "tenant_id": tenant_id,
2644 "instance_id": instance_uuid,
2645 "description": "CREATE",
2646 }
garciadeblas9f8456e2016-09-05 05:02:59 +02002647
tierno868220c2017-09-26 00:11:05 +02002648 # Auxiliary dictionaries from x to y
2649 vnf_net2instance = {}
tierno8e690322017-08-10 15:58:50 +02002650 sce_net2instance = {}
tierno868220c2017-09-26 00:11:05 +02002651 net2task_id = {'scenario': {}}
tierno42026a02017-02-10 15:13:40 +01002652
tierno868220c2017-09-26 00:11:05 +02002653 # logger.debug("Creating instance from scenario-dict:\n%s",
2654 # yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False))
tierno7edb6752016-03-21 17:37:52 +01002655 try:
tiernob3d36742017-03-03 23:51:05 +01002656 # 0 check correct parameters
tierno868220c2017-09-26 00:11:05 +02002657 for net_name, net_instance_desc in instance_dict.get("networks", {}).iteritems():
tiernob3d36742017-03-03 23:51:05 +01002658 found = False
tierno7edb6752016-03-21 17:37:52 +01002659 for scenario_net in scenarioDict['nets']:
tiernobe41e222016-09-02 15:16:13 +02002660 if net_name == scenario_net["name"]:
tierno7edb6752016-03-21 17:37:52 +01002661 found = True
2662 break
2663 if not found:
tierno868220c2017-09-26 00:11:05 +02002664 raise NfvoException("Invalid scenario network name '{}' at instance:networks".format(net_name),
2665 HTTP_Bad_Request)
tiernobe41e222016-09-02 15:16:13 +02002666 if "sites" not in net_instance_desc:
2667 net_instance_desc["sites"] = [ {} ]
2668 site_without_datacenter_field = False
2669 for site in net_instance_desc["sites"]:
2670 if site.get("datacenter"):
tiernoa15c4b92017-10-05 12:41:44 +02002671 site["datacenter"] = get_datacenter_uuid(mydb, tenant_id, site["datacenter"])
tiernobe41e222016-09-02 15:16:13 +02002672 if site["datacenter"] not in myvims:
tierno868220c2017-09-26 00:11:05 +02002673 # Add this datacenter to myvims
tiernobe41e222016-09-02 15:16:13 +02002674 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, site["datacenter"])
2675 myvims[d] = v
tierno868220c2017-09-26 00:11:05 +02002676 myvim_threads_id[d], _ = get_vim_thread(mydb, tenant_id, site["datacenter"])
2677 site["datacenter"] = d # change name to id
tiernobe41e222016-09-02 15:16:13 +02002678 else:
2679 if site_without_datacenter_field:
tierno868220c2017-09-26 00:11:05 +02002680 raise NfvoException("Found more than one entries without datacenter field at "
2681 "instance:networks:{}:sites".format(net_name), HTTP_Bad_Request)
tiernobe41e222016-09-02 15:16:13 +02002682 site_without_datacenter_field = True
tierno868220c2017-09-26 00:11:05 +02002683 site["datacenter"] = default_datacenter_id # change name to id
tierno42026a02017-02-10 15:13:40 +01002684
tiernobe41e222016-09-02 15:16:13 +02002685 for vnf_name, vnf_instance_desc in instance_dict.get("vnfs",{}).iteritems():
tierno868220c2017-09-26 00:11:05 +02002686 found = False
tierno7edb6752016-03-21 17:37:52 +01002687 for scenario_vnf in scenarioDict['vnfs']:
tiernobe41e222016-09-02 15:16:13 +02002688 if vnf_name == scenario_vnf['name']:
tierno7edb6752016-03-21 17:37:52 +01002689 found = True
2690 break
2691 if not found:
tiernobe41e222016-09-02 15:16:13 +02002692 raise NfvoException("Invalid vnf name '{}' at instance:vnfs".format(vnf_instance_desc), HTTP_Bad_Request)
2693 if "datacenter" in vnf_instance_desc:
tierno868220c2017-09-26 00:11:05 +02002694 # Add this datacenter to myvims
tiernoa15c4b92017-10-05 12:41:44 +02002695 vnf_instance_desc["datacenter"] = get_datacenter_uuid(mydb, tenant_id, vnf_instance_desc["datacenter"])
tiernobe41e222016-09-02 15:16:13 +02002696 if vnf_instance_desc["datacenter"] not in myvims:
2697 d, v = get_datacenter_by_name_uuid(mydb, tenant_id, vnf_instance_desc["datacenter"])
2698 myvims[d] = v
tierno868220c2017-09-26 00:11:05 +02002699 myvim_threads_id[d], _ = get_vim_thread(mydb, tenant_id, vnf_instance_desc["datacenter"])
tiernoa2793912016-10-04 08:15:08 +00002700 scenario_vnf["datacenter"] = vnf_instance_desc["datacenter"]
garciadeblas30833382017-01-09 09:46:31 +01002701
tierno868220c2017-09-26 00:11:05 +02002702 # 0.1 parse cloud-config parameters
tierno36c0b172017-01-12 18:32:28 +01002703 cloud_config = unify_cloud_config(instance_dict.get("cloud-config"), scenarioDict.get("cloud-config"))
gcalvinoe580c7d2017-09-22 14:09:51 +02002704 # We add the RO key to cloud_config
2705 if tenant[0].get('RO_pub_key'):
2706 RO_key = {"key-pairs": [tenant[0]['RO_pub_key']]}
2707 cloud_config = unify_cloud_config(cloud_config, RO_key)
garciadeblas9f8456e2016-09-05 05:02:59 +02002708
tierno868220c2017-09-26 00:11:05 +02002709 # 0.2 merge instance information into scenario
2710 # Ideally, the operation should be as simple as: update(scenarioDict,instance_dict)
2711 # However, this is not possible yet.
garciadeblas9f8456e2016-09-05 05:02:59 +02002712 for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems():
2713 for scenario_net in scenarioDict['nets']:
2714 if net_name == scenario_net["name"]:
2715 if 'ip-profile' in net_instance_desc:
tierno455612d2017-05-30 16:40:10 +02002716 # translate from input format to database format
2717 ipprofile_in = net_instance_desc['ip-profile']
2718 ipprofile_db = {}
2719 ipprofile_db['subnet_address'] = ipprofile_in.get('subnet-address')
2720 ipprofile_db['ip_version'] = ipprofile_in.get('ip-version', 'IPv4')
2721 ipprofile_db['gateway_address'] = ipprofile_in.get('gateway-address')
2722 ipprofile_db['dns_address'] = ipprofile_in.get('dns-address')
2723 if isinstance(ipprofile_db['dns_address'], (list, tuple)):
2724 ipprofile_db['dns_address'] = ";".join(ipprofile_db['dns_address'])
2725 if 'dhcp' in ipprofile_in:
2726 ipprofile_db['dhcp_start_address'] = ipprofile_in['dhcp'].get('start-address')
2727 ipprofile_db['dhcp_enabled'] = ipprofile_in['dhcp'].get('enabled', True)
2728 ipprofile_db['dhcp_count'] = ipprofile_in['dhcp'].get('count' )
garciadeblasedca7b32016-09-29 14:01:52 +00002729 if 'ip_profile' not in scenario_net:
tierno455612d2017-05-30 16:40:10 +02002730 scenario_net['ip_profile'] = ipprofile_db
garciadeblasedca7b32016-09-29 14:01:52 +00002731 else:
tierno455612d2017-05-30 16:40:10 +02002732 update(scenario_net['ip_profile'], ipprofile_db)
tiernoe6c58ce2016-09-14 16:02:49 +02002733 for interface in net_instance_desc.get('interfaces', () ):
garciadeblas9f8456e2016-09-05 05:02:59 +02002734 if 'ip_address' in interface:
2735 for vnf in scenarioDict['vnfs']:
2736 if interface['vnf'] == vnf['name']:
2737 for vnf_interface in vnf['interfaces']:
2738 if interface['vnf_interface'] == vnf_interface['external_name']:
2739 vnf_interface['ip_address']=interface['ip_address']
2740
tierno868220c2017-09-26 00:11:05 +02002741 # logger.debug(">>>>>>>> Merged dictionary")
2742 # logger.debug("Creating instance scenario-dict MERGED:\n%s",
2743 # yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False))
garciadeblas9f8456e2016-09-05 05:02:59 +02002744
tiernob3d36742017-03-03 23:51:05 +01002745 # 1. Creating new nets (sce_nets) in the VIM"
tierno8e690322017-08-10 15:58:50 +02002746 db_instance_nets = []
tierno7edb6752016-03-21 17:37:52 +01002747 for sce_net in scenarioDict['nets']:
tierno868220c2017-09-26 00:11:05 +02002748 descriptor_net = instance_dict.get("networks", {}).get(sce_net["name"], {})
tiernobe41e222016-09-02 15:16:13 +02002749 net_name = descriptor_net.get("vim-network-name")
tierno8e690322017-08-10 15:58:50 +02002750 sce_net2instance[sce_net['uuid']] = {}
tierno868220c2017-09-26 00:11:05 +02002751 net2task_id['scenario'][sce_net['uuid']] = {}
tiernobe41e222016-09-02 15:16:13 +02002752
2753 sites = descriptor_net.get("sites", [ {} ])
2754 for site in sites:
2755 if site.get("datacenter"):
2756 vim = myvims[ site["datacenter"] ]
2757 datacenter_id = site["datacenter"]
tierno867ffe92017-03-27 12:50:34 +02002758 myvim_thread_id = myvim_threads_id[ site["datacenter"] ]
tierno7edb6752016-03-21 17:37:52 +01002759 else:
tiernobe41e222016-09-02 15:16:13 +02002760 vim = myvims[ default_datacenter_id ]
2761 datacenter_id = default_datacenter_id
tierno867ffe92017-03-27 12:50:34 +02002762 myvim_thread_id = myvim_threads_id[default_datacenter_id]
tiernobe41e222016-09-02 15:16:13 +02002763 net_type = sce_net['type']
tierno868220c2017-09-26 00:11:05 +02002764 lookfor_filter = {'admin_state_up': True, 'status': 'ACTIVE'} # 'shared': True
tierno42026a02017-02-10 15:13:40 +01002765
tiernof1ba57e2017-09-07 12:23:19 +02002766 if not net_name:
2767 if sce_net["external"]:
2768 net_name = sce_net["name"]
2769 else:
2770 net_name = "{}.{}".format(instance_name, sce_net["name"])
2771 net_name = net_name[:255] # limit length
2772
2773 if "netmap-use" in site or "netmap-create" in site:
2774 create_network = False
2775 lookfor_network = False
2776 if "netmap-use" in site:
2777 lookfor_network = True
2778 if utils.check_valid_uuid(site["netmap-use"]):
2779 filter_text = "scenario id '%s'" % site["netmap-use"]
2780 lookfor_filter["id"] = site["netmap-use"]
2781 else:
2782 filter_text = "scenario name '%s'" % site["netmap-use"]
2783 lookfor_filter["name"] = site["netmap-use"]
2784 if "netmap-create" in site:
2785 create_network = True
2786 net_vim_name = net_name
2787 if site["netmap-create"]:
2788 net_vim_name = site["netmap-create"]
2789 elif sce_net["external"]:
2790 if sce_net['vim_id'] != None:
tierno868220c2017-09-26 00:11:05 +02002791 # there is a netmap at datacenter_nets database # TODO REVISE!!!!
tiernobe41e222016-09-02 15:16:13 +02002792 create_network = False
2793 lookfor_network = True
2794 lookfor_filter["id"] = sce_net['vim_id']
tierno868220c2017-09-26 00:11:05 +02002795 filter_text = "vim_id '{}' datacenter_netmap name '{}'. Try to reload vims with "\
2796 "datacenter-net-update".format(sce_net['vim_id'], sce_net["name"])
2797 # look for network at datacenter and return error
tiernobe41e222016-09-02 15:16:13 +02002798 else:
tierno868220c2017-09-26 00:11:05 +02002799 # There is not a netmap, look at datacenter for a net with this name and create if not found
tiernobe41e222016-09-02 15:16:13 +02002800 create_network = True
2801 lookfor_network = True
2802 lookfor_filter["name"] = sce_net["name"]
2803 net_vim_name = sce_net["name"]
2804 filter_text = "scenario name '%s'" % sce_net["name"]
tierno7edb6752016-03-21 17:37:52 +01002805 else:
tiernobe41e222016-09-02 15:16:13 +02002806 net_vim_name = net_name
2807 create_network = True
2808 lookfor_network = False
tierno42026a02017-02-10 15:13:40 +01002809
tierno868220c2017-09-26 00:11:05 +02002810 if lookfor_network and create_network:
2811 # TODO create two tasks FIND + CREATE with their relationship
tiernob2880eb2017-10-04 15:04:53 +02002812 task_action = "FIND"
2813 task_params = (lookfor_filter,)
2814 # task_action = "CREATE"
2815 # task_params = (net_vim_name, net_type, sce_net.get('ip_profile', None))
2816 # task
tierno868220c2017-09-26 00:11:05 +02002817 elif lookfor_network:
2818 task_action = "FIND"
2819 task_params = (lookfor_filter,)
2820 elif create_network:
2821 task_action = "CREATE"
2822 task_params = (net_vim_name, net_type, sce_net.get('ip_profile', None))
tierno42026a02017-02-10 15:13:40 +01002823
tierno8e690322017-08-10 15:58:50 +02002824 # fill database content
2825 net_uuid = str(uuid4())
2826 uuid_list.append(net_uuid)
2827 sce_net2instance[sce_net['uuid']][datacenter_id] = net_uuid
2828 db_net = {
2829 "uuid": net_uuid,
tierno868220c2017-09-26 00:11:05 +02002830 'vim_net_id': None,
tierno8e690322017-08-10 15:58:50 +02002831 "instance_scenario_id": instance_uuid,
2832 "sce_net_id": sce_net["uuid"],
2833 "created": create_network,
2834 'datacenter_id': datacenter_id,
2835 'datacenter_tenant_id': myvim_thread_id,
2836 'status': 'BUILD' if create_network else "ACTIVE"
2837 }
2838 db_instance_nets.append(db_net)
tierno868220c2017-09-26 00:11:05 +02002839 db_vim_action = {
2840 "instance_action_id": instance_action_id,
2841 "status": "SCHEDULED",
2842 "task_index": task_index,
2843 "datacenter_vim_id": myvim_thread_id,
2844 "action": task_action,
2845 "item": "instance_nets",
2846 "item_id": net_uuid,
2847 "extra": yaml.safe_dump({"params": task_params}, default_flow_style=True, width=256)
2848 }
2849 net2task_id['scenario'][sce_net['uuid']][datacenter_id] = task_index
2850 task_index += 1
2851 db_vim_actions.append(db_vim_action)
2852
tierno8e690322017-08-10 15:58:50 +02002853 if 'ip_profile' in sce_net:
2854 db_ip_profile={
2855 'instance_net_id': net_uuid,
2856 'ip_version': sce_net['ip_profile']['ip_version'],
2857 'subnet_address': sce_net['ip_profile']['subnet_address'],
2858 'gateway_address': sce_net['ip_profile']['gateway_address'],
2859 'dns_address': sce_net['ip_profile']['dns_address'],
2860 'dhcp_enabled': sce_net['ip_profile']['dhcp_enabled'],
2861 'dhcp_start_address': sce_net['ip_profile']['dhcp_start_address'],
2862 'dhcp_count': sce_net['ip_profile']['dhcp_count'],
2863 }
2864 db_ip_profiles.append(db_ip_profile)
2865
tiernob3d36742017-03-03 23:51:05 +01002866 # 2. Creating new nets (vnf internal nets) in the VIM"
mirabal29356312017-07-27 12:21:22 +02002867 # For each vnf net, we create it and we add it to instanceNetlist.
tierno7edb6752016-03-21 17:37:52 +01002868 for sce_vnf in scenarioDict['vnfs']:
2869 for net in sce_vnf['nets']:
tiernobe41e222016-09-02 15:16:13 +02002870 if sce_vnf.get("datacenter"):
tiernobe41e222016-09-02 15:16:13 +02002871 datacenter_id = sce_vnf["datacenter"]
tierno868220c2017-09-26 00:11:05 +02002872 myvim_thread_id = myvim_threads_id[sce_vnf["datacenter"]]
tiernobe41e222016-09-02 15:16:13 +02002873 else:
tiernobe41e222016-09-02 15:16:13 +02002874 datacenter_id = default_datacenter_id
tierno867ffe92017-03-27 12:50:34 +02002875 myvim_thread_id = myvim_threads_id[default_datacenter_id]
tierno868220c2017-09-26 00:11:05 +02002876 descriptor_net = instance_dict.get("vnfs", {}).get(sce_vnf["name"], {})
tierno7edb6752016-03-21 17:37:52 +01002877 net_name = descriptor_net.get("name")
2878 if not net_name:
tierno868220c2017-09-26 00:11:05 +02002879 net_name = "{}.{}".format(instance_name, net["name"])
2880 net_name = net_name[:255] # limit length
tierno7edb6752016-03-21 17:37:52 +01002881 net_type = net['type']
tierno868220c2017-09-26 00:11:05 +02002882
tierno8e690322017-08-10 15:58:50 +02002883 if sce_vnf['uuid'] not in vnf_net2instance:
2884 vnf_net2instance[sce_vnf['uuid']] = {}
tierno868220c2017-09-26 00:11:05 +02002885 if sce_vnf['uuid'] not in net2task_id:
2886 net2task_id[sce_vnf['uuid']] = {}
2887 net2task_id[sce_vnf['uuid']][net['uuid']] = task_index
tierno66345bc2016-09-26 11:37:55 +02002888
tierno8e690322017-08-10 15:58:50 +02002889 # fill database content
2890 net_uuid = str(uuid4())
2891 uuid_list.append(net_uuid)
2892 vnf_net2instance[sce_vnf['uuid']][net['uuid']] = net_uuid
2893 db_net = {
2894 "uuid": net_uuid,
tierno868220c2017-09-26 00:11:05 +02002895 'vim_net_id': None,
tierno8e690322017-08-10 15:58:50 +02002896 "instance_scenario_id": instance_uuid,
2897 "net_id": net["uuid"],
2898 "created": True,
2899 'datacenter_id': datacenter_id,
2900 'datacenter_tenant_id': myvim_thread_id,
2901 }
2902 db_instance_nets.append(db_net)
tierno868220c2017-09-26 00:11:05 +02002903
2904 db_vim_action = {
2905 "instance_action_id": instance_action_id,
2906 "task_index": task_index,
2907 "datacenter_vim_id": myvim_thread_id,
2908 "status": "SCHEDULED",
2909 "action": "CREATE",
2910 "item": "instance_nets",
2911 "item_id": net_uuid,
2912 "extra": yaml.safe_dump({"params": (net_name, net_type, net.get('ip_profile',None))},
2913 default_flow_style=True, width=256)
2914 }
2915 task_index += 1
2916 db_vim_actions.append(db_vim_action)
2917
tierno8e690322017-08-10 15:58:50 +02002918 if 'ip_profile' in net:
2919 db_ip_profile = {
2920 'instance_net_id': net_uuid,
2921 'ip_version': net['ip_profile']['ip_version'],
2922 'subnet_address': net['ip_profile']['subnet_address'],
2923 'gateway_address': net['ip_profile']['gateway_address'],
2924 'dns_address': net['ip_profile']['dns_address'],
2925 'dhcp_enabled': net['ip_profile']['dhcp_enabled'],
2926 'dhcp_start_address': net['ip_profile']['dhcp_start_address'],
2927 'dhcp_count': net['ip_profile']['dhcp_count'],
2928 }
2929 db_ip_profiles.append(db_ip_profile)
2930
tierno868220c2017-09-26 00:11:05 +02002931 # print "vnf_net2instance:"
2932 # print yaml.safe_dump(vnf_net2instance, indent=4, default_flow_style=False)
tierno42026a02017-02-10 15:13:40 +01002933
tiernob3d36742017-03-03 23:51:05 +01002934 # 3. Creating new vm instances in the VIM
tierno868220c2017-09-26 00:11:05 +02002935 # myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict)
2936 sce_vnf_list = sorted(scenarioDict['vnfs'], key=lambda k: k['name'])
garciadeblasacd4e782017-07-23 19:44:55 +02002937 for sce_vnf in sce_vnf_list:
tierno5a3273c2017-08-29 11:43:46 +02002938 vnf_availability_zones = []
mirabal29356312017-07-27 12:21:22 +02002939 for vm in sce_vnf['vms']:
2940 vm_av = vm.get('availability_zone')
tierno5a3273c2017-08-29 11:43:46 +02002941 if vm_av and vm_av not in vnf_availability_zones:
2942 vnf_availability_zones.append(vm_av)
mirabal29356312017-07-27 12:21:22 +02002943
2944 # check if there is enough availability zones available at vim level.
tierno5a3273c2017-08-29 11:43:46 +02002945 if myvims[datacenter_id].availability_zone and vnf_availability_zones:
2946 if len(vnf_availability_zones) > len(myvims[datacenter_id].availability_zone):
2947 raise NfvoException('No enough availability zones at VIM for this deployment', HTTP_Bad_Request)
mirabal29356312017-07-27 12:21:22 +02002948
tiernobe41e222016-09-02 15:16:13 +02002949 if sce_vnf.get("datacenter"):
2950 vim = myvims[ sce_vnf["datacenter"] ]
tierno867ffe92017-03-27 12:50:34 +02002951 myvim_thread_id = myvim_threads_id[ sce_vnf["datacenter"] ]
tiernobe41e222016-09-02 15:16:13 +02002952 datacenter_id = sce_vnf["datacenter"]
2953 else:
2954 vim = myvims[ default_datacenter_id ]
tierno867ffe92017-03-27 12:50:34 +02002955 myvim_thread_id = myvim_threads_id[ default_datacenter_id ]
tiernobe41e222016-09-02 15:16:13 +02002956 datacenter_id = default_datacenter_id
mirabal29356312017-07-27 12:21:22 +02002957 sce_vnf["datacenter_id"] = datacenter_id
tierno7edb6752016-03-21 17:37:52 +01002958 i = 0
mirabal29356312017-07-27 12:21:22 +02002959
tierno8e690322017-08-10 15:58:50 +02002960 vnf_uuid = str(uuid4())
2961 uuid_list.append(vnf_uuid)
2962 db_instance_vnf = {
2963 'uuid': vnf_uuid,
2964 'instance_scenario_id': instance_uuid,
2965 'vnf_id': sce_vnf['vnf_id'],
2966 'sce_vnf_id': sce_vnf['uuid'],
2967 'datacenter_id': datacenter_id,
2968 'datacenter_tenant_id': myvim_thread_id,
2969 }
2970 db_instance_vnfs.append(db_instance_vnf)
2971
tierno7edb6752016-03-21 17:37:52 +01002972 for vm in sce_vnf['vms']:
tierno7edb6752016-03-21 17:37:52 +01002973 myVMDict = {}
tierno8e690322017-08-10 15:58:50 +02002974 myVMDict['name'] = "{}.{}.{}".format(instance_name[:64], sce_vnf['name'][:64], vm["name"][:64])
tierno7edb6752016-03-21 17:37:52 +01002975 myVMDict['description'] = myVMDict['name'][0:99]
2976# if not startvms:
2977# myVMDict['start'] = "no"
tierno868220c2017-09-26 00:11:05 +02002978 myVMDict['name'] = myVMDict['name'][0:255] # limit name length
tierno7edb6752016-03-21 17:37:52 +01002979 #create image at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02002980 image_dict = mydb.get_table_by_uuid_name("images", vm['image_id'])
tierno5e91eb82016-10-04 09:39:07 +00002981 image_id = create_or_use_image(mydb, {datacenter_id: vim}, image_dict, [], True)
tierno7edb6752016-03-21 17:37:52 +01002982 vm['vim_image_id'] = image_id
tierno42026a02017-02-10 15:13:40 +01002983
tierno868220c2017-09-26 00:11:05 +02002984 # create flavor at vim in case it not exist
tiernof97fd272016-07-11 14:32:37 +02002985 flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id'])
tierno7edb6752016-03-21 17:37:52 +01002986 if flavor_dict['extended']!=None:
tierno868220c2017-09-26 00:11:05 +02002987 flavor_dict['extended'] = yaml.load(flavor_dict['extended'])
montesmoreno0c8def02016-12-22 12:16:23 +00002988 flavor_id = create_or_use_flavor(mydb, {datacenter_id: vim}, flavor_dict, rollbackList, True)
2989
tierno868220c2017-09-26 00:11:05 +02002990 # Obtain information for additional disks
montesmoreno0c8def02016-12-22 12:16:23 +00002991 extended_flavor_dict = mydb.get_rows(FROM='datacenters_flavors', SELECT=('extended',), WHERE={'vim_id': flavor_id})
2992 if not extended_flavor_dict:
2993 raise NfvoException("flavor '{}' not found".format(flavor_id), HTTP_Not_Found)
2994 return
2995
tierno868220c2017-09-26 00:11:05 +02002996 # extended_flavor_dict_yaml = yaml.load(extended_flavor_dict[0])
montesmoreno0c8def02016-12-22 12:16:23 +00002997 myVMDict['disks'] = None
2998 extended_info = extended_flavor_dict[0]['extended']
2999 if extended_info != None:
3000 extended_flavor_dict_yaml = yaml.load(extended_info)
3001 if 'disks' in extended_flavor_dict_yaml:
3002 myVMDict['disks'] = extended_flavor_dict_yaml['disks']
3003
tierno7edb6752016-03-21 17:37:52 +01003004 vm['vim_flavor_id'] = flavor_id
tierno7edb6752016-03-21 17:37:52 +01003005 myVMDict['imageRef'] = vm['vim_image_id']
3006 myVMDict['flavorRef'] = vm['vim_flavor_id']
mirabal29356312017-07-27 12:21:22 +02003007 myVMDict['availability_zone'] = vm.get('availability_zone')
tierno7edb6752016-03-21 17:37:52 +01003008 myVMDict['networks'] = []
tierno868220c2017-09-26 00:11:05 +02003009 task_depends_on = []
3010 # TODO ALF. connect_mgmt_interfaces. Connect management interfaces if this is true
tierno8e690322017-08-10 15:58:50 +02003011 db_vm_ifaces = []
tierno7edb6752016-03-21 17:37:52 +01003012 for iface in vm['interfaces']:
3013 netDict = {}
3014 if iface['type']=="data":
3015 netDict['type'] = iface['model']
3016 elif "model" in iface and iface["model"]!=None:
3017 netDict['model']=iface['model']
tierno868220c2017-09-26 00:11:05 +02003018 # TODO in future, remove this because mac_address will not be set, and the type of PV,VF
3019 # is obtained from iterface table model
3020 # discover type of interface looking at flavor
tierno7edb6752016-03-21 17:37:52 +01003021 for numa in flavor_dict.get('extended',{}).get('numas',[]):
3022 for flavor_iface in numa.get('interfaces',[]):
3023 if flavor_iface.get('name') == iface['internal_name']:
3024 if flavor_iface['dedicated'] == 'yes':
3025 netDict['type']="PF" #passthrough
3026 elif flavor_iface['dedicated'] == 'no':
3027 netDict['type']="VF" #siov
3028 elif flavor_iface['dedicated'] == 'yes:sriov':
3029 netDict['type']="VFnotShared" #sriov but only one sriov on the PF
3030 netDict["mac_address"] = flavor_iface.get("mac_address")
3031 break;
3032 netDict["use"]=iface['type']
3033 if netDict["use"]=="data" and not netDict.get("type"):
3034 #print "netDict", netDict
3035 #print "iface", iface
3036 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'])
3037 if flavor_dict.get('extended')==None:
tiernoae4a8d12016-07-08 12:30:39 +02003038 raise NfvoException(e_text + "After database migration some information is not available. \
3039 Try to delete and create the scenarios and VNFs again", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01003040 else:
tiernoae4a8d12016-07-08 12:30:39 +02003041 raise NfvoException(e_text, HTTP_Internal_Server_Error)
tierno7edb6752016-03-21 17:37:52 +01003042 if netDict["use"]=="mgmt" or netDict["use"]=="bridge":
3043 netDict["type"]="virtual"
3044 if "vpci" in iface and iface["vpci"] is not None:
3045 netDict['vpci'] = iface['vpci']
3046 if "mac" in iface and iface["mac"] is not None:
3047 netDict['mac_address'] = iface['mac']
montesmoreno2a1fc4e2017-01-09 16:46:04 +00003048 if "port-security" in iface and iface["port-security"] is not None:
3049 netDict['port_security'] = iface['port-security']
3050 if "floating-ip" in iface and iface["floating-ip"] is not None:
3051 netDict['floating_ip'] = iface['floating-ip']
tierno7edb6752016-03-21 17:37:52 +01003052 netDict['name'] = iface['internal_name']
3053 if iface['net_id'] is None:
3054 for vnf_iface in sce_vnf["interfaces"]:
tierno868220c2017-09-26 00:11:05 +02003055 # print iface
3056 # print vnf_iface
tierno7edb6752016-03-21 17:37:52 +01003057 if vnf_iface['interface_id']==iface['uuid']:
tierno868220c2017-09-26 00:11:05 +02003058 netDict['net_id'] = "TASK-{}".format(net2task_id['scenario'][ vnf_iface['sce_net_id'] ][datacenter_id])
tierno8e690322017-08-10 15:58:50 +02003059 instance_net_id = sce_net2instance[ vnf_iface['sce_net_id'] ][datacenter_id]
tierno868220c2017-09-26 00:11:05 +02003060 task_depends_on.append(net2task_id['scenario'][ vnf_iface['sce_net_id'] ][datacenter_id])
tierno7edb6752016-03-21 17:37:52 +01003061 break
3062 else:
tierno868220c2017-09-26 00:11:05 +02003063 netDict['net_id'] = "TASK-{}".format(net2task_id[ sce_vnf['uuid'] ][ iface['net_id'] ])
tierno8e690322017-08-10 15:58:50 +02003064 instance_net_id = vnf_net2instance[ sce_vnf['uuid'] ][ iface['net_id'] ]
tierno868220c2017-09-26 00:11:05 +02003065 task_depends_on.append(net2task_id[sce_vnf['uuid'] ][ iface['net_id']])
3066 # skip bridge ifaces not connected to any net
3067 if 'net_id' not in netDict or netDict['net_id']==None:
3068 continue
tierno7edb6752016-03-21 17:37:52 +01003069 myVMDict['networks'].append(netDict)
tierno8e690322017-08-10 15:58:50 +02003070 db_vm_iface={
3071 # "uuid"
3072 # 'instance_vm_id': instance_vm_uuid,
3073 "instance_net_id": instance_net_id,
3074 'interface_id': iface['uuid'],
3075 # 'vim_interface_id': ,
3076 'type': 'external' if iface['external_name'] is not None else 'internal',
3077 'ip_address': iface.get('ip_address'),
3078 'floating_ip': int(iface.get('floating-ip', False)),
3079 'port_security': int(iface.get('port-security', True))
3080 }
3081 db_vm_ifaces.append(db_vm_iface)
3082 # print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
3083 # print myVMDict['name']
3084 # print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False)
3085 # print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False)
3086 # print ">>>>>>>>>>>>>>>>>>>>>>>>>>>"
tierno36c0b172017-01-12 18:32:28 +01003087 if vm.get("boot_data"):
3088 cloud_config_vm = unify_cloud_config(vm["boot_data"], cloud_config)
3089 else:
3090 cloud_config_vm = cloud_config
tierno5a3273c2017-08-29 11:43:46 +02003091 if myVMDict.get('availability_zone'):
3092 av_index = vnf_availability_zones.index(myVMDict['availability_zone'])
mirabal29356312017-07-27 12:21:22 +02003093 else:
tierno5a3273c2017-08-29 11:43:46 +02003094 av_index = None
tierno8e690322017-08-10 15:58:50 +02003095 for vm_index in range(0, vm.get('count', 1)):
3096 vm_index_name = ""
3097 if vm.get('count', 1) > 1:
3098 vm_index_name += "." + chr(97 + vm_index)
tierno868220c2017-09-26 00:11:05 +02003099 task_params = (myVMDict['name']+vm_index_name, myVMDict['description'], myVMDict.get('start', None),
3100 myVMDict['imageRef'], myVMDict['flavorRef'], myVMDict['networks'], cloud_config_vm,
3101 myVMDict['disks'], av_index, vnf_availability_zones)
tierno8e690322017-08-10 15:58:50 +02003102 # put interface uuid back to scenario[vnfs][vms[[interfaces]
3103 for net in myVMDict['networks']:
3104 if "vim_id" in net:
3105 for iface in vm['interfaces']:
3106 if net["name"]==iface["internal_name"]:
3107 iface["vim_id"]=net["vim_id"]
3108 break
3109 vm_uuid = str(uuid4())
3110 uuid_list.append(vm_uuid)
3111 db_vm = {
3112 "uuid": vm_uuid,
3113 'instance_vnf_id': vnf_uuid,
tierno868220c2017-09-26 00:11:05 +02003114 #TODO delete "vim_vm_id": vm_id,
tierno8e690322017-08-10 15:58:50 +02003115 "vm_id": vm["uuid"],
3116 # "status":
3117 }
3118 db_instance_vms.append(db_vm)
tierno868220c2017-09-26 00:11:05 +02003119
3120 iface_index = 0
tierno8e690322017-08-10 15:58:50 +02003121 for db_vm_iface in db_vm_ifaces:
3122 iface_uuid = str(uuid4())
3123 uuid_list.append(iface_uuid)
3124 db_vm_iface_instance = {
3125 "uuid": iface_uuid,
3126 "instance_vm_id": vm_uuid
3127 }
3128 db_vm_iface_instance.update(db_vm_iface)
3129 if db_vm_iface_instance.get("ip_address"): # increment ip_address
3130 ip = db_vm_iface_instance.get("ip_address")
3131 i = ip.rfind(".")
3132 if i > 0:
3133 try:
3134 i += 1
3135 ip = ip[i:] + str(int(ip[:i]) +1)
3136 db_vm_iface_instance["ip_address"] = ip
3137 except:
3138 db_vm_iface_instance["ip_address"] = None
3139 db_instance_interfaces.append(db_vm_iface_instance)
tierno868220c2017-09-26 00:11:05 +02003140 myVMDict['networks'][iface_index]["uuid"] = iface_uuid
3141 iface_index += 1
3142
3143 db_vim_action = {
3144 "instance_action_id": instance_action_id,
3145 "task_index": task_index,
3146 "datacenter_vim_id": myvim_thread_id,
3147 "action": "CREATE",
3148 "status": "SCHEDULED",
3149 "item": "instance_vms",
3150 "item_id": vm_uuid,
3151 "extra": yaml.safe_dump({"params": task_params, "depends_on": task_depends_on},
3152 default_flow_style=True, width=256)
3153 }
3154 task_index += 1
3155 db_vim_actions.append(db_vim_action)
tierno8e690322017-08-10 15:58:50 +02003156
tierno867ffe92017-03-27 12:50:34 +02003157 scenarioDict["datacenter2tenant"] = myvim_threads_id
tierno8e690322017-08-10 15:58:50 +02003158
tierno868220c2017-09-26 00:11:05 +02003159 db_instance_action["number_tasks"] = task_index
tierno8e690322017-08-10 15:58:50 +02003160 db_instance_scenario['datacenter_tenant_id'] = myvim_threads_id[default_datacenter_id]
3161 db_instance_scenario['datacenter_id'] = default_datacenter_id
3162 db_tables=[
3163 {"instance_scenarios": db_instance_scenario},
3164 {"instance_vnfs": db_instance_vnfs},
3165 {"instance_nets": db_instance_nets},
3166 {"ip_profiles": db_ip_profiles},
3167 {"instance_vms": db_instance_vms},
3168 {"instance_interfaces": db_instance_interfaces},
tierno868220c2017-09-26 00:11:05 +02003169 {"instance_actions": db_instance_action},
3170 {"vim_actions": db_vim_actions}
tierno8e690322017-08-10 15:58:50 +02003171 ]
3172
tierno868220c2017-09-26 00:11:05 +02003173 logger.debug("create_instance done DB tables: %s",
tierno8e690322017-08-10 15:58:50 +02003174 yaml.safe_dump(db_tables, indent=4, default_flow_style=False) )
3175 mydb.new_rows(db_tables, uuid_list)
tierno868220c2017-09-26 00:11:05 +02003176 for myvim_thread_id in myvim_threads_id.values():
3177 vim_threads["running"][myvim_thread_id].insert_task(db_vim_actions)
tierno867ffe92017-03-27 12:50:34 +02003178
tierno868220c2017-09-26 00:11:05 +02003179 returned_instance = mydb.get_instance_scenario(instance_uuid)
3180 returned_instance["action_id"] = instance_action_id
3181 return returned_instance
3182 except (NfvoException, vimconn.vimconnException, db_base_Exception) as e:
tiernobe41e222016-09-02 15:16:13 +02003183 message = rollback(mydb, myvims, rollbackList)
tiernof97fd272016-07-11 14:32:37 +02003184 if isinstance(e, db_base_Exception):
3185 error_text = "database Exception"
3186 elif isinstance(e, vimconn.vimconnException):
3187 error_text = "VIM Exception"
3188 else:
3189 error_text = "Exception"
3190 error_text += " {} {}. {}".format(type(e).__name__, str(e), message)
tierno868220c2017-09-26 00:11:05 +02003191 # logger.error("create_instance: %s", error_text)
tiernof97fd272016-07-11 14:32:37 +02003192 raise NfvoException(error_text, e.http_code)
tierno42026a02017-02-10 15:13:40 +01003193
tiernob3d36742017-03-03 23:51:05 +01003194
tierno7edb6752016-03-21 17:37:52 +01003195def delete_instance(mydb, tenant_id, instance_id):
tierno868220c2017-09-26 00:11:05 +02003196 # print "Checking that the instance_id exists and getting the instance dictionary"
tiernof97fd272016-07-11 14:32:37 +02003197 instanceDict = mydb.get_instance_scenario(instance_id, tenant_id)
tierno868220c2017-09-26 00:11:05 +02003198 # print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
tierno7edb6752016-03-21 17:37:52 +01003199 tenant_id = instanceDict["tenant_id"]
tierno868220c2017-09-26 00:11:05 +02003200 # print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tierno7edb6752016-03-21 17:37:52 +01003201
tierno868220c2017-09-26 00:11:05 +02003202 # 1. Delete from Database
tiernof97fd272016-07-11 14:32:37 +02003203 message = mydb.delete_instance_scenario(instance_id, tenant_id)
tierno7edb6752016-03-21 17:37:52 +01003204
tierno868220c2017-09-26 00:11:05 +02003205 # 2. delete from VIM
tiernoa2793912016-10-04 08:15:08 +00003206 error_msg = ""
tiernob3d36742017-03-03 23:51:05 +01003207 myvims = {}
3208 myvim_threads = {}
tierno868220c2017-09-26 00:11:05 +02003209 vimthread_affected = {}
tierno7edb6752016-03-21 17:37:52 +01003210
tierno868220c2017-09-26 00:11:05 +02003211 task_index = 0
3212 instance_action_id = get_task_id()
3213 db_vim_actions = []
3214 db_instance_action = {
3215 "uuid": instance_action_id, # same uuid for the instance and the action on create
3216 "tenant_id": tenant_id,
3217 "instance_id": instance_id,
3218 "description": "DELETE",
3219 # "number_tasks": 0 # filled bellow
3220 }
3221
3222 # 2.1 deleting VMs
3223 # vm_fail_list=[]
tierno7edb6752016-03-21 17:37:52 +01003224 for sce_vnf in instanceDict['vnfs']:
tiernoa2793912016-10-04 08:15:08 +00003225 datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
tierno868220c2017-09-26 00:11:05 +02003226 vimthread_affected[sce_vnf["datacenter_tenant_id"]] = None
tiernoa2793912016-10-04 08:15:08 +00003227 if datacenter_key not in myvims:
tiernob3d36742017-03-03 23:51:05 +01003228 try:
tierno867ffe92017-03-27 12:50:34 +02003229 _,myvim_thread = get_vim_thread(mydb, tenant_id, sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
tiernob3d36742017-03-03 23:51:05 +01003230 except NfvoException as e:
3231 logger.error(str(e))
3232 myvim_thread = None
3233 myvim_threads[datacenter_key] = myvim_thread
tiernoa2793912016-10-04 08:15:08 +00003234 vims = get_vim(mydb, tenant_id, datacenter_id=sce_vnf["datacenter_id"],
3235 datacenter_tenant_id=sce_vnf["datacenter_tenant_id"])
3236 if len(vims) == 0:
3237 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"],
3238 sce_vnf["datacenter_tenant_id"]))
3239 myvims[datacenter_key] = None
3240 else:
3241 myvims[datacenter_key] = vims.values()[0]
3242 myvim = myvims[datacenter_key]
tiernob3d36742017-03-03 23:51:05 +01003243 myvim_thread = myvim_threads[datacenter_key]
tierno7edb6752016-03-21 17:37:52 +01003244 for vm in sce_vnf['vms']:
tiernoa2793912016-10-04 08:15:08 +00003245 if not myvim:
3246 error_msg += "\n VM id={} cannot be deleted because datacenter={} not found".format(vm['vim_vm_id'], sce_vnf["datacenter_id"])
3247 continue
tiernoae4a8d12016-07-08 12:30:39 +02003248 try:
tierno868220c2017-09-26 00:11:05 +02003249 db_vim_action = {
3250 "instance_action_id": instance_action_id,
3251 "task_index": task_index,
3252 "datacenter_vim_id": sce_vnf["datacenter_tenant_id"],
3253 "action": "DELETE",
3254 "status": "SCHEDULED",
3255 "item": "instance_vms",
3256 "item_id": vm["uuid"],
3257 "extra": yaml.safe_dump({"params": vm["interfaces"]},
3258 default_flow_style=True, width=256)
3259 }
3260 task_index += 1
3261 db_vim_actions.append(db_vim_action)
3262
tiernoae4a8d12016-07-08 12:30:39 +02003263 except vimconn.vimconnNotFoundException as e:
tiernoa2793912016-10-04 08:15:08 +00003264 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 +02003265 logger.warn("VM instance '%s'uuid '%s', VIM id '%s', from VNF_id '%s' not found",
3266 vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id'])
3267 except vimconn.vimconnException as e:
tiernoa2793912016-10-04 08:15:08 +00003268 error_msg+="\n VM VIM_id={} at datacenter={} Error: {} {}".format(vm['vim_vm_id'], sce_vnf["datacenter_id"], e.http_code, str(e))
3269 logger.error("Error %d deleting VM instance '%s'uuid '%s', VIM_id '%s', from VNF_id '%s': %s",
tiernoae4a8d12016-07-08 12:30:39 +02003270 e.http_code, vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id'], str(e))
tierno42026a02017-02-10 15:13:40 +01003271
tierno868220c2017-09-26 00:11:05 +02003272 # 2.2 deleting NETS
3273 # net_fail_list=[]
tierno7edb6752016-03-21 17:37:52 +01003274 for net in instanceDict['nets']:
tierno868220c2017-09-26 00:11:05 +02003275 # TODO if not net['created']:
3276 # TODO continue #skip not created nets
3277
3278 vimthread_affected[net["datacenter_tenant_id"]] = None
tiernoa2793912016-10-04 08:15:08 +00003279 datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"])
3280 if datacenter_key not in myvims:
tiernob3d36742017-03-03 23:51:05 +01003281 try:
tierno867ffe92017-03-27 12:50:34 +02003282 _,myvim_thread = get_vim_thread(mydb, tenant_id, sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
tiernob3d36742017-03-03 23:51:05 +01003283 except NfvoException as e:
3284 logger.error(str(e))
3285 myvim_thread = None
3286 myvim_threads[datacenter_key] = myvim_thread
tiernoa2793912016-10-04 08:15:08 +00003287 vims = get_vim(mydb, tenant_id, datacenter_id=net["datacenter_id"],
3288 datacenter_tenant_id=net["datacenter_tenant_id"])
3289 if len(vims) == 0:
3290 logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]))
3291 myvims[datacenter_key] = None
3292 else:
3293 myvims[datacenter_key] = vims.values()[0]
3294 myvim = myvims[datacenter_key]
tiernob3d36742017-03-03 23:51:05 +01003295 myvim_thread = myvim_threads[datacenter_key]
tiernoa2793912016-10-04 08:15:08 +00003296
tierno7edb6752016-03-21 17:37:52 +01003297 if not myvim:
tiernoa2793912016-10-04 08:15:08 +00003298 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 +01003299 continue
tiernoae4a8d12016-07-08 12:30:39 +02003300 try:
tierno868220c2017-09-26 00:11:05 +02003301 db_vim_action = {
3302 "instance_action_id": instance_action_id,
3303 "task_index": task_index,
3304 "datacenter_vim_id": net["datacenter_tenant_id"],
3305 "action": "DELETE",
3306 "status": "SCHEDULED",
3307 "item": "instance_nets",
3308 "item_id": net["uuid"],
3309 "extra": yaml.safe_dump({"params": (net['vim_net_id'], net['sdn_net_id'])},
3310 default_flow_style=True, width=256)
3311 }
3312 task_index += 1
3313 db_vim_actions.append(db_vim_action)
3314
tiernoae4a8d12016-07-08 12:30:39 +02003315 except vimconn.vimconnNotFoundException as e:
tiernob3d36742017-03-03 23:51:05 +01003316 error_msg += "\n NET VIM_id={} not found at datacenter={}".format(net['vim_net_id'], net["datacenter_id"])
tiernoa2793912016-10-04 08:15:08 +00003317 logger.warn("NET '%s', VIM_id '%s', from VNF_net_id '%s' not found",
tiernob3d36742017-03-03 23:51:05 +01003318 net['uuid'], net['vim_net_id'], str(net['vnf_net_id']))
tiernoae4a8d12016-07-08 12:30:39 +02003319 except vimconn.vimconnException as e:
tiernob3d36742017-03-03 23:51:05 +01003320 error_msg += "\n NET VIM_id={} at datacenter={} Error: {} {}".format(net['vim_net_id'],
3321 net["datacenter_id"],
3322 e.http_code, str(e))
tiernoa2793912016-10-04 08:15:08 +00003323 logger.error("Error %d deleting NET '%s', VIM_id '%s', from VNF_net_id '%s': %s",
tiernob3d36742017-03-03 23:51:05 +01003324 e.http_code, net['uuid'], net['vim_net_id'], str(net['vnf_net_id']), str(e))
tierno868220c2017-09-26 00:11:05 +02003325
3326 db_instance_action["number_tasks"] = task_index
3327 db_tables = [
3328 {"instance_actions": db_instance_action},
3329 {"vim_actions": db_vim_actions}
3330 ]
3331
3332 logger.debug("delete_instance done DB tables: %s",
3333 yaml.safe_dump(db_tables, indent=4, default_flow_style=False))
3334 mydb.new_rows(db_tables, ())
3335 for myvim_thread_id in vimthread_affected.keys():
3336 vim_threads["running"][myvim_thread_id].insert_task(db_vim_actions)
3337
tiernob3d36742017-03-03 23:51:05 +01003338 if len(error_msg) > 0:
tierno868220c2017-09-26 00:11:05 +02003339 return 'action_id={} instance {} deleted but some elements could not be deleted, or already deleted '\
3340 '(error: 404) from VIM: {}'.format(instance_action_id, message, error_msg)
tierno7edb6752016-03-21 17:37:52 +01003341 else:
tierno868220c2017-09-26 00:11:05 +02003342 return "action_id={} instance {} deleted".format(instance_action_id, message)
tierno7edb6752016-03-21 17:37:52 +01003343
tiernob3d36742017-03-03 23:51:05 +01003344
tierno7edb6752016-03-21 17:37:52 +01003345def refresh_instance(mydb, nfvo_tenant, instanceDict, datacenter=None, vim_tenant=None):
3346 '''Refreshes a scenario instance. It modifies instanceDict'''
3347 '''Returns:
3348 - 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
3349 - error_msg
3350 '''
tierno867ffe92017-03-27 12:50:34 +02003351 # # Assumption: nfvo_tenant and instance_id were checked before entering into this function
3352 # #print "nfvo.refresh_instance begins"
3353 # #print json.dumps(instanceDict, indent=4)
3354 #
3355 # #print "Getting the VIM URL and the VIM tenant_id"
3356 # myvims={}
3357 #
3358 # # 1. Getting VIM vm and net list
3359 # vms_updated = [] #List of VM instance uuids in openmano that were updated
3360 # vms_notupdated=[]
3361 # vm_list = {}
3362 # for sce_vnf in instanceDict['vnfs']:
3363 # datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])
3364 # if datacenter_key not in vm_list:
3365 # vm_list[datacenter_key] = []
3366 # if datacenter_key not in myvims:
3367 # vims = get_vim(mydb, nfvo_tenant, datacenter_id=sce_vnf["datacenter_id"],
3368 # datacenter_tenant_id=sce_vnf["datacenter_tenant_id"])
3369 # if len(vims) == 0:
3370 # logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"]))
3371 # myvims[datacenter_key] = None
3372 # else:
3373 # myvims[datacenter_key] = vims.values()[0]
3374 # for vm in sce_vnf['vms']:
3375 # vm_list[datacenter_key].append(vm['vim_vm_id'])
3376 # vms_notupdated.append(vm["uuid"])
3377 #
3378 # nets_updated = [] #List of VM instance uuids in openmano that were updated
3379 # nets_notupdated=[]
3380 # net_list = {}
3381 # for net in instanceDict['nets']:
3382 # datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"])
3383 # if datacenter_key not in net_list:
3384 # net_list[datacenter_key] = []
3385 # if datacenter_key not in myvims:
3386 # vims = get_vim(mydb, nfvo_tenant, datacenter_id=net["datacenter_id"],
3387 # datacenter_tenant_id=net["datacenter_tenant_id"])
3388 # if len(vims) == 0:
3389 # logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]))
3390 # myvims[datacenter_key] = None
3391 # else:
3392 # myvims[datacenter_key] = vims.values()[0]
3393 #
3394 # net_list[datacenter_key].append(net['vim_net_id'])
3395 # nets_notupdated.append(net["uuid"])
3396 #
3397 # # 1. Getting the status of all VMs
3398 # vm_dict={}
3399 # for datacenter_key in myvims:
3400 # if not vm_list.get(datacenter_key):
3401 # continue
3402 # failed = True
3403 # failed_message=""
3404 # if not myvims[datacenter_key]:
3405 # failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])
3406 # else:
3407 # try:
3408 # vm_dict.update(myvims[datacenter_key].refresh_vms_status(vm_list[datacenter_key]) )
3409 # failed = False
3410 # except vimconn.vimconnException as e:
3411 # logger.error("VIM exception %s %s", type(e).__name__, str(e))
3412 # failed_message = str(e)
3413 # if failed:
3414 # for vm in vm_list[datacenter_key]:
3415 # vm_dict[vm] = {'status': "VIM_ERROR", 'error_msg': failed_message}
3416 #
3417 # # 2. Update the status of VMs in the instanceDict, while collects the VMs whose status changed
3418 # for sce_vnf in instanceDict['vnfs']:
3419 # for vm in sce_vnf['vms']:
3420 # vm_id = vm['vim_vm_id']
3421 # interfaces = vm_dict[vm_id].pop('interfaces', [])
3422 # #2.0 look if contain manamgement interface, and if not change status from ACTIVE:NoMgmtIP to ACTIVE
3423 # has_mgmt_iface = False
3424 # for iface in vm["interfaces"]:
3425 # if iface["type"]=="mgmt":
3426 # has_mgmt_iface = True
3427 # if vm_dict[vm_id]['status'] == "ACTIVE:NoMgmtIP" and not has_mgmt_iface:
3428 # vm_dict[vm_id]['status'] = "ACTIVE"
3429 # if vm_dict[vm_id].get('error_msg') and len(vm_dict[vm_id]['error_msg']) >= 1024:
3430 # vm_dict[vm_id]['error_msg'] = vm_dict[vm_id]['error_msg'][:516] + " ... " + vm_dict[vm_id]['error_msg'][-500:]
3431 # 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'):
3432 # vm['status'] = vm_dict[vm_id]['status']
3433 # vm['error_msg'] = vm_dict[vm_id].get('error_msg')
3434 # vm['vim_info'] = vm_dict[vm_id].get('vim_info')
3435 # # 2.1. Update in openmano DB the VMs whose status changed
3436 # try:
3437 # updates = mydb.update_rows('instance_vms', UPDATE=vm_dict[vm_id], WHERE={'uuid':vm["uuid"]})
3438 # vms_notupdated.remove(vm["uuid"])
3439 # if updates>0:
3440 # vms_updated.append(vm["uuid"])
3441 # except db_base_Exception as e:
3442 # logger.error("nfvo.refresh_instance error database update: %s", str(e))
3443 # # 2.2. Update in openmano DB the interface VMs
3444 # for interface in interfaces:
3445 # #translate from vim_net_id to instance_net_id
3446 # network_id_list=[]
3447 # for net in instanceDict['nets']:
3448 # if net["vim_net_id"] == interface["vim_net_id"]:
3449 # network_id_list.append(net["uuid"])
3450 # if not network_id_list:
3451 # continue
3452 # del interface["vim_net_id"]
3453 # try:
3454 # for network_id in network_id_list:
3455 # mydb.update_rows('instance_interfaces', UPDATE=interface, WHERE={'instance_vm_id':vm["uuid"], "instance_net_id":network_id})
3456 # except db_base_Exception as e:
3457 # logger.error( "nfvo.refresh_instance error with vm=%s, interface_net_id=%s", vm["uuid"], network_id)
3458 #
3459 # # 3. Getting the status of all nets
3460 # net_dict = {}
3461 # for datacenter_key in myvims:
3462 # if not net_list.get(datacenter_key):
3463 # continue
3464 # failed = True
3465 # failed_message = ""
3466 # if not myvims[datacenter_key]:
3467 # failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])
3468 # else:
3469 # try:
3470 # net_dict.update(myvims[datacenter_key].refresh_nets_status(net_list[datacenter_key]) )
3471 # failed = False
3472 # except vimconn.vimconnException as e:
3473 # logger.error("VIM exception %s %s", type(e).__name__, str(e))
3474 # failed_message = str(e)
3475 # if failed:
3476 # for net in net_list[datacenter_key]:
3477 # net_dict[net] = {'status': "VIM_ERROR", 'error_msg': failed_message}
3478 #
3479 # # 4. Update the status of nets in the instanceDict, while collects the nets whose status changed
3480 # # TODO: update nets inside a vnf
3481 # for net in instanceDict['nets']:
3482 # net_id = net['vim_net_id']
3483 # if net_dict[net_id].get('error_msg') and len(net_dict[net_id]['error_msg']) >= 1024:
3484 # net_dict[net_id]['error_msg'] = net_dict[net_id]['error_msg'][:516] + " ... " + net_dict[vm_id]['error_msg'][-500:]
3485 # 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'):
3486 # net['status'] = net_dict[net_id]['status']
3487 # net['error_msg'] = net_dict[net_id].get('error_msg')
3488 # net['vim_info'] = net_dict[net_id].get('vim_info')
3489 # # 5.1. Update in openmano DB the nets whose status changed
3490 # try:
3491 # updated = mydb.update_rows('instance_nets', UPDATE=net_dict[net_id], WHERE={'uuid':net["uuid"]})
3492 # nets_notupdated.remove(net["uuid"])
3493 # if updated>0:
3494 # nets_updated.append(net["uuid"])
3495 # except db_base_Exception as e:
3496 # logger.error("nfvo.refresh_instance error database update: %s", str(e))
3497 #
3498 # # Returns appropriate output
3499 # #print "nfvo.refresh_instance finishes"
3500 # logger.debug("VMs updated in the database: %s; nets updated in the database %s; VMs not updated: %s; nets not updated: %s",
3501 # str(vms_updated), str(nets_updated), str(vms_notupdated), str(nets_notupdated))
tierno7edb6752016-03-21 17:37:52 +01003502 instance_id = instanceDict['uuid']
tierno867ffe92017-03-27 12:50:34 +02003503 # if len(vms_notupdated)+len(nets_notupdated)>0:
3504 # error_msg = "VMs not updated: " + str(vms_notupdated) + "; nets not updated: " + str(nets_notupdated)
3505 # 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 +01003506
tiernoae4a8d12016-07-08 12:30:39 +02003507 return 0, 'Scenario instance ' + instance_id + ' refreshed.'
tierno7edb6752016-03-21 17:37:52 +01003508
3509def instance_action(mydb,nfvo_tenant,instance_id, action_dict):
tiernoae4a8d12016-07-08 12:30:39 +02003510 #print "Checking that the instance_id exists and getting the instance dictionary"
tiernof97fd272016-07-11 14:32:37 +02003511 instanceDict = mydb.get_instance_scenario(instance_id, nfvo_tenant)
tierno7edb6752016-03-21 17:37:52 +01003512 #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False)
3513
tiernoae4a8d12016-07-08 12:30:39 +02003514 #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id"
tiernof97fd272016-07-11 14:32:37 +02003515 vims = get_vim(mydb, nfvo_tenant, instanceDict['datacenter_id'])
3516 if len(vims) == 0:
3517 raise NfvoException("datacenter '{}' not found".format(str(instanceDict['datacenter_id'])), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01003518 myvim = vims.values()[0]
tierno42026a02017-02-10 15:13:40 +01003519
tierno868220c2017-09-26 00:11:05 +02003520 if action_dict.get("create-vdu"):
3521 for vdu in action_dict["create-vdu"]:
3522 vdu_id = vdu.get("vdu-id")
3523 vdu_count = vdu.get("count", 1)
3524 # get from database TODO
3525 # insert tasks TODO
3526 pass
tierno7edb6752016-03-21 17:37:52 +01003527
3528 input_vnfs = action_dict.pop("vnfs", [])
3529 input_vms = action_dict.pop("vms", [])
3530 action_over_all = True if len(input_vnfs)==0 and len (input_vms)==0 else False
3531 vm_result = {}
3532 vm_error = 0
3533 vm_ok = 0
3534 for sce_vnf in instanceDict['vnfs']:
3535 for vm in sce_vnf['vms']:
3536 if not action_over_all:
3537 if sce_vnf['uuid'] not in input_vnfs and sce_vnf['vnf_name'] not in input_vnfs and \
tierno868220c2017-09-26 00:11:05 +02003538 vm['uuid'] not in input_vms and vm['name'] not in input_vms:
tierno7edb6752016-03-21 17:37:52 +01003539 continue
tiernoae4a8d12016-07-08 12:30:39 +02003540 try:
gcalvinoe580c7d2017-09-22 14:09:51 +02003541 if "add_public_key" in action_dict:
3542 mgmt_access = {}
3543 if sce_vnf.get('mgmt_access'):
3544 mgmt_access = yaml.load(sce_vnf['mgmt_access'])
3545 ssh_access = mgmt_access['config-access']['ssh-access']
3546 tenant = mydb.get_rows_by_id('nfvo_tenants', nfvo_tenant)
tierno42026a02017-02-10 15:13:40 +01003547 try:
gcalvinoe580c7d2017-09-22 14:09:51 +02003548 if ssh_access['required'] and ssh_access['default-user']:
3549 if 'ip_address' in vm:
3550 mgmt_ip = vm['ip_address'].split(';')
3551 password = mgmt_access['config-access'].get('password')
3552 priv_RO_key = decrypt_key(tenant[0]['encrypted_RO_priv_key'], tenant[0]['uuid'])
3553 myvim.inject_user_key(mgmt_ip[0], ssh_access['default-user'],
3554 action_dict['add_public_key'],
3555 password=password, ro_key=priv_RO_key)
3556 else:
3557 raise NfvoException("Unable to inject ssh key in vm: {} - Aborting".format(vm['uuid']),
3558 HTTP_Internal_Server_Error)
3559 except KeyError:
3560 raise NfvoException("Unable to inject ssh key in vm: {} - Aborting".format(vm['uuid']),
3561 HTTP_Internal_Server_Error)
3562 else:
3563 raise NfvoException("Unable to inject ssh key in vm: {} - Aborting".format(vm['uuid']),
3564 HTTP_Internal_Server_Error)
3565 else:
3566 data = myvim.action_vminstance(vm['vim_vm_id'], action_dict)
3567 if "console" in action_dict:
3568 if not global_config["http_console_proxy"]:
tierno20fc2a22016-08-19 17:02:35 +02003569 vm_result[ vm['uuid'] ] = {"vim_result": 200,
3570 "description": "{protocol}//{ip}:{port}/{suffix}".format(
3571 protocol=data["protocol"],
gcalvinoe580c7d2017-09-22 14:09:51 +02003572 ip = data["server"],
3573 port = data["port"],
tierno20fc2a22016-08-19 17:02:35 +02003574 suffix = data["suffix"]),
3575 "name":vm['name']
3576 }
3577 vm_ok +=1
gcalvinoe580c7d2017-09-22 14:09:51 +02003578 elif data["server"]=="127.0.0.1" or data["server"]=="localhost":
3579 vm_result[ vm['uuid'] ] = {"vim_result": -HTTP_Unauthorized,
3580 "description": "this console is only reachable by local interface",
3581 "name":vm['name']
3582 }
tierno20fc2a22016-08-19 17:02:35 +02003583 vm_error+=1
gcalvinoe580c7d2017-09-22 14:09:51 +02003584 else:
3585 #print "console data", data
3586 try:
3587 console_thread = create_or_use_console_proxy_thread(data["server"], data["port"])
3588 vm_result[ vm['uuid'] ] = {"vim_result": 200,
3589 "description": "{protocol}//{ip}:{port}/{suffix}".format(
3590 protocol=data["protocol"],
3591 ip = global_config["http_console_host"],
3592 port = console_thread.port,
3593 suffix = data["suffix"]),
3594 "name":vm['name']
3595 }
3596 vm_ok +=1
3597 except NfvoException as e:
3598 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
3599 vm_error+=1
tierno20fc2a22016-08-19 17:02:35 +02003600
gcalvinoe580c7d2017-09-22 14:09:51 +02003601 else:
3602 vm_result[ vm['uuid'] ] = {"vim_result": 200, "description": "ok", "name":vm['name']}
3603 vm_ok +=1
tiernoae4a8d12016-07-08 12:30:39 +02003604 except vimconn.vimconnException as e:
3605 vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)}
3606 vm_error+=1
tierno7edb6752016-03-21 17:37:52 +01003607
3608 if vm_ok==0: #all goes wrong
tierno351863c2016-07-23 01:46:03 +02003609 return vm_result
tierno7edb6752016-03-21 17:37:52 +01003610 else:
tierno351863c2016-07-23 01:46:03 +02003611 return vm_result
tierno42026a02017-02-10 15:13:40 +01003612
tierno868220c2017-09-26 00:11:05 +02003613def instance_action_get(mydb, nfvo_tenant, instance_id, action_id):
3614 filter={}
3615 if nfvo_tenant and nfvo_tenant != "any":
3616 filter["tenant_id"] = nfvo_tenant
3617 if instance_id and instance_id != "any":
3618 filter["instance_id"] = instance_id
3619 if action_id:
3620 filter["uuid"] = action_id
3621 rows = mydb.get_rows(FROM="instance_actions", WHERE=filter)
3622 if not rows and action_id:
3623 raise NfvoException("Not found any action with this criteria", HTTP_Not_Found)
3624 return {"ations": rows}
3625
tiernob3d36742017-03-03 23:51:05 +01003626
tierno7edb6752016-03-21 17:37:52 +01003627def create_or_use_console_proxy_thread(console_server, console_port):
3628 #look for a non-used port
3629 console_thread_key = console_server + ":" + str(console_port)
3630 if console_thread_key in global_config["console_thread"]:
3631 #global_config["console_thread"][console_thread_key].start_timeout()
tiernof97fd272016-07-11 14:32:37 +02003632 return global_config["console_thread"][console_thread_key]
tierno42026a02017-02-10 15:13:40 +01003633
tierno7edb6752016-03-21 17:37:52 +01003634 for port in global_config["console_port_iterator"]():
tierno20fc2a22016-08-19 17:02:35 +02003635 #print "create_or_use_console_proxy_thread() port:", port
tierno7edb6752016-03-21 17:37:52 +01003636 if port in global_config["console_ports"]:
3637 continue
3638 try:
3639 clithread = cli.ConsoleProxyThread(global_config['http_host'], port, console_server, console_port)
3640 clithread.start()
3641 global_config["console_thread"][console_thread_key] = clithread
3642 global_config["console_ports"][port] = console_thread_key
tiernof97fd272016-07-11 14:32:37 +02003643 return clithread
tierno7edb6752016-03-21 17:37:52 +01003644 except cli.ConsoleProxyExceptionPortUsed as e:
3645 #port used, try with onoher
3646 continue
3647 except cli.ConsoleProxyException as e:
tiernof97fd272016-07-11 14:32:37 +02003648 raise NfvoException(str(e), HTTP_Bad_Request)
3649 raise NfvoException("Not found any free 'http_console_ports'", HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01003650
tiernob3d36742017-03-03 23:51:05 +01003651
tierno7edb6752016-03-21 17:37:52 +01003652def check_tenant(mydb, tenant_id):
3653 '''check that tenant exists at database'''
tiernof97fd272016-07-11 14:32:37 +02003654 tenant = mydb.get_rows(FROM='nfvo_tenants', SELECT=('uuid',), WHERE={'uuid': tenant_id})
3655 if not tenant:
3656 raise NfvoException("tenant '{}' not found".format(tenant_id), HTTP_Not_Found)
3657 return
tierno7edb6752016-03-21 17:37:52 +01003658
3659def new_tenant(mydb, tenant_dict):
tierno7edb6752016-03-21 17:37:52 +01003660
gcalvinoe580c7d2017-09-22 14:09:51 +02003661 tenant_uuid = str(uuid4())
3662 tenant_dict['uuid'] = tenant_uuid
3663 try:
3664 pub_key, priv_key = create_RO_keypair(tenant_uuid)
3665 tenant_dict['RO_pub_key'] = pub_key
3666 tenant_dict['encrypted_RO_priv_key'] = priv_key
gcalvinoc62cfa52017-10-05 18:21:25 +02003667 mydb.new_row("nfvo_tenants", tenant_dict, confidential_data=True)
gcalvinoe580c7d2017-09-22 14:09:51 +02003668 except db_base_Exception as e:
3669 raise NfvoException("Error creating the new tenant: {} ".format(tenant_dict['name']) + str(e), HTTP_Internal_Server_Error)
3670 return tenant_uuid
tiernob3d36742017-03-03 23:51:05 +01003671
tierno7edb6752016-03-21 17:37:52 +01003672def delete_tenant(mydb, tenant):
3673 #get nfvo_tenant info
tierno42026a02017-02-10 15:13:40 +01003674
tiernof97fd272016-07-11 14:32:37 +02003675 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant, 'tenant')
3676 mydb.delete_row_by_id("nfvo_tenants", tenant_dict['uuid'])
3677 return tenant_dict['uuid'] + " " + tenant_dict["name"]
tierno7edb6752016-03-21 17:37:52 +01003678
tiernob3d36742017-03-03 23:51:05 +01003679
tierno7edb6752016-03-21 17:37:52 +01003680def new_datacenter(mydb, datacenter_descriptor):
3681 if "config" in datacenter_descriptor:
3682 datacenter_descriptor["config"]=yaml.safe_dump(datacenter_descriptor["config"],default_flow_style=True,width=256)
tierno3ae39742016-09-07 12:17:51 +02003683 #Check that datacenter-type is correct
3684 datacenter_type = datacenter_descriptor.get("type", "openvim");
3685 module_info = None
3686 try:
3687 module = "vimconn_" + datacenter_type
tierno361275f2017-04-25 16:24:34 +02003688 pkg = __import__("osm_ro." + module)
3689 vim_conn = getattr(pkg, module)
3690 # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]])
tierno3ae39742016-09-07 12:17:51 +02003691 except (IOError, ImportError):
tierno361275f2017-04-25 16:24:34 +02003692 # if module_info and module_info[0]:
3693 # file.close(module_info[0])
tierno3ae39742016-09-07 12:17:51 +02003694 raise NfvoException("Incorrect datacenter type '{}'. Plugin '{}'.py not installed".format(datacenter_type, module), HTTP_Bad_Request)
tierno42026a02017-02-10 15:13:40 +01003695
gcalvinoc62cfa52017-10-05 18:21:25 +02003696 datacenter_id = mydb.new_row("datacenters", datacenter_descriptor, add_uuid=True, confidential_data=True)
tiernof97fd272016-07-11 14:32:37 +02003697 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01003698
tiernob3d36742017-03-03 23:51:05 +01003699
tierno7edb6752016-03-21 17:37:52 +01003700def edit_datacenter(mydb, datacenter_id_name, datacenter_descriptor):
tierno8fe7a492017-07-11 13:50:04 +02003701 # obtain data, check that only one exist
tiernof97fd272016-07-11 14:32:37 +02003702 datacenter = mydb.get_table_by_uuid_name('datacenters', datacenter_id_name)
tierno8fe7a492017-07-11 13:50:04 +02003703
3704 # edit data
tiernof97fd272016-07-11 14:32:37 +02003705 datacenter_id = datacenter['uuid']
3706 where={'uuid': datacenter['uuid']}
tierno8fe7a492017-07-11 13:50:04 +02003707 remove_port_mapping = False
tierno7edb6752016-03-21 17:37:52 +01003708 if "config" in datacenter_descriptor:
tierno8fe7a492017-07-11 13:50:04 +02003709 if datacenter_descriptor['config'] != None:
tierno7edb6752016-03-21 17:37:52 +01003710 try:
3711 new_config_dict = datacenter_descriptor["config"]
3712 #delete null fields
3713 to_delete=[]
3714 for k in new_config_dict:
tierno8fe7a492017-07-11 13:50:04 +02003715 if new_config_dict[k] == None:
tierno7edb6752016-03-21 17:37:52 +01003716 to_delete.append(k)
tierno8fe7a492017-07-11 13:50:04 +02003717 if k == 'sdn-controller':
3718 remove_port_mapping = True
tierno42026a02017-02-10 15:13:40 +01003719
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003720 config_text = datacenter.get("config")
3721 if not config_text:
3722 config_text = '{}'
3723 config_dict = yaml.load(config_text)
tierno7edb6752016-03-21 17:37:52 +01003724 config_dict.update(new_config_dict)
3725 #delete null fields
3726 for k in to_delete:
3727 del config_dict[k]
tiernof97fd272016-07-11 14:32:37 +02003728 except Exception as e:
3729 raise NfvoException("Bad format at datacenter:config " + str(e), HTTP_Bad_Request)
tierno8fe7a492017-07-11 13:50:04 +02003730 if config_dict:
3731 datacenter_descriptor["config"] = yaml.safe_dump(config_dict, default_flow_style=True, width=256)
3732 else:
3733 datacenter_descriptor["config"] = None
3734 if remove_port_mapping:
3735 try:
3736 datacenter_sdn_port_mapping_delete(mydb, None, datacenter_id)
3737 except ovimException as e:
3738 logger.error("Error deleting datacenter-port-mapping " + str(e))
3739
tiernof97fd272016-07-11 14:32:37 +02003740 mydb.update_rows('datacenters', datacenter_descriptor, where)
3741 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01003742
tiernob3d36742017-03-03 23:51:05 +01003743
tierno7edb6752016-03-21 17:37:52 +01003744def delete_datacenter(mydb, datacenter):
3745 #get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02003746 datacenter_dict = mydb.get_table_by_uuid_name('datacenters', datacenter, 'datacenter')
3747 mydb.delete_row_by_id("datacenters", datacenter_dict['uuid'])
tierno8fe7a492017-07-11 13:50:04 +02003748 try:
3749 datacenter_sdn_port_mapping_delete(mydb, None, datacenter_dict['uuid'])
3750 except ovimException as e:
3751 logger.error("Error deleting datacenter-port-mapping " + str(e))
tiernof97fd272016-07-11 14:32:37 +02003752 return datacenter_dict['uuid'] + " " + datacenter_dict['name']
tierno7edb6752016-03-21 17:37:52 +01003753
tiernob3d36742017-03-03 23:51:05 +01003754
tierno8008c3a2016-10-13 15:34:28 +00003755def associate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter, vim_tenant_id=None, vim_tenant_name=None, vim_username=None, vim_password=None, config=None):
tierno9c22f2d2017-10-09 16:23:55 +02003756 # get datacenter info
3757 datacenter_id = get_datacenter_uuid(mydb, None, datacenter)
tierno7edb6752016-03-21 17:37:52 +01003758
tierno42026a02017-02-10 15:13:40 +01003759 create_vim_tenant = True if not vim_tenant_id and not vim_tenant_name else False
3760
3761 # get nfvo_tenant info
tiernof97fd272016-07-11 14:32:37 +02003762 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', nfvo_tenant)
tierno7edb6752016-03-21 17:37:52 +01003763 if vim_tenant_name==None:
3764 vim_tenant_name=tenant_dict['name']
tierno42026a02017-02-10 15:13:40 +01003765
tierno7edb6752016-03-21 17:37:52 +01003766 #check that this association does not exist before
3767 tenants_datacenter_dict={"nfvo_tenant_id":tenant_dict['uuid'], "datacenter_id":datacenter_id }
tiernof97fd272016-07-11 14:32:37 +02003768 tenants_datacenters = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
3769 if len(tenants_datacenters)>0:
3770 raise NfvoException("datacenter '{}' and tenant'{}' are already attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Conflict)
tierno7edb6752016-03-21 17:37:52 +01003771
3772 vim_tenant_id_exist_atdb=False
3773 if not create_vim_tenant:
3774 where_={"datacenter_id": datacenter_id}
3775 if vim_tenant_id!=None:
3776 where_["vim_tenant_id"] = vim_tenant_id
3777 if vim_tenant_name!=None:
3778 where_["vim_tenant_name"] = vim_tenant_name
3779 #check if vim_tenant_id is already at database
tiernof97fd272016-07-11 14:32:37 +02003780 datacenter_tenants_dict = mydb.get_rows(FROM='datacenter_tenants', WHERE=where_)
3781 if len(datacenter_tenants_dict)>=1:
tierno7edb6752016-03-21 17:37:52 +01003782 datacenter_tenants_dict = datacenter_tenants_dict[0]
3783 vim_tenant_id_exist_atdb=True
3784 #TODO check if a field has changed and edit entry at datacenter_tenants at DB
3785 else: #result=0
3786 datacenter_tenants_dict = {}
3787 #insert at table datacenter_tenants
3788 else: #if vim_tenant_id==None:
3789 #create tenant at VIM if not provided
tiernoae4a8d12016-07-08 12:30:39 +02003790 try:
tierno9c22f2d2017-10-09 16:23:55 +02003791 _, myvim = get_datacenter_by_name_uuid(mydb, None, datacenter, vim_user=vim_username,
3792 vim_passwd=vim_password)
3793 datacenter_name = myvim["name"]
tiernoae4a8d12016-07-08 12:30:39 +02003794 vim_tenant_id = myvim.new_tenant(vim_tenant_name, "created by openmano for datacenter "+datacenter_name)
3795 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02003796 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 +01003797 datacenter_tenants_dict = {}
3798 datacenter_tenants_dict["created"]="true"
tierno42026a02017-02-10 15:13:40 +01003799
tierno7edb6752016-03-21 17:37:52 +01003800 #fill datacenter_tenants table
3801 if not vim_tenant_id_exist_atdb:
tierno42026a02017-02-10 15:13:40 +01003802 datacenter_tenants_dict["vim_tenant_id"] = vim_tenant_id
tierno7edb6752016-03-21 17:37:52 +01003803 datacenter_tenants_dict["vim_tenant_name"] = vim_tenant_name
tierno42026a02017-02-10 15:13:40 +01003804 datacenter_tenants_dict["user"] = vim_username
3805 datacenter_tenants_dict["passwd"] = vim_password
3806 datacenter_tenants_dict["datacenter_id"] = datacenter_id
tierno8008c3a2016-10-13 15:34:28 +00003807 if config:
3808 datacenter_tenants_dict["config"] = yaml.safe_dump(config, default_flow_style=True, width=256)
gcalvinoc62cfa52017-10-05 18:21:25 +02003809 id_ = mydb.new_row('datacenter_tenants', datacenter_tenants_dict, add_uuid=True, confidential_data=True)
tierno7edb6752016-03-21 17:37:52 +01003810 datacenter_tenants_dict["uuid"] = id_
tierno42026a02017-02-10 15:13:40 +01003811
tierno7edb6752016-03-21 17:37:52 +01003812 #fill tenants_datacenters table
tierno99314902017-04-26 13:23:09 +02003813 datacenter_tenant_id = datacenter_tenants_dict["uuid"]
3814 tenants_datacenter_dict["datacenter_tenant_id"] = datacenter_tenant_id
tiernof97fd272016-07-11 14:32:37 +02003815 mydb.new_row('tenants_datacenters', tenants_datacenter_dict)
tierno42026a02017-02-10 15:13:40 +01003816 # create thread
3817 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_dict['uuid'], datacenter_id) # reload data
tierno9c22f2d2017-10-09 16:23:55 +02003818 datacenter_name = myvim["name"]
tierno42026a02017-02-10 15:13:40 +01003819 thread_name = get_non_used_vim_name(datacenter_name, datacenter_id, tenant_dict['name'], tenant_dict['uuid'])
tierno99314902017-04-26 13:23:09 +02003820 new_thread = vim_thread.vim_thread(myvim, task_lock, thread_name, datacenter_name, datacenter_tenant_id,
3821 db=db, db_lock=db_lock, ovim=ovim)
tierno42026a02017-02-10 15:13:40 +01003822 new_thread.start()
tierno867ffe92017-03-27 12:50:34 +02003823 thread_id = datacenter_tenants_dict["uuid"]
tiernob3d36742017-03-03 23:51:05 +01003824 vim_threads["running"][thread_id] = new_thread
tiernof97fd272016-07-11 14:32:37 +02003825 return datacenter_id
tierno7edb6752016-03-21 17:37:52 +01003826
tierno99314902017-04-26 13:23:09 +02003827
3828def edit_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=None, vim_tenant_name=None,
3829 vim_username=None, vim_password=None, config=None):
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01003830 #Obtain the data of this datacenter_tenant_id
3831 vim_data = mydb.get_rows(
3832 SELECT=("datacenter_tenants.vim_tenant_name", "datacenter_tenants.vim_tenant_id", "datacenter_tenants.user",
3833 "datacenter_tenants.passwd", "datacenter_tenants.config"),
3834 FROM="datacenter_tenants JOIN tenants_datacenters ON datacenter_tenants.uuid=tenants_datacenters.datacenter_tenant_id",
3835 WHERE={"tenants_datacenters.nfvo_tenant_id": nfvo_tenant,
3836 "tenants_datacenters.datacenter_id": datacenter_id})
3837
3838 logger.debug(str(vim_data))
3839 if len(vim_data) < 1:
3840 raise NfvoException("Datacenter {} is not attached for tenant {}".format(datacenter_id, nfvo_tenant), HTTP_Conflict)
3841
3842 v = vim_data[0]
3843 if v['config']:
3844 v['config'] = yaml.load(v['config'])
3845
3846 if vim_tenant_id:
3847 v['vim_tenant_id'] = vim_tenant_id
3848 if vim_tenant_name:
3849 v['vim_tenant_name'] = vim_tenant_name
3850 if vim_username:
3851 v['user'] = vim_username
3852 if vim_password:
3853 v['passwd'] = vim_password
3854 if config:
3855 if not v['config']:
3856 v['config'] = {}
3857 v['config'].update(config)
3858
3859 logger.debug(str(v))
3860 deassociate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=v['vim_tenant_id'])
3861 associate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=v['vim_tenant_id'], vim_tenant_name=v['vim_tenant_name'],
3862 vim_username=v['user'], vim_password=v['passwd'], config=v['config'])
3863
3864 return datacenter_id
tiernob3d36742017-03-03 23:51:05 +01003865
tierno7edb6752016-03-21 17:37:52 +01003866def deassociate_datacenter_to_tenant(mydb, tenant_id, datacenter, vim_tenant_id=None):
3867 #get datacenter info
Adam Israel04f29112017-09-20 21:10:30 -04003868 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01003869
3870 #get nfvo_tenant info
3871 if not tenant_id or tenant_id=="any":
3872 tenant_uuid = None
3873 else:
tiernof97fd272016-07-11 14:32:37 +02003874 tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant_id)
tierno7edb6752016-03-21 17:37:52 +01003875 tenant_uuid = tenant_dict['uuid']
3876
3877 #check that this association exist before
3878 tenants_datacenter_dict={"datacenter_id":datacenter_id }
3879 if tenant_uuid:
3880 tenants_datacenter_dict["nfvo_tenant_id"] = tenant_uuid
tiernof97fd272016-07-11 14:32:37 +02003881 tenant_datacenter_list = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
3882 if len(tenant_datacenter_list)==0 and tenant_uuid:
3883 raise NfvoException("datacenter '{}' and tenant '{}' are not attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01003884
3885 #delete this association
tiernof97fd272016-07-11 14:32:37 +02003886 mydb.delete_row(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict)
tierno7edb6752016-03-21 17:37:52 +01003887
3888 #get vim_tenant info and deletes
3889 warning=''
3890 for tenant_datacenter_item in tenant_datacenter_list:
tiernof97fd272016-07-11 14:32:37 +02003891 vim_tenant_dict = mydb.get_table_by_uuid_name('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
3892 #try to delete vim:tenant
3893 try:
3894 mydb.delete_row_by_id('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id'])
3895 if vim_tenant_dict['created']=='true':
tierno7edb6752016-03-21 17:37:52 +01003896 #delete tenant at VIM if created by NFVO
tierno42026a02017-02-10 15:13:40 +01003897 try:
tiernoae4a8d12016-07-08 12:30:39 +02003898 myvim.delete_tenant(vim_tenant_dict['vim_tenant_id'])
3899 except vimconn.vimconnException as e:
3900 warning = "Not possible to delete vim_tenant_id {} from VIM: {} ".format(vim_tenant_dict['vim_tenant_id'], str(e))
3901 logger.warn(warning)
tiernof97fd272016-07-11 14:32:37 +02003902 except db_base_Exception as e:
3903 logger.error("Cannot delete datacenter_tenants " + str(e))
tierno42026a02017-02-10 15:13:40 +01003904 pass # the error will be caused because dependencies, vim_tenant can not be deleted
tierno867ffe92017-03-27 12:50:34 +02003905 thread_id = tenant_datacenter_item["datacenter_tenant_id"]
tierno42026a02017-02-10 15:13:40 +01003906 thread = vim_threads["running"][thread_id]
tierno868220c2017-09-26 00:11:05 +02003907 thread.insert_task("exit")
tierno42026a02017-02-10 15:13:40 +01003908 vim_threads["deleting"][thread_id] = thread
tiernof97fd272016-07-11 14:32:37 +02003909 return "datacenter {} detached. {}".format(datacenter_id, warning)
tierno7edb6752016-03-21 17:37:52 +01003910
tiernob3d36742017-03-03 23:51:05 +01003911
tierno7edb6752016-03-21 17:37:52 +01003912def datacenter_action(mydb, tenant_id, datacenter, action_dict):
3913 #DEPRECATED
tierno42026a02017-02-10 15:13:40 +01003914 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00003915 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01003916
3917 if 'net-update' in action_dict:
tiernoae4a8d12016-07-08 12:30:39 +02003918 try:
tiernof97fd272016-07-11 14:32:37 +02003919 nets = myvim.get_network_list(filter_dict={'shared': True, 'admin_state_up': True, 'status': 'ACTIVE'})
tiernoae4a8d12016-07-08 12:30:39 +02003920 #print content
3921 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02003922 #logger.error("nfvo.datacenter_action() Not possible to get_network_list from VIM: %s ", str(e))
3923 raise NfvoException(str(e), HTTP_Internal_Server_Error)
tierno7edb6752016-03-21 17:37:52 +01003924 #update nets Change from VIM format to NFVO format
3925 net_list=[]
tiernof97fd272016-07-11 14:32:37 +02003926 for net in nets:
tierno7edb6752016-03-21 17:37:52 +01003927 net_nfvo={'datacenter_id': datacenter_id}
3928 net_nfvo['name'] = net['name']
3929 #net_nfvo['description']= net['name']
3930 net_nfvo['vim_net_id'] = net['id']
3931 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
3932 net_nfvo['shared'] = net['shared']
3933 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
3934 net_list.append(net_nfvo)
tiernof97fd272016-07-11 14:32:37 +02003935 inserted, deleted = mydb.update_datacenter_nets(datacenter_id, net_list)
3936 logger.info("Inserted %d nets, deleted %d old nets", inserted, deleted)
3937 return inserted
tierno7edb6752016-03-21 17:37:52 +01003938 elif 'net-edit' in action_dict:
3939 net = action_dict['net-edit'].pop('net')
tierno42fcc3b2016-07-06 17:20:40 +02003940 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
tierno42026a02017-02-10 15:13:40 +01003941 result = mydb.update_rows('datacenter_nets', action_dict['net-edit'],
tierno7edb6752016-03-21 17:37:52 +01003942 WHERE={'datacenter_id':datacenter_id, what: net})
tiernof97fd272016-07-11 14:32:37 +02003943 return result
tierno7edb6752016-03-21 17:37:52 +01003944 elif 'net-delete' in action_dict:
3945 net = action_dict['net-deelte'].get('net')
tierno42fcc3b2016-07-06 17:20:40 +02003946 what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name'
tierno42026a02017-02-10 15:13:40 +01003947 result = mydb.delete_row(FROM='datacenter_nets',
tierno7edb6752016-03-21 17:37:52 +01003948 WHERE={'datacenter_id':datacenter_id, what: net})
tiernof97fd272016-07-11 14:32:37 +02003949 return result
tierno7edb6752016-03-21 17:37:52 +01003950
3951 else:
tiernof97fd272016-07-11 14:32:37 +02003952 raise NfvoException("Unknown action " + str(action_dict), HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01003953
tiernob3d36742017-03-03 23:51:05 +01003954
tierno7edb6752016-03-21 17:37:52 +01003955def datacenter_edit_netmap(mydb, tenant_id, datacenter, netmap, action_dict):
3956 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00003957 datacenter_id, _ = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01003958
tierno42fcc3b2016-07-06 17:20:40 +02003959 what = 'uuid' if utils.check_valid_uuid(netmap) else 'name'
tierno42026a02017-02-10 15:13:40 +01003960 result = mydb.update_rows('datacenter_nets', action_dict['netmap'],
tierno7edb6752016-03-21 17:37:52 +01003961 WHERE={'datacenter_id':datacenter_id, what: netmap})
tiernof97fd272016-07-11 14:32:37 +02003962 return result
tierno7edb6752016-03-21 17:37:52 +01003963
tiernob3d36742017-03-03 23:51:05 +01003964
tierno7edb6752016-03-21 17:37:52 +01003965def datacenter_new_netmap(mydb, tenant_id, datacenter, action_dict=None):
3966 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00003967 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01003968 filter_dict={}
3969 if action_dict:
3970 action_dict = action_dict["netmap"]
3971 if 'vim_id' in action_dict:
3972 filter_dict["id"] = action_dict['vim_id']
3973 if 'vim_name' in action_dict:
3974 filter_dict["name"] = action_dict['vim_name']
3975 else:
3976 filter_dict["shared"] = True
tierno42026a02017-02-10 15:13:40 +01003977
tiernoae4a8d12016-07-08 12:30:39 +02003978 try:
tiernof97fd272016-07-11 14:32:37 +02003979 vim_nets = myvim.get_network_list(filter_dict=filter_dict)
tiernoae4a8d12016-07-08 12:30:39 +02003980 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02003981 #logger.error("nfvo.datacenter_new_netmap() Not possible to get_network_list from VIM: %s ", str(e))
3982 raise NfvoException(str(e), HTTP_Internal_Server_Error)
3983 if len(vim_nets)>1 and action_dict:
3984 raise NfvoException("more than two networks found, specify with vim_id", HTTP_Conflict)
3985 elif len(vim_nets)==0: # and action_dict:
3986 raise NfvoException("Not found a network at VIM with " + str(filter_dict), HTTP_Not_Found)
tierno7edb6752016-03-21 17:37:52 +01003987 net_list=[]
tiernof97fd272016-07-11 14:32:37 +02003988 for net in vim_nets:
tierno7edb6752016-03-21 17:37:52 +01003989 net_nfvo={'datacenter_id': datacenter_id}
3990 if action_dict and "name" in action_dict:
3991 net_nfvo['name'] = action_dict['name']
3992 else:
3993 net_nfvo['name'] = net['name']
3994 #net_nfvo['description']= net['name']
3995 net_nfvo['vim_net_id'] = net['id']
3996 net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp')
3997 net_nfvo['shared'] = net['shared']
3998 net_nfvo['multipoint'] = False if net['type']=='ptp' else True
tiernof97fd272016-07-11 14:32:37 +02003999 try:
4000 net_id = mydb.new_row("datacenter_nets", net_nfvo, add_uuid=True)
tierno7edb6752016-03-21 17:37:52 +01004001 net_nfvo["status"] = "OK"
tiernof97fd272016-07-11 14:32:37 +02004002 net_nfvo["uuid"] = net_id
4003 except db_base_Exception as e:
4004 if action_dict:
4005 raise
4006 else:
4007 net_nfvo["status"] = "FAIL: " + str(e)
tierno42026a02017-02-10 15:13:40 +01004008 net_list.append(net_nfvo)
4009 return net_list
tierno7edb6752016-03-21 17:37:52 +01004010
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02004011def get_sdn_net_id(mydb, tenant_id, datacenter, network_id):
4012 # obtain all network data
4013 try:
4014 if utils.check_valid_uuid(network_id):
4015 filter_dict = {"id": network_id}
4016 else:
4017 filter_dict = {"name": network_id}
4018
4019 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
4020 network = myvim.get_network_list(filter_dict=filter_dict)
4021 except vimconn.vimconnException as e:
tiernof1ba57e2017-09-07 12:23:19 +02004022 raise NfvoException("Not possible to get_sdn_net_id from VIM: {}".format(str(e)), e.http_code)
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02004023
4024 # ensure the network is defined
4025 if len(network) == 0:
4026 raise NfvoException("Network {} is not present in the system".format(network_id),
4027 HTTP_Bad_Request)
4028
4029 # ensure there is only one network with the provided name
4030 if len(network) > 1:
4031 raise NfvoException("Multiple networks present in vim identified by {}".format(network_id), HTTP_Bad_Request)
4032
4033 # ensure it is a dataplane network
4034 if network[0]['type'] != 'data':
4035 return None
4036
4037 # ensure we use the id
4038 network_id = network[0]['id']
4039
4040 # search in dabase mano_db in table instance nets for the sdn_net_id that corresponds to the vim_net_id==network_id
4041 # and with instance_scenario_id==NULL
4042 #search_dict = {'vim_net_id': network_id, 'instance_scenario_id': None}
4043 search_dict = {'vim_net_id': network_id}
4044
4045 try:
4046 #sdn_network_id = mydb.get_rows(SELECT=('sdn_net_id',), FROM='instance_nets', WHERE=search_dict)[0]['sdn_net_id']
4047 result = mydb.get_rows(SELECT=('sdn_net_id',), FROM='instance_nets', WHERE=search_dict)
4048 except db_base_Exception as e:
4049 raise NfvoException("db_base_Exception obtaining SDN network to associated to vim network {}".format(
4050 network_id) + str(e), HTTP_Internal_Server_Error)
4051
4052 sdn_net_counter = 0
4053 for net in result:
4054 if net['sdn_net_id'] != None:
4055 sdn_net_counter+=1
4056 sdn_net_id = net['sdn_net_id']
4057
4058 if sdn_net_counter == 0:
4059 return None
4060 elif sdn_net_counter == 1:
4061 return sdn_net_id
4062 else:
4063 raise NfvoException("More than one SDN network is associated to vim network {}".format(
4064 network_id), HTTP_Internal_Server_Error)
4065
4066def get_sdn_controller_id(mydb, datacenter):
4067 # Obtain sdn controller id
4068 config = mydb.get_rows(SELECT=('config',), FROM='datacenters', WHERE={'uuid': datacenter})[0].get('config', '{}')
4069 if not config:
4070 return None
4071
4072 return yaml.load(config).get('sdn-controller')
4073
4074def vim_net_sdn_attach(mydb, tenant_id, datacenter, network_id, descriptor):
4075 try:
4076 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, network_id)
4077 if not sdn_network_id:
4078 raise NfvoException("No SDN network is associated to vim-network {}".format(network_id), HTTP_Internal_Server_Error)
4079
4080 #Obtain sdn controller id
4081 controller_id = get_sdn_controller_id(mydb, datacenter)
4082 if not controller_id:
4083 raise NfvoException("No SDN controller is set for datacenter {}".format(datacenter), HTTP_Internal_Server_Error)
4084
4085 #Obtain sdn controller info
4086 sdn_controller = ovim.show_of_controller(controller_id)
4087
4088 port_data = {
4089 'name': 'external_port',
4090 'net_id': sdn_network_id,
4091 'ofc_id': controller_id,
4092 'switch_dpid': sdn_controller['dpid'],
4093 'switch_port': descriptor['port']
4094 }
4095
4096 if 'vlan' in descriptor:
4097 port_data['vlan'] = descriptor['vlan']
4098 if 'mac' in descriptor:
4099 port_data['mac'] = descriptor['mac']
4100
4101 result = ovim.new_port(port_data)
4102 except ovimException as e:
4103 raise NfvoException("ovimException attaching SDN network {} to vim network {}".format(
4104 sdn_network_id, network_id) + str(e), HTTP_Internal_Server_Error)
4105 except db_base_Exception as e:
4106 raise NfvoException("db_base_Exception attaching SDN network to vim network {}".format(
4107 network_id) + str(e), HTTP_Internal_Server_Error)
4108
4109 return 'Port uuid: '+ result
4110
4111def vim_net_sdn_detach(mydb, tenant_id, datacenter, network_id, port_id=None):
4112 if port_id:
4113 filter = {'uuid': port_id}
4114 else:
4115 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, network_id)
4116 if not sdn_network_id:
4117 raise NfvoException("No SDN network is associated to vim-network {}".format(network_id),
4118 HTTP_Internal_Server_Error)
4119 #in case no port_id is specified only ports marked as 'external_port' will be detached
4120 filter = {'name': 'external_port', 'net_id': sdn_network_id}
4121
4122 try:
4123 port_list = ovim.get_ports(columns={'uuid'}, filter=filter)
4124 except ovimException as e:
4125 raise NfvoException("ovimException obtaining external ports for net {}. ".format(network_id) + str(e),
4126 HTTP_Internal_Server_Error)
4127
4128 if len(port_list) == 0:
4129 raise NfvoException("No ports attached to the network {} were found with the requested criteria".format(network_id),
4130 HTTP_Bad_Request)
4131
4132 port_uuid_list = []
4133 for port in port_list:
4134 try:
4135 port_uuid_list.append(port['uuid'])
4136 ovim.delete_port(port['uuid'])
4137 except ovimException as e:
4138 raise NfvoException("ovimException deleting port {} for net {}. ".format(port['uuid'], network_id) + str(e), HTTP_Internal_Server_Error)
4139
4140 return 'Detached ports uuid: {}'.format(','.join(port_uuid_list))
tiernob3d36742017-03-03 23:51:05 +01004141
tierno7edb6752016-03-21 17:37:52 +01004142def vim_action_get(mydb, tenant_id, datacenter, item, name):
4143 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00004144 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno7edb6752016-03-21 17:37:52 +01004145 filter_dict={}
4146 if name:
tierno42fcc3b2016-07-06 17:20:40 +02004147 if utils.check_valid_uuid(name):
tierno7edb6752016-03-21 17:37:52 +01004148 filter_dict["id"] = name
4149 else:
4150 filter_dict["name"] = name
tiernoae4a8d12016-07-08 12:30:39 +02004151 try:
4152 if item=="networks":
4153 #filter_dict['tenant_id'] = myvim['tenant_id']
4154 content = myvim.get_network_list(filter_dict=filter_dict)
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02004155
4156 if len(content) == 0:
4157 raise NfvoException("Network {} is not present in the system. ".format(name),
4158 HTTP_Bad_Request)
4159
4160 #Update the networks with the attached ports
4161 for net in content:
4162 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, net['id'])
4163 if sdn_network_id != None:
4164 try:
4165 #port_list = ovim.get_ports(columns={'uuid', 'switch_port', 'vlan'}, filter={'name': 'external_port', 'net_id': sdn_network_id})
4166 port_list = ovim.get_ports(columns={'uuid', 'switch_port', 'vlan','name'}, filter={'net_id': sdn_network_id})
4167 except ovimException as e:
4168 raise NfvoException("ovimException obtaining external ports for net {}. ".format(network_id) + str(e), HTTP_Internal_Server_Error)
4169 #Remove field name and if port name is external_port save it as 'type'
4170 for port in port_list:
4171 if port['name'] == 'external_port':
4172 port['type'] = "External"
4173 del port['name']
4174 net['sdn_network_id'] = sdn_network_id
4175 net['sdn_attached_ports'] = port_list
4176
tiernoae4a8d12016-07-08 12:30:39 +02004177 elif item=="tenants":
4178 content = myvim.get_tenant_list(filter_dict=filter_dict)
tierno4540ea52017-01-18 17:44:32 +01004179 elif item == "images":
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02004180
tierno4540ea52017-01-18 17:44:32 +01004181 content = myvim.get_image_list(filter_dict=filter_dict)
tiernoae4a8d12016-07-08 12:30:39 +02004182 else:
tiernof97fd272016-07-11 14:32:37 +02004183 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernobe41e222016-09-02 15:16:13 +02004184 logger.debug("vim_action response %s", content) #update nets Change from VIM format to NFVO format
tiernoae4a8d12016-07-08 12:30:39 +02004185 if name and len(content)==1:
tiernof97fd272016-07-11 14:32:37 +02004186 return {item[:-1]: content[0]}
tiernoae4a8d12016-07-08 12:30:39 +02004187 elif name and len(content)==0:
tiernof97fd272016-07-11 14:32:37 +02004188 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 +02004189 datacenter)
tiernoae4a8d12016-07-08 12:30:39 +02004190 else:
tiernof97fd272016-07-11 14:32:37 +02004191 return {item: content}
tiernoae4a8d12016-07-08 12:30:39 +02004192 except vimconn.vimconnException as e:
4193 print "vim_action Not possible to get_%s_list from VIM: %s " % (item, str(e))
tiernof97fd272016-07-11 14:32:37 +02004194 raise NfvoException("Not possible to get_{}_list from VIM: {}".format(item, str(e)), e.http_code)
tierno42026a02017-02-10 15:13:40 +01004195
tiernob3d36742017-03-03 23:51:05 +01004196
tierno7edb6752016-03-21 17:37:52 +01004197def vim_action_delete(mydb, tenant_id, datacenter, item, name):
4198 #get datacenter info
tierno392f2852016-05-13 12:28:55 +02004199 if tenant_id == "any":
4200 tenant_id=None
4201
tiernoa2793912016-10-04 08:15:08 +00004202 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tierno392f2852016-05-13 12:28:55 +02004203 #get uuid name
tiernof97fd272016-07-11 14:32:37 +02004204 content = vim_action_get(mydb, tenant_id, datacenter, item, name)
4205 logger.debug("vim_action_delete vim response: " + str(content))
tierno392f2852016-05-13 12:28:55 +02004206 items = content.values()[0]
4207 if type(items)==list and len(items)==0:
tiernof97fd272016-07-11 14:32:37 +02004208 raise NfvoException("Not found " + item, HTTP_Not_Found)
tierno392f2852016-05-13 12:28:55 +02004209 elif type(items)==list and len(items)>1:
tiernof97fd272016-07-11 14:32:37 +02004210 raise NfvoException("Found more than one {} with this name. Use uuid.".format(item), HTTP_Not_Found)
tierno392f2852016-05-13 12:28:55 +02004211 else: # it is a dict
4212 item_id = items["id"]
4213 item_name = str(items.get("name"))
tierno42026a02017-02-10 15:13:40 +01004214
tiernoae4a8d12016-07-08 12:30:39 +02004215 try:
4216 if item=="networks":
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02004217 # If there is a SDN network associated to the vim-network, proceed to clear the relationship and delete it
4218 sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, item_id)
4219 if sdn_network_id != None:
4220 #Delete any port attachment to this network
4221 try:
4222 port_list = ovim.get_ports(columns={'uuid'}, filter={'net_id': sdn_network_id})
4223 except ovimException as e:
4224 raise NfvoException(
4225 "ovimException obtaining external ports for net {}. ".format(network_id) + str(e),
4226 HTTP_Internal_Server_Error)
4227
4228 # By calling one by one all ports to be detached we ensure that not only the external_ports get detached
4229 for port in port_list:
4230 vim_net_sdn_detach(mydb, tenant_id, datacenter, item_id, port['uuid'])
4231
4232 #Delete from 'instance_nets' the correspondence between the vim-net-id and the sdn-net-id
4233 try:
4234 mydb.delete_row(FROM='instance_nets', WHERE={'instance_scenario_id': None, 'sdn_net_id': sdn_network_id, 'vim_net_id': item_id})
4235 except db_base_Exception as e:
4236 raise NfvoException("Error deleting correspondence for VIM/SDN dataplane networks{}: ".format(correspondence) +
4237 str(e), HTTP_Internal_Server_Error)
4238
4239 #Delete the SDN network
4240 try:
4241 ovim.delete_network(sdn_network_id)
4242 except ovimException as e:
4243 logger.error("ovimException deleting SDN network={} ".format(sdn_network_id) + str(e), exc_info=True)
4244 raise NfvoException("ovimException deleting SDN network={} ".format(sdn_network_id) + str(e),
4245 HTTP_Internal_Server_Error)
4246
tiernoae4a8d12016-07-08 12:30:39 +02004247 content = myvim.delete_network(item_id)
4248 elif item=="tenants":
4249 content = myvim.delete_tenant(item_id)
tierno4540ea52017-01-18 17:44:32 +01004250 elif item == "images":
4251 content = myvim.delete_image(item_id)
tiernoae4a8d12016-07-08 12:30:39 +02004252 else:
tierno42026a02017-02-10 15:13:40 +01004253 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernoae4a8d12016-07-08 12:30:39 +02004254 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02004255 #logger.error( "vim_action Not possible to delete_{} {}from VIM: {} ".format(item, name, str(e)))
4256 raise NfvoException("Not possible to delete_{} {} from VIM: {}".format(item, name, str(e)), e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02004257
tiernof97fd272016-07-11 14:32:37 +02004258 return "{} {} {} deleted".format(item[:-1], item_id,item_name)
tierno42026a02017-02-10 15:13:40 +01004259
tiernob3d36742017-03-03 23:51:05 +01004260
tierno7edb6752016-03-21 17:37:52 +01004261def vim_action_create(mydb, tenant_id, datacenter, item, descriptor):
4262 #get datacenter info
tiernoa2793912016-10-04 08:15:08 +00004263 logger.debug("vim_action_create descriptor %s", str(descriptor))
tierno392f2852016-05-13 12:28:55 +02004264 if tenant_id == "any":
4265 tenant_id=None
tiernoa2793912016-10-04 08:15:08 +00004266 datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter)
tiernoae4a8d12016-07-08 12:30:39 +02004267 try:
4268 if item=="networks":
4269 net = descriptor["network"]
4270 net_name = net.pop("name")
4271 net_type = net.pop("type", "bridge")
garciadeblas9f8456e2016-09-05 05:02:59 +02004272 net_public = net.pop("shared", False)
4273 net_ipprofile = net.pop("ip_profile", None)
tiernoa7d34d02017-02-23 14:42:07 +01004274 net_vlan = net.pop("vlan", None)
4275 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 +02004276
4277 #If the datacenter has a SDN controller defined and the network is of dataplane type, then create the sdn network
4278 if get_sdn_controller_id(mydb, datacenter) != None and (net_type == 'data' or net_type == 'ptp'):
4279 try:
4280 sdn_network = {}
4281 sdn_network['vlan'] = net_vlan
4282 sdn_network['type'] = net_type
4283 sdn_network['name'] = net_name
4284 ovim_content = ovim.new_network(sdn_network)
4285 except ovimException as e:
4286 self.logger.error("ovimException creating SDN network={} ".format(
4287 sdn_network) + str(e), exc_info=True)
4288 raise NfvoException("ovimException creating SDN network={} ".format(sdn_network) + str(e),
4289 HTTP_Internal_Server_Error)
4290
4291 # Save entry in in dabase mano_db in table instance_nets to stablish a dictionary vim_net_id <->sdn_net_id
4292 # use instance_scenario_id=None to distinguish from real instaces of nets
4293 correspondence = {'instance_scenario_id': None, 'sdn_net_id': ovim_content, 'vim_net_id': content}
4294 #obtain datacenter_tenant_id
4295 correspondence['datacenter_tenant_id'] = mydb.get_rows(SELECT=('uuid',), FROM='datacenter_tenants', WHERE={'datacenter_id': datacenter})[0]['uuid']
4296
4297 try:
4298 mydb.new_row('instance_nets', correspondence, add_uuid=True)
4299 except db_base_Exception as e:
4300 raise NfvoException("Error saving correspondence for VIM/SDN dataplane networks{}: ".format(correspondence) +
4301 str(e), HTTP_Internal_Server_Error)
tiernoae4a8d12016-07-08 12:30:39 +02004302 elif item=="tenants":
4303 tenant = descriptor["tenant"]
4304 content = myvim.new_tenant(tenant["name"], tenant.get("description"))
4305 else:
tierno42026a02017-02-10 15:13:40 +01004306 raise NfvoException(item + "?", HTTP_Method_Not_Allowed)
tiernoae4a8d12016-07-08 12:30:39 +02004307 except vimconn.vimconnException as e:
tiernof97fd272016-07-11 14:32:37 +02004308 raise NfvoException("Not possible to create {} at VIM: {}".format(item, str(e)), e.http_code)
tiernoae4a8d12016-07-08 12:30:39 +02004309
tierno7edb6752016-03-21 17:37:52 +01004310 return vim_action_get(mydb, tenant_id, datacenter, item, content)
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01004311
4312def sdn_controller_create(mydb, tenant_id, sdn_controller):
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02004313 data = ovim.new_of_controller(sdn_controller)
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01004314 logger.debug('New SDN controller created with uuid {}'.format(data))
4315 return data
4316
4317def sdn_controller_update(mydb, tenant_id, controller_id, sdn_controller):
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02004318 data = ovim.edit_of_controller(controller_id, sdn_controller)
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01004319 msg = 'SDN controller {} updated'.format(data)
4320 logger.debug(msg)
4321 return msg
4322
4323def sdn_controller_list(mydb, tenant_id, controller_id=None):
4324 if controller_id == None:
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02004325 data = ovim.get_of_controllers()
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01004326 else:
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02004327 data = ovim.show_of_controller(controller_id)
4328
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01004329 msg = 'SDN controller list:\n {}'.format(data)
4330 logger.debug(msg)
4331 return data
4332
4333def sdn_controller_delete(mydb, tenant_id, controller_id):
4334 select_ = ('uuid', 'config')
4335 datacenters = mydb.get_rows(FROM='datacenters', SELECT=select_)
4336 for datacenter in datacenters:
4337 if datacenter['config']:
4338 config = yaml.load(datacenter['config'])
4339 if 'sdn-controller' in config and config['sdn-controller'] == controller_id:
4340 raise NfvoException("SDN controller {} is in use by datacenter {}".format(controller_id, datacenter['uuid']), HTTP_Conflict)
4341
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02004342 data = ovim.delete_of_controller(controller_id)
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01004343 msg = 'SDN controller {} deleted'.format(data)
4344 logger.debug(msg)
4345 return msg
4346
4347def datacenter_sdn_port_mapping_set(mydb, tenant_id, datacenter_id, sdn_port_mapping):
4348 controller = mydb.get_rows(FROM="datacenters", SELECT=("config",), WHERE={"uuid":datacenter_id})
4349 if len(controller) < 1:
4350 raise NfvoException("Datacenter {} not present in the database".format(datacenter_id), HTTP_Not_Found)
4351
4352 try:
4353 sdn_controller_id = yaml.load(controller[0]["config"])["sdn-controller"]
4354 except:
4355 raise NfvoException("The datacenter {} has not an SDN controller associated".format(datacenter_id), HTTP_Bad_Request)
4356
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02004357 sdn_controller = ovim.show_of_controller(sdn_controller_id)
4358 switch_dpid = sdn_controller["dpid"]
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01004359
4360 maps = list()
4361 for compute_node in sdn_port_mapping:
4362 #element = {"ofc_id": sdn_controller_id, "region": datacenter_id, "switch_dpid": switch_dpid}
4363 element = dict()
4364 element["compute_node"] = compute_node["compute_node"]
4365 for port in compute_node["ports"]:
4366 element["pci"] = port.get("pci")
4367 element["switch_port"] = port.get("switch_port")
4368 element["switch_mac"] = port.get("switch_mac")
4369 if not element["pci"] or not (element["switch_port"] or element["switch_mac"]):
4370 raise NfvoException ("The mapping must contain the 'pci' and at least one of the elements 'switch_port'"
4371 " or 'switch_mac'", HTTP_Bad_Request)
4372 maps.append(dict(element))
4373
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02004374 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 +01004375
4376def datacenter_sdn_port_mapping_list(mydb, tenant_id, datacenter_id):
Pablo Montes Moreno7e0e9c62017-03-27 12:42:32 +02004377 maps = ovim.get_of_port_mappings(db_filter={"region": datacenter_id})
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01004378
4379 result = {
4380 "sdn-controller": None,
4381 "datacenter-id": datacenter_id,
4382 "dpid": None,
4383 "ports_mapping": list()
4384 }
4385
4386 datacenter = mydb.get_table_by_uuid_name('datacenters', datacenter_id)
4387 if datacenter['config']:
4388 config = yaml.load(datacenter['config'])
4389 if 'sdn-controller' in config:
4390 controller_id = config['sdn-controller']
4391 sdn_controller = sdn_controller_list(mydb, tenant_id, controller_id)
4392 result["sdn-controller"] = controller_id
4393 result["dpid"] = sdn_controller["dpid"]
4394
Pablo Montes Moreno6aa0b2b2017-05-23 18:33:12 +02004395 if result["sdn-controller"] == None:
4396 raise NfvoException("SDN controller is not defined for datacenter {}".format(datacenter_id), HTTP_Bad_Request)
4397 if result["dpid"] == None:
4398 raise NfvoException("It was not possible to determine DPID for SDN controller {}".format(result["sdn-controller"]),
4399 HTTP_Internal_Server_Error)
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +01004400
4401 if len(maps) == 0:
4402 return result
4403
4404 ports_correspondence_dict = dict()
4405 for link in maps:
4406 if result["sdn-controller"] != link["ofc_id"]:
4407 raise NfvoException("The sdn-controller specified for different port mappings differ", HTTP_Internal_Server_Error)
4408 if result["dpid"] != link["switch_dpid"]:
4409 raise NfvoException("The dpid specified for different port mappings differ", HTTP_Internal_Server_Error)
4410 element = dict()
4411 element["pci"] = link["pci"]
4412 if link["switch_port"]:
4413 element["switch_port"] = link["switch_port"]
4414 if link["switch_mac"]:
4415 element["switch_mac"] = link["switch_mac"]
4416
4417 if not link["compute_node"] in ports_correspondence_dict:
4418 content = dict()
4419 content["compute_node"] = link["compute_node"]
4420 content["ports"] = list()
4421 ports_correspondence_dict[link["compute_node"]] = content
4422
4423 ports_correspondence_dict[link["compute_node"]]["ports"].append(element)
4424
4425 for key in sorted(ports_correspondence_dict):
4426 result["ports_mapping"].append(ports_correspondence_dict[key])
4427
4428 return result
4429
4430def datacenter_sdn_port_mapping_delete(mydb, tenant_id, datacenter_id):
tierno639520f2017-04-05 19:55:36 +02004431 return ovim.clear_of_port_mapping(db_filter={"region":datacenter_id})
gcalvinoe580c7d2017-09-22 14:09:51 +02004432
4433def create_RO_keypair(tenant_id):
4434 """
4435 Creates a public / private keys for a RO tenant and returns their values
4436 Params:
4437 tenant_id: ID of the tenant
4438 Return:
4439 public_key: Public key for the RO tenant
4440 private_key: Encrypted private key for RO tenant
4441 """
4442
4443 bits = 2048
4444 key = RSA.generate(bits)
4445 try:
4446 public_key = key.publickey().exportKey('OpenSSH')
4447 if isinstance(public_key, ValueError):
4448 raise NfvoException("Unable to create public key: {}".format(public_key), HTTP_Internal_Server_Error)
4449 private_key = key.exportKey(passphrase=tenant_id, pkcs=8)
4450 except (ValueError, NameError) as e:
4451 raise NfvoException("Unable to create private key: {}".format(e), HTTP_Internal_Server_Error)
4452 return public_key, private_key
4453
4454def decrypt_key (key, tenant_id):
4455 """
4456 Decrypts an encrypted RSA key
4457 Params:
4458 key: Private key to be decrypted
4459 tenant_id: ID of the tenant
4460 Return:
4461 unencrypted_key: Unencrypted private key for RO tenant
4462 """
4463 try:
4464 key = RSA.importKey(key,tenant_id)
4465 unencrypted_key = key.exportKey('PEM')
4466 if isinstance(unencrypted_key, ValueError):
4467 raise NfvoException("Unable to decrypt the private key: {}".format(unencrypted_key), HTTP_Internal_Server_Error)
4468 except ValueError as e:
4469 raise NfvoException("Unable to decrypt the private key: {}".format(e), HTTP_Internal_Server_Error)
4470 return unencrypted_key