| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1 | # -*- 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 | ''' |
| 25 | NFVO 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 | |
| tierno | 361275f | 2017-04-25 16:24:34 +0200 | [diff] [blame] | 30 | # import imp |
| 31 | # import json |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 32 | import yaml |
| tierno | 42fcc3b | 2016-07-06 17:20:40 +0200 | [diff] [blame] | 33 | import utils |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 34 | import vim_thread |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 35 | from db_base import HTTP_Unauthorized, HTTP_Bad_Request, HTTP_Internal_Server_Error, HTTP_Not_Found,\ |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 36 | HTTP_Conflict, HTTP_Method_Not_Allowed |
| 37 | import console_proxy_thread as cli |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 38 | import vimconn |
| 39 | import logging |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 40 | import collections |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 41 | from db_base import db_base_Exception |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 42 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 43 | import nfvo_db |
| 44 | from threading import Lock |
| 45 | from time import time |
| tierno | 01b3e17 | 2017-04-21 10:52:34 +0200 | [diff] [blame] | 46 | from lib_osm_openvim import ovim as ovim_module |
| Pablo Montes Moreno | 6aa0b2b | 2017-05-23 18:33:12 +0200 | [diff] [blame] | 47 | from lib_osm_openvim.ovim import ovimException |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 48 | |
| 49 | global global_config |
| 50 | global vimconn_imported |
| tierno | 73ad9e4 | 2016-09-12 18:11:11 +0200 | [diff] [blame] | 51 | global logger |
| montesmoreno | 0c8def0 | 2016-12-22 12:16:23 +0000 | [diff] [blame] | 52 | global default_volume_size |
| 53 | default_volume_size = '5' #size in GB |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 54 | global ovim |
| 55 | ovim = None |
| tierno | c565179 | 2017-03-27 10:50:43 +0200 | [diff] [blame] | 56 | global_config = None |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 57 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 58 | vimconn_imported = {} # dictionary with VIM type as key, loaded module as value |
| 59 | vim_threads = {"running":{}, "deleting": {}, "names": []} # threads running for attached-VIMs |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 60 | vim_persistent_info = {} |
| tierno | 73ad9e4 | 2016-09-12 18:11:11 +0200 | [diff] [blame] | 61 | logger = logging.getLogger('openmano.nfvo') |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 62 | task_lock = Lock() |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 63 | global_instance_tasks = {} |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 64 | last_task_id = 0.0 |
| 65 | db=None |
| 66 | db_lock=Lock() |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 67 | |
| 68 | class NfvoException(Exception): |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 69 | def __init__(self, message, http_code): |
| 70 | self.http_code = http_code |
| 71 | Exception.__init__(self, message) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 72 | |
| 73 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 74 | def get_task_id(): |
| 75 | global last_task_id |
| 76 | task_id = time() |
| 77 | if task_id <= last_task_id: |
| 78 | task_id = last_task_id + 0.000001 |
| 79 | last_task_id = task_id |
| 80 | return "TASK.{:.6f}".format(task_id) |
| 81 | |
| 82 | |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 83 | def new_task(name, params, depends=None): |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 84 | task_id = get_task_id() |
| 85 | task = {"status": "enqueued", "id": task_id, "name": name, "params": params} |
| 86 | if depends: |
| 87 | task["depends"] = depends |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 88 | return task |
| 89 | |
| 90 | |
| 91 | def is_task_id(id): |
| 92 | return True if id[:5] == "TASK." else False |
| 93 | |
| 94 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 95 | def get_non_used_vim_name(datacenter_name, datacenter_id, tenant_name, tenant_id): |
| 96 | name = datacenter_name[:16] |
| 97 | if name not in vim_threads["names"]: |
| 98 | vim_threads["names"].append(name) |
| 99 | return name |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 100 | name = datacenter_name[:16] + "." + tenant_name[:16] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 101 | if name not in vim_threads["names"]: |
| 102 | vim_threads["names"].append(name) |
| 103 | return name |
| 104 | name = datacenter_id + "-" + tenant_id |
| 105 | vim_threads["names"].append(name) |
| 106 | return name |
| 107 | |
| 108 | |
| 109 | def start_service(mydb): |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 110 | global db, global_config |
| 111 | db = nfvo_db.nfvo_db() |
| 112 | db.connect(global_config['db_host'], global_config['db_user'], global_config['db_passwd'], global_config['db_name']) |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 113 | global ovim |
| 114 | |
| 115 | # Initialize openvim for SDN control |
| 116 | # TODO: Avoid static configuration by adding new parameters to openmanod.cfg |
| 117 | # TODO: review ovim.py to delete not needed configuration |
| 118 | ovim_configuration = { |
| tierno | 639520f | 2017-04-05 19:55:36 +0200 | [diff] [blame] | 119 | 'logger_name': 'openmano.ovim', |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 120 | 'network_vlan_range_start': 1000, |
| 121 | 'network_vlan_range_end': 4096, |
| tierno | 639520f | 2017-04-05 19:55:36 +0200 | [diff] [blame] | 122 | 'db_name': global_config["db_ovim_name"], |
| 123 | 'db_host': global_config["db_ovim_host"], |
| 124 | 'db_user': global_config["db_ovim_user"], |
| 125 | 'db_passwd': global_config["db_ovim_passwd"], |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 126 | 'bridge_ifaces': {}, |
| 127 | 'mode': 'normal', |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 128 | 'network_type': 'bridge', |
| 129 | #TODO: log_level_of should not be needed. To be modified in ovim |
| 130 | 'log_level_of': 'DEBUG' |
| 131 | } |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 132 | try: |
| tierno | 46df967 | 2017-05-26 13:12:21 +0200 | [diff] [blame] | 133 | ovim = ovim_module.ovim(ovim_configuration) |
| 134 | ovim.start_service() |
| 135 | |
| 136 | from_= 'tenants_datacenters as td join datacenters as d on td.datacenter_id=d.uuid join '\ |
| 137 | 'datacenter_tenants as dt on td.datacenter_tenant_id=dt.uuid' |
| 138 | select_ = ('type', 'd.config as config', 'd.uuid as datacenter_id', 'vim_url', 'vim_url_admin', |
| 139 | 'd.name as datacenter_name', 'dt.uuid as datacenter_tenant_id', |
| 140 | 'dt.vim_tenant_name as vim_tenant_name', 'dt.vim_tenant_id as vim_tenant_id', |
| 141 | 'user', 'passwd', 'dt.config as dt_config', 'nfvo_tenant_id') |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 142 | vims = mydb.get_rows(FROM=from_, SELECT=select_) |
| 143 | for vim in vims: |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 144 | extra={'datacenter_tenant_id': vim.get('datacenter_tenant_id'), |
| 145 | 'datacenter_id': vim.get('datacenter_id')} |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 146 | if vim["config"]: |
| 147 | extra.update(yaml.load(vim["config"])) |
| 148 | if vim.get('dt_config'): |
| 149 | extra.update(yaml.load(vim["dt_config"])) |
| 150 | if vim["type"] not in vimconn_imported: |
| 151 | module_info=None |
| 152 | try: |
| 153 | module = "vimconn_" + vim["type"] |
| tierno | 361275f | 2017-04-25 16:24:34 +0200 | [diff] [blame] | 154 | pkg = __import__("osm_ro." + module) |
| 155 | vim_conn = getattr(pkg, module) |
| 156 | # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]]) |
| 157 | # vim_conn = imp.load_module(vim["type"], *module_info) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 158 | vimconn_imported[vim["type"]] = vim_conn |
| 159 | except (IOError, ImportError) as e: |
| tierno | 361275f | 2017-04-25 16:24:34 +0200 | [diff] [blame] | 160 | # if module_info and module_info[0]: |
| 161 | # file.close(module_info[0]) |
| tierno | cdee8cc | 2017-04-25 13:42:06 +0200 | [diff] [blame] | 162 | raise NfvoException("Unknown vim type '{}'. Cannot open file '{}.py'; {}: {}".format( |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 163 | vim["type"], module, type(e).__name__, str(e)), HTTP_Bad_Request) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 164 | |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 165 | thread_id = vim['datacenter_tenant_id'] |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 166 | vim_persistent_info[thread_id] = {} |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 167 | try: |
| 168 | #if not tenant: |
| 169 | # return -HTTP_Bad_Request, "You must provide a valid tenant name or uuid for VIM %s" % ( vim["type"]) |
| 170 | myvim = vimconn_imported[ vim["type"] ].vimconnector( |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 171 | uuid=vim['datacenter_id'], name=vim['datacenter_name'], |
| 172 | tenant_id=vim['vim_tenant_id'], tenant_name=vim['vim_tenant_name'], |
| 173 | url=vim['vim_url'], url_admin=vim['vim_url_admin'], |
| 174 | user=vim['user'], passwd=vim['passwd'], |
| 175 | config=extra, persistent_info=vim_persistent_info[thread_id] |
| 176 | ) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 177 | except Exception as e: |
| tierno | 46df967 | 2017-05-26 13:12:21 +0200 | [diff] [blame] | 178 | raise NfvoException("Error at VIM {}; {}: {}".format(vim["type"], type(e).__name__, e), |
| 179 | HTTP_Internal_Server_Error) |
| 180 | thread_name = get_non_used_vim_name(vim['datacenter_name'], vim['vim_tenant_id'], vim['vim_tenant_name'], |
| 181 | vim['vim_tenant_id']) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 182 | new_thread = vim_thread.vim_thread(myvim, task_lock, thread_name, vim['datacenter_name'], |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 183 | vim['datacenter_tenant_id'], db=db, db_lock=db_lock, ovim=ovim) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 184 | new_thread.start() |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 185 | vim_threads["running"][thread_id] = new_thread |
| 186 | except db_base_Exception as e: |
| 187 | raise NfvoException(str(e) + " at nfvo.get_vim", e.http_code) |
| tierno | 46df967 | 2017-05-26 13:12:21 +0200 | [diff] [blame] | 188 | except ovim_module.ovimException as e: |
| 189 | message = str(e) |
| 190 | if message[:22] == "DATABASE wrong version": |
| 191 | message = "DATABASE wrong version of lib_osm_openvim {msg} -d{dbname} -u{dbuser} -p{dbpass} {ver}' "\ |
| 192 | "at host {dbhost}".format( |
| 193 | msg=message[22:-3], dbname=global_config["db_ovim_name"], |
| 194 | dbuser=global_config["db_ovim_user"], dbpass=global_config["db_ovim_passwd"], |
| 195 | ver=message[-3:-1], dbhost=global_config["db_ovim_host"]) |
| 196 | raise NfvoException(message, HTTP_Bad_Request) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 197 | |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 198 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 199 | def stop_service(): |
| tierno | c565179 | 2017-03-27 10:50:43 +0200 | [diff] [blame] | 200 | global ovim, global_config |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 201 | if ovim: |
| 202 | ovim.stop_service() |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 203 | for thread_id,thread in vim_threads["running"].items(): |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 204 | thread.insert_task(new_task("exit", None)) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 205 | vim_threads["deleting"][thread_id] = thread |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 206 | vim_threads["running"] = {} |
| tierno | c565179 | 2017-03-27 10:50:43 +0200 | [diff] [blame] | 207 | if global_config and global_config.get("console_thread"): |
| 208 | for thread in global_config["console_thread"]: |
| 209 | thread.terminate = True |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 210 | |
| tierno | 6ddeded | 2017-05-16 15:40:26 +0200 | [diff] [blame] | 211 | def get_version(): |
| 212 | return ("openmanod version {} {}\n(c) Copyright Telefonica".format(global_config["version"], |
| 213 | global_config["version_date"] )) |
| 214 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 215 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 216 | def get_flavorlist(mydb, vnf_id, nfvo_tenant=None): |
| 217 | '''Obtain flavorList |
| 218 | return result, content: |
| 219 | <0, error_text upon error |
| 220 | nb_records, flavor_list on success |
| 221 | ''' |
| 222 | WHERE_dict={} |
| 223 | WHERE_dict['vnf_id'] = vnf_id |
| 224 | if nfvo_tenant is not None: |
| 225 | WHERE_dict['nfvo_tenant_id'] = nfvo_tenant |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 226 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 227 | #result, content = mydb.get_table(FROM='vms join vnfs on vms.vnf_id = vnfs.uuid',SELECT=('uuid'),WHERE=WHERE_dict ) |
| 228 | #result, content = mydb.get_table(FROM='vms',SELECT=('vim_flavor_id',),WHERE=WHERE_dict ) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 229 | flavors = mydb.get_rows(FROM='vms join flavors on vms.flavor_id=flavors.uuid',SELECT=('flavor_id',),WHERE=WHERE_dict ) |
| 230 | #print "get_flavor_list result:", result |
| 231 | #print "get_flavor_list content:", content |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 232 | flavorList=[] |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 233 | for flavor in flavors: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 234 | flavorList.append(flavor['flavor_id']) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 235 | return flavorList |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 236 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 237 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 238 | def get_imagelist(mydb, vnf_id, nfvo_tenant=None): |
| 239 | '''Obtain imageList |
| 240 | return result, content: |
| 241 | <0, error_text upon error |
| 242 | nb_records, flavor_list on success |
| 243 | ''' |
| 244 | WHERE_dict={} |
| 245 | WHERE_dict['vnf_id'] = vnf_id |
| 246 | if nfvo_tenant is not None: |
| 247 | WHERE_dict['nfvo_tenant_id'] = nfvo_tenant |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 248 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 249 | #result, content = mydb.get_table(FROM='vms join vnfs on vms-vnf_id = vnfs.uuid',SELECT=('uuid'),WHERE=WHERE_dict ) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 250 | images = mydb.get_rows(FROM='vms join images on vms.image_id=images.uuid',SELECT=('image_id',),WHERE=WHERE_dict ) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 251 | imageList=[] |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 252 | for image in images: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 253 | imageList.append(image['image_id']) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 254 | return imageList |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 255 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 256 | |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 257 | def get_vim(mydb, nfvo_tenant=None, datacenter_id=None, datacenter_name=None, datacenter_tenant_id=None, |
| 258 | vim_tenant=None, vim_tenant_name=None, vim_user=None, vim_passwd=None): |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 259 | '''Obtain a dictionary of VIM (datacenter) classes with some of the input parameters |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 260 | return dictionary with {datacenter_id: vim_class, ... }. vim_class contain: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 261 | 'nfvo_tenant_id','datacenter_id','vim_tenant_id','vim_url','vim_url_admin','datacenter_name','type','user','passwd' |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 262 | raise exception upon error |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 263 | ''' |
| 264 | WHERE_dict={} |
| 265 | if nfvo_tenant is not None: WHERE_dict['nfvo_tenant_id'] = nfvo_tenant |
| 266 | if datacenter_id is not None: WHERE_dict['d.uuid'] = datacenter_id |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 267 | if datacenter_tenant_id is not None: WHERE_dict['datacenter_tenant_id'] = datacenter_tenant_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 268 | if datacenter_name is not None: WHERE_dict['d.name'] = datacenter_name |
| 269 | if vim_tenant is not None: WHERE_dict['dt.vim_tenant_id'] = vim_tenant |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 270 | if vim_tenant_name is not None: WHERE_dict['vim_tenant_name'] = vim_tenant_name |
| 271 | if nfvo_tenant or vim_tenant or vim_tenant_name or datacenter_tenant_id: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 272 | 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' |
| tierno | 8008c3a | 2016-10-13 15:34:28 +0000 | [diff] [blame] | 273 | select_ = ('type','d.config as config','d.uuid as datacenter_id', 'vim_url', 'vim_url_admin', 'd.name as datacenter_name', |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 274 | 'dt.uuid as datacenter_tenant_id','dt.vim_tenant_name as vim_tenant_name','dt.vim_tenant_id as vim_tenant_id', |
| tierno | 8008c3a | 2016-10-13 15:34:28 +0000 | [diff] [blame] | 275 | 'user','passwd', 'dt.config as dt_config') |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 276 | else: |
| 277 | from_ = 'datacenters as d' |
| 278 | select_ = ('type','config','d.uuid as datacenter_id', 'vim_url', 'vim_url_admin', 'd.name as datacenter_name') |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 279 | try: |
| 280 | vims = mydb.get_rows(FROM=from_, SELECT=select_, WHERE=WHERE_dict ) |
| 281 | vim_dict={} |
| 282 | for vim in vims: |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 283 | extra={'datacenter_tenant_id': vim.get('datacenter_tenant_id'), |
| 284 | 'datacenter_id': vim.get('datacenter_id')} |
| tierno | 8008c3a | 2016-10-13 15:34:28 +0000 | [diff] [blame] | 285 | if vim["config"]: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 286 | extra.update(yaml.load(vim["config"])) |
| tierno | 8008c3a | 2016-10-13 15:34:28 +0000 | [diff] [blame] | 287 | if vim.get('dt_config'): |
| 288 | extra.update(yaml.load(vim["dt_config"])) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 289 | if vim["type"] not in vimconn_imported: |
| 290 | module_info=None |
| 291 | try: |
| 292 | module = "vimconn_" + vim["type"] |
| tierno | 361275f | 2017-04-25 16:24:34 +0200 | [diff] [blame] | 293 | pkg = __import__("osm_ro." + module) |
| 294 | vim_conn = getattr(pkg, module) |
| 295 | # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]]) |
| 296 | # vim_conn = imp.load_module(vim["type"], *module_info) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 297 | vimconn_imported[vim["type"]] = vim_conn |
| 298 | except (IOError, ImportError) as e: |
| tierno | 361275f | 2017-04-25 16:24:34 +0200 | [diff] [blame] | 299 | # if module_info and module_info[0]: |
| 300 | # file.close(module_info[0]) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 301 | raise NfvoException("Unknown vim type '{}'. Can not open file '{}.py'; {}: {}".format( |
| 302 | vim["type"], module, type(e).__name__, str(e)), HTTP_Bad_Request) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 303 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 304 | try: |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 305 | if 'datacenter_tenant_id' in vim: |
| 306 | thread_id = vim["datacenter_tenant_id"] |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 307 | if thread_id not in vim_persistent_info: |
| 308 | vim_persistent_info[thread_id] = {} |
| 309 | persistent_info = vim_persistent_info[thread_id] |
| 310 | else: |
| 311 | persistent_info = {} |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 312 | #if not tenant: |
| 313 | # return -HTTP_Bad_Request, "You must provide a valid tenant name or uuid for VIM %s" % ( vim["type"]) |
| 314 | vim_dict[ vim['datacenter_id'] ] = vimconn_imported[ vim["type"] ].vimconnector( |
| 315 | uuid=vim['datacenter_id'], name=vim['datacenter_name'], |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 316 | tenant_id=vim.get('vim_tenant_id',vim_tenant), |
| 317 | tenant_name=vim.get('vim_tenant_name',vim_tenant_name), |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 318 | url=vim['vim_url'], url_admin=vim['vim_url_admin'], |
| tierno | 3ae3974 | 2016-09-07 12:17:51 +0200 | [diff] [blame] | 319 | user=vim.get('user',vim_user), passwd=vim.get('passwd',vim_passwd), |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 320 | config=extra, persistent_info=persistent_info |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 321 | ) |
| 322 | except Exception as e: |
| 323 | raise NfvoException("Error at VIM {}; {}: {}".format(vim["type"], type(e).__name__, str(e)), HTTP_Internal_Server_Error) |
| 324 | return vim_dict |
| 325 | except db_base_Exception as e: |
| 326 | raise NfvoException(str(e) + " at nfvo.get_vim", e.http_code) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 327 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 328 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 329 | def rollback(mydb, vims, rollback_list): |
| 330 | undeleted_items=[] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 331 | #delete things by reverse order |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 332 | for i in range(len(rollback_list)-1, -1, -1): |
| 333 | item = rollback_list[i] |
| 334 | if item["where"]=="vim": |
| 335 | if item["vim_id"] not in vims: |
| 336 | continue |
| 337 | vim=vims[ item["vim_id"] ] |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 338 | try: |
| 339 | if item["what"]=="image": |
| 340 | vim.delete_image(item["uuid"]) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 341 | mydb.delete_row(FROM="datacenters_images", WHERE={"datacenter_id": vim["id"], "vim_id":item["uuid"]}) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 342 | elif item["what"]=="flavor": |
| 343 | vim.delete_flavor(item["uuid"]) |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 344 | mydb.delete_row(FROM="datacenters_flavors", WHERE={"datacenter_id": vim["id"], "vim_id":item["uuid"]}) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 345 | elif item["what"]=="network": |
| 346 | vim.delete_network(item["uuid"]) |
| 347 | elif item["what"]=="vm": |
| 348 | vim.delete_vminstance(item["uuid"]) |
| 349 | except vimconn.vimconnException as e: |
| 350 | logger.error("Error in rollback. Not possible to delete VIM %s '%s'. Message: %s", item['what'], item["uuid"], str(e)) |
| 351 | undeleted_items.append("{} {} from VIM {}".format(item['what'], item["uuid"], vim["name"])) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 352 | except db_base_Exception as e: |
| 353 | logger.error("Error in rollback. Not possible to delete %s '%s' from DB.datacenters Message: %s", item['what'], item["uuid"], str(e)) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 354 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 355 | else: # where==mano |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 356 | try: |
| 357 | if item["what"]=="image": |
| 358 | mydb.delete_row(FROM="images", WHERE={"uuid": item["uuid"]}) |
| 359 | elif item["what"]=="flavor": |
| 360 | mydb.delete_row(FROM="flavors", WHERE={"uuid": item["uuid"]}) |
| 361 | except db_base_Exception as e: |
| 362 | logger.error("Error in rollback. Not possible to delete %s '%s' from DB. Message: %s", item['what'], item["uuid"], str(e)) |
| 363 | undeleted_items.append("{} '{}'".format(item['what'], item["uuid"])) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 364 | if len(undeleted_items)==0: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 365 | return True," Rollback successful." |
| 366 | else: |
| 367 | return False," Rollback fails to delete: " + str(undeleted_items) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 368 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 369 | |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 370 | def check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=1): |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 371 | global global_config |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 372 | #create a dictionary with vnfc-name: vnfc:interface-list key:values pairs |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 373 | vnfc_interfaces={} |
| 374 | for vnfc in vnf_descriptor["vnf"]["VNFC"]: |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 375 | name_dict = {} |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 376 | #dataplane interfaces |
| 377 | for numa in vnfc.get("numas",() ): |
| 378 | for interface in numa.get("interfaces",()): |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 379 | if interface["name"] in name_dict: |
| 380 | raise NfvoException( |
| 381 | "Error at vnf:VNFC[name:'{}']:numas:interfaces:name, interface name '{}' already used in this VNFC".format( |
| 382 | vnfc["name"], interface["name"]), |
| 383 | HTTP_Bad_Request) |
| 384 | name_dict[ interface["name"] ] = "underlay" |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 385 | #bridge interfaces |
| 386 | for interface in vnfc.get("bridge-ifaces",() ): |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 387 | if interface["name"] in name_dict: |
| 388 | raise NfvoException( |
| 389 | "Error at vnf:VNFC[name:'{}']:bridge-ifaces:name, interface name '{}' already used in this VNFC".format( |
| 390 | vnfc["name"], interface["name"]), |
| 391 | HTTP_Bad_Request) |
| 392 | name_dict[ interface["name"] ] = "overlay" |
| 393 | vnfc_interfaces[ vnfc["name"] ] = name_dict |
| tierno | 36c0b17 | 2017-01-12 18:32:28 +0100 | [diff] [blame] | 394 | # check bood-data info |
| 395 | if "boot-data" in vnfc: |
| 396 | # check that user-data is incompatible with users and config-files |
| 397 | if (vnfc["boot-data"].get("users") or vnfc["boot-data"].get("config-files")) and vnfc["boot-data"].get("user-data"): |
| 398 | raise NfvoException( |
| 399 | "Error at vnf:VNFC:boot-data, fields 'users' and 'config-files' are not compatible with 'user-data'", |
| 400 | HTTP_Bad_Request) |
| 401 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 402 | #check if the info in external_connections matches with the one in the vnfcs |
| 403 | name_list=[] |
| 404 | for external_connection in vnf_descriptor["vnf"].get("external-connections",() ): |
| 405 | if external_connection["name"] in name_list: |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 406 | raise NfvoException( |
| 407 | "Error at vnf:external-connections:name, value '{}' already used as an external-connection".format( |
| 408 | external_connection["name"]), |
| 409 | HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 410 | name_list.append(external_connection["name"]) |
| 411 | if external_connection["VNFC"] not in vnfc_interfaces: |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 412 | raise NfvoException( |
| 413 | "Error at vnf:external-connections[name:'{}']:VNFC, value '{}' does not match any VNFC".format( |
| 414 | external_connection["name"], external_connection["VNFC"]), |
| 415 | HTTP_Bad_Request) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 416 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 417 | if external_connection["local_iface_name"] not in vnfc_interfaces[ external_connection["VNFC"] ]: |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 418 | raise NfvoException( |
| 419 | "Error at vnf:external-connections[name:'{}']:local_iface_name, value '{}' does not match any interface of this VNFC".format( |
| 420 | external_connection["name"], |
| 421 | external_connection["local_iface_name"]), |
| 422 | HTTP_Bad_Request ) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 423 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 424 | #check if the info in internal_connections matches with the one in the vnfcs |
| 425 | name_list=[] |
| 426 | for internal_connection in vnf_descriptor["vnf"].get("internal-connections",() ): |
| 427 | if internal_connection["name"] in name_list: |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 428 | raise NfvoException( |
| 429 | "Error at vnf:internal-connections:name, value '%s' already used as an internal-connection".format( |
| 430 | internal_connection["name"]), |
| 431 | HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 432 | name_list.append(internal_connection["name"]) |
| 433 | #We should check that internal-connections of type "ptp" have only 2 elements |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 434 | |
| 435 | if len(internal_connection["elements"])>2 and (internal_connection.get("type") == "ptp" or internal_connection.get("type") == "e-line"): |
| 436 | raise NfvoException( |
| 437 | "Error at 'vnf:internal-connections[name:'{}']:elements', size must be 2 for a '{}' type. Consider change it to '{}' type".format( |
| 438 | internal_connection["name"], |
| 439 | 'ptp' if vnf_descriptor_version==1 else 'e-line', |
| 440 | 'data' if vnf_descriptor_version==1 else "e-lan"), |
| 441 | HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 442 | for port in internal_connection["elements"]: |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 443 | vnf = port["VNFC"] |
| 444 | iface = port["local_iface_name"] |
| 445 | if vnf not in vnfc_interfaces: |
| 446 | raise NfvoException( |
| 447 | "Error at vnf:internal-connections[name:'{}']:elements[]:VNFC, value '{}' does not match any VNFC".format( |
| 448 | internal_connection["name"], vnf), |
| 449 | HTTP_Bad_Request) |
| 450 | if iface not in vnfc_interfaces[ vnf ]: |
| 451 | raise NfvoException( |
| 452 | "Error at vnf:internal-connections[name:'{}']:elements[]:local_iface_name, value '{}' does not match any interface of this VNFC".format( |
| 453 | internal_connection["name"], iface), |
| 454 | HTTP_Bad_Request) |
| 455 | return -HTTP_Bad_Request, |
| 456 | if vnf_descriptor_version==1 and "type" not in internal_connection: |
| 457 | if vnfc_interfaces[vnf][iface] == "overlay": |
| 458 | internal_connection["type"] = "bridge" |
| 459 | else: |
| 460 | internal_connection["type"] = "data" |
| 461 | if vnf_descriptor_version==2 and "implementation" not in internal_connection: |
| 462 | if vnfc_interfaces[vnf][iface] == "overlay": |
| 463 | internal_connection["implementation"] = "overlay" |
| 464 | else: |
| 465 | internal_connection["implementation"] = "underlay" |
| 466 | if (internal_connection.get("type") == "data" or internal_connection.get("type") == "ptp" or \ |
| 467 | internal_connection.get("implementation") == "underlay") and vnfc_interfaces[vnf][iface] == "overlay": |
| 468 | raise NfvoException( |
| 469 | "Error at vnf:internal-connections[name:'{}']:elements[]:{}, interface of type {} connected to an {} network".format( |
| 470 | internal_connection["name"], |
| 471 | iface, 'bridge' if vnf_descriptor_version==1 else 'overlay', |
| 472 | 'data' if vnf_descriptor_version==1 else 'underlay'), |
| 473 | HTTP_Bad_Request) |
| 474 | if (internal_connection.get("type") == "bridge" or internal_connection.get("implementation") == "overlay") and \ |
| 475 | vnfc_interfaces[vnf][iface] == "underlay": |
| 476 | raise NfvoException( |
| 477 | "Error at vnf:internal-connections[name:'{}']:elements[]:{}, interface of type {} connected to an {} network".format( |
| 478 | internal_connection["name"], iface, |
| 479 | 'data' if vnf_descriptor_version==1 else 'underlay', |
| 480 | 'bridge' if vnf_descriptor_version==1 else 'overlay'), |
| 481 | HTTP_Bad_Request) |
| 482 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 483 | |
| tierno | 5e91eb8 | 2016-10-04 09:39:07 +0000 | [diff] [blame] | 484 | def create_or_use_image(mydb, vims, image_dict, rollback_list, only_create_at_vim=False, return_on_error = None): |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 485 | #look if image exist |
| 486 | if only_create_at_vim: |
| 487 | image_mano_id = image_dict['uuid'] |
| tierno | 5e91eb8 | 2016-10-04 09:39:07 +0000 | [diff] [blame] | 488 | if return_on_error == None: |
| 489 | return_on_error = True |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 490 | else: |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 491 | if image_dict['location']: |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 492 | images = mydb.get_rows(FROM="images", WHERE={'location':image_dict['location'], 'metadata':image_dict['metadata']}) |
| 493 | else: |
| 494 | images = mydb.get_rows(FROM="images", WHERE={'universal_name':image_dict['universal_name'], 'checksum':image_dict['checksum']}) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 495 | if len(images)>=1: |
| 496 | image_mano_id = images[0]['uuid'] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 497 | else: |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 498 | #create image in MANO DB |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 499 | temp_image_dict={'name':image_dict['name'], 'description':image_dict.get('description',None), |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 500 | 'location':image_dict['location'], 'metadata':image_dict.get('metadata',None), |
| 501 | 'universal_name':image_dict['universal_name'] , 'checksum':image_dict['checksum'] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 502 | } |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 503 | #temp_image_dict['location'] = image_dict.get('new_location') if image_dict['location'] is None |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 504 | image_mano_id = mydb.new_row('images', temp_image_dict, add_uuid=True) |
| 505 | rollback_list.append({"where":"mano", "what":"image","uuid":image_mano_id}) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 506 | #create image at every vim |
| 507 | for vim_id,vim in vims.iteritems(): |
| 508 | image_created="false" |
| 509 | #look at database |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 510 | image_db = mydb.get_rows(FROM="datacenters_images", WHERE={'datacenter_id':vim_id, 'image_id':image_mano_id}) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 511 | #look at VIM if this image exist |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 512 | try: |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 513 | if image_dict['location'] is not None: |
| 514 | image_vim_id = vim.get_image_id_from_path(image_dict['location']) |
| 515 | else: |
| garciadeblas | 3083338 | 2017-01-09 09:46:31 +0100 | [diff] [blame] | 516 | filter_dict = {} |
| 517 | filter_dict['name'] = image_dict['universal_name'] |
| 518 | if image_dict.get('checksum') != None: |
| 519 | filter_dict['checksum'] = image_dict['checksum'] |
| garciadeblas | bb6a1ed | 2016-09-30 14:02:09 +0000 | [diff] [blame] | 520 | #logger.debug('>>>>>>>> Filter dict: %s', str(filter_dict)) |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 521 | vim_images = vim.get_image_list(filter_dict) |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 522 | #logger.debug('>>>>>>>> VIM images: %s', str(vim_images)) |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 523 | if len(vim_images) > 1: |
| garciadeblas | 3fa2c05 | 2017-01-05 12:00:08 +0100 | [diff] [blame] | 524 | raise vimconn.vimconnException("More than one candidate VIM image found for filter: {}".format(str(filter_dict)), HTTP_Conflict) |
| garciadeblas | bb6a1ed | 2016-09-30 14:02:09 +0000 | [diff] [blame] | 525 | elif len(vim_images) == 0: |
| garciadeblas | 3fa2c05 | 2017-01-05 12:00:08 +0100 | [diff] [blame] | 526 | raise vimconn.vimconnNotFoundException("Image not found at VIM with filter: '{}'".format(str(filter_dict))) |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 527 | else: |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 528 | #logger.debug('>>>>>>>> VIM image 0: %s', str(vim_images[0])) |
| 529 | image_vim_id = vim_images[0]['id'] |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 530 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 531 | except vimconn.vimconnNotFoundException as e: |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 532 | #Create the image in VIM only if image_dict['location'] or image_dict['new_location'] is not None |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 533 | try: |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 534 | #image_dict['location']=image_dict.get('new_location') if image_dict['location'] is None |
| 535 | if image_dict['location']: |
| 536 | image_vim_id = vim.new_image(image_dict) |
| 537 | rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"image","uuid":image_vim_id}) |
| 538 | image_created="true" |
| 539 | else: |
| garciadeblas | b6153a2 | 2017-02-06 15:38:33 +0100 | [diff] [blame] | 540 | #If we reach this point, then the image has image name, and optionally checksum, and could not be found |
| 541 | raise vimconn.vimconnException(str(e)) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 542 | except vimconn.vimconnException as e: |
| 543 | if return_on_error: |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 544 | logger.error("Error creating image at VIM '%s': %s", vim["name"], str(e)) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 545 | raise |
| tierno | 5e91eb8 | 2016-10-04 09:39:07 +0000 | [diff] [blame] | 546 | image_vim_id = None |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 547 | logger.warn("Error creating image at VIM '%s': %s", vim["name"], str(e)) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 548 | continue |
| 549 | except vimconn.vimconnException as e: |
| tierno | 5e91eb8 | 2016-10-04 09:39:07 +0000 | [diff] [blame] | 550 | if return_on_error: |
| 551 | logger.error("Error contacting VIM to know if the image exists at VIM: %s", str(e)) |
| 552 | raise |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 553 | logger.warn("Error contacting VIM to know if the image exists at VIM: %s", str(e)) |
| tierno | 5e91eb8 | 2016-10-04 09:39:07 +0000 | [diff] [blame] | 554 | image_vim_id = None |
| garciadeblas | 3083338 | 2017-01-09 09:46:31 +0100 | [diff] [blame] | 555 | continue |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 556 | #if we reach here, the image has been created or existed |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 557 | if len(image_db)==0: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 558 | #add new vim_id at datacenters_images |
| 559 | mydb.new_row('datacenters_images', {'datacenter_id':vim_id, 'image_id':image_mano_id, 'vim_id': image_vim_id, 'created':image_created}) |
| 560 | elif image_db[0]["vim_id"]!=image_vim_id: |
| 561 | #modify existing vim_id at datacenters_images |
| 562 | mydb.update_rows('datacenters_images', UPDATE={'vim_id':image_vim_id}, WHERE={'datacenter_id':vim_id, 'image_id':image_mano_id}) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 563 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 564 | return image_vim_id if only_create_at_vim else image_mano_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 565 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 566 | |
| tierno | 5e91eb8 | 2016-10-04 09:39:07 +0000 | [diff] [blame] | 567 | def create_or_use_flavor(mydb, vims, flavor_dict, rollback_list, only_create_at_vim=False, return_on_error = None): |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 568 | temp_flavor_dict= {'disk':flavor_dict.get('disk',1), |
| 569 | 'ram':flavor_dict.get('ram'), |
| 570 | 'vcpus':flavor_dict.get('vcpus'), |
| 571 | } |
| 572 | if 'extended' in flavor_dict and flavor_dict['extended']==None: |
| 573 | del flavor_dict['extended'] |
| 574 | if 'extended' in flavor_dict: |
| 575 | temp_flavor_dict['extended']=yaml.safe_dump(flavor_dict['extended'],default_flow_style=True,width=256) |
| 576 | |
| 577 | #look if flavor exist |
| 578 | if only_create_at_vim: |
| 579 | flavor_mano_id = flavor_dict['uuid'] |
| tierno | 5e91eb8 | 2016-10-04 09:39:07 +0000 | [diff] [blame] | 580 | if return_on_error == None: |
| 581 | return_on_error = True |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 582 | else: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 583 | flavors = mydb.get_rows(FROM="flavors", WHERE=temp_flavor_dict) |
| 584 | if len(flavors)>=1: |
| 585 | flavor_mano_id = flavors[0]['uuid'] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 586 | else: |
| 587 | #create flavor |
| 588 | #create one by one the images of aditional disks |
| 589 | dev_image_list=[] #list of images |
| 590 | if 'extended' in flavor_dict and flavor_dict['extended']!=None: |
| 591 | dev_nb=0 |
| 592 | for device in flavor_dict['extended'].get('devices',[]): |
| garciadeblas | 41f18be | 2016-10-04 09:09:58 +0200 | [diff] [blame] | 593 | if "image" not in device and "image name" not in device: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 594 | continue |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 595 | image_dict={} |
| 596 | image_dict['name']=device.get('image name',flavor_dict['name']+str(dev_nb)+"-img") |
| 597 | image_dict['universal_name']=device.get('image name') |
| 598 | image_dict['description']=flavor_dict['name']+str(dev_nb)+"-img" |
| 599 | image_dict['location']=device.get('image') |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 600 | #image_dict['new_location']=vnfc.get('image location') |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 601 | image_dict['checksum']=device.get('image checksum') |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 602 | image_metadata_dict = device.get('image metadata', None) |
| 603 | image_metadata_str = None |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 604 | if image_metadata_dict != None: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 605 | image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256) |
| 606 | image_dict['metadata']=image_metadata_str |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 607 | image_id = create_or_use_image(mydb, vims, image_dict, rollback_list) |
| 608 | #print "Additional disk image id for VNFC %s: %s" % (flavor_dict['name']+str(dev_nb)+"-img", image_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 609 | dev_image_list.append(image_id) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 610 | dev_nb += 1 |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 611 | temp_flavor_dict['name'] = flavor_dict['name'] |
| 612 | temp_flavor_dict['description'] = flavor_dict.get('description',None) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 613 | content = mydb.new_row('flavors', temp_flavor_dict, add_uuid=True) |
| 614 | flavor_mano_id= content |
| 615 | rollback_list.append({"where":"mano", "what":"flavor","uuid":flavor_mano_id}) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 616 | #create flavor at every vim |
| 617 | if 'uuid' in flavor_dict: |
| 618 | del flavor_dict['uuid'] |
| 619 | flavor_vim_id=None |
| 620 | for vim_id,vim in vims.items(): |
| 621 | flavor_created="false" |
| 622 | #look at database |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 623 | flavor_db = mydb.get_rows(FROM="datacenters_flavors", WHERE={'datacenter_id':vim_id, 'flavor_id':flavor_mano_id}) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 624 | #look at VIM if this flavor exist SKIPPED |
| 625 | #res_vim, flavor_vim_id = vim.get_flavor_id_from_path(flavor_dict['location']) |
| 626 | #if res_vim < 0: |
| 627 | # print "Error contacting VIM to know if the flavor %s existed previously." %flavor_vim_id |
| 628 | # continue |
| 629 | #elif res_vim==0: |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 630 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 631 | #Create the flavor in VIM |
| 632 | #Translate images at devices from MANO id to VIM id |
| montesmoreno | 0c8def0 | 2016-12-22 12:16:23 +0000 | [diff] [blame] | 633 | disk_list = [] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 634 | if 'extended' in flavor_dict and flavor_dict['extended']!=None and "devices" in flavor_dict['extended']: |
| 635 | #make a copy of original devices |
| 636 | devices_original=[] |
| montesmoreno | 0c8def0 | 2016-12-22 12:16:23 +0000 | [diff] [blame] | 637 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 638 | for device in flavor_dict["extended"].get("devices",[]): |
| 639 | dev={} |
| 640 | dev.update(device) |
| 641 | devices_original.append(dev) |
| 642 | if 'image' in device: |
| 643 | del device['image'] |
| 644 | if 'image metadata' in device: |
| 645 | del device['image metadata'] |
| 646 | dev_nb=0 |
| 647 | for index in range(0,len(devices_original)) : |
| 648 | device=devices_original[index] |
| montesmoreno | 0c8def0 | 2016-12-22 12:16:23 +0000 | [diff] [blame] | 649 | if "image" not in device and "image name" not in device: |
| 650 | if 'size' in device: |
| 651 | disk_list.append({'size': device.get('size', default_volume_size)}) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 652 | continue |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 653 | image_dict={} |
| 654 | image_dict['name']=device.get('image name',flavor_dict['name']+str(dev_nb)+"-img") |
| 655 | image_dict['universal_name']=device.get('image name') |
| 656 | image_dict['description']=flavor_dict['name']+str(dev_nb)+"-img" |
| 657 | image_dict['location']=device.get('image') |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 658 | #image_dict['new_location']=device.get('image location') |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 659 | image_dict['checksum']=device.get('image checksum') |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 660 | image_metadata_dict = device.get('image metadata', None) |
| 661 | image_metadata_str = None |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 662 | if image_metadata_dict != None: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 663 | image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256) |
| 664 | image_dict['metadata']=image_metadata_str |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 665 | image_mano_id=create_or_use_image(mydb, vims, image_dict, rollback_list, only_create_at_vim=False, return_on_error=return_on_error ) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 666 | image_dict["uuid"]=image_mano_id |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 667 | image_vim_id=create_or_use_image(mydb, vims, image_dict, rollback_list, only_create_at_vim=True, return_on_error=return_on_error) |
| montesmoreno | 0c8def0 | 2016-12-22 12:16:23 +0000 | [diff] [blame] | 668 | |
| 669 | #save disk information (image must be based on and size |
| 670 | disk_list.append({'image_id': image_vim_id, 'size': device.get('size', default_volume_size)}) |
| 671 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 672 | flavor_dict["extended"]["devices"][index]['imageRef']=image_vim_id |
| 673 | dev_nb += 1 |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 674 | if len(flavor_db)>0: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 675 | #check that this vim_id exist in VIM, if not create |
| 676 | flavor_vim_id=flavor_db[0]["vim_id"] |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 677 | try: |
| 678 | vim.get_flavor(flavor_vim_id) |
| 679 | continue #flavor exist |
| 680 | except vimconn.vimconnException: |
| 681 | pass |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 682 | #create flavor at vim |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 683 | logger.debug("nfvo.create_or_use_flavor() adding flavor to VIM %s", vim["name"]) |
| 684 | try: |
| tierno | cf157a8 | 2017-01-30 14:07:06 +0100 | [diff] [blame] | 685 | flavor_vim_id = None |
| 686 | flavor_vim_id=vim.get_flavor_id_from_data(flavor_dict) |
| 687 | flavor_create="false" |
| 688 | except vimconn.vimconnException as e: |
| 689 | pass |
| 690 | try: |
| 691 | if not flavor_vim_id: |
| 692 | flavor_vim_id = vim.new_flavor(flavor_dict) |
| 693 | rollback_list.append({"where":"vim", "vim_id": vim_id, "what":"flavor","uuid":flavor_vim_id}) |
| 694 | flavor_created="true" |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 695 | except vimconn.vimconnException as e: |
| 696 | if return_on_error: |
| 697 | logger.error("Error creating flavor at VIM %s: %s.", vim["name"], str(e)) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 698 | raise |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 699 | logger.warn("Error creating flavor at VIM %s: %s.", vim["name"], str(e)) |
| tierno | 5e91eb8 | 2016-10-04 09:39:07 +0000 | [diff] [blame] | 700 | flavor_vim_id = None |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 701 | continue |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 702 | #if reach here the flavor has been create or exist |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 703 | if len(flavor_db)==0: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 704 | #add new vim_id at datacenters_flavors |
| montesmoreno | 0c8def0 | 2016-12-22 12:16:23 +0000 | [diff] [blame] | 705 | extended_devices_yaml = None |
| 706 | if len(disk_list) > 0: |
| 707 | extended_devices = dict() |
| 708 | extended_devices['disks'] = disk_list |
| 709 | extended_devices_yaml = yaml.safe_dump(extended_devices,default_flow_style=True,width=256) |
| 710 | mydb.new_row('datacenters_flavors', |
| 711 | {'datacenter_id':vim_id, 'flavor_id':flavor_mano_id, 'vim_id': flavor_vim_id, |
| 712 | 'created':flavor_created,'extended': extended_devices_yaml}) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 713 | elif flavor_db[0]["vim_id"]!=flavor_vim_id: |
| 714 | #modify existing vim_id at datacenters_flavors |
| 715 | mydb.update_rows('datacenters_flavors', UPDATE={'vim_id':flavor_vim_id}, WHERE={'datacenter_id':vim_id, 'flavor_id':flavor_mano_id}) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 716 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 717 | return flavor_vim_id if only_create_at_vim else flavor_mano_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 718 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 719 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 720 | def new_vnf(mydb, tenant_id, vnf_descriptor): |
| 721 | global global_config |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 722 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 723 | # Step 1. Check the VNF descriptor |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 724 | check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=1) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 725 | # Step 2. Check tenant exist |
| tierno | d29b1d3 | 2017-01-25 11:02:52 +0100 | [diff] [blame] | 726 | vims = {} |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 727 | if tenant_id != "any": |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 728 | check_tenant(mydb, tenant_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 729 | if "tenant_id" in vnf_descriptor["vnf"]: |
| 730 | if vnf_descriptor["vnf"]["tenant_id"] != tenant_id: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 731 | raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id), |
| 732 | HTTP_Unauthorized) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 733 | else: |
| 734 | vnf_descriptor['vnf']['tenant_id'] = tenant_id |
| 735 | # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter |
| tierno | d29b1d3 | 2017-01-25 11:02:52 +0100 | [diff] [blame] | 736 | if global_config["auto_push_VNF_to_VIMs"]: |
| 737 | vims = get_vim(mydb, tenant_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 738 | |
| 739 | # Step 4. Review the descriptor and add missing fields |
| 740 | #print vnf_descriptor |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 741 | #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)") |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 742 | vnf_name = vnf_descriptor['vnf']['name'] |
| 743 | vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name) |
| 744 | if "physical" in vnf_descriptor['vnf']: |
| 745 | del vnf_descriptor['vnf']['physical'] |
| 746 | #print vnf_descriptor |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 747 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 748 | # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 749 | logger.debug('BEGIN creation of VNF "%s"' % vnf_name) |
| 750 | logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC']))) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 751 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 752 | #For each VNFC, we add it to the VNFCDict and we create a flavor. |
| 753 | VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database |
| 754 | rollback_list = [] # It will contain the new images created in mano. It is used for rollback |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 755 | try: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 756 | logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC") |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 757 | for vnfc in vnf_descriptor['vnf']['VNFC']: |
| 758 | VNFCitem={} |
| 759 | VNFCitem["name"] = vnfc['name'] |
| 760 | VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name)) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 761 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 762 | #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"]) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 763 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 764 | myflavorDict = {} |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 765 | myflavorDict["name"] = vnfc['name']+"-flv" #Maybe we could rename the flavor by using the field "image name" if exists |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 766 | myflavorDict["description"] = VNFCitem["description"] |
| 767 | myflavorDict["ram"] = vnfc.get("ram", 0) |
| 768 | myflavorDict["vcpus"] = vnfc.get("vcpus", 0) |
| 769 | myflavorDict["disk"] = vnfc.get("disk", 1) |
| 770 | myflavorDict["extended"] = {} |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 771 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 772 | devices = vnfc.get("devices") |
| 773 | if devices != None: |
| 774 | myflavorDict["extended"]["devices"] = devices |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 775 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 776 | # TODO: |
| 777 | # Mapping from processor models to rankings should be available somehow in the NFVO. They could be taken from VIM or directly from a new database table |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 778 | # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host |
| 779 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 780 | # Previous code has been commented |
| 781 | #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" : |
| 782 | # myflavorDict["flavor"]['extended']['processor_ranking'] = 200 |
| 783 | #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" : |
| 784 | # myflavorDict["flavor"]['extended']['processor_ranking'] = 300 |
| 785 | #else: |
| 786 | # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList) |
| 787 | # if result2: |
| 788 | # print "Error creating flavor: unknown processor model. Rollback successful." |
| 789 | # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful." |
| 790 | # else: |
| 791 | # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message |
| 792 | myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 793 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 794 | if 'numas' in vnfc and len(vnfc['numas'])>0: |
| 795 | myflavorDict['extended']['numas'] = vnfc['numas'] |
| 796 | |
| 797 | #print myflavorDict |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 798 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 799 | # Step 6.2 New flavors are created in the VIM |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 800 | flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 801 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 802 | #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 803 | VNFCitem["flavor_id"] = flavor_id |
| 804 | VNFCDict[vnfc['name']] = VNFCitem |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 805 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 806 | logger.debug("Creating new images in the VIM for each VNFC") |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 807 | # Step 6.3 New images are created in the VIM |
| 808 | #For each VNFC, we must create the appropriate image. |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 809 | #This "for" loop might be integrated with the previous one |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 810 | #In case this integration is made, the VNFCDict might become a VNFClist. |
| 811 | for vnfc in vnf_descriptor['vnf']['VNFC']: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 812 | #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description']) |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 813 | image_dict={} |
| 814 | image_dict['name']=vnfc.get('image name',vnf_name+"-"+vnfc['name']+"-img") |
| 815 | image_dict['universal_name']=vnfc.get('image name') |
| 816 | image_dict['description']=vnfc.get('image name', VNFCDict[vnfc['name']]['description']) |
| 817 | image_dict['location']=vnfc.get('VNFC image') |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 818 | #image_dict['new_location']=vnfc.get('image location') |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 819 | image_dict['checksum']=vnfc.get('image checksum') |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 820 | image_metadata_dict = vnfc.get('image metadata', None) |
| 821 | image_metadata_str = None |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 822 | if image_metadata_dict is not None: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 823 | image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256) |
| 824 | image_dict['metadata']=image_metadata_str |
| 825 | #print "create_or_use_image", mydb, vims, image_dict, rollback_list |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 826 | image_id = create_or_use_image(mydb, vims, image_dict, rollback_list) |
| 827 | #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 828 | VNFCDict[vnfc['name']]["image_id"] = image_id |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 829 | VNFCDict[vnfc['name']]["image_path"] = vnfc.get('VNFC image') |
| tierno | 36c0b17 | 2017-01-12 18:32:28 +0100 | [diff] [blame] | 830 | if vnfc.get("boot-data"): |
| 831 | VNFCDict[vnfc['name']]["boot_data"] = yaml.safe_dump(vnfc["boot-data"], default_flow_style=True, width=256) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 832 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 833 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 834 | # Step 7. Storing the VNF descriptor in the repository |
| 835 | if "descriptor" not in vnf_descriptor["vnf"]: |
| 836 | vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 837 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 838 | # Step 8. Adding the VNF to the NFVO DB |
| 839 | vnf_id = mydb.new_vnf_as_a_whole(tenant_id,vnf_name,vnf_descriptor,VNFCDict) |
| 840 | return vnf_id |
| 841 | except (db_base_Exception, vimconn.vimconnException, KeyError) as e: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 842 | _, message = rollback(mydb, vims, rollback_list) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 843 | if isinstance(e, db_base_Exception): |
| 844 | error_text = "Exception at database" |
| 845 | elif isinstance(e, KeyError): |
| 846 | error_text = "KeyError exception " |
| 847 | e.http_code = HTTP_Internal_Server_Error |
| 848 | else: |
| 849 | error_text = "Exception at VIM" |
| 850 | error_text += " {} {}. {}".format(type(e).__name__, str(e), message) |
| 851 | #logger.error("start_scenario %s", error_text) |
| 852 | raise NfvoException(error_text, e.http_code) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 853 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 854 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 855 | def new_vnf_v02(mydb, tenant_id, vnf_descriptor): |
| 856 | global global_config |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 857 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 858 | # Step 1. Check the VNF descriptor |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 859 | check_vnf_descriptor(vnf_descriptor, vnf_descriptor_version=2) |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 860 | # Step 2. Check tenant exist |
| tierno | d29b1d3 | 2017-01-25 11:02:52 +0100 | [diff] [blame] | 861 | vims = {} |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 862 | if tenant_id != "any": |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 863 | check_tenant(mydb, tenant_id) |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 864 | if "tenant_id" in vnf_descriptor["vnf"]: |
| 865 | if vnf_descriptor["vnf"]["tenant_id"] != tenant_id: |
| 866 | raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(vnf_descriptor["vnf"]["tenant_id"], tenant_id), |
| 867 | HTTP_Unauthorized) |
| 868 | else: |
| 869 | vnf_descriptor['vnf']['tenant_id'] = tenant_id |
| 870 | # Step 3. Get the URL of the VIM from the nfvo_tenant and the datacenter |
| tierno | d29b1d3 | 2017-01-25 11:02:52 +0100 | [diff] [blame] | 871 | if global_config["auto_push_VNF_to_VIMs"]: |
| 872 | vims = get_vim(mydb, tenant_id) |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 873 | |
| 874 | # Step 4. Review the descriptor and add missing fields |
| 875 | #print vnf_descriptor |
| 876 | #logger.debug("Refactoring VNF descriptor with fields: description, public (default: true)") |
| 877 | vnf_name = vnf_descriptor['vnf']['name'] |
| 878 | vnf_descriptor['vnf']['description'] = vnf_descriptor['vnf'].get("description", vnf_name) |
| 879 | if "physical" in vnf_descriptor['vnf']: |
| 880 | del vnf_descriptor['vnf']['physical'] |
| 881 | #print vnf_descriptor |
| tierno | afed5f1 | 2017-01-26 17:57:43 +0100 | [diff] [blame] | 882 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 883 | # Step 6. For each VNFC in the descriptor, flavors and images are created in the VIM |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 884 | logger.debug('BEGIN creation of VNF "%s"' % vnf_name) |
| 885 | logger.debug("VNF %s: consisting of %d VNFC(s)" % (vnf_name,len(vnf_descriptor['vnf']['VNFC']))) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 886 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 887 | #For each VNFC, we add it to the VNFCDict and we create a flavor. |
| 888 | VNFCDict = {} # Dictionary, key: VNFC name, value: dict with the relevant information to create the VNF and VMs in the MANO database |
| 889 | rollback_list = [] # It will contain the new images created in mano. It is used for rollback |
| 890 | try: |
| 891 | logger.debug("Creating additional disk images and new flavors in the VIM for each VNFC") |
| 892 | for vnfc in vnf_descriptor['vnf']['VNFC']: |
| 893 | VNFCitem={} |
| 894 | VNFCitem["name"] = vnfc['name'] |
| 895 | VNFCitem["description"] = vnfc.get("description", 'VM %s of the VNF %s' %(vnfc['name'],vnf_name)) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 896 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 897 | #print "Flavor name: %s. Description: %s" % (VNFCitem["name"]+"-flv", VNFCitem["description"]) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 898 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 899 | myflavorDict = {} |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 900 | myflavorDict["name"] = vnfc['name']+"-flv" #Maybe we could rename the flavor by using the field "image name" if exists |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 901 | myflavorDict["description"] = VNFCitem["description"] |
| 902 | myflavorDict["ram"] = vnfc.get("ram", 0) |
| 903 | myflavorDict["vcpus"] = vnfc.get("vcpus", 0) |
| 904 | myflavorDict["disk"] = vnfc.get("disk", 1) |
| 905 | myflavorDict["extended"] = {} |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 906 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 907 | devices = vnfc.get("devices") |
| 908 | if devices != None: |
| 909 | myflavorDict["extended"]["devices"] = devices |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 910 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 911 | # TODO: |
| 912 | # Mapping from processor models to rankings should be available somehow in the NFVO. They could be taken from VIM or directly from a new database table |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 913 | # Another option is that the processor in the VNF descriptor specifies directly the ranking of the host |
| 914 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 915 | # Previous code has been commented |
| 916 | #if vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz" : |
| 917 | # myflavorDict["flavor"]['extended']['processor_ranking'] = 200 |
| 918 | #elif vnfc['processor']['model'] == "Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz" : |
| 919 | # myflavorDict["flavor"]['extended']['processor_ranking'] = 300 |
| 920 | #else: |
| 921 | # result2, message = rollback(myvim, myvimURL, myvim_tenant, flavorList, imageList) |
| 922 | # if result2: |
| 923 | # print "Error creating flavor: unknown processor model. Rollback successful." |
| 924 | # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback successful." |
| 925 | # else: |
| 926 | # return -HTTP_Bad_Request, "Error creating flavor: unknown processor model. Rollback fail: you need to access VIM and delete the following %s" % message |
| 927 | myflavorDict['extended']['processor_ranking'] = 100 #Hardcoded value, while we decide when the mapping is done |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 928 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 929 | if 'numas' in vnfc and len(vnfc['numas'])>0: |
| 930 | myflavorDict['extended']['numas'] = vnfc['numas'] |
| 931 | |
| 932 | #print myflavorDict |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 933 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 934 | # Step 6.2 New flavors are created in the VIM |
| 935 | flavor_id = create_or_use_flavor(mydb, vims, myflavorDict, rollback_list) |
| 936 | |
| 937 | #print "Flavor id for VNFC %s: %s" % (vnfc['name'],flavor_id) |
| 938 | VNFCitem["flavor_id"] = flavor_id |
| 939 | VNFCDict[vnfc['name']] = VNFCitem |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 940 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 941 | logger.debug("Creating new images in the VIM for each VNFC") |
| 942 | # Step 6.3 New images are created in the VIM |
| 943 | #For each VNFC, we must create the appropriate image. |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 944 | #This "for" loop might be integrated with the previous one |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 945 | #In case this integration is made, the VNFCDict might become a VNFClist. |
| 946 | for vnfc in vnf_descriptor['vnf']['VNFC']: |
| 947 | #print "Image name: %s. Description: %s" % (vnfc['name']+"-img", VNFCDict[vnfc['name']]['description']) |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 948 | image_dict={} |
| 949 | image_dict['name']=vnfc.get('image name',vnf_name+"-"+vnfc['name']+"-img") |
| 950 | image_dict['universal_name']=vnfc.get('image name') |
| 951 | image_dict['description']=vnfc.get('image name', VNFCDict[vnfc['name']]['description']) |
| 952 | image_dict['location']=vnfc.get('VNFC image') |
| garciadeblas | 1448045 | 2017-01-10 13:08:07 +0100 | [diff] [blame] | 953 | #image_dict['new_location']=vnfc.get('image location') |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 954 | image_dict['checksum']=vnfc.get('image checksum') |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 955 | image_metadata_dict = vnfc.get('image metadata', None) |
| 956 | image_metadata_str = None |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 957 | if image_metadata_dict is not None: |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 958 | image_metadata_str = yaml.safe_dump(image_metadata_dict,default_flow_style=True,width=256) |
| 959 | image_dict['metadata']=image_metadata_str |
| 960 | #print "create_or_use_image", mydb, vims, image_dict, rollback_list |
| 961 | image_id = create_or_use_image(mydb, vims, image_dict, rollback_list) |
| 962 | #print "Image id for VNFC %s: %s" % (vnfc['name'],image_id) |
| 963 | VNFCDict[vnfc['name']]["image_id"] = image_id |
| garciadeblas | b69fa9f | 2016-09-28 12:04:10 +0200 | [diff] [blame] | 964 | VNFCDict[vnfc['name']]["image_path"] = vnfc.get('VNFC image') |
| tierno | 36c0b17 | 2017-01-12 18:32:28 +0100 | [diff] [blame] | 965 | if vnfc.get("boot-data"): |
| 966 | VNFCDict[vnfc['name']]["boot_data"] = yaml.safe_dump(vnfc["boot-data"], default_flow_style=True, width=256) |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 967 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 968 | # Step 7. Storing the VNF descriptor in the repository |
| 969 | if "descriptor" not in vnf_descriptor["vnf"]: |
| 970 | vnf_descriptor["vnf"]["descriptor"] = yaml.safe_dump(vnf_descriptor, indent=4, explicit_start=True, default_flow_style=False) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 971 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 972 | # Step 8. Adding the VNF to the NFVO DB |
| 973 | vnf_id = mydb.new_vnf_as_a_whole2(tenant_id,vnf_name,vnf_descriptor,VNFCDict) |
| 974 | return vnf_id |
| 975 | except (db_base_Exception, vimconn.vimconnException, KeyError) as e: |
| 976 | _, message = rollback(mydb, vims, rollback_list) |
| 977 | if isinstance(e, db_base_Exception): |
| 978 | error_text = "Exception at database" |
| 979 | elif isinstance(e, KeyError): |
| 980 | error_text = "KeyError exception " |
| 981 | e.http_code = HTTP_Internal_Server_Error |
| 982 | else: |
| 983 | error_text = "Exception at VIM" |
| 984 | error_text += " {} {}. {}".format(type(e).__name__, str(e), message) |
| 985 | #logger.error("start_scenario %s", error_text) |
| 986 | raise NfvoException(error_text, e.http_code) |
| 987 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 988 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 989 | def get_vnf_id(mydb, tenant_id, vnf_id): |
| 990 | #check valid tenant_id |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 991 | check_tenant(mydb, tenant_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 992 | #obtain data |
| 993 | where_or = {} |
| 994 | if tenant_id != "any": |
| 995 | where_or["tenant_id"] = tenant_id |
| 996 | where_or["public"] = True |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 997 | vnf = mydb.get_table_by_uuid_name('vnfs', vnf_id, "VNF", WHERE_OR=where_or, WHERE_AND_OR="AND") |
| 998 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 999 | vnf_id=vnf["uuid"] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1000 | filter_keys = ('uuid','name','description','public', "tenant_id", "created_at") |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1001 | filtered_content = dict( (k,v) for k,v in vnf.iteritems() if k in filter_keys ) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1002 | #change_keys_http2db(filtered_content, http2db_vnf, reverse=True) |
| 1003 | data={'vnf' : filtered_content} |
| 1004 | #GET VM |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1005 | content = mydb.get_rows(FROM='vnfs join vms on vnfs.uuid=vms.vnf_id', |
| tierno | 36c0b17 | 2017-01-12 18:32:28 +0100 | [diff] [blame] | 1006 | SELECT=('vms.uuid as uuid','vms.name as name', 'vms.description as description', 'boot_data'), |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1007 | WHERE={'vnfs.uuid': vnf_id} ) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1008 | if len(content)==0: |
| 1009 | raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found) |
| tierno | 36c0b17 | 2017-01-12 18:32:28 +0100 | [diff] [blame] | 1010 | # change boot_data into boot-data |
| 1011 | for vm in content: |
| 1012 | if vm.get("boot_data"): |
| 1013 | vm["boot-data"] = yaml.safe_load(vm["boot_data"]) |
| 1014 | del vm["boot_data"] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1015 | |
| 1016 | data['vnf']['VNFC'] = content |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 1017 | #TODO: GET all the information from a VNFC and include it in the output. |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1018 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1019 | #GET NET |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1020 | content = mydb.get_rows(FROM='vnfs join nets on vnfs.uuid=nets.vnf_id', |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1021 | SELECT=('nets.uuid as uuid','nets.name as name','nets.description as description', 'nets.type as type', 'nets.multipoint as multipoint'), |
| 1022 | WHERE={'vnfs.uuid': vnf_id} ) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1023 | data['vnf']['nets'] = content |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 1024 | |
| 1025 | #GET ip-profile for each net |
| 1026 | for net in data['vnf']['nets']: |
| 1027 | ipprofiles = mydb.get_rows(FROM='ip_profiles', |
| 1028 | SELECT=('ip_version','subnet_address','gateway_address','dns_address','dhcp_enabled','dhcp_start_address','dhcp_count'), |
| 1029 | WHERE={'net_id': net["uuid"]} ) |
| 1030 | if len(ipprofiles)==1: |
| 1031 | net["ip_profile"] = ipprofiles[0] |
| 1032 | elif len(ipprofiles)>1: |
| 1033 | raise NfvoException("More than one ip-profile found with this criteria: net_id='{}'".format(net['uuid']), HTTP_Bad_Request) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1034 | |
| 1035 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 1036 | #TODO: For each net, GET its elements and relevant info per element (VNFC, iface, ip_address) and include them in the output. |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1037 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 1038 | #GET External Interfaces |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1039 | content = mydb.get_rows(FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces on vms.uuid=interfaces.vm_id',\ |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1040 | SELECT=('interfaces.uuid as uuid','interfaces.external_name as external_name', 'vms.name as vm_name', 'interfaces.vm_id as vm_id', \ |
| 1041 | 'interfaces.internal_name as internal_name', 'interfaces.type as type', 'interfaces.vpci as vpci','interfaces.bw as bw'),\ |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1042 | WHERE={'vnfs.uuid': vnf_id}, |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1043 | WHERE_NOT={'interfaces.external_name': None} ) |
| 1044 | #print content |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1045 | data['vnf']['external-connections'] = content |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1046 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1047 | return data |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1048 | |
| 1049 | |
| 1050 | def delete_vnf(mydb,tenant_id,vnf_id,datacenter=None,vim_tenant=None): |
| 1051 | # Check tenant exist |
| 1052 | if tenant_id != "any": |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1053 | check_tenant(mydb, tenant_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1054 | # Get the URL of the VIM from the nfvo_tenant and the datacenter |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1055 | vims = get_vim(mydb, tenant_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1056 | else: |
| 1057 | vims={} |
| 1058 | |
| 1059 | # Checking if it is a valid uuid and, if not, getting the uuid assuming that the name was provided" |
| 1060 | where_or = {} |
| 1061 | if tenant_id != "any": |
| 1062 | where_or["tenant_id"] = tenant_id |
| 1063 | where_or["public"] = True |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1064 | vnf = mydb.get_table_by_uuid_name('vnfs', vnf_id, "VNF", WHERE_OR=where_or, WHERE_AND_OR="AND") |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1065 | vnf_id = vnf["uuid"] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1066 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1067 | # "Getting the list of flavors and tenants of the VNF" |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1068 | flavorList = get_flavorlist(mydb, vnf_id) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1069 | if len(flavorList)==0: |
| 1070 | logger.warn("delete_vnf error. No flavors found for the VNF id '%s'", vnf_id) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1071 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1072 | imageList = get_imagelist(mydb, vnf_id) |
| 1073 | if len(imageList)==0: |
| 1074 | logger.warn( "delete_vnf error. No images found for the VNF id '%s'", vnf_id) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1075 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1076 | deleted = mydb.delete_row_by_id('vnfs', vnf_id) |
| 1077 | if deleted == 0: |
| 1078 | raise NfvoException("vnf '{}' not found".format(vnf_id), HTTP_Not_Found) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1079 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1080 | undeletedItems = [] |
| 1081 | for flavor in flavorList: |
| 1082 | #check if flavor is used by other vnf |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1083 | try: |
| 1084 | c = mydb.get_rows(FROM='vms', WHERE={'flavor_id':flavor} ) |
| 1085 | if len(c) > 0: |
| 1086 | logger.debug("Flavor '%s' not deleted because it is being used by another VNF", flavor) |
| 1087 | continue |
| 1088 | #flavor not used, must be deleted |
| 1089 | #delelte at VIM |
| 1090 | c = mydb.get_rows(FROM='datacenters_flavors', WHERE={'flavor_id':flavor}) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1091 | for flavor_vim in c: |
| 1092 | if flavor_vim["datacenter_id"] not in vims: |
| 1093 | continue |
| 1094 | if flavor_vim['created']=='false': #skip this flavor because not created by openmano |
| 1095 | continue |
| 1096 | myvim=vims[ flavor_vim["datacenter_id"] ] |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1097 | try: |
| 1098 | myvim.delete_flavor(flavor_vim["vim_id"]) |
| 1099 | except vimconn.vimconnNotFoundException as e: |
| 1100 | logger.warn("VIM flavor %s not exist at datacenter %s", flavor_vim["vim_id"], flavor_vim["datacenter_id"] ) |
| 1101 | except vimconn.vimconnException as e: |
| 1102 | logger.error("Not possible to delete VIM flavor %s from datacenter %s: %s %s", |
| 1103 | flavor_vim["vim_id"], flavor_vim["datacenter_id"], type(e).__name__, str(e)) |
| 1104 | undeletedItems.append("flavor {} from VIM {}".format(flavor_vim["vim_id"], flavor_vim["datacenter_id"] )) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1105 | #delete flavor from Database, using table flavors and with cascade foreign key also at datacenters_flavors |
| 1106 | mydb.delete_row_by_id('flavors', flavor) |
| 1107 | except db_base_Exception as e: |
| 1108 | logger.error("delete_vnf_error. Not possible to get flavor details and delete '%s'. %s", flavor, str(e)) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1109 | undeletedItems.append("flavor %s" % flavor) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1110 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1111 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1112 | for image in imageList: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1113 | try: |
| 1114 | #check if image is used by other vnf |
| 1115 | c = mydb.get_rows(FROM='vms', WHERE={'image_id':image} ) |
| 1116 | if len(c) > 0: |
| 1117 | logger.debug("Image '%s' not deleted because it is being used by another VNF", image) |
| 1118 | continue |
| 1119 | #image not used, must be deleted |
| 1120 | #delelte at VIM |
| 1121 | c = mydb.get_rows(FROM='datacenters_images', WHERE={'image_id':image}) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1122 | for image_vim in c: |
| 1123 | if image_vim["datacenter_id"] not in vims: |
| 1124 | continue |
| 1125 | if image_vim['created']=='false': #skip this image because not created by openmano |
| 1126 | continue |
| 1127 | myvim=vims[ image_vim["datacenter_id"] ] |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1128 | try: |
| 1129 | myvim.delete_image(image_vim["vim_id"]) |
| 1130 | except vimconn.vimconnNotFoundException as e: |
| 1131 | logger.warn("VIM image %s not exist at datacenter %s", image_vim["vim_id"], image_vim["datacenter_id"] ) |
| 1132 | except vimconn.vimconnException as e: |
| 1133 | logger.error("Not possible to delete VIM image %s from datacenter %s: %s %s", |
| 1134 | image_vim["vim_id"], image_vim["datacenter_id"], type(e).__name__, str(e)) |
| 1135 | undeletedItems.append("image {} from VIM {}".format(image_vim["vim_id"], image_vim["datacenter_id"] )) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1136 | #delete image from Database, using table images and with cascade foreign key also at datacenters_images |
| 1137 | mydb.delete_row_by_id('images', image) |
| 1138 | except db_base_Exception as e: |
| 1139 | logger.error("delete_vnf_error. Not possible to get image details and delete '%s'. %s", image, str(e)) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1140 | undeletedItems.append("image %s" % image) |
| 1141 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1142 | return vnf_id + " " + vnf["name"] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1143 | #if undeletedItems: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1144 | # return "delete_vnf. Undeleted: %s" %(undeletedItems) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1145 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1146 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1147 | def get_hosts_info(mydb, nfvo_tenant_id, datacenter_name=None): |
| 1148 | result, vims = get_vim(mydb, nfvo_tenant_id, None, datacenter_name) |
| 1149 | if result < 0: |
| 1150 | return result, vims |
| 1151 | elif result == 0: |
| 1152 | return -HTTP_Not_Found, "datacenter '%s' not found" % datacenter_name |
| 1153 | myvim = vims.values()[0] |
| 1154 | result,servers = myvim.get_hosts_info() |
| 1155 | if result < 0: |
| 1156 | return result, servers |
| 1157 | topology = {'name':myvim['name'] , 'servers': servers} |
| 1158 | return result, topology |
| 1159 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1160 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1161 | def get_hosts(mydb, nfvo_tenant_id): |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1162 | vims = get_vim(mydb, nfvo_tenant_id) |
| 1163 | if len(vims) == 0: |
| 1164 | raise NfvoException("No datacenter found for tenant '{}'".format(str(nfvo_tenant_id)), HTTP_Not_Found) |
| 1165 | elif len(vims)>1: |
| 1166 | #print "nfvo.datacenter_action() error. Several datacenters found" |
| 1167 | raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1168 | myvim = vims.values()[0] |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1169 | try: |
| 1170 | hosts = myvim.get_hosts() |
| 1171 | logger.debug('VIM hosts response: '+ yaml.safe_dump(hosts, indent=4, default_flow_style=False)) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1172 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1173 | datacenter = {'Datacenters': [ {'name':myvim['name'],'servers':[]} ] } |
| 1174 | for host in hosts: |
| 1175 | server={'name':host['name'], 'vms':[]} |
| 1176 | for vm in host['instances']: |
| 1177 | #get internal name and model |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1178 | try: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1179 | c = mydb.get_rows(SELECT=('name',), FROM='instance_vms as iv join vms on iv.vm_id=vms.uuid',\ |
| 1180 | WHERE={'vim_vm_id':vm['id']} ) |
| 1181 | if len(c) == 0: |
| 1182 | logger.warn("nfvo.get_hosts virtual machine at VIM '{}' not found at tidnfvo".format(vm['id'])) |
| 1183 | continue |
| 1184 | server['vms'].append( {'name':vm['name'] , 'model':c[0]['name']} ) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1185 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1186 | except db_base_Exception as e: |
| 1187 | logger.warn("nfvo.get_hosts virtual machine at VIM '{}' error {}".format(vm['id'], str(e))) |
| 1188 | datacenter['Datacenters'][0]['servers'].append(server) |
| 1189 | #return -400, "en construccion" |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1190 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1191 | #print 'datacenters '+ json.dumps(datacenter, indent=4) |
| 1192 | return datacenter |
| 1193 | except vimconn.vimconnException as e: |
| 1194 | raise NfvoException("Not possible to get_host_list from VIM: {}".format(str(e)), e.http_code) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1195 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1196 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1197 | def new_scenario(mydb, tenant_id, topo): |
| 1198 | |
| 1199 | # result, vims = get_vim(mydb, tenant_id) |
| 1200 | # if result < 0: |
| 1201 | # return result, vims |
| 1202 | #1: parse input |
| 1203 | if tenant_id != "any": |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1204 | check_tenant(mydb, tenant_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1205 | if "tenant_id" in topo: |
| 1206 | if topo["tenant_id"] != tenant_id: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1207 | raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format(topo["tenant_id"], tenant_id), |
| 1208 | HTTP_Unauthorized) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1209 | else: |
| 1210 | tenant_id=None |
| 1211 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1212 | #1.1: get VNFs and external_networks (other_nets). |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1213 | vnfs={} |
| 1214 | other_nets={} #external_networks, bridge_networks and data_networkds |
| 1215 | nodes = topo['topology']['nodes'] |
| 1216 | for k in nodes.keys(): |
| 1217 | if nodes[k]['type'] == 'VNF': |
| 1218 | vnfs[k] = nodes[k] |
| 1219 | vnfs[k]['ifaces'] = {} |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1220 | elif nodes[k]['type'] == 'other_network' or nodes[k]['type'] == 'external_network': |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1221 | other_nets[k] = nodes[k] |
| 1222 | other_nets[k]['external']=True |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1223 | elif nodes[k]['type'] == 'network': |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1224 | other_nets[k] = nodes[k] |
| 1225 | other_nets[k]['external']=False |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1226 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1227 | |
| 1228 | #1.2: Check that VNF are present at database table vnfs. Insert uuid, description and external interfaces |
| 1229 | for name,vnf in vnfs.items(): |
| tierno | cea279c | 2016-07-18 12:36:49 +0200 | [diff] [blame] | 1230 | where={} |
| 1231 | where_or={"tenant_id": tenant_id, 'public': "true"} |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1232 | error_text = "" |
| 1233 | error_pos = "'topology':'nodes':'" + name + "'" |
| 1234 | if 'vnf_id' in vnf: |
| 1235 | error_text += " 'vnf_id' " + vnf['vnf_id'] |
| tierno | cea279c | 2016-07-18 12:36:49 +0200 | [diff] [blame] | 1236 | where['uuid'] = vnf['vnf_id'] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1237 | if 'VNF model' in vnf: |
| 1238 | error_text += " 'VNF model' " + vnf['VNF model'] |
| tierno | cea279c | 2016-07-18 12:36:49 +0200 | [diff] [blame] | 1239 | where['name'] = vnf['VNF model'] |
| 1240 | if len(where) == 0: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1241 | raise NfvoException("Descriptor need a 'vnf_id' or 'VNF model' field at " + error_pos, HTTP_Bad_Request) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1242 | |
| tierno | cea279c | 2016-07-18 12:36:49 +0200 | [diff] [blame] | 1243 | vnf_db = mydb.get_rows(SELECT=('uuid','name','description'), |
| 1244 | FROM='vnfs', |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1245 | WHERE=where, |
| tierno | cea279c | 2016-07-18 12:36:49 +0200 | [diff] [blame] | 1246 | WHERE_OR=where_or, |
| 1247 | WHERE_AND_OR="AND") |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1248 | if len(vnf_db)==0: |
| 1249 | raise NfvoException("unknown" + error_text + " at " + error_pos, HTTP_Not_Found) |
| 1250 | elif len(vnf_db)>1: |
| 1251 | raise NfvoException("more than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1252 | vnf['uuid']=vnf_db[0]['uuid'] |
| 1253 | vnf['description']=vnf_db[0]['description'] |
| 1254 | #get external interfaces |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1255 | ext_ifaces = mydb.get_rows(SELECT=('external_name as name','i.uuid as iface_uuid', 'i.type as type'), |
| 1256 | FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id', |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1257 | WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name':None} ) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1258 | for ext_iface in ext_ifaces: |
| 1259 | vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type':ext_iface['type']} |
| 1260 | |
| 1261 | #1.4 get list of connections |
| 1262 | conections = topo['topology']['connections'] |
| 1263 | conections_list = [] |
| tierno | efd80c9 | 2016-09-16 14:17:46 +0200 | [diff] [blame] | 1264 | conections_list_name = [] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1265 | for k in conections.keys(): |
| 1266 | if type(conections[k]['nodes'])==dict: #dict with node:iface pairs |
| 1267 | ifaces_list = conections[k]['nodes'].items() |
| 1268 | elif type(conections[k]['nodes'])==list: #list with dictionary |
| 1269 | ifaces_list=[] |
| 1270 | conection_pair_list = map(lambda x: x.items(), conections[k]['nodes'] ) |
| 1271 | for k2 in conection_pair_list: |
| 1272 | ifaces_list += k2 |
| 1273 | |
| 1274 | con_type = conections[k].get("type", "link") |
| 1275 | if con_type != "link": |
| 1276 | if k in other_nets: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1277 | raise NfvoException("Format error. Reapeted network name at 'topology':'connections':'{}'".format(str(k)), HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1278 | other_nets[k] = {'external': False} |
| 1279 | if conections[k].get("graph"): |
| 1280 | other_nets[k]["graph"] = conections[k]["graph"] |
| 1281 | ifaces_list.append( (k, None) ) |
| 1282 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1283 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1284 | if con_type == "external_network": |
| 1285 | other_nets[k]['external'] = True |
| 1286 | if conections[k].get("model"): |
| 1287 | other_nets[k]["model"] = conections[k]["model"] |
| 1288 | else: |
| 1289 | other_nets[k]["model"] = k |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1290 | if con_type == "dataplane_net" or con_type == "bridge_net": |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1291 | other_nets[k]["model"] = con_type |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1292 | |
| tierno | efd80c9 | 2016-09-16 14:17:46 +0200 | [diff] [blame] | 1293 | conections_list_name.append(k) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1294 | conections_list.append(set(ifaces_list)) #from list to set to operate as a set (this conversion removes elements that are repeated in a list) |
| 1295 | #print set(ifaces_list) |
| 1296 | #check valid VNF and iface names |
| 1297 | for iface in ifaces_list: |
| 1298 | if iface[0] not in vnfs and iface[0] not in other_nets : |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1299 | raise NfvoException("format error. Invalid VNF name at 'topology':'connections':'{}':'nodes':'{}'".format( |
| 1300 | str(k), iface[0]), HTTP_Not_Found) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1301 | if iface[0] in vnfs and iface[1] not in vnfs[ iface[0] ]['ifaces']: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1302 | raise NfvoException("format error. Invalid interface name at 'topology':'connections':'{}':'nodes':'{}':'{}'".format( |
| 1303 | str(k), iface[0], iface[1]), HTTP_Not_Found) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1304 | |
| 1305 | #1.5 unify connections from the pair list to a consolidated list |
| 1306 | index=0 |
| 1307 | while index < len(conections_list): |
| 1308 | index2 = index+1 |
| 1309 | while index2 < len(conections_list): |
| 1310 | if len(conections_list[index] & conections_list[index2])>0: #common interface, join nets |
| 1311 | conections_list[index] |= conections_list[index2] |
| 1312 | del conections_list[index2] |
| tierno | efd80c9 | 2016-09-16 14:17:46 +0200 | [diff] [blame] | 1313 | del conections_list_name[index2] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1314 | else: |
| 1315 | index2 += 1 |
| 1316 | conections_list[index] = list(conections_list[index]) # from set to list again |
| 1317 | index += 1 |
| 1318 | #for k in conections_list: |
| 1319 | # print k |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1320 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1321 | |
| 1322 | |
| 1323 | #1.6 Delete non external nets |
| 1324 | # for k in other_nets.keys(): |
| 1325 | # if other_nets[k]['model']=='bridge' or other_nets[k]['model']=='dataplane_net' or other_nets[k]['model']=='bridge_net': |
| 1326 | # for con in conections_list: |
| 1327 | # delete_indexes=[] |
| 1328 | # for index in range(0,len(con)): |
| 1329 | # if con[index][0] == k: delete_indexes.insert(0,index) #order from higher to lower |
| 1330 | # for index in delete_indexes: |
| 1331 | # del con[index] |
| 1332 | # del other_nets[k] |
| 1333 | #1.7: Check external_ports are present at database table datacenter_nets |
| 1334 | for k,net in other_nets.items(): |
| 1335 | error_pos = "'topology':'nodes':'" + k + "'" |
| 1336 | if net['external']==False: |
| 1337 | if 'name' not in net: |
| 1338 | net['name']=k |
| 1339 | if 'model' not in net: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1340 | raise NfvoException("needed a 'model' at " + error_pos, HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1341 | if net['model']=='bridge_net': |
| 1342 | net['type']='bridge'; |
| 1343 | elif net['model']=='dataplane_net': |
| 1344 | net['type']='data'; |
| 1345 | else: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1346 | raise NfvoException("unknown 'model' '"+ net['model'] +"' at " + error_pos, HTTP_Not_Found) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1347 | else: #external |
| 1348 | #IF we do not want to check that external network exist at datacenter |
| 1349 | pass |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1350 | #ELSE |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1351 | # error_text = "" |
| 1352 | # WHERE_={} |
| 1353 | # if 'net_id' in net: |
| 1354 | # error_text += " 'net_id' " + net['net_id'] |
| 1355 | # WHERE_['uuid'] = net['net_id'] |
| 1356 | # if 'model' in net: |
| 1357 | # error_text += " 'model' " + net['model'] |
| 1358 | # WHERE_['name'] = net['model'] |
| 1359 | # if len(WHERE_) == 0: |
| 1360 | # return -HTTP_Bad_Request, "needed a 'net_id' or 'model' at " + error_pos |
| 1361 | # r,net_db = mydb.get_table(SELECT=('uuid','name','description','type','shared'), |
| 1362 | # FROM='datacenter_nets', WHERE=WHERE_ ) |
| 1363 | # if r<0: |
| 1364 | # print "nfvo.new_scenario Error getting datacenter_nets",r,net_db |
| 1365 | # elif r==0: |
| 1366 | # print "nfvo.new_scenario Error" +error_text+ " is not present at database" |
| 1367 | # return -HTTP_Bad_Request, "unknown " +error_text+ " at " + error_pos |
| 1368 | # elif r>1: |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1369 | # print "nfvo.new_scenario Error more than one external_network for " +error_text+ " is present at database" |
| 1370 | # return -HTTP_Bad_Request, "more than one external_network for " +error_text+ "at "+ error_pos + " Concrete with 'net_id'" |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1371 | # other_nets[k].update(net_db[0]) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1372 | #ENDIF |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1373 | net_list={} |
| 1374 | net_nb=0 #Number of nets |
| 1375 | for con in conections_list: |
| 1376 | #check if this is connected to a external net |
| 1377 | other_net_index=-1 |
| 1378 | #print |
| 1379 | #print "con", con |
| 1380 | for index in range(0,len(con)): |
| 1381 | #check if this is connected to a external net |
| 1382 | for net_key in other_nets.keys(): |
| 1383 | if con[index][0]==net_key: |
| 1384 | if other_net_index>=0: |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1385 | error_text="There is some interface connected both to net '%s' and net '%s'" % (con[other_net_index][0], net_key) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1386 | #print "nfvo.new_scenario " + error_text |
| 1387 | raise NfvoException(error_text, HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1388 | else: |
| 1389 | other_net_index = index |
| 1390 | net_target = net_key |
| 1391 | break |
| 1392 | #print "other_net_index", other_net_index |
| 1393 | try: |
| 1394 | if other_net_index>=0: |
| 1395 | del con[other_net_index] |
| 1396 | #IF we do not want to check that external network exist at datacenter |
| 1397 | if other_nets[net_target]['external'] : |
| 1398 | if "name" not in other_nets[net_target]: |
| 1399 | other_nets[net_target]['name'] = other_nets[net_target]['model'] |
| 1400 | if other_nets[net_target]["type"] == "external_network": |
| 1401 | if vnfs[ con[0][0] ]['ifaces'][ con[0][1] ]["type"] == "data": |
| 1402 | other_nets[net_target]["type"] = "data" |
| 1403 | else: |
| 1404 | other_nets[net_target]["type"] = "bridge" |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1405 | #ELSE |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1406 | # if other_nets[net_target]['external'] : |
| 1407 | # type_='data' if len(con)>1 else 'ptp' #an external net is connected to a external port, so it is ptp if only one connection is done to this net |
| 1408 | # if type_=='data' and other_nets[net_target]['type']=="ptp": |
| 1409 | # error_text = "Error connecting %d nodes on a not multipoint net %s" % (len(con), net_target) |
| 1410 | # print "nfvo.new_scenario " + error_text |
| 1411 | # return -HTTP_Bad_Request, error_text |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1412 | #ENDIF |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1413 | for iface in con: |
| 1414 | vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target |
| 1415 | else: |
| 1416 | #create a net |
| 1417 | net_type_bridge=False |
| 1418 | net_type_data=False |
| 1419 | net_target = "__-__net"+str(net_nb) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1420 | net_list[net_target] = {'name': conections_list_name[net_nb], #"net-"+str(net_nb), |
| tierno | efd80c9 | 2016-09-16 14:17:46 +0200 | [diff] [blame] | 1421 | 'description':"net-%s in scenario %s" %(net_nb,topo['name']), |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1422 | 'external':False} |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1423 | for iface in con: |
| 1424 | vnfs[ iface[0] ]['ifaces'][ iface[1] ]['net_key'] = net_target |
| 1425 | iface_type = vnfs[ iface[0] ]['ifaces'][ iface[1] ]['type'] |
| 1426 | if iface_type=='mgmt' or iface_type=='bridge': |
| 1427 | net_type_bridge = True |
| 1428 | else: |
| 1429 | net_type_data = True |
| 1430 | if net_type_bridge and net_type_data: |
| 1431 | error_text = "Error connection interfaces of bridge type with data type. Firs node %s, iface %s" % (iface[0], iface[1]) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1432 | #print "nfvo.new_scenario " + error_text |
| 1433 | raise NfvoException(error_text, HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1434 | elif net_type_bridge: |
| 1435 | type_='bridge' |
| 1436 | else: |
| 1437 | type_='data' if len(con)>2 else 'ptp' |
| 1438 | net_list[net_target]['type'] = type_ |
| 1439 | net_nb+=1 |
| 1440 | except Exception: |
| 1441 | error_text = "Error connection node %s : %s does not match any VNF or interface" % (iface[0], iface[1]) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1442 | #print "nfvo.new_scenario " + error_text |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1443 | #raise e |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1444 | raise NfvoException(error_text, HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1445 | |
| 1446 | #1.8: Connect to management net all not already connected interfaces of type 'mgmt' |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1447 | #1.8.1 obtain management net |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1448 | mgmt_net = mydb.get_rows(SELECT=('uuid','name','description','type','shared'), |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1449 | FROM='datacenter_nets', WHERE={'name':'mgmt'} ) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1450 | #1.8.2 check all interfaces from all vnfs |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1451 | if len(mgmt_net)>0: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1452 | add_mgmt_net = False |
| 1453 | for vnf in vnfs.values(): |
| 1454 | for iface in vnf['ifaces'].values(): |
| 1455 | if iface['type']=='mgmt' and 'net_key' not in iface: |
| 1456 | #iface not connected |
| 1457 | iface['net_key'] = 'mgmt' |
| 1458 | add_mgmt_net = True |
| 1459 | if add_mgmt_net and 'mgmt' not in net_list: |
| 1460 | net_list['mgmt']=mgmt_net[0] |
| 1461 | net_list['mgmt']['external']=True |
| 1462 | net_list['mgmt']['graph']={'visible':False} |
| 1463 | |
| 1464 | net_list.update(other_nets) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1465 | #print |
| 1466 | #print 'net_list', net_list |
| 1467 | #print |
| 1468 | #print 'vnfs', vnfs |
| 1469 | #print |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1470 | |
| 1471 | #2: insert scenario. filling tables scenarios,sce_vnfs,sce_interfaces,sce_nets |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1472 | c = mydb.new_scenario( { 'vnfs':vnfs, 'nets':net_list, |
| tierno | 392f285 | 2016-05-13 12:28:55 +0200 | [diff] [blame] | 1473 | 'tenant_id':tenant_id, 'name':topo['name'], |
| 1474 | 'description':topo.get('description',topo['name']), |
| 1475 | 'public': topo.get('public', False) |
| 1476 | }) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1477 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1478 | return c |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1479 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1480 | |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1481 | def new_scenario_v02(mydb, tenant_id, scenario_dict, version): |
| 1482 | """ This creates a new scenario for version 0.2 and 0.3""" |
| tierno | 392f285 | 2016-05-13 12:28:55 +0200 | [diff] [blame] | 1483 | scenario = scenario_dict["scenario"] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1484 | if tenant_id != "any": |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1485 | check_tenant(mydb, tenant_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1486 | if "tenant_id" in scenario: |
| 1487 | if scenario["tenant_id"] != tenant_id: |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1488 | # print "nfvo.new_scenario_v02() tenant '%s' not found" % tenant_id |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1489 | raise NfvoException("VNF can not have a different tenant owner '{}', must be '{}'".format( |
| 1490 | scenario["tenant_id"], tenant_id), HTTP_Unauthorized) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1491 | else: |
| 1492 | tenant_id=None |
| 1493 | |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1494 | # 1: Check that VNF are present at database table vnfs and update content into scenario dict |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1495 | for name,vnf in scenario["vnfs"].iteritems(): |
| tierno | cea279c | 2016-07-18 12:36:49 +0200 | [diff] [blame] | 1496 | where={} |
| 1497 | where_or={"tenant_id": tenant_id, 'public': "true"} |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1498 | error_text = "" |
| garciadeblas | 71781ea | 2016-09-19 14:41:59 +0200 | [diff] [blame] | 1499 | error_pos = "'scenario':'vnfs':'" + name + "'" |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1500 | if 'vnf_id' in vnf: |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1501 | error_text += " 'vnf_id' " + vnf['vnf_id'] |
| tierno | cea279c | 2016-07-18 12:36:49 +0200 | [diff] [blame] | 1502 | where['uuid'] = vnf['vnf_id'] |
| tierno | 392f285 | 2016-05-13 12:28:55 +0200 | [diff] [blame] | 1503 | if 'vnf_name' in vnf: |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1504 | error_text += " 'vnf_name' " + vnf['vnf_name'] |
| tierno | cea279c | 2016-07-18 12:36:49 +0200 | [diff] [blame] | 1505 | where['name'] = vnf['vnf_name'] |
| 1506 | if len(where) == 0: |
| garciadeblas | 71781ea | 2016-09-19 14:41:59 +0200 | [diff] [blame] | 1507 | raise NfvoException("Needed a 'vnf_id' or 'vnf_name' at " + error_pos, HTTP_Bad_Request) |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1508 | vnf_db = mydb.get_rows(SELECT=('uuid', 'name', 'description'), |
| tierno | cea279c | 2016-07-18 12:36:49 +0200 | [diff] [blame] | 1509 | FROM='vnfs', |
| 1510 | WHERE=where, |
| 1511 | WHERE_OR=where_or, |
| 1512 | WHERE_AND_OR="AND") |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1513 | if len(vnf_db) == 0: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1514 | raise NfvoException("Unknown" + error_text + " at " + error_pos, HTTP_Not_Found) |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1515 | elif len(vnf_db) > 1: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1516 | raise NfvoException("More than one" + error_text + " at " + error_pos + " Concrete with 'vnf_id'", HTTP_Conflict) |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1517 | vnf['uuid'] = vnf_db[0]['uuid'] |
| 1518 | vnf['description'] = vnf_db[0]['description'] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1519 | vnf['ifaces'] = {} |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1520 | # get external interfaces |
| 1521 | ext_ifaces = mydb.get_rows(SELECT=('external_name as name', 'i.uuid as iface_uuid', 'i.type as type'), |
| 1522 | FROM='vnfs join vms on vnfs.uuid=vms.vnf_id join interfaces as i on vms.uuid=i.vm_id', |
| 1523 | WHERE={'vnfs.uuid':vnf['uuid']}, WHERE_NOT={'external_name': None} ) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1524 | for ext_iface in ext_ifaces: |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1525 | vnf['ifaces'][ ext_iface['name'] ] = {'uuid':ext_iface['iface_uuid'], 'type': ext_iface['type']} |
| 1526 | # TODO? get internal-connections from db.nets and their profiles, and update scenario[vnfs][internal-connections] accordingly |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1527 | |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1528 | # 2: Insert net_key and ip_address at every vnf interface |
| 1529 | for net_name, net in scenario["networks"].items(): |
| 1530 | net_type_bridge = False |
| 1531 | net_type_data = False |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1532 | for iface_dict in net["interfaces"]: |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1533 | if version == "0.2": |
| 1534 | temp_dict = iface_dict |
| 1535 | ip_address = None |
| 1536 | elif version == "0.3": |
| 1537 | temp_dict = {iface_dict["vnf"] : iface_dict["vnf_interface"]} |
| 1538 | ip_address = iface_dict.get('ip_address', None) |
| 1539 | for vnf, iface in temp_dict.items(): |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1540 | if vnf not in scenario["vnfs"]: |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1541 | error_text = "Error at 'networks':'{}':'interfaces' VNF '{}' not match any VNF at 'vnfs'".format( |
| 1542 | net_name, vnf) |
| 1543 | # logger.debug("nfvo.new_scenario_v02 " + error_text) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1544 | raise NfvoException(error_text, HTTP_Not_Found) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1545 | if iface not in scenario["vnfs"][vnf]['ifaces']: |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1546 | error_text = "Error at 'networks':'{}':'interfaces':'{}' interface not match any VNF interface"\ |
| 1547 | .format(net_name, iface) |
| 1548 | # logger.debug("nfvo.new_scenario_v02 " + error_text) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1549 | raise NfvoException(error_text, HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1550 | if "net_key" in scenario["vnfs"][vnf]['ifaces'][iface]: |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1551 | error_text = "Error at 'networks':'{}':'interfaces':'{}' interface already connected at network"\ |
| 1552 | "'{}'".format(net_name, iface,scenario["vnfs"][vnf]['ifaces'][iface]['net_key']) |
| 1553 | # logger.debug("nfvo.new_scenario_v02 " + error_text) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1554 | raise NfvoException(error_text, HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1555 | scenario["vnfs"][vnf]['ifaces'][ iface ]['net_key'] = net_name |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1556 | scenario["vnfs"][vnf]['ifaces'][iface]['ip_address'] = ip_address |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1557 | iface_type = scenario["vnfs"][vnf]['ifaces'][iface]['type'] |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1558 | if iface_type == 'mgmt' or iface_type == 'bridge': |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1559 | net_type_bridge = True |
| 1560 | else: |
| 1561 | net_type_data = True |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1562 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1563 | if net_type_bridge and net_type_data: |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1564 | error_text = "Error connection interfaces of 'bridge' type and 'data' type at 'networks':'{}':'interfaces'"\ |
| 1565 | .format(net_name) |
| 1566 | # logger.debug("nfvo.new_scenario " + error_text) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1567 | raise NfvoException(error_text, HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1568 | elif net_type_bridge: |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1569 | type_ = 'bridge' |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1570 | else: |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1571 | type_ = 'data' if len(net["interfaces"]) > 2 else 'ptp' |
| 1572 | |
| 1573 | if net.get("implementation"): # for v0.3 |
| 1574 | if type_ == "bridge" and net["implementation"] == "underlay": |
| 1575 | error_text = "Error connecting interfaces of data type to a network declared as 'underlay' at "\ |
| 1576 | "'network':'{}'".format(net_name) |
| 1577 | # logger.debug(error_text) |
| 1578 | raise NfvoException(error_text, HTTP_Bad_Request) |
| 1579 | elif type_ != "bridge" and net["implementation"] == "overlay": |
| 1580 | error_text = "Error connecting interfaces of data type to a network declared as 'overlay' at "\ |
| 1581 | "'network':'{}'".format(net_name) |
| 1582 | # logger.debug(error_text) |
| 1583 | raise NfvoException(error_text, HTTP_Bad_Request) |
| 1584 | net.pop("implementation") |
| 1585 | if "type" in net and version == "0.3": # for v0.3 |
| 1586 | if type_ == "data" and net["type"] == "e-line": |
| 1587 | error_text = "Error connecting more than 2 interfaces of data type to a network declared as type "\ |
| 1588 | "'e-line' at 'network':'{}'".format(net_name) |
| 1589 | # logger.debug(error_text) |
| 1590 | raise NfvoException(error_text, HTTP_Bad_Request) |
| 1591 | elif type_ == "ptp" and net["type"] == "e-lan": |
| 1592 | type_ = "data" |
| 1593 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1594 | net['type'] = type_ |
| 1595 | net['name'] = net_name |
| 1596 | net['external'] = net.get('external', False) |
| 1597 | |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1598 | # 3: insert at database |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1599 | scenario["nets"] = scenario["networks"] |
| 1600 | scenario['tenant_id'] = tenant_id |
| tierno | 5bb59dc | 2017-02-13 14:53:54 +0100 | [diff] [blame] | 1601 | scenario_id = mydb.new_scenario(scenario) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1602 | return scenario_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1603 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1604 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1605 | def edit_scenario(mydb, tenant_id, scenario_id, data): |
| 1606 | data["uuid"] = scenario_id |
| 1607 | data["tenant_id"] = tenant_id |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1608 | c = mydb.edit_scenario( data ) |
| 1609 | return c |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1610 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1611 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1612 | def start_scenario(mydb, tenant_id, scenario_id, instance_scenario_name, instance_scenario_description, datacenter=None,vim_tenant=None, startvms=True): |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1613 | #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id" |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 1614 | datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter, vim_tenant=vim_tenant) |
| 1615 | vims = {datacenter_id: myvim} |
| tierno | 392f285 | 2016-05-13 12:28:55 +0200 | [diff] [blame] | 1616 | myvim_tenant = myvim['tenant_id'] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1617 | datacenter_name = myvim['name'] |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 1618 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1619 | rollbackList=[] |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1620 | try: |
| 1621 | #print "Checking that the scenario_id exists and getting the scenario dictionary" |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1622 | scenarioDict = mydb.get_scenario(scenario_id, tenant_id, datacenter_id) |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 1623 | scenarioDict['datacenter2tenant'] = { datacenter_id: myvim['config']['datacenter_tenant_id'] } |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1624 | scenarioDict['datacenter_id'] = datacenter_id |
| 1625 | #print '================scenarioDict=======================' |
| 1626 | #print json.dumps(scenarioDict, indent=4) |
| 1627 | #print 'BEGIN launching instance scenario "%s" based on "%s"' % (instance_scenario_name,scenarioDict['name']) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1628 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1629 | logger.debug("start_scenario Scenario %s: consisting of %d VNF(s)", scenarioDict['name'],len(scenarioDict['vnfs'])) |
| 1630 | #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1631 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1632 | auxNetDict = {} #Auxiliar dictionary. First key:'scenario' or sce_vnf uuid. Second Key: uuid of the net/sce_net. Value: vim_net_id |
| 1633 | auxNetDict['scenario'] = {} |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1634 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1635 | logger.debug("start_scenario 1. Creating new nets (sce_nets) in the VIM") |
| 1636 | for sce_net in scenarioDict['nets']: |
| 1637 | #print "Net name: %s. Description: %s" % (sce_net["name"], sce_net["description"]) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1638 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1639 | myNetName = "%s.%s" % (instance_scenario_name, sce_net['name']) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1640 | myNetName = myNetName[0:255] #limit length |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1641 | myNetType = sce_net['type'] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1642 | myNetDict = {} |
| 1643 | myNetDict["name"] = myNetName |
| 1644 | myNetDict["type"] = myNetType |
| 1645 | myNetDict["tenant_id"] = myvim_tenant |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 1646 | myNetIPProfile = sce_net.get('ip_profile', None) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1647 | #TODO: |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1648 | #We should use the dictionary as input parameter for new_network |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1649 | #print myNetDict |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1650 | if not sce_net["external"]: |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 1651 | network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1652 | #print "New VIM network created for scenario %s. Network id: %s" % (scenarioDict['name'],network_id) |
| 1653 | sce_net['vim_id'] = network_id |
| 1654 | auxNetDict['scenario'][sce_net['uuid']] = network_id |
| 1655 | rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id}) |
| tierno | 66345bc | 2016-09-26 11:37:55 +0200 | [diff] [blame] | 1656 | sce_net["created"] = True |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1657 | else: |
| 1658 | if sce_net['vim_id'] == None: |
| 1659 | error_text = "Error, datacenter '%s' does not have external network '%s'." % (datacenter_name, sce_net['name']) |
| 1660 | _, message = rollback(mydb, vims, rollbackList) |
| 1661 | logger.error("nfvo.start_scenario: %s", error_text) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1662 | raise NfvoException(error_text, HTTP_Bad_Request) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1663 | logger.debug("Using existent VIM network for scenario %s. Network id %s", scenarioDict['name'],sce_net['vim_id']) |
| 1664 | auxNetDict['scenario'][sce_net['uuid']] = sce_net['vim_id'] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1665 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1666 | logger.debug("start_scenario 2. Creating new nets (vnf internal nets) in the VIM") |
| 1667 | #For each vnf net, we create it and we add it to instanceNetlist. |
| 1668 | for sce_vnf in scenarioDict['vnfs']: |
| 1669 | for net in sce_vnf['nets']: |
| 1670 | #print "Net name: %s. Description: %s" % (net["name"], net["description"]) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1671 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1672 | myNetName = "%s.%s" % (instance_scenario_name,net['name']) |
| 1673 | myNetName = myNetName[0:255] #limit length |
| 1674 | myNetType = net['type'] |
| 1675 | myNetDict = {} |
| 1676 | myNetDict["name"] = myNetName |
| 1677 | myNetDict["type"] = myNetType |
| 1678 | myNetDict["tenant_id"] = myvim_tenant |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 1679 | myNetIPProfile = net.get('ip_profile', None) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1680 | #print myNetDict |
| 1681 | #TODO: |
| 1682 | #We should use the dictionary as input parameter for new_network |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 1683 | network_id = myvim.new_network(myNetName, myNetType, myNetIPProfile) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1684 | #print "VIM network id for scenario %s: %s" % (scenarioDict['name'],network_id) |
| 1685 | net['vim_id'] = network_id |
| 1686 | if sce_vnf['uuid'] not in auxNetDict: |
| 1687 | auxNetDict[sce_vnf['uuid']] = {} |
| 1688 | auxNetDict[sce_vnf['uuid']][net['uuid']] = network_id |
| 1689 | rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':network_id}) |
| tierno | 66345bc | 2016-09-26 11:37:55 +0200 | [diff] [blame] | 1690 | net["created"] = True |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1691 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1692 | #print "auxNetDict:" |
| 1693 | #print yaml.safe_dump(auxNetDict, indent=4, default_flow_style=False) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1694 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1695 | logger.debug("start_scenario 3. Creating new vm instances in the VIM") |
| 1696 | #myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict) |
| 1697 | i = 0 |
| 1698 | for sce_vnf in scenarioDict['vnfs']: |
| 1699 | for vm in sce_vnf['vms']: |
| 1700 | i += 1 |
| 1701 | myVMDict = {} |
| 1702 | #myVMDict['name'] = "%s-%s-%s" % (scenarioDict['name'],sce_vnf['name'], vm['name']) |
| tierno | ae65a48 | 2016-11-24 16:20:05 +0100 | [diff] [blame] | 1703 | myVMDict['name'] = "{}.{}.{}".format(instance_scenario_name,sce_vnf['name'],chr(96+i)) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1704 | #myVMDict['description'] = vm['description'] |
| 1705 | myVMDict['description'] = myVMDict['name'][0:99] |
| 1706 | if not startvms: |
| 1707 | myVMDict['start'] = "no" |
| 1708 | myVMDict['name'] = myVMDict['name'][0:255] #limit name length |
| 1709 | #print "VM name: %s. Description: %s" % (myVMDict['name'], myVMDict['name']) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1710 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1711 | #create image at vim in case it not exist |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1712 | image_dict = mydb.get_table_by_uuid_name("images", vm['image_id']) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1713 | image_id = create_or_use_image(mydb, vims, image_dict, [], True) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1714 | vm['vim_image_id'] = image_id |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1715 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1716 | #create flavor at vim in case it not exist |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1717 | flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id']) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1718 | if flavor_dict['extended']!=None: |
| 1719 | flavor_dict['extended']= yaml.load(flavor_dict['extended']) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1720 | flavor_id = create_or_use_flavor(mydb, vims, flavor_dict, [], True) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1721 | vm['vim_flavor_id'] = flavor_id |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1722 | |
| 1723 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1724 | myVMDict['imageRef'] = vm['vim_image_id'] |
| 1725 | myVMDict['flavorRef'] = vm['vim_flavor_id'] |
| 1726 | myVMDict['networks'] = [] |
| 1727 | for iface in vm['interfaces']: |
| 1728 | netDict = {} |
| 1729 | if iface['type']=="data": |
| 1730 | netDict['type'] = iface['model'] |
| 1731 | elif "model" in iface and iface["model"]!=None: |
| 1732 | netDict['model']=iface['model'] |
| 1733 | #TODO in future, remove this because mac_address will not be set, and the type of PV,VF is obtained from iterface table model |
| 1734 | #discover type of interface looking at flavor |
| 1735 | for numa in flavor_dict.get('extended',{}).get('numas',[]): |
| 1736 | for flavor_iface in numa.get('interfaces',[]): |
| 1737 | if flavor_iface.get('name') == iface['internal_name']: |
| 1738 | if flavor_iface['dedicated'] == 'yes': |
| 1739 | netDict['type']="PF" #passthrough |
| 1740 | elif flavor_iface['dedicated'] == 'no': |
| 1741 | netDict['type']="VF" #siov |
| 1742 | elif flavor_iface['dedicated'] == 'yes:sriov': |
| 1743 | netDict['type']="VFnotShared" #sriov but only one sriov on the PF |
| 1744 | netDict["mac_address"] = flavor_iface.get("mac_address") |
| 1745 | break; |
| 1746 | netDict["use"]=iface['type'] |
| 1747 | if netDict["use"]=="data" and not netDict.get("type"): |
| 1748 | #print "netDict", netDict |
| 1749 | #print "iface", iface |
| 1750 | e_text = "Cannot determine the interface type PF or VF of VNF '%s' VM '%s' iface '%s'" %(sce_vnf['name'], vm['name'], iface['internal_name']) |
| 1751 | if flavor_dict.get('extended')==None: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1752 | raise NfvoException(e_text + "After database migration some information is not available. \ |
| 1753 | Try to delete and create the scenarios and VNFs again", HTTP_Conflict) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1754 | else: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1755 | raise NfvoException(e_text, HTTP_Internal_Server_Error) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1756 | if netDict["use"]=="mgmt" or netDict["use"]=="bridge": |
| 1757 | netDict["type"]="virtual" |
| 1758 | if "vpci" in iface and iface["vpci"] is not None: |
| 1759 | netDict['vpci'] = iface['vpci'] |
| 1760 | if "mac" in iface and iface["mac"] is not None: |
| 1761 | netDict['mac_address'] = iface['mac'] |
| montesmoreno | 2a1fc4e | 2017-01-09 16:46:04 +0000 | [diff] [blame] | 1762 | if "port-security" in iface and iface["port-security"] is not None: |
| 1763 | netDict['port_security'] = iface['port-security'] |
| 1764 | if "floating-ip" in iface and iface["floating-ip"] is not None: |
| 1765 | netDict['floating_ip'] = iface['floating-ip'] |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1766 | netDict['name'] = iface['internal_name'] |
| 1767 | if iface['net_id'] is None: |
| 1768 | for vnf_iface in sce_vnf["interfaces"]: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1769 | #print iface |
| 1770 | #print vnf_iface |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1771 | if vnf_iface['interface_id']==iface['uuid']: |
| 1772 | netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ] |
| 1773 | break |
| 1774 | else: |
| 1775 | netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ] |
| 1776 | #skip bridge ifaces not connected to any net |
| 1777 | #if 'net_id' not in netDict or netDict['net_id']==None: |
| 1778 | # continue |
| 1779 | myVMDict['networks'].append(netDict) |
| 1780 | #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>" |
| 1781 | #print myVMDict['name'] |
| 1782 | #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False) |
| 1783 | #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False) |
| 1784 | #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>" |
| 1785 | vm_id = myvim.new_vminstance(myVMDict['name'],myVMDict['description'],myVMDict.get('start', None), |
| 1786 | myVMDict['imageRef'],myVMDict['flavorRef'],myVMDict['networks']) |
| 1787 | #print "VIM vm instance id (server id) for scenario %s: %s" % (scenarioDict['name'],vm_id) |
| 1788 | vm['vim_id'] = vm_id |
| 1789 | rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id}) |
| 1790 | #put interface uuid back to scenario[vnfs][vms[[interfaces] |
| 1791 | for net in myVMDict['networks']: |
| 1792 | if "vim_id" in net: |
| 1793 | for iface in vm['interfaces']: |
| 1794 | if net["name"]==iface["internal_name"]: |
| 1795 | iface["vim_id"]=net["vim_id"] |
| 1796 | break |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1797 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1798 | logger.debug("start scenario Deployment done") |
| 1799 | #print yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False) |
| 1800 | #r,c = mydb.new_instance_scenario_as_a_whole(nfvo_tenant,scenarioDict['name'],scenarioDict) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1801 | instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_scenario_name, instance_scenario_description, scenarioDict) |
| 1802 | return mydb.get_instance_scenario(instance_id) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1803 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1804 | except (db_base_Exception, vimconn.vimconnException) as e: |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1805 | _, message = rollback(mydb, vims, rollbackList) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 1806 | if isinstance(e, db_base_Exception): |
| 1807 | error_text = "Exception at database" |
| 1808 | else: |
| 1809 | error_text = "Exception at VIM" |
| 1810 | error_text += " {} {}. {}".format(type(e).__name__, str(e), message) |
| 1811 | #logger.error("start_scenario %s", error_text) |
| 1812 | raise NfvoException(error_text, e.http_code) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1813 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1814 | |
| tierno | 36c0b17 | 2017-01-12 18:32:28 +0100 | [diff] [blame] | 1815 | def unify_cloud_config(cloud_config_preserve, cloud_config): |
| 1816 | ''' join the cloud config information into cloud_config_preserve. |
| 1817 | In case of conflict cloud_config_preserve preserves |
| 1818 | None is admited |
| 1819 | ''' |
| 1820 | if not cloud_config_preserve and not cloud_config: |
| 1821 | return None |
| 1822 | |
| 1823 | new_cloud_config = {"key-pairs":[], "users":[]} |
| 1824 | # key-pairs |
| 1825 | if cloud_config_preserve: |
| 1826 | for key in cloud_config_preserve.get("key-pairs", () ): |
| 1827 | if key not in new_cloud_config["key-pairs"]: |
| 1828 | new_cloud_config["key-pairs"].append(key) |
| 1829 | if cloud_config: |
| 1830 | for key in cloud_config.get("key-pairs", () ): |
| 1831 | if key not in new_cloud_config["key-pairs"]: |
| 1832 | new_cloud_config["key-pairs"].append(key) |
| 1833 | if not new_cloud_config["key-pairs"]: |
| 1834 | del new_cloud_config["key-pairs"] |
| 1835 | |
| 1836 | # users |
| 1837 | if cloud_config: |
| 1838 | new_cloud_config["users"] += cloud_config.get("users", () ) |
| 1839 | if cloud_config_preserve: |
| 1840 | new_cloud_config["users"] += cloud_config_preserve.get("users", () ) |
| tierno | a4e1a6e | 2016-08-31 14:19:40 +0200 | [diff] [blame] | 1841 | index_to_delete = [] |
| tierno | 36c0b17 | 2017-01-12 18:32:28 +0100 | [diff] [blame] | 1842 | users = new_cloud_config.get("users", []) |
| tierno | a4e1a6e | 2016-08-31 14:19:40 +0200 | [diff] [blame] | 1843 | for index0 in range(0,len(users)): |
| 1844 | if index0 in index_to_delete: |
| 1845 | continue |
| 1846 | for index1 in range(index0+1,len(users)): |
| 1847 | if index1 in index_to_delete: |
| 1848 | continue |
| 1849 | if users[index0]["name"] == users[index1]["name"]: |
| 1850 | index_to_delete.append(index1) |
| 1851 | for key in users[index1].get("key-pairs",()): |
| tierno | 36c0b17 | 2017-01-12 18:32:28 +0100 | [diff] [blame] | 1852 | if "key-pairs" not in users[index0]: |
| tierno | a4e1a6e | 2016-08-31 14:19:40 +0200 | [diff] [blame] | 1853 | users[index0]["key-pairs"] = [key] |
| 1854 | elif key not in users[index0]["key-pairs"]: |
| 1855 | users[index0]["key-pairs"].append(key) |
| 1856 | index_to_delete.sort(reverse=True) |
| 1857 | for index in index_to_delete: |
| 1858 | del users[index] |
| tierno | 36c0b17 | 2017-01-12 18:32:28 +0100 | [diff] [blame] | 1859 | if not new_cloud_config["users"]: |
| 1860 | del new_cloud_config["users"] |
| 1861 | |
| 1862 | #boot-data-drive |
| 1863 | if cloud_config and cloud_config.get("boot-data-drive") != None: |
| 1864 | new_cloud_config["boot-data-drive"] = cloud_config["boot-data-drive"] |
| 1865 | if cloud_config_preserve and cloud_config_preserve.get("boot-data-drive") != None: |
| 1866 | new_cloud_config["boot-data-drive"] = cloud_config_preserve["boot-data-drive"] |
| 1867 | |
| 1868 | # user-data |
| 1869 | if cloud_config and cloud_config.get("user-data") != None: |
| 1870 | new_cloud_config["user-data"] = cloud_config["user-data"] |
| 1871 | if cloud_config_preserve and cloud_config_preserve.get("user-data") != None: |
| 1872 | new_cloud_config["user-data"] = cloud_config_preserve["user-data"] |
| 1873 | |
| 1874 | # config files |
| 1875 | new_cloud_config["config-files"] = [] |
| 1876 | if cloud_config and cloud_config.get("config-files") != None: |
| 1877 | new_cloud_config["config-files"] += cloud_config["config-files"] |
| 1878 | if cloud_config_preserve: |
| 1879 | for file in cloud_config_preserve.get("config-files", ()): |
| 1880 | for index in range(0, len(new_cloud_config["config-files"])): |
| 1881 | if new_cloud_config["config-files"][index]["dest"] == file["dest"]: |
| 1882 | new_cloud_config["config-files"][index] = file |
| 1883 | break |
| 1884 | else: |
| 1885 | new_cloud_config["config-files"].append(file) |
| 1886 | if not new_cloud_config["config-files"]: |
| 1887 | del new_cloud_config["config-files"] |
| 1888 | return new_cloud_config |
| 1889 | |
| 1890 | |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 1891 | def get_vim_thread(mydb, tenant_id, datacenter_id_name=None, datacenter_tenant_id=None): |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1892 | datacenter_id = None |
| 1893 | datacenter_name = None |
| 1894 | thread = None |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 1895 | try: |
| 1896 | if datacenter_tenant_id: |
| 1897 | thread_id = datacenter_tenant_id |
| 1898 | thread = vim_threads["running"].get(datacenter_tenant_id) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1899 | else: |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 1900 | where_={"td.nfvo_tenant_id": tenant_id} |
| 1901 | if datacenter_id_name: |
| 1902 | if utils.check_valid_uuid(datacenter_id_name): |
| 1903 | datacenter_id = datacenter_id_name |
| 1904 | where_["dt.datacenter_id"] = datacenter_id |
| 1905 | else: |
| 1906 | datacenter_name = datacenter_id_name |
| 1907 | where_["d.name"] = datacenter_name |
| 1908 | if datacenter_tenant_id: |
| 1909 | where_["dt.uuid"] = datacenter_tenant_id |
| 1910 | datacenters = mydb.get_rows( |
| 1911 | SELECT=("dt.uuid as datacenter_tenant_id",), |
| 1912 | FROM="datacenter_tenants as dt join tenants_datacenters as td on dt.uuid=td.datacenter_tenant_id " |
| 1913 | "join datacenters as d on d.uuid=dt.datacenter_id", |
| 1914 | WHERE=where_) |
| 1915 | if len(datacenters) > 1: |
| 1916 | raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict) |
| 1917 | elif datacenters: |
| 1918 | thread_id = datacenters[0]["datacenter_tenant_id"] |
| 1919 | thread = vim_threads["running"].get(thread_id) |
| 1920 | if not thread: |
| 1921 | raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found) |
| 1922 | return thread_id, thread |
| 1923 | except db_base_Exception as e: |
| 1924 | raise NfvoException("{} {}".format(type(e).__name__ , str(e)), e.http_code) |
| tierno | a4e1a6e | 2016-08-31 14:19:40 +0200 | [diff] [blame] | 1925 | |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 1926 | def get_datacenter_by_name_uuid(mydb, tenant_id, datacenter_id_name=None, **extra_filter): |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 1927 | datacenter_id = None |
| 1928 | datacenter_name = None |
| 1929 | if datacenter_id_name: |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1930 | if utils.check_valid_uuid(datacenter_id_name): |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 1931 | datacenter_id = datacenter_id_name |
| 1932 | else: |
| 1933 | datacenter_name = datacenter_id_name |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 1934 | vims = get_vim(mydb, tenant_id, datacenter_id, datacenter_name, **extra_filter) |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 1935 | if len(vims) == 0: |
| 1936 | raise NfvoException("datacenter '{}' not found".format(str(datacenter_id_name)), HTTP_Not_Found) |
| 1937 | elif len(vims)>1: |
| 1938 | #print "nfvo.datacenter_action() error. Several datacenters found" |
| 1939 | raise NfvoException("More than one datacenters found, try to identify with uuid", HTTP_Conflict) |
| 1940 | return vims.keys()[0], vims.values()[0] |
| 1941 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1942 | |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 1943 | def update(d, u): |
| 1944 | '''Takes dict d and updates it with the values in dict u.''' |
| 1945 | '''It merges all depth levels''' |
| 1946 | for k, v in u.iteritems(): |
| 1947 | if isinstance(v, collections.Mapping): |
| 1948 | r = update(d.get(k, {}), v) |
| 1949 | d[k] = r |
| 1950 | else: |
| 1951 | d[k] = u[k] |
| 1952 | return d |
| 1953 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1954 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1955 | def create_instance(mydb, tenant_id, instance_dict): |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1956 | # print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id" |
| 1957 | # logger.debug("Creating instance...") |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1958 | scenario = instance_dict["scenario"] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1959 | |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 1960 | #find main datacenter |
| 1961 | myvims = {} |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 1962 | myvim_threads_id = {} |
| 1963 | instance_tasks={} |
| 1964 | tasks_to_launch={} |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1965 | datacenter = instance_dict.get("datacenter") |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 1966 | default_datacenter_id, vim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter) |
| 1967 | myvims[default_datacenter_id] = vim |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 1968 | myvim_threads_id[default_datacenter_id], _ = get_vim_thread(mydb, tenant_id, default_datacenter_id) |
| 1969 | tasks_to_launch[myvim_threads_id[default_datacenter_id]] = [] |
| tierno | 392f285 | 2016-05-13 12:28:55 +0200 | [diff] [blame] | 1970 | #myvim_tenant = myvim['tenant_id'] |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 1971 | # default_datacenter_name = vim['name'] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1972 | rollbackList=[] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1973 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 1974 | #print "Checking that the scenario exists and getting the scenario dictionary" |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 1975 | scenarioDict = mydb.get_scenario(scenario, tenant_id, default_datacenter_id) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1976 | |
| garciadeblas | bb6a1ed | 2016-09-30 14:02:09 +0000 | [diff] [blame] | 1977 | #logger.debug(">>>>>>> Dictionaries before merging") |
| 1978 | #logger.debug(">>>>>>> InstanceDict:\n{}".format(yaml.safe_dump(instance_dict,default_flow_style=False, width=256))) |
| 1979 | #logger.debug(">>>>>>> ScenarioDict:\n{}".format(yaml.safe_dump(scenarioDict,default_flow_style=False, width=256))) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1980 | |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 1981 | scenarioDict['datacenter_id'] = default_datacenter_id |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 1982 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1983 | auxNetDict = {} #Auxiliar dictionary. First key:'scenario' or sce_vnf uuid. Second Key: uuid of the net/sce_net. Value: vim_net_id |
| 1984 | auxNetDict['scenario'] = {} |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 1985 | |
| 1986 | logger.debug("Creating instance from scenario-dict:\n%s", yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)) #TODO remove |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1987 | instance_name = instance_dict["name"] |
| 1988 | instance_description = instance_dict.get("description") |
| 1989 | try: |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1990 | # 0 check correct parameters |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 1991 | for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems(): |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 1992 | found = False |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1993 | for scenario_net in scenarioDict['nets']: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 1994 | if net_name == scenario_net["name"]: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 1995 | found = True |
| 1996 | break |
| 1997 | if not found: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 1998 | raise NfvoException("Invalid scenario network name '{}' at instance:networks".format(net_name), HTTP_Bad_Request) |
| 1999 | if "sites" not in net_instance_desc: |
| 2000 | net_instance_desc["sites"] = [ {} ] |
| 2001 | site_without_datacenter_field = False |
| 2002 | for site in net_instance_desc["sites"]: |
| 2003 | if site.get("datacenter"): |
| 2004 | if site["datacenter"] not in myvims: |
| 2005 | #Add this datacenter to myvims |
| 2006 | d, v = get_datacenter_by_name_uuid(mydb, tenant_id, site["datacenter"]) |
| 2007 | myvims[d] = v |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2008 | myvim_threads_id[d],_ = get_vim_thread(mydb, tenant_id, site["datacenter"]) |
| 2009 | tasks_to_launch[myvim_threads_id[d]] = [] |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2010 | site["datacenter"] = d #change name to id |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2011 | else: |
| 2012 | if site_without_datacenter_field: |
| 2013 | raise NfvoException("Found more than one entries without datacenter field at instance:networks:{}:sites".format(net_name), HTTP_Bad_Request) |
| 2014 | site_without_datacenter_field = True |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2015 | site["datacenter"] = default_datacenter_id #change name to id |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2016 | |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2017 | for vnf_name, vnf_instance_desc in instance_dict.get("vnfs",{}).iteritems(): |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2018 | found=False |
| 2019 | for scenario_vnf in scenarioDict['vnfs']: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2020 | if vnf_name == scenario_vnf['name']: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2021 | found = True |
| 2022 | break |
| 2023 | if not found: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2024 | raise NfvoException("Invalid vnf name '{}' at instance:vnfs".format(vnf_instance_desc), HTTP_Bad_Request) |
| 2025 | if "datacenter" in vnf_instance_desc: |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2026 | # Add this datacenter to myvims |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2027 | if vnf_instance_desc["datacenter"] not in myvims: |
| 2028 | d, v = get_datacenter_by_name_uuid(mydb, tenant_id, vnf_instance_desc["datacenter"]) |
| 2029 | myvims[d] = v |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2030 | myvim_threads_id[d],_ = get_vim_thread(mydb, tenant_id, vnf_instance_desc["datacenter"]) |
| 2031 | tasks_to_launch[myvim_threads_id[d]] = [] |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2032 | scenario_vnf["datacenter"] = vnf_instance_desc["datacenter"] |
| garciadeblas | 3083338 | 2017-01-09 09:46:31 +0100 | [diff] [blame] | 2033 | |
| tierno | a4e1a6e | 2016-08-31 14:19:40 +0200 | [diff] [blame] | 2034 | #0.1 parse cloud-config parameters |
| tierno | 36c0b17 | 2017-01-12 18:32:28 +0100 | [diff] [blame] | 2035 | cloud_config = unify_cloud_config(instance_dict.get("cloud-config"), scenarioDict.get("cloud-config")) |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 2036 | |
| 2037 | #0.2 merge instance information into scenario |
| 2038 | #Ideally, the operation should be as simple as: update(scenarioDict,instance_dict) |
| 2039 | #However, this is not possible yet. |
| 2040 | for net_name, net_instance_desc in instance_dict.get("networks",{}).iteritems(): |
| 2041 | for scenario_net in scenarioDict['nets']: |
| 2042 | if net_name == scenario_net["name"]: |
| 2043 | if 'ip-profile' in net_instance_desc: |
| tierno | 455612d | 2017-05-30 16:40:10 +0200 | [diff] [blame] | 2044 | # translate from input format to database format |
| 2045 | ipprofile_in = net_instance_desc['ip-profile'] |
| 2046 | ipprofile_db = {} |
| 2047 | ipprofile_db['subnet_address'] = ipprofile_in.get('subnet-address') |
| 2048 | ipprofile_db['ip_version'] = ipprofile_in.get('ip-version', 'IPv4') |
| 2049 | ipprofile_db['gateway_address'] = ipprofile_in.get('gateway-address') |
| 2050 | ipprofile_db['dns_address'] = ipprofile_in.get('dns-address') |
| 2051 | if isinstance(ipprofile_db['dns_address'], (list, tuple)): |
| 2052 | ipprofile_db['dns_address'] = ";".join(ipprofile_db['dns_address']) |
| 2053 | if 'dhcp' in ipprofile_in: |
| 2054 | ipprofile_db['dhcp_start_address'] = ipprofile_in['dhcp'].get('start-address') |
| 2055 | ipprofile_db['dhcp_enabled'] = ipprofile_in['dhcp'].get('enabled', True) |
| 2056 | ipprofile_db['dhcp_count'] = ipprofile_in['dhcp'].get('count' ) |
| garciadeblas | edca7b3 | 2016-09-29 14:01:52 +0000 | [diff] [blame] | 2057 | if 'ip_profile' not in scenario_net: |
| tierno | 455612d | 2017-05-30 16:40:10 +0200 | [diff] [blame] | 2058 | scenario_net['ip_profile'] = ipprofile_db |
| garciadeblas | edca7b3 | 2016-09-29 14:01:52 +0000 | [diff] [blame] | 2059 | else: |
| tierno | 455612d | 2017-05-30 16:40:10 +0200 | [diff] [blame] | 2060 | update(scenario_net['ip_profile'], ipprofile_db) |
| tierno | e6c58ce | 2016-09-14 16:02:49 +0200 | [diff] [blame] | 2061 | for interface in net_instance_desc.get('interfaces', () ): |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 2062 | if 'ip_address' in interface: |
| 2063 | for vnf in scenarioDict['vnfs']: |
| 2064 | if interface['vnf'] == vnf['name']: |
| 2065 | for vnf_interface in vnf['interfaces']: |
| 2066 | if interface['vnf_interface'] == vnf_interface['external_name']: |
| 2067 | vnf_interface['ip_address']=interface['ip_address'] |
| 2068 | |
| garciadeblas | bb6a1ed | 2016-09-30 14:02:09 +0000 | [diff] [blame] | 2069 | #logger.debug(">>>>>>>> Merged dictionary") |
| tierno | 4319dad | 2016-09-05 12:11:11 +0200 | [diff] [blame] | 2070 | logger.debug("Creating instance scenario-dict MERGED:\n%s", yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False)) |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 2071 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2072 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2073 | # 1. Creating new nets (sce_nets) in the VIM" |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2074 | for sce_net in scenarioDict['nets']: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2075 | sce_net["vim_id_sites"]={} |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2076 | descriptor_net = instance_dict.get("networks",{}).get(sce_net["name"],{}) |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2077 | net_name = descriptor_net.get("vim-network-name") |
| 2078 | auxNetDict['scenario'][sce_net['uuid']] = {} |
| 2079 | |
| 2080 | sites = descriptor_net.get("sites", [ {} ]) |
| 2081 | for site in sites: |
| 2082 | if site.get("datacenter"): |
| 2083 | vim = myvims[ site["datacenter"] ] |
| 2084 | datacenter_id = site["datacenter"] |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2085 | myvim_thread_id = myvim_threads_id[ site["datacenter"] ] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2086 | else: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2087 | vim = myvims[ default_datacenter_id ] |
| 2088 | datacenter_id = default_datacenter_id |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2089 | myvim_thread_id = myvim_threads_id[default_datacenter_id] |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2090 | net_type = sce_net['type'] |
| 2091 | lookfor_filter = {'admin_state_up': True, 'status': 'ACTIVE'} #'shared': True |
| 2092 | if sce_net["external"]: |
| 2093 | if not net_name: |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2094 | net_name = sce_net["name"] |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2095 | if "netmap-use" in site or "netmap-create" in site: |
| 2096 | create_network = False |
| 2097 | lookfor_network = False |
| 2098 | if "netmap-use" in site: |
| 2099 | lookfor_network = True |
| 2100 | if utils.check_valid_uuid(site["netmap-use"]): |
| 2101 | filter_text = "scenario id '%s'" % site["netmap-use"] |
| 2102 | lookfor_filter["id"] = site["netmap-use"] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2103 | else: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2104 | filter_text = "scenario name '%s'" % site["netmap-use"] |
| 2105 | lookfor_filter["name"] = site["netmap-use"] |
| 2106 | if "netmap-create" in site: |
| 2107 | create_network = True |
| 2108 | net_vim_name = net_name |
| 2109 | if site["netmap-create"]: |
| 2110 | net_vim_name = site["netmap-create"] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2111 | |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2112 | elif sce_net['vim_id'] != None: |
| 2113 | #there is a netmap at datacenter_nets database #TODO REVISE!!!! |
| 2114 | create_network = False |
| 2115 | lookfor_network = True |
| 2116 | lookfor_filter["id"] = sce_net['vim_id'] |
| 2117 | filter_text = "vim_id '%s' datacenter_netmap name '%s'. Try to reload vims with datacenter-net-update" % (sce_net['vim_id'], sce_net["name"]) |
| 2118 | #look for network at datacenter and return error |
| 2119 | else: |
| 2120 | #There is not a netmap, look at datacenter for a net with this name and create if not found |
| 2121 | create_network = True |
| 2122 | lookfor_network = True |
| 2123 | lookfor_filter["name"] = sce_net["name"] |
| 2124 | net_vim_name = sce_net["name"] |
| 2125 | filter_text = "scenario name '%s'" % sce_net["name"] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2126 | else: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2127 | if not net_name: |
| 2128 | net_name = "%s.%s" %(instance_name, sce_net["name"]) |
| 2129 | net_name = net_name[:255] #limit length |
| 2130 | net_vim_name = net_name |
| 2131 | create_network = True |
| 2132 | lookfor_network = False |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2133 | |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2134 | if lookfor_network: |
| 2135 | vim_nets = vim.get_network_list(filter_dict=lookfor_filter) |
| 2136 | if len(vim_nets) > 1: |
| 2137 | raise NfvoException("More than one candidate VIM network found for " + filter_text, HTTP_Bad_Request ) |
| 2138 | elif len(vim_nets) == 0: |
| 2139 | if not create_network: |
| 2140 | raise NfvoException("No candidate VIM network found for " + filter_text, HTTP_Bad_Request ) |
| 2141 | else: |
| 2142 | sce_net["vim_id_sites"][datacenter_id] = vim_nets[0]['id'] |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2143 | auxNetDict['scenario'][sce_net['uuid']][datacenter_id] = vim_nets[0]['id'] |
| 2144 | create_network = False |
| 2145 | if create_network: |
| 2146 | #if network is not external |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2147 | task = new_task("new-net", (net_vim_name, net_type, sce_net.get('ip_profile',None))) |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2148 | task_id = task["id"] |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2149 | instance_tasks[task_id] = task |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2150 | tasks_to_launch[myvim_thread_id].append(task) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2151 | #network_id = vim.new_network(net_vim_name, net_type, sce_net.get('ip_profile',None)) |
| 2152 | sce_net["vim_id_sites"][datacenter_id] = task_id |
| 2153 | auxNetDict['scenario'][sce_net['uuid']][datacenter_id] = task_id |
| 2154 | rollbackList.append({'what':'network', 'where':'vim', 'vim_id':datacenter_id, 'uuid':task_id}) |
| tierno | 66345bc | 2016-09-26 11:37:55 +0200 | [diff] [blame] | 2155 | sce_net["created"] = True |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2156 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2157 | # 2. Creating new nets (vnf internal nets) in the VIM" |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2158 | #For each vnf net, we create it and we add it to instanceNetlist. |
| 2159 | for sce_vnf in scenarioDict['vnfs']: |
| 2160 | for net in sce_vnf['nets']: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2161 | if sce_vnf.get("datacenter"): |
| 2162 | vim = myvims[ sce_vnf["datacenter"] ] |
| 2163 | datacenter_id = sce_vnf["datacenter"] |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2164 | myvim_thread_id = myvim_threads_id[ sce_vnf["datacenter"]] |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2165 | else: |
| 2166 | vim = myvims[ default_datacenter_id ] |
| 2167 | datacenter_id = default_datacenter_id |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2168 | myvim_thread_id = myvim_threads_id[default_datacenter_id] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2169 | descriptor_net = instance_dict.get("vnfs",{}).get(sce_vnf["name"],{}) |
| 2170 | net_name = descriptor_net.get("name") |
| 2171 | if not net_name: |
| 2172 | net_name = "%s.%s" %(instance_name, net["name"]) |
| 2173 | net_name = net_name[:255] #limit length |
| 2174 | net_type = net['type'] |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2175 | task = new_task("new-net", (net_name, net_type, net.get('ip_profile',None))) |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2176 | task_id = task["id"] |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2177 | instance_tasks[task_id] = task |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2178 | tasks_to_launch[myvim_thread_id].append(task) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2179 | # network_id = vim.new_network(net_name, net_type, net.get('ip_profile',None)) |
| 2180 | net['vim_id'] = task_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2181 | if sce_vnf['uuid'] not in auxNetDict: |
| 2182 | auxNetDict[sce_vnf['uuid']] = {} |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2183 | auxNetDict[sce_vnf['uuid']][net['uuid']] = task_id |
| 2184 | rollbackList.append({'what':'network','where':'vim','vim_id':datacenter_id,'uuid':task_id}) |
| tierno | 66345bc | 2016-09-26 11:37:55 +0200 | [diff] [blame] | 2185 | net["created"] = True |
| 2186 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2187 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2188 | #print "auxNetDict:" |
| 2189 | #print yaml.safe_dump(auxNetDict, indent=4, default_flow_style=False) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2190 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2191 | # 3. Creating new vm instances in the VIM |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2192 | #myvim.new_vminstance(self,vimURI,tenant_id,name,description,image_id,flavor_id,net_dict) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2193 | for sce_vnf in scenarioDict['vnfs']: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2194 | if sce_vnf.get("datacenter"): |
| 2195 | vim = myvims[ sce_vnf["datacenter"] ] |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2196 | myvim_thread_id = myvim_threads_id[ sce_vnf["datacenter"] ] |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2197 | datacenter_id = sce_vnf["datacenter"] |
| 2198 | else: |
| 2199 | vim = myvims[ default_datacenter_id ] |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2200 | myvim_thread_id = myvim_threads_id[ default_datacenter_id ] |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2201 | datacenter_id = default_datacenter_id |
| 2202 | sce_vnf["datacenter_id"] = datacenter_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2203 | i = 0 |
| 2204 | for vm in sce_vnf['vms']: |
| 2205 | i += 1 |
| 2206 | myVMDict = {} |
| tierno | ae65a48 | 2016-11-24 16:20:05 +0100 | [diff] [blame] | 2207 | myVMDict['name'] = "{}.{}.{}".format(instance_name,sce_vnf['name'],chr(96+i)) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2208 | myVMDict['description'] = myVMDict['name'][0:99] |
| 2209 | # if not startvms: |
| 2210 | # myVMDict['start'] = "no" |
| 2211 | myVMDict['name'] = myVMDict['name'][0:255] #limit name length |
| 2212 | #create image at vim in case it not exist |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2213 | image_dict = mydb.get_table_by_uuid_name("images", vm['image_id']) |
| tierno | 5e91eb8 | 2016-10-04 09:39:07 +0000 | [diff] [blame] | 2214 | image_id = create_or_use_image(mydb, {datacenter_id: vim}, image_dict, [], True) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2215 | vm['vim_image_id'] = image_id |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2216 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2217 | #create flavor at vim in case it not exist |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2218 | flavor_dict = mydb.get_table_by_uuid_name("flavors", vm['flavor_id']) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2219 | if flavor_dict['extended']!=None: |
| 2220 | flavor_dict['extended']= yaml.load(flavor_dict['extended']) |
| montesmoreno | 0c8def0 | 2016-12-22 12:16:23 +0000 | [diff] [blame] | 2221 | flavor_id = create_or_use_flavor(mydb, {datacenter_id: vim}, flavor_dict, rollbackList, True) |
| 2222 | |
| montesmoreno | 0c8def0 | 2016-12-22 12:16:23 +0000 | [diff] [blame] | 2223 | #Obtain information for additional disks |
| 2224 | extended_flavor_dict = mydb.get_rows(FROM='datacenters_flavors', SELECT=('extended',), WHERE={'vim_id': flavor_id}) |
| 2225 | if not extended_flavor_dict: |
| 2226 | raise NfvoException("flavor '{}' not found".format(flavor_id), HTTP_Not_Found) |
| 2227 | return |
| 2228 | |
| 2229 | #extended_flavor_dict_yaml = yaml.load(extended_flavor_dict[0]) |
| 2230 | myVMDict['disks'] = None |
| 2231 | extended_info = extended_flavor_dict[0]['extended'] |
| 2232 | if extended_info != None: |
| 2233 | extended_flavor_dict_yaml = yaml.load(extended_info) |
| 2234 | if 'disks' in extended_flavor_dict_yaml: |
| 2235 | myVMDict['disks'] = extended_flavor_dict_yaml['disks'] |
| 2236 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2237 | vm['vim_flavor_id'] = flavor_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2238 | myVMDict['imageRef'] = vm['vim_image_id'] |
| 2239 | myVMDict['flavorRef'] = vm['vim_flavor_id'] |
| 2240 | myVMDict['networks'] = [] |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2241 | task_depends = {} |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2242 | #TODO ALF. connect_mgmt_interfaces. Connect management interfaces if this is true |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2243 | for iface in vm['interfaces']: |
| 2244 | netDict = {} |
| 2245 | if iface['type']=="data": |
| 2246 | netDict['type'] = iface['model'] |
| 2247 | elif "model" in iface and iface["model"]!=None: |
| 2248 | netDict['model']=iface['model'] |
| 2249 | #TODO in future, remove this because mac_address will not be set, and the type of PV,VF is obtained from iterface table model |
| 2250 | #discover type of interface looking at flavor |
| 2251 | for numa in flavor_dict.get('extended',{}).get('numas',[]): |
| 2252 | for flavor_iface in numa.get('interfaces',[]): |
| 2253 | if flavor_iface.get('name') == iface['internal_name']: |
| 2254 | if flavor_iface['dedicated'] == 'yes': |
| 2255 | netDict['type']="PF" #passthrough |
| 2256 | elif flavor_iface['dedicated'] == 'no': |
| 2257 | netDict['type']="VF" #siov |
| 2258 | elif flavor_iface['dedicated'] == 'yes:sriov': |
| 2259 | netDict['type']="VFnotShared" #sriov but only one sriov on the PF |
| 2260 | netDict["mac_address"] = flavor_iface.get("mac_address") |
| 2261 | break; |
| 2262 | netDict["use"]=iface['type'] |
| 2263 | if netDict["use"]=="data" and not netDict.get("type"): |
| 2264 | #print "netDict", netDict |
| 2265 | #print "iface", iface |
| 2266 | e_text = "Cannot determine the interface type PF or VF of VNF '%s' VM '%s' iface '%s'" %(sce_vnf['name'], vm['name'], iface['internal_name']) |
| 2267 | if flavor_dict.get('extended')==None: |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2268 | raise NfvoException(e_text + "After database migration some information is not available. \ |
| 2269 | Try to delete and create the scenarios and VNFs again", HTTP_Conflict) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2270 | else: |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2271 | raise NfvoException(e_text, HTTP_Internal_Server_Error) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2272 | if netDict["use"]=="mgmt" or netDict["use"]=="bridge": |
| 2273 | netDict["type"]="virtual" |
| 2274 | if "vpci" in iface and iface["vpci"] is not None: |
| 2275 | netDict['vpci'] = iface['vpci'] |
| 2276 | if "mac" in iface and iface["mac"] is not None: |
| 2277 | netDict['mac_address'] = iface['mac'] |
| montesmoreno | 2a1fc4e | 2017-01-09 16:46:04 +0000 | [diff] [blame] | 2278 | if "port-security" in iface and iface["port-security"] is not None: |
| 2279 | netDict['port_security'] = iface['port-security'] |
| 2280 | if "floating-ip" in iface and iface["floating-ip"] is not None: |
| 2281 | netDict['floating_ip'] = iface['floating-ip'] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2282 | netDict['name'] = iface['internal_name'] |
| 2283 | if iface['net_id'] is None: |
| 2284 | for vnf_iface in sce_vnf["interfaces"]: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2285 | #print iface |
| 2286 | #print vnf_iface |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2287 | if vnf_iface['interface_id']==iface['uuid']: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2288 | netDict['net_id'] = auxNetDict['scenario'][ vnf_iface['sce_net_id'] ][datacenter_id] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2289 | break |
| 2290 | else: |
| 2291 | netDict['net_id'] = auxNetDict[ sce_vnf['uuid'] ][ iface['net_id'] ] |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2292 | if netDict.get('net_id') and is_task_id(netDict['net_id']): |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2293 | task_depends[netDict['net_id']] = instance_tasks[netDict['net_id']] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2294 | #skip bridge ifaces not connected to any net |
| 2295 | #if 'net_id' not in netDict or netDict['net_id']==None: |
| 2296 | # continue |
| 2297 | myVMDict['networks'].append(netDict) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2298 | #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>" |
| 2299 | #print myVMDict['name'] |
| 2300 | #print "networks", yaml.safe_dump(myVMDict['networks'], indent=4, default_flow_style=False) |
| 2301 | #print "interfaces", yaml.safe_dump(vm['interfaces'], indent=4, default_flow_style=False) |
| 2302 | #print ">>>>>>>>>>>>>>>>>>>>>>>>>>>" |
| tierno | 36c0b17 | 2017-01-12 18:32:28 +0100 | [diff] [blame] | 2303 | if vm.get("boot_data"): |
| 2304 | cloud_config_vm = unify_cloud_config(vm["boot_data"], cloud_config) |
| 2305 | else: |
| 2306 | cloud_config_vm = cloud_config |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2307 | task = new_task("new-vm", (myVMDict['name'], myVMDict['description'], myVMDict.get('start', None), |
| 2308 | myVMDict['imageRef'], myVMDict['flavorRef'], myVMDict['networks'], |
| 2309 | cloud_config_vm, myVMDict['disks']), depends=task_depends) |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2310 | instance_tasks[task["id"]] = task |
| 2311 | tasks_to_launch[myvim_thread_id].append(task) |
| 2312 | vm_id = task["id"] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2313 | vm['vim_id'] = vm_id |
| 2314 | rollbackList.append({'what':'vm','where':'vim','vim_id':datacenter_id,'uuid':vm_id}) |
| 2315 | #put interface uuid back to scenario[vnfs][vms[[interfaces] |
| 2316 | for net in myVMDict['networks']: |
| 2317 | if "vim_id" in net: |
| 2318 | for iface in vm['interfaces']: |
| 2319 | if net["name"]==iface["internal_name"]: |
| 2320 | iface["vim_id"]=net["vim_id"] |
| 2321 | break |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2322 | scenarioDict["datacenter2tenant"] = myvim_threads_id |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2323 | logger.debug("create_instance Deployment done scenarioDict: %s", |
| 2324 | yaml.safe_dump(scenarioDict, indent=4, default_flow_style=False) ) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2325 | instance_id = mydb.new_instance_scenario_as_a_whole(tenant_id,instance_name, instance_description, scenarioDict) |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2326 | for myvim_thread_id,task_list in tasks_to_launch.items(): |
| 2327 | for task in task_list: |
| 2328 | vim_threads["running"][myvim_thread_id].insert_task(task) |
| 2329 | |
| 2330 | global_instance_tasks[instance_id] = instance_tasks |
| 2331 | # Update database with those ended instance_tasks |
| 2332 | # for task in instance_tasks.values(): |
| 2333 | # if task["status"] == "ok": |
| 2334 | # if task["name"] == "new-vm": |
| 2335 | # mydb.update_rows("instance_vms", UPDATE={"vim_vm_id": task["result"]}, |
| 2336 | # WHERE={"vim_vm_id": task["id"]}) |
| 2337 | # elif task["name"] == "new-net": |
| 2338 | # mydb.update_rows("instance_nets", UPDATE={"vim_net_id": task["result"]}, |
| 2339 | # WHERE={"vim_net_id": task["id"]}) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2340 | return mydb.get_instance_scenario(instance_id) |
| 2341 | except (NfvoException, vimconn.vimconnException,db_base_Exception) as e: |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 2342 | message = rollback(mydb, myvims, rollbackList) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2343 | if isinstance(e, db_base_Exception): |
| 2344 | error_text = "database Exception" |
| 2345 | elif isinstance(e, vimconn.vimconnException): |
| 2346 | error_text = "VIM Exception" |
| 2347 | else: |
| 2348 | error_text = "Exception" |
| 2349 | error_text += " {} {}. {}".format(type(e).__name__, str(e), message) |
| 2350 | #logger.error("create_instance: %s", error_text) |
| 2351 | raise NfvoException(error_text, e.http_code) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2352 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2353 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2354 | def delete_instance(mydb, tenant_id, instance_id): |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2355 | #print "Checking that the instance_id exists and getting the instance dictionary" |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2356 | instanceDict = mydb.get_instance_scenario(instance_id, tenant_id) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2357 | #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2358 | tenant_id = instanceDict["tenant_id"] |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2359 | #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id" |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2360 | |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2361 | #1. Delete from Database |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2362 | message = mydb.delete_instance_scenario(instance_id, tenant_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2363 | |
| 2364 | #2. delete from VIM |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2365 | error_msg = "" |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2366 | myvims = {} |
| 2367 | myvim_threads = {} |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2368 | |
| 2369 | #2.1 deleting VMs |
| 2370 | #vm_fail_list=[] |
| 2371 | for sce_vnf in instanceDict['vnfs']: |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2372 | datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"]) |
| 2373 | if datacenter_key not in myvims: |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2374 | try: |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2375 | _,myvim_thread = get_vim_thread(mydb, tenant_id, sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"]) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2376 | except NfvoException as e: |
| 2377 | logger.error(str(e)) |
| 2378 | myvim_thread = None |
| 2379 | myvim_threads[datacenter_key] = myvim_thread |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2380 | vims = get_vim(mydb, tenant_id, datacenter_id=sce_vnf["datacenter_id"], |
| 2381 | datacenter_tenant_id=sce_vnf["datacenter_tenant_id"]) |
| 2382 | if len(vims) == 0: |
| 2383 | logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"], |
| 2384 | sce_vnf["datacenter_tenant_id"])) |
| 2385 | myvims[datacenter_key] = None |
| 2386 | else: |
| 2387 | myvims[datacenter_key] = vims.values()[0] |
| 2388 | myvim = myvims[datacenter_key] |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2389 | myvim_thread = myvim_threads[datacenter_key] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2390 | for vm in sce_vnf['vms']: |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2391 | if not myvim: |
| 2392 | error_msg += "\n VM id={} cannot be deleted because datacenter={} not found".format(vm['vim_vm_id'], sce_vnf["datacenter_id"]) |
| 2393 | continue |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2394 | try: |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2395 | task=None |
| 2396 | if is_task_id(vm['vim_vm_id']): |
| 2397 | task_id = vm['vim_vm_id'] |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2398 | old_task = global_instance_tasks[instance_id].get(task_id) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2399 | if not old_task: |
| 2400 | error_msg += "\n VM was scheduled for create, but task {} is not found".format(task_id) |
| 2401 | continue |
| 2402 | with task_lock: |
| 2403 | if old_task["status"] == "enqueued": |
| 2404 | old_task["status"] = "deleted" |
| 2405 | elif old_task["status"] == "error": |
| 2406 | continue |
| 2407 | elif old_task["status"] == "processing": |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2408 | task = new_task("del-vm", (task_id, vm["interfaces"]), depends={task_id: old_task}) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2409 | else: #ok |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2410 | task = new_task("del-vm", (old_task["result"], vm["interfaces"])) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2411 | else: |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2412 | task = new_task("del-vm", (vm['vim_vm_id'], vm["interfaces"]) ) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2413 | if task: |
| 2414 | myvim_thread.insert_task(task) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2415 | except vimconn.vimconnNotFoundException as e: |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2416 | error_msg+="\n VM VIM_id={} not found at datacenter={}".format(vm['vim_vm_id'], sce_vnf["datacenter_id"]) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2417 | logger.warn("VM instance '%s'uuid '%s', VIM id '%s', from VNF_id '%s' not found", |
| 2418 | vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id']) |
| 2419 | except vimconn.vimconnException as e: |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2420 | error_msg+="\n VM VIM_id={} at datacenter={} Error: {} {}".format(vm['vim_vm_id'], sce_vnf["datacenter_id"], e.http_code, str(e)) |
| 2421 | logger.error("Error %d deleting VM instance '%s'uuid '%s', VIM_id '%s', from VNF_id '%s': %s", |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2422 | e.http_code, vm['name'], vm['uuid'], vm['vim_vm_id'], sce_vnf['vnf_id'], str(e)) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2423 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2424 | #2.2 deleting NETS |
| 2425 | #net_fail_list=[] |
| 2426 | for net in instanceDict['nets']: |
| tierno | 66345bc | 2016-09-26 11:37:55 +0200 | [diff] [blame] | 2427 | if not net['created']: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2428 | continue #skip not created nets |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2429 | datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"]) |
| 2430 | if datacenter_key not in myvims: |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2431 | try: |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2432 | _,myvim_thread = get_vim_thread(mydb, tenant_id, sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"]) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2433 | except NfvoException as e: |
| 2434 | logger.error(str(e)) |
| 2435 | myvim_thread = None |
| 2436 | myvim_threads[datacenter_key] = myvim_thread |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2437 | vims = get_vim(mydb, tenant_id, datacenter_id=net["datacenter_id"], |
| 2438 | datacenter_tenant_id=net["datacenter_tenant_id"]) |
| 2439 | if len(vims) == 0: |
| 2440 | logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])) |
| 2441 | myvims[datacenter_key] = None |
| 2442 | else: |
| 2443 | myvims[datacenter_key] = vims.values()[0] |
| 2444 | myvim = myvims[datacenter_key] |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2445 | myvim_thread = myvim_threads[datacenter_key] |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2446 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2447 | if not myvim: |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2448 | error_msg += "\n Net VIM_id={} cannot be deleted because datacenter={} not found".format(net['vim_net_id'], net["datacenter_id"]) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2449 | continue |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2450 | try: |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2451 | task = None |
| 2452 | if is_task_id(net['vim_net_id']): |
| 2453 | task_id = net['vim_net_id'] |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2454 | old_task = global_instance_tasks[instance_id].get(task_id) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2455 | if not old_task: |
| 2456 | error_msg += "\n NET was scheduled for create, but task {} is not found".format(task_id) |
| 2457 | continue |
| 2458 | with task_lock: |
| 2459 | if old_task["status"] == "enqueued": |
| 2460 | old_task["status"] = "deleted" |
| 2461 | elif old_task["status"] == "error": |
| 2462 | continue |
| 2463 | elif old_task["status"] == "processing": |
| 2464 | task = new_task("del-net", task_id, depends={task_id: old_task}) |
| 2465 | else: # ok |
| 2466 | task = new_task("del-net", old_task["result"]) |
| 2467 | else: |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2468 | task = new_task("del-net", (net['vim_net_id'], net['sdn_net_id'])) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2469 | if task: |
| 2470 | myvim_thread.insert_task(task) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2471 | except vimconn.vimconnNotFoundException as e: |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2472 | error_msg += "\n NET VIM_id={} not found at datacenter={}".format(net['vim_net_id'], net["datacenter_id"]) |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2473 | logger.warn("NET '%s', VIM_id '%s', from VNF_net_id '%s' not found", |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2474 | net['uuid'], net['vim_net_id'], str(net['vnf_net_id'])) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2475 | except vimconn.vimconnException as e: |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2476 | error_msg += "\n NET VIM_id={} at datacenter={} Error: {} {}".format(net['vim_net_id'], |
| 2477 | net["datacenter_id"], |
| 2478 | e.http_code, str(e)) |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2479 | logger.error("Error %d deleting NET '%s', VIM_id '%s', from VNF_net_id '%s': %s", |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2480 | e.http_code, net['uuid'], net['vim_net_id'], str(net['vnf_net_id']), str(e)) |
| 2481 | if len(error_msg) > 0: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2482 | return 'instance ' + message + ' deleted but some elements could not be deleted, or already deleted (error: 404) from VIM: ' + error_msg |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2483 | else: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2484 | return 'instance ' + message + ' deleted' |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2485 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2486 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2487 | def refresh_instance(mydb, nfvo_tenant, instanceDict, datacenter=None, vim_tenant=None): |
| 2488 | '''Refreshes a scenario instance. It modifies instanceDict''' |
| 2489 | '''Returns: |
| 2490 | - result: <0 if there is any unexpected error, n>=0 if no errors where n is the number of vms and nets that couldn't be updated in the database |
| 2491 | - error_msg |
| 2492 | ''' |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2493 | # # Assumption: nfvo_tenant and instance_id were checked before entering into this function |
| 2494 | # #print "nfvo.refresh_instance begins" |
| 2495 | # #print json.dumps(instanceDict, indent=4) |
| 2496 | # |
| 2497 | # #print "Getting the VIM URL and the VIM tenant_id" |
| 2498 | # myvims={} |
| 2499 | # |
| 2500 | # # 1. Getting VIM vm and net list |
| 2501 | # vms_updated = [] #List of VM instance uuids in openmano that were updated |
| 2502 | # vms_notupdated=[] |
| 2503 | # vm_list = {} |
| 2504 | # for sce_vnf in instanceDict['vnfs']: |
| 2505 | # datacenter_key = (sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"]) |
| 2506 | # if datacenter_key not in vm_list: |
| 2507 | # vm_list[datacenter_key] = [] |
| 2508 | # if datacenter_key not in myvims: |
| 2509 | # vims = get_vim(mydb, nfvo_tenant, datacenter_id=sce_vnf["datacenter_id"], |
| 2510 | # datacenter_tenant_id=sce_vnf["datacenter_tenant_id"]) |
| 2511 | # if len(vims) == 0: |
| 2512 | # logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(sce_vnf["datacenter_id"], sce_vnf["datacenter_tenant_id"])) |
| 2513 | # myvims[datacenter_key] = None |
| 2514 | # else: |
| 2515 | # myvims[datacenter_key] = vims.values()[0] |
| 2516 | # for vm in sce_vnf['vms']: |
| 2517 | # vm_list[datacenter_key].append(vm['vim_vm_id']) |
| 2518 | # vms_notupdated.append(vm["uuid"]) |
| 2519 | # |
| 2520 | # nets_updated = [] #List of VM instance uuids in openmano that were updated |
| 2521 | # nets_notupdated=[] |
| 2522 | # net_list = {} |
| 2523 | # for net in instanceDict['nets']: |
| 2524 | # datacenter_key = (net["datacenter_id"], net["datacenter_tenant_id"]) |
| 2525 | # if datacenter_key not in net_list: |
| 2526 | # net_list[datacenter_key] = [] |
| 2527 | # if datacenter_key not in myvims: |
| 2528 | # vims = get_vim(mydb, nfvo_tenant, datacenter_id=net["datacenter_id"], |
| 2529 | # datacenter_tenant_id=net["datacenter_tenant_id"]) |
| 2530 | # if len(vims) == 0: |
| 2531 | # logger.error("datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"])) |
| 2532 | # myvims[datacenter_key] = None |
| 2533 | # else: |
| 2534 | # myvims[datacenter_key] = vims.values()[0] |
| 2535 | # |
| 2536 | # net_list[datacenter_key].append(net['vim_net_id']) |
| 2537 | # nets_notupdated.append(net["uuid"]) |
| 2538 | # |
| 2539 | # # 1. Getting the status of all VMs |
| 2540 | # vm_dict={} |
| 2541 | # for datacenter_key in myvims: |
| 2542 | # if not vm_list.get(datacenter_key): |
| 2543 | # continue |
| 2544 | # failed = True |
| 2545 | # failed_message="" |
| 2546 | # if not myvims[datacenter_key]: |
| 2547 | # failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]) |
| 2548 | # else: |
| 2549 | # try: |
| 2550 | # vm_dict.update(myvims[datacenter_key].refresh_vms_status(vm_list[datacenter_key]) ) |
| 2551 | # failed = False |
| 2552 | # except vimconn.vimconnException as e: |
| 2553 | # logger.error("VIM exception %s %s", type(e).__name__, str(e)) |
| 2554 | # failed_message = str(e) |
| 2555 | # if failed: |
| 2556 | # for vm in vm_list[datacenter_key]: |
| 2557 | # vm_dict[vm] = {'status': "VIM_ERROR", 'error_msg': failed_message} |
| 2558 | # |
| 2559 | # # 2. Update the status of VMs in the instanceDict, while collects the VMs whose status changed |
| 2560 | # for sce_vnf in instanceDict['vnfs']: |
| 2561 | # for vm in sce_vnf['vms']: |
| 2562 | # vm_id = vm['vim_vm_id'] |
| 2563 | # interfaces = vm_dict[vm_id].pop('interfaces', []) |
| 2564 | # #2.0 look if contain manamgement interface, and if not change status from ACTIVE:NoMgmtIP to ACTIVE |
| 2565 | # has_mgmt_iface = False |
| 2566 | # for iface in vm["interfaces"]: |
| 2567 | # if iface["type"]=="mgmt": |
| 2568 | # has_mgmt_iface = True |
| 2569 | # if vm_dict[vm_id]['status'] == "ACTIVE:NoMgmtIP" and not has_mgmt_iface: |
| 2570 | # vm_dict[vm_id]['status'] = "ACTIVE" |
| 2571 | # if vm_dict[vm_id].get('error_msg') and len(vm_dict[vm_id]['error_msg']) >= 1024: |
| 2572 | # vm_dict[vm_id]['error_msg'] = vm_dict[vm_id]['error_msg'][:516] + " ... " + vm_dict[vm_id]['error_msg'][-500:] |
| 2573 | # if vm['status'] != vm_dict[vm_id]['status'] or vm.get('error_msg')!=vm_dict[vm_id].get('error_msg') or vm.get('vim_info')!=vm_dict[vm_id].get('vim_info'): |
| 2574 | # vm['status'] = vm_dict[vm_id]['status'] |
| 2575 | # vm['error_msg'] = vm_dict[vm_id].get('error_msg') |
| 2576 | # vm['vim_info'] = vm_dict[vm_id].get('vim_info') |
| 2577 | # # 2.1. Update in openmano DB the VMs whose status changed |
| 2578 | # try: |
| 2579 | # updates = mydb.update_rows('instance_vms', UPDATE=vm_dict[vm_id], WHERE={'uuid':vm["uuid"]}) |
| 2580 | # vms_notupdated.remove(vm["uuid"]) |
| 2581 | # if updates>0: |
| 2582 | # vms_updated.append(vm["uuid"]) |
| 2583 | # except db_base_Exception as e: |
| 2584 | # logger.error("nfvo.refresh_instance error database update: %s", str(e)) |
| 2585 | # # 2.2. Update in openmano DB the interface VMs |
| 2586 | # for interface in interfaces: |
| 2587 | # #translate from vim_net_id to instance_net_id |
| 2588 | # network_id_list=[] |
| 2589 | # for net in instanceDict['nets']: |
| 2590 | # if net["vim_net_id"] == interface["vim_net_id"]: |
| 2591 | # network_id_list.append(net["uuid"]) |
| 2592 | # if not network_id_list: |
| 2593 | # continue |
| 2594 | # del interface["vim_net_id"] |
| 2595 | # try: |
| 2596 | # for network_id in network_id_list: |
| 2597 | # mydb.update_rows('instance_interfaces', UPDATE=interface, WHERE={'instance_vm_id':vm["uuid"], "instance_net_id":network_id}) |
| 2598 | # except db_base_Exception as e: |
| 2599 | # logger.error( "nfvo.refresh_instance error with vm=%s, interface_net_id=%s", vm["uuid"], network_id) |
| 2600 | # |
| 2601 | # # 3. Getting the status of all nets |
| 2602 | # net_dict = {} |
| 2603 | # for datacenter_key in myvims: |
| 2604 | # if not net_list.get(datacenter_key): |
| 2605 | # continue |
| 2606 | # failed = True |
| 2607 | # failed_message = "" |
| 2608 | # if not myvims[datacenter_key]: |
| 2609 | # failed_message = "datacenter '{}' with datacenter_tenant_id '{}' not found".format(net["datacenter_id"], net["datacenter_tenant_id"]) |
| 2610 | # else: |
| 2611 | # try: |
| 2612 | # net_dict.update(myvims[datacenter_key].refresh_nets_status(net_list[datacenter_key]) ) |
| 2613 | # failed = False |
| 2614 | # except vimconn.vimconnException as e: |
| 2615 | # logger.error("VIM exception %s %s", type(e).__name__, str(e)) |
| 2616 | # failed_message = str(e) |
| 2617 | # if failed: |
| 2618 | # for net in net_list[datacenter_key]: |
| 2619 | # net_dict[net] = {'status': "VIM_ERROR", 'error_msg': failed_message} |
| 2620 | # |
| 2621 | # # 4. Update the status of nets in the instanceDict, while collects the nets whose status changed |
| 2622 | # # TODO: update nets inside a vnf |
| 2623 | # for net in instanceDict['nets']: |
| 2624 | # net_id = net['vim_net_id'] |
| 2625 | # if net_dict[net_id].get('error_msg') and len(net_dict[net_id]['error_msg']) >= 1024: |
| 2626 | # net_dict[net_id]['error_msg'] = net_dict[net_id]['error_msg'][:516] + " ... " + net_dict[vm_id]['error_msg'][-500:] |
| 2627 | # if net['status'] != net_dict[net_id]['status'] or net.get('error_msg')!=net_dict[net_id].get('error_msg') or net.get('vim_info')!=net_dict[net_id].get('vim_info'): |
| 2628 | # net['status'] = net_dict[net_id]['status'] |
| 2629 | # net['error_msg'] = net_dict[net_id].get('error_msg') |
| 2630 | # net['vim_info'] = net_dict[net_id].get('vim_info') |
| 2631 | # # 5.1. Update in openmano DB the nets whose status changed |
| 2632 | # try: |
| 2633 | # updated = mydb.update_rows('instance_nets', UPDATE=net_dict[net_id], WHERE={'uuid':net["uuid"]}) |
| 2634 | # nets_notupdated.remove(net["uuid"]) |
| 2635 | # if updated>0: |
| 2636 | # nets_updated.append(net["uuid"]) |
| 2637 | # except db_base_Exception as e: |
| 2638 | # logger.error("nfvo.refresh_instance error database update: %s", str(e)) |
| 2639 | # |
| 2640 | # # Returns appropriate output |
| 2641 | # #print "nfvo.refresh_instance finishes" |
| 2642 | # logger.debug("VMs updated in the database: %s; nets updated in the database %s; VMs not updated: %s; nets not updated: %s", |
| 2643 | # str(vms_updated), str(nets_updated), str(vms_notupdated), str(nets_notupdated)) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2644 | instance_id = instanceDict['uuid'] |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2645 | # if len(vms_notupdated)+len(nets_notupdated)>0: |
| 2646 | # error_msg = "VMs not updated: " + str(vms_notupdated) + "; nets not updated: " + str(nets_notupdated) |
| 2647 | # return len(vms_notupdated)+len(nets_notupdated), 'Scenario instance ' + instance_id + ' refreshed but some elements could not be updated in the database: ' + error_msg |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2648 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2649 | return 0, 'Scenario instance ' + instance_id + ' refreshed.' |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2650 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2651 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2652 | def instance_action(mydb,nfvo_tenant,instance_id, action_dict): |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2653 | #print "Checking that the instance_id exists and getting the instance dictionary" |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2654 | instanceDict = mydb.get_instance_scenario(instance_id, nfvo_tenant) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2655 | #print yaml.safe_dump(instanceDict, indent=4, default_flow_style=False) |
| 2656 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2657 | #print "Checking that nfvo_tenant_id exists and getting the VIM URI and the VIM tenant_id" |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2658 | vims = get_vim(mydb, nfvo_tenant, instanceDict['datacenter_id']) |
| 2659 | if len(vims) == 0: |
| 2660 | raise NfvoException("datacenter '{}' not found".format(str(instanceDict['datacenter_id'])), HTTP_Not_Found) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2661 | myvim = vims.values()[0] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2662 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2663 | |
| 2664 | input_vnfs = action_dict.pop("vnfs", []) |
| 2665 | input_vms = action_dict.pop("vms", []) |
| 2666 | action_over_all = True if len(input_vnfs)==0 and len (input_vms)==0 else False |
| 2667 | vm_result = {} |
| 2668 | vm_error = 0 |
| 2669 | vm_ok = 0 |
| 2670 | for sce_vnf in instanceDict['vnfs']: |
| 2671 | for vm in sce_vnf['vms']: |
| 2672 | if not action_over_all: |
| 2673 | if sce_vnf['uuid'] not in input_vnfs and sce_vnf['vnf_name'] not in input_vnfs and \ |
| 2674 | vm['uuid'] not in input_vms and vm['name'] not in input_vms: |
| 2675 | continue |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2676 | try: |
| 2677 | data = myvim.action_vminstance(vm['vim_vm_id'], action_dict) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2678 | if "console" in action_dict: |
| tierno | 20fc2a2 | 2016-08-19 17:02:35 +0200 | [diff] [blame] | 2679 | if not global_config["http_console_proxy"]: |
| 2680 | vm_result[ vm['uuid'] ] = {"vim_result": 200, |
| 2681 | "description": "{protocol}//{ip}:{port}/{suffix}".format( |
| 2682 | protocol=data["protocol"], |
| 2683 | ip = data["server"], |
| 2684 | port = data["port"], |
| 2685 | suffix = data["suffix"]), |
| 2686 | "name":vm['name'] |
| 2687 | } |
| 2688 | vm_ok +=1 |
| 2689 | elif data["server"]=="127.0.0.1" or data["server"]=="localhost": |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2690 | vm_result[ vm['uuid'] ] = {"vim_result": -HTTP_Unauthorized, |
| 2691 | "description": "this console is only reachable by local interface", |
| 2692 | "name":vm['name'] |
| 2693 | } |
| 2694 | vm_error+=1 |
| tierno | 20fc2a2 | 2016-08-19 17:02:35 +0200 | [diff] [blame] | 2695 | else: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2696 | #print "console data", data |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2697 | try: |
| tierno | 20fc2a2 | 2016-08-19 17:02:35 +0200 | [diff] [blame] | 2698 | console_thread = create_or_use_console_proxy_thread(data["server"], data["port"]) |
| 2699 | vm_result[ vm['uuid'] ] = {"vim_result": 200, |
| 2700 | "description": "{protocol}//{ip}:{port}/{suffix}".format( |
| 2701 | protocol=data["protocol"], |
| 2702 | ip = global_config["http_console_host"], |
| 2703 | port = console_thread.port, |
| 2704 | suffix = data["suffix"]), |
| 2705 | "name":vm['name'] |
| 2706 | } |
| 2707 | vm_ok +=1 |
| 2708 | except NfvoException as e: |
| 2709 | vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)} |
| 2710 | vm_error+=1 |
| 2711 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2712 | else: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2713 | vm_result[ vm['uuid'] ] = {"vim_result": 200, "description": "ok", "name":vm['name']} |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2714 | vm_ok +=1 |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2715 | except vimconn.vimconnException as e: |
| 2716 | vm_result[ vm['uuid'] ] = {"vim_result": e.http_code, "name":vm['name'], "description": str(e)} |
| 2717 | vm_error+=1 |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2718 | |
| 2719 | if vm_ok==0: #all goes wrong |
| tierno | 351863c | 2016-07-23 01:46:03 +0200 | [diff] [blame] | 2720 | return vm_result |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2721 | else: |
| tierno | 351863c | 2016-07-23 01:46:03 +0200 | [diff] [blame] | 2722 | return vm_result |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2723 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2724 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2725 | def create_or_use_console_proxy_thread(console_server, console_port): |
| 2726 | #look for a non-used port |
| 2727 | console_thread_key = console_server + ":" + str(console_port) |
| 2728 | if console_thread_key in global_config["console_thread"]: |
| 2729 | #global_config["console_thread"][console_thread_key].start_timeout() |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2730 | return global_config["console_thread"][console_thread_key] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2731 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2732 | for port in global_config["console_port_iterator"](): |
| tierno | 20fc2a2 | 2016-08-19 17:02:35 +0200 | [diff] [blame] | 2733 | #print "create_or_use_console_proxy_thread() port:", port |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2734 | if port in global_config["console_ports"]: |
| 2735 | continue |
| 2736 | try: |
| 2737 | clithread = cli.ConsoleProxyThread(global_config['http_host'], port, console_server, console_port) |
| 2738 | clithread.start() |
| 2739 | global_config["console_thread"][console_thread_key] = clithread |
| 2740 | global_config["console_ports"][port] = console_thread_key |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2741 | return clithread |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2742 | except cli.ConsoleProxyExceptionPortUsed as e: |
| 2743 | #port used, try with onoher |
| 2744 | continue |
| 2745 | except cli.ConsoleProxyException as e: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2746 | raise NfvoException(str(e), HTTP_Bad_Request) |
| 2747 | raise NfvoException("Not found any free 'http_console_ports'", HTTP_Conflict) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2748 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2749 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2750 | def check_tenant(mydb, tenant_id): |
| 2751 | '''check that tenant exists at database''' |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2752 | tenant = mydb.get_rows(FROM='nfvo_tenants', SELECT=('uuid',), WHERE={'uuid': tenant_id}) |
| 2753 | if not tenant: |
| 2754 | raise NfvoException("tenant '{}' not found".format(tenant_id), HTTP_Not_Found) |
| 2755 | return |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2756 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2757 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2758 | def new_tenant(mydb, tenant_dict): |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2759 | tenant_id = mydb.new_row("nfvo_tenants", tenant_dict, add_uuid=True) |
| 2760 | return tenant_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2761 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2762 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2763 | def delete_tenant(mydb, tenant): |
| 2764 | #get nfvo_tenant info |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2765 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2766 | tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant, 'tenant') |
| 2767 | mydb.delete_row_by_id("nfvo_tenants", tenant_dict['uuid']) |
| 2768 | return tenant_dict['uuid'] + " " + tenant_dict["name"] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2769 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2770 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2771 | def new_datacenter(mydb, datacenter_descriptor): |
| 2772 | if "config" in datacenter_descriptor: |
| 2773 | datacenter_descriptor["config"]=yaml.safe_dump(datacenter_descriptor["config"],default_flow_style=True,width=256) |
| tierno | 3ae3974 | 2016-09-07 12:17:51 +0200 | [diff] [blame] | 2774 | #Check that datacenter-type is correct |
| 2775 | datacenter_type = datacenter_descriptor.get("type", "openvim"); |
| 2776 | module_info = None |
| 2777 | try: |
| 2778 | module = "vimconn_" + datacenter_type |
| tierno | 361275f | 2017-04-25 16:24:34 +0200 | [diff] [blame] | 2779 | pkg = __import__("osm_ro." + module) |
| 2780 | vim_conn = getattr(pkg, module) |
| 2781 | # module_info = imp.find_module(module, [__file__[:__file__.rfind("/")]]) |
| tierno | 3ae3974 | 2016-09-07 12:17:51 +0200 | [diff] [blame] | 2782 | except (IOError, ImportError): |
| tierno | 361275f | 2017-04-25 16:24:34 +0200 | [diff] [blame] | 2783 | # if module_info and module_info[0]: |
| 2784 | # file.close(module_info[0]) |
| tierno | 3ae3974 | 2016-09-07 12:17:51 +0200 | [diff] [blame] | 2785 | raise NfvoException("Incorrect datacenter type '{}'. Plugin '{}'.py not installed".format(datacenter_type, module), HTTP_Bad_Request) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2786 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2787 | datacenter_id = mydb.new_row("datacenters", datacenter_descriptor, add_uuid=True) |
| 2788 | return datacenter_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2789 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2790 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2791 | def edit_datacenter(mydb, datacenter_id_name, datacenter_descriptor): |
| 2792 | #obtain data, check that only one exist |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2793 | datacenter = mydb.get_table_by_uuid_name('datacenters', datacenter_id_name) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2794 | #edit data |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2795 | datacenter_id = datacenter['uuid'] |
| 2796 | where={'uuid': datacenter['uuid']} |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2797 | if "config" in datacenter_descriptor: |
| 2798 | if datacenter_descriptor['config']!=None: |
| 2799 | try: |
| 2800 | new_config_dict = datacenter_descriptor["config"] |
| 2801 | #delete null fields |
| 2802 | to_delete=[] |
| 2803 | for k in new_config_dict: |
| 2804 | if new_config_dict[k]==None: |
| 2805 | to_delete.append(k) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2806 | |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 2807 | config_text = datacenter.get("config") |
| 2808 | if not config_text: |
| 2809 | config_text = '{}' |
| 2810 | config_dict = yaml.load(config_text) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2811 | config_dict.update(new_config_dict) |
| 2812 | #delete null fields |
| 2813 | for k in to_delete: |
| 2814 | del config_dict[k] |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2815 | except Exception as e: |
| 2816 | raise NfvoException("Bad format at datacenter:config " + str(e), HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2817 | datacenter_descriptor["config"]= yaml.safe_dump(config_dict,default_flow_style=True,width=256) if len(config_dict)>0 else None |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2818 | mydb.update_rows('datacenters', datacenter_descriptor, where) |
| 2819 | return datacenter_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2820 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2821 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2822 | def delete_datacenter(mydb, datacenter): |
| 2823 | #get nfvo_tenant info |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2824 | datacenter_dict = mydb.get_table_by_uuid_name('datacenters', datacenter, 'datacenter') |
| 2825 | mydb.delete_row_by_id("datacenters", datacenter_dict['uuid']) |
| 2826 | return datacenter_dict['uuid'] + " " + datacenter_dict['name'] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2827 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2828 | |
| tierno | 8008c3a | 2016-10-13 15:34:28 +0000 | [diff] [blame] | 2829 | def associate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter, vim_tenant_id=None, vim_tenant_name=None, vim_username=None, vim_password=None, config=None): |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2830 | #get datacenter info |
| Vance Shipley | c24b4e2 | 2017-05-12 02:34:53 +0530 | [diff] [blame] | 2831 | datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, None, datacenter, vim_user=vim_username, vim_passwd=vim_password) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2832 | datacenter_name = myvim["name"] |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2833 | |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2834 | create_vim_tenant = True if not vim_tenant_id and not vim_tenant_name else False |
| 2835 | |
| 2836 | # get nfvo_tenant info |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2837 | tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', nfvo_tenant) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2838 | if vim_tenant_name==None: |
| 2839 | vim_tenant_name=tenant_dict['name'] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2840 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2841 | #check that this association does not exist before |
| 2842 | tenants_datacenter_dict={"nfvo_tenant_id":tenant_dict['uuid'], "datacenter_id":datacenter_id } |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2843 | tenants_datacenters = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict) |
| 2844 | if len(tenants_datacenters)>0: |
| 2845 | raise NfvoException("datacenter '{}' and tenant'{}' are already attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Conflict) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2846 | |
| 2847 | vim_tenant_id_exist_atdb=False |
| 2848 | if not create_vim_tenant: |
| 2849 | where_={"datacenter_id": datacenter_id} |
| 2850 | if vim_tenant_id!=None: |
| 2851 | where_["vim_tenant_id"] = vim_tenant_id |
| 2852 | if vim_tenant_name!=None: |
| 2853 | where_["vim_tenant_name"] = vim_tenant_name |
| 2854 | #check if vim_tenant_id is already at database |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2855 | datacenter_tenants_dict = mydb.get_rows(FROM='datacenter_tenants', WHERE=where_) |
| 2856 | if len(datacenter_tenants_dict)>=1: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2857 | datacenter_tenants_dict = datacenter_tenants_dict[0] |
| 2858 | vim_tenant_id_exist_atdb=True |
| 2859 | #TODO check if a field has changed and edit entry at datacenter_tenants at DB |
| 2860 | else: #result=0 |
| 2861 | datacenter_tenants_dict = {} |
| 2862 | #insert at table datacenter_tenants |
| 2863 | else: #if vim_tenant_id==None: |
| 2864 | #create tenant at VIM if not provided |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2865 | try: |
| 2866 | vim_tenant_id = myvim.new_tenant(vim_tenant_name, "created by openmano for datacenter "+datacenter_name) |
| 2867 | except vimconn.vimconnException as e: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2868 | raise NfvoException("Not possible to create vim_tenant {} at VIM: {}".format(vim_tenant_id, str(e)), HTTP_Internal_Server_Error) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2869 | datacenter_tenants_dict = {} |
| 2870 | datacenter_tenants_dict["created"]="true" |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2871 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2872 | #fill datacenter_tenants table |
| 2873 | if not vim_tenant_id_exist_atdb: |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2874 | datacenter_tenants_dict["vim_tenant_id"] = vim_tenant_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2875 | datacenter_tenants_dict["vim_tenant_name"] = vim_tenant_name |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2876 | datacenter_tenants_dict["user"] = vim_username |
| 2877 | datacenter_tenants_dict["passwd"] = vim_password |
| 2878 | datacenter_tenants_dict["datacenter_id"] = datacenter_id |
| tierno | 8008c3a | 2016-10-13 15:34:28 +0000 | [diff] [blame] | 2879 | if config: |
| 2880 | datacenter_tenants_dict["config"] = yaml.safe_dump(config, default_flow_style=True, width=256) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2881 | id_ = mydb.new_row('datacenter_tenants', datacenter_tenants_dict, add_uuid=True) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2882 | datacenter_tenants_dict["uuid"] = id_ |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2883 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2884 | #fill tenants_datacenters table |
| tierno | 9931490 | 2017-04-26 13:23:09 +0200 | [diff] [blame] | 2885 | datacenter_tenant_id = datacenter_tenants_dict["uuid"] |
| 2886 | tenants_datacenter_dict["datacenter_tenant_id"] = datacenter_tenant_id |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2887 | mydb.new_row('tenants_datacenters', tenants_datacenter_dict) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2888 | # create thread |
| 2889 | datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_dict['uuid'], datacenter_id) # reload data |
| 2890 | thread_name = get_non_used_vim_name(datacenter_name, datacenter_id, tenant_dict['name'], tenant_dict['uuid']) |
| tierno | 9931490 | 2017-04-26 13:23:09 +0200 | [diff] [blame] | 2891 | new_thread = vim_thread.vim_thread(myvim, task_lock, thread_name, datacenter_name, datacenter_tenant_id, |
| 2892 | db=db, db_lock=db_lock, ovim=ovim) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2893 | new_thread.start() |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2894 | thread_id = datacenter_tenants_dict["uuid"] |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2895 | vim_threads["running"][thread_id] = new_thread |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2896 | return datacenter_id |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2897 | |
| tierno | 9931490 | 2017-04-26 13:23:09 +0200 | [diff] [blame] | 2898 | |
| 2899 | def edit_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=None, vim_tenant_name=None, |
| 2900 | vim_username=None, vim_password=None, config=None): |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 2901 | #Obtain the data of this datacenter_tenant_id |
| 2902 | vim_data = mydb.get_rows( |
| 2903 | SELECT=("datacenter_tenants.vim_tenant_name", "datacenter_tenants.vim_tenant_id", "datacenter_tenants.user", |
| 2904 | "datacenter_tenants.passwd", "datacenter_tenants.config"), |
| 2905 | FROM="datacenter_tenants JOIN tenants_datacenters ON datacenter_tenants.uuid=tenants_datacenters.datacenter_tenant_id", |
| 2906 | WHERE={"tenants_datacenters.nfvo_tenant_id": nfvo_tenant, |
| 2907 | "tenants_datacenters.datacenter_id": datacenter_id}) |
| 2908 | |
| 2909 | logger.debug(str(vim_data)) |
| 2910 | if len(vim_data) < 1: |
| 2911 | raise NfvoException("Datacenter {} is not attached for tenant {}".format(datacenter_id, nfvo_tenant), HTTP_Conflict) |
| 2912 | |
| 2913 | v = vim_data[0] |
| 2914 | if v['config']: |
| 2915 | v['config'] = yaml.load(v['config']) |
| 2916 | |
| 2917 | if vim_tenant_id: |
| 2918 | v['vim_tenant_id'] = vim_tenant_id |
| 2919 | if vim_tenant_name: |
| 2920 | v['vim_tenant_name'] = vim_tenant_name |
| 2921 | if vim_username: |
| 2922 | v['user'] = vim_username |
| 2923 | if vim_password: |
| 2924 | v['passwd'] = vim_password |
| 2925 | if config: |
| 2926 | if not v['config']: |
| 2927 | v['config'] = {} |
| 2928 | v['config'].update(config) |
| 2929 | |
| 2930 | logger.debug(str(v)) |
| 2931 | deassociate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=v['vim_tenant_id']) |
| 2932 | associate_datacenter_to_tenant(mydb, nfvo_tenant, datacenter_id, vim_tenant_id=v['vim_tenant_id'], vim_tenant_name=v['vim_tenant_name'], |
| 2933 | vim_username=v['user'], vim_password=v['passwd'], config=v['config']) |
| 2934 | |
| 2935 | return datacenter_id |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2936 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2937 | def deassociate_datacenter_to_tenant(mydb, tenant_id, datacenter, vim_tenant_id=None): |
| 2938 | #get datacenter info |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2939 | datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, None, datacenter) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2940 | |
| 2941 | #get nfvo_tenant info |
| 2942 | if not tenant_id or tenant_id=="any": |
| 2943 | tenant_uuid = None |
| 2944 | else: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2945 | tenant_dict = mydb.get_table_by_uuid_name('nfvo_tenants', tenant_id) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2946 | tenant_uuid = tenant_dict['uuid'] |
| 2947 | |
| 2948 | #check that this association exist before |
| 2949 | tenants_datacenter_dict={"datacenter_id":datacenter_id } |
| 2950 | if tenant_uuid: |
| 2951 | tenants_datacenter_dict["nfvo_tenant_id"] = tenant_uuid |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2952 | tenant_datacenter_list = mydb.get_rows(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict) |
| 2953 | if len(tenant_datacenter_list)==0 and tenant_uuid: |
| 2954 | raise NfvoException("datacenter '{}' and tenant '{}' are not attached".format(datacenter_id, tenant_dict['uuid']), HTTP_Not_Found) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2955 | |
| 2956 | #delete this association |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2957 | mydb.delete_row(FROM='tenants_datacenters', WHERE=tenants_datacenter_dict) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2958 | |
| 2959 | #get vim_tenant info and deletes |
| 2960 | warning='' |
| 2961 | for tenant_datacenter_item in tenant_datacenter_list: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2962 | vim_tenant_dict = mydb.get_table_by_uuid_name('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id']) |
| 2963 | #try to delete vim:tenant |
| 2964 | try: |
| 2965 | mydb.delete_row_by_id('datacenter_tenants', tenant_datacenter_item['datacenter_tenant_id']) |
| 2966 | if vim_tenant_dict['created']=='true': |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2967 | #delete tenant at VIM if created by NFVO |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2968 | try: |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2969 | myvim.delete_tenant(vim_tenant_dict['vim_tenant_id']) |
| 2970 | except vimconn.vimconnException as e: |
| 2971 | warning = "Not possible to delete vim_tenant_id {} from VIM: {} ".format(vim_tenant_dict['vim_tenant_id'], str(e)) |
| 2972 | logger.warn(warning) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2973 | except db_base_Exception as e: |
| 2974 | logger.error("Cannot delete datacenter_tenants " + str(e)) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2975 | pass # the error will be caused because dependencies, vim_tenant can not be deleted |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2976 | thread_id = tenant_datacenter_item["datacenter_tenant_id"] |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2977 | thread = vim_threads["running"][thread_id] |
| tierno | 867ffe9 | 2017-03-27 12:50:34 +0200 | [diff] [blame] | 2978 | thread.insert_task(new_task("exit", None)) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2979 | vim_threads["deleting"][thread_id] = thread |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2980 | return "datacenter {} detached. {}".format(datacenter_id, warning) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2981 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 2982 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2983 | def datacenter_action(mydb, tenant_id, datacenter, action_dict): |
| 2984 | #DEPRECATED |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 2985 | #get datacenter info |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 2986 | datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2987 | |
| 2988 | if 'net-update' in action_dict: |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2989 | try: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2990 | nets = myvim.get_network_list(filter_dict={'shared': True, 'admin_state_up': True, 'status': 'ACTIVE'}) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 2991 | #print content |
| 2992 | except vimconn.vimconnException as e: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2993 | #logger.error("nfvo.datacenter_action() Not possible to get_network_list from VIM: %s ", str(e)) |
| 2994 | raise NfvoException(str(e), HTTP_Internal_Server_Error) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2995 | #update nets Change from VIM format to NFVO format |
| 2996 | net_list=[] |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 2997 | for net in nets: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 2998 | net_nfvo={'datacenter_id': datacenter_id} |
| 2999 | net_nfvo['name'] = net['name'] |
| 3000 | #net_nfvo['description']= net['name'] |
| 3001 | net_nfvo['vim_net_id'] = net['id'] |
| 3002 | net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp') |
| 3003 | net_nfvo['shared'] = net['shared'] |
| 3004 | net_nfvo['multipoint'] = False if net['type']=='ptp' else True |
| 3005 | net_list.append(net_nfvo) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3006 | inserted, deleted = mydb.update_datacenter_nets(datacenter_id, net_list) |
| 3007 | logger.info("Inserted %d nets, deleted %d old nets", inserted, deleted) |
| 3008 | return inserted |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3009 | elif 'net-edit' in action_dict: |
| 3010 | net = action_dict['net-edit'].pop('net') |
| tierno | 42fcc3b | 2016-07-06 17:20:40 +0200 | [diff] [blame] | 3011 | what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name' |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 3012 | result = mydb.update_rows('datacenter_nets', action_dict['net-edit'], |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3013 | WHERE={'datacenter_id':datacenter_id, what: net}) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3014 | return result |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3015 | elif 'net-delete' in action_dict: |
| 3016 | net = action_dict['net-deelte'].get('net') |
| tierno | 42fcc3b | 2016-07-06 17:20:40 +0200 | [diff] [blame] | 3017 | what = 'vim_net_id' if utils.check_valid_uuid(net) else 'name' |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 3018 | result = mydb.delete_row(FROM='datacenter_nets', |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3019 | WHERE={'datacenter_id':datacenter_id, what: net}) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3020 | return result |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3021 | |
| 3022 | else: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3023 | raise NfvoException("Unknown action " + str(action_dict), HTTP_Bad_Request) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3024 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 3025 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3026 | def datacenter_edit_netmap(mydb, tenant_id, datacenter, netmap, action_dict): |
| 3027 | #get datacenter info |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 3028 | datacenter_id, _ = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3029 | |
| tierno | 42fcc3b | 2016-07-06 17:20:40 +0200 | [diff] [blame] | 3030 | what = 'uuid' if utils.check_valid_uuid(netmap) else 'name' |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 3031 | result = mydb.update_rows('datacenter_nets', action_dict['netmap'], |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3032 | WHERE={'datacenter_id':datacenter_id, what: netmap}) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3033 | return result |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3034 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 3035 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3036 | def datacenter_new_netmap(mydb, tenant_id, datacenter, action_dict=None): |
| 3037 | #get datacenter info |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 3038 | datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3039 | filter_dict={} |
| 3040 | if action_dict: |
| 3041 | action_dict = action_dict["netmap"] |
| 3042 | if 'vim_id' in action_dict: |
| 3043 | filter_dict["id"] = action_dict['vim_id'] |
| 3044 | if 'vim_name' in action_dict: |
| 3045 | filter_dict["name"] = action_dict['vim_name'] |
| 3046 | else: |
| 3047 | filter_dict["shared"] = True |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 3048 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3049 | try: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3050 | vim_nets = myvim.get_network_list(filter_dict=filter_dict) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3051 | except vimconn.vimconnException as e: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3052 | #logger.error("nfvo.datacenter_new_netmap() Not possible to get_network_list from VIM: %s ", str(e)) |
| 3053 | raise NfvoException(str(e), HTTP_Internal_Server_Error) |
| 3054 | if len(vim_nets)>1 and action_dict: |
| 3055 | raise NfvoException("more than two networks found, specify with vim_id", HTTP_Conflict) |
| 3056 | elif len(vim_nets)==0: # and action_dict: |
| 3057 | raise NfvoException("Not found a network at VIM with " + str(filter_dict), HTTP_Not_Found) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3058 | net_list=[] |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3059 | for net in vim_nets: |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3060 | net_nfvo={'datacenter_id': datacenter_id} |
| 3061 | if action_dict and "name" in action_dict: |
| 3062 | net_nfvo['name'] = action_dict['name'] |
| 3063 | else: |
| 3064 | net_nfvo['name'] = net['name'] |
| 3065 | #net_nfvo['description']= net['name'] |
| 3066 | net_nfvo['vim_net_id'] = net['id'] |
| 3067 | net_nfvo['type'] = net['type'][0:6] #change from ('ptp','data','bridge_data','bridge_man') to ('bridge','data','ptp') |
| 3068 | net_nfvo['shared'] = net['shared'] |
| 3069 | net_nfvo['multipoint'] = False if net['type']=='ptp' else True |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3070 | try: |
| 3071 | net_id = mydb.new_row("datacenter_nets", net_nfvo, add_uuid=True) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3072 | net_nfvo["status"] = "OK" |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3073 | net_nfvo["uuid"] = net_id |
| 3074 | except db_base_Exception as e: |
| 3075 | if action_dict: |
| 3076 | raise |
| 3077 | else: |
| 3078 | net_nfvo["status"] = "FAIL: " + str(e) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 3079 | net_list.append(net_nfvo) |
| 3080 | return net_list |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3081 | |
| Pablo Montes Moreno | 6aa0b2b | 2017-05-23 18:33:12 +0200 | [diff] [blame] | 3082 | def get_sdn_net_id(mydb, tenant_id, datacenter, network_id): |
| 3083 | # obtain all network data |
| 3084 | try: |
| 3085 | if utils.check_valid_uuid(network_id): |
| 3086 | filter_dict = {"id": network_id} |
| 3087 | else: |
| 3088 | filter_dict = {"name": network_id} |
| 3089 | |
| 3090 | datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter) |
| 3091 | network = myvim.get_network_list(filter_dict=filter_dict) |
| 3092 | except vimconn.vimconnException as e: |
| 3093 | print "vim_action Not possible to get_%s_list from VIM: %s " % (item, str(e)) |
| 3094 | raise NfvoException("Not possible to get_{}_list from VIM: {}".format(item, str(e)), e.http_code) |
| 3095 | |
| 3096 | # ensure the network is defined |
| 3097 | if len(network) == 0: |
| 3098 | raise NfvoException("Network {} is not present in the system".format(network_id), |
| 3099 | HTTP_Bad_Request) |
| 3100 | |
| 3101 | # ensure there is only one network with the provided name |
| 3102 | if len(network) > 1: |
| 3103 | raise NfvoException("Multiple networks present in vim identified by {}".format(network_id), HTTP_Bad_Request) |
| 3104 | |
| 3105 | # ensure it is a dataplane network |
| 3106 | if network[0]['type'] != 'data': |
| 3107 | return None |
| 3108 | |
| 3109 | # ensure we use the id |
| 3110 | network_id = network[0]['id'] |
| 3111 | |
| 3112 | # search in dabase mano_db in table instance nets for the sdn_net_id that corresponds to the vim_net_id==network_id |
| 3113 | # and with instance_scenario_id==NULL |
| 3114 | #search_dict = {'vim_net_id': network_id, 'instance_scenario_id': None} |
| 3115 | search_dict = {'vim_net_id': network_id} |
| 3116 | |
| 3117 | try: |
| 3118 | #sdn_network_id = mydb.get_rows(SELECT=('sdn_net_id',), FROM='instance_nets', WHERE=search_dict)[0]['sdn_net_id'] |
| 3119 | result = mydb.get_rows(SELECT=('sdn_net_id',), FROM='instance_nets', WHERE=search_dict) |
| 3120 | except db_base_Exception as e: |
| 3121 | raise NfvoException("db_base_Exception obtaining SDN network to associated to vim network {}".format( |
| 3122 | network_id) + str(e), HTTP_Internal_Server_Error) |
| 3123 | |
| 3124 | sdn_net_counter = 0 |
| 3125 | for net in result: |
| 3126 | if net['sdn_net_id'] != None: |
| 3127 | sdn_net_counter+=1 |
| 3128 | sdn_net_id = net['sdn_net_id'] |
| 3129 | |
| 3130 | if sdn_net_counter == 0: |
| 3131 | return None |
| 3132 | elif sdn_net_counter == 1: |
| 3133 | return sdn_net_id |
| 3134 | else: |
| 3135 | raise NfvoException("More than one SDN network is associated to vim network {}".format( |
| 3136 | network_id), HTTP_Internal_Server_Error) |
| 3137 | |
| 3138 | def get_sdn_controller_id(mydb, datacenter): |
| 3139 | # Obtain sdn controller id |
| 3140 | config = mydb.get_rows(SELECT=('config',), FROM='datacenters', WHERE={'uuid': datacenter})[0].get('config', '{}') |
| 3141 | if not config: |
| 3142 | return None |
| 3143 | |
| 3144 | return yaml.load(config).get('sdn-controller') |
| 3145 | |
| 3146 | def vim_net_sdn_attach(mydb, tenant_id, datacenter, network_id, descriptor): |
| 3147 | try: |
| 3148 | sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, network_id) |
| 3149 | if not sdn_network_id: |
| 3150 | raise NfvoException("No SDN network is associated to vim-network {}".format(network_id), HTTP_Internal_Server_Error) |
| 3151 | |
| 3152 | #Obtain sdn controller id |
| 3153 | controller_id = get_sdn_controller_id(mydb, datacenter) |
| 3154 | if not controller_id: |
| 3155 | raise NfvoException("No SDN controller is set for datacenter {}".format(datacenter), HTTP_Internal_Server_Error) |
| 3156 | |
| 3157 | #Obtain sdn controller info |
| 3158 | sdn_controller = ovim.show_of_controller(controller_id) |
| 3159 | |
| 3160 | port_data = { |
| 3161 | 'name': 'external_port', |
| 3162 | 'net_id': sdn_network_id, |
| 3163 | 'ofc_id': controller_id, |
| 3164 | 'switch_dpid': sdn_controller['dpid'], |
| 3165 | 'switch_port': descriptor['port'] |
| 3166 | } |
| 3167 | |
| 3168 | if 'vlan' in descriptor: |
| 3169 | port_data['vlan'] = descriptor['vlan'] |
| 3170 | if 'mac' in descriptor: |
| 3171 | port_data['mac'] = descriptor['mac'] |
| 3172 | |
| 3173 | result = ovim.new_port(port_data) |
| 3174 | except ovimException as e: |
| 3175 | raise NfvoException("ovimException attaching SDN network {} to vim network {}".format( |
| 3176 | sdn_network_id, network_id) + str(e), HTTP_Internal_Server_Error) |
| 3177 | except db_base_Exception as e: |
| 3178 | raise NfvoException("db_base_Exception attaching SDN network to vim network {}".format( |
| 3179 | network_id) + str(e), HTTP_Internal_Server_Error) |
| 3180 | |
| 3181 | return 'Port uuid: '+ result |
| 3182 | |
| 3183 | def vim_net_sdn_detach(mydb, tenant_id, datacenter, network_id, port_id=None): |
| 3184 | if port_id: |
| 3185 | filter = {'uuid': port_id} |
| 3186 | else: |
| 3187 | sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, network_id) |
| 3188 | if not sdn_network_id: |
| 3189 | raise NfvoException("No SDN network is associated to vim-network {}".format(network_id), |
| 3190 | HTTP_Internal_Server_Error) |
| 3191 | #in case no port_id is specified only ports marked as 'external_port' will be detached |
| 3192 | filter = {'name': 'external_port', 'net_id': sdn_network_id} |
| 3193 | |
| 3194 | try: |
| 3195 | port_list = ovim.get_ports(columns={'uuid'}, filter=filter) |
| 3196 | except ovimException as e: |
| 3197 | raise NfvoException("ovimException obtaining external ports for net {}. ".format(network_id) + str(e), |
| 3198 | HTTP_Internal_Server_Error) |
| 3199 | |
| 3200 | if len(port_list) == 0: |
| 3201 | raise NfvoException("No ports attached to the network {} were found with the requested criteria".format(network_id), |
| 3202 | HTTP_Bad_Request) |
| 3203 | |
| 3204 | port_uuid_list = [] |
| 3205 | for port in port_list: |
| 3206 | try: |
| 3207 | port_uuid_list.append(port['uuid']) |
| 3208 | ovim.delete_port(port['uuid']) |
| 3209 | except ovimException as e: |
| 3210 | raise NfvoException("ovimException deleting port {} for net {}. ".format(port['uuid'], network_id) + str(e), HTTP_Internal_Server_Error) |
| 3211 | |
| 3212 | return 'Detached ports uuid: {}'.format(','.join(port_uuid_list)) |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 3213 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3214 | def vim_action_get(mydb, tenant_id, datacenter, item, name): |
| 3215 | #get datacenter info |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 3216 | datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter) |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3217 | filter_dict={} |
| 3218 | if name: |
| tierno | 42fcc3b | 2016-07-06 17:20:40 +0200 | [diff] [blame] | 3219 | if utils.check_valid_uuid(name): |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3220 | filter_dict["id"] = name |
| 3221 | else: |
| 3222 | filter_dict["name"] = name |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3223 | try: |
| 3224 | if item=="networks": |
| 3225 | #filter_dict['tenant_id'] = myvim['tenant_id'] |
| 3226 | content = myvim.get_network_list(filter_dict=filter_dict) |
| Pablo Montes Moreno | 6aa0b2b | 2017-05-23 18:33:12 +0200 | [diff] [blame] | 3227 | |
| 3228 | if len(content) == 0: |
| 3229 | raise NfvoException("Network {} is not present in the system. ".format(name), |
| 3230 | HTTP_Bad_Request) |
| 3231 | |
| 3232 | #Update the networks with the attached ports |
| 3233 | for net in content: |
| 3234 | sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, net['id']) |
| 3235 | if sdn_network_id != None: |
| 3236 | try: |
| 3237 | #port_list = ovim.get_ports(columns={'uuid', 'switch_port', 'vlan'}, filter={'name': 'external_port', 'net_id': sdn_network_id}) |
| 3238 | port_list = ovim.get_ports(columns={'uuid', 'switch_port', 'vlan','name'}, filter={'net_id': sdn_network_id}) |
| 3239 | except ovimException as e: |
| 3240 | raise NfvoException("ovimException obtaining external ports for net {}. ".format(network_id) + str(e), HTTP_Internal_Server_Error) |
| 3241 | #Remove field name and if port name is external_port save it as 'type' |
| 3242 | for port in port_list: |
| 3243 | if port['name'] == 'external_port': |
| 3244 | port['type'] = "External" |
| 3245 | del port['name'] |
| 3246 | net['sdn_network_id'] = sdn_network_id |
| 3247 | net['sdn_attached_ports'] = port_list |
| 3248 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3249 | elif item=="tenants": |
| 3250 | content = myvim.get_tenant_list(filter_dict=filter_dict) |
| tierno | 4540ea5 | 2017-01-18 17:44:32 +0100 | [diff] [blame] | 3251 | elif item == "images": |
| Pablo Montes Moreno | 6aa0b2b | 2017-05-23 18:33:12 +0200 | [diff] [blame] | 3252 | |
| tierno | 4540ea5 | 2017-01-18 17:44:32 +0100 | [diff] [blame] | 3253 | content = myvim.get_image_list(filter_dict=filter_dict) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3254 | else: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3255 | raise NfvoException(item + "?", HTTP_Method_Not_Allowed) |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 3256 | logger.debug("vim_action response %s", content) #update nets Change from VIM format to NFVO format |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3257 | if name and len(content)==1: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3258 | return {item[:-1]: content[0]} |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3259 | elif name and len(content)==0: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3260 | raise NfvoException("No {} found with ".format(item[:-1]) + " and ".join(map(lambda x: str(x[0])+": "+str(x[1]), filter_dict.iteritems())), |
| tierno | be41e22 | 2016-09-02 15:16:13 +0200 | [diff] [blame] | 3261 | datacenter) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3262 | else: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3263 | return {item: content} |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3264 | except vimconn.vimconnException as e: |
| 3265 | print "vim_action Not possible to get_%s_list from VIM: %s " % (item, str(e)) |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3266 | raise NfvoException("Not possible to get_{}_list from VIM: {}".format(item, str(e)), e.http_code) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 3267 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 3268 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3269 | def vim_action_delete(mydb, tenant_id, datacenter, item, name): |
| 3270 | #get datacenter info |
| tierno | 392f285 | 2016-05-13 12:28:55 +0200 | [diff] [blame] | 3271 | if tenant_id == "any": |
| 3272 | tenant_id=None |
| 3273 | |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 3274 | datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter) |
| tierno | 392f285 | 2016-05-13 12:28:55 +0200 | [diff] [blame] | 3275 | #get uuid name |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3276 | content = vim_action_get(mydb, tenant_id, datacenter, item, name) |
| 3277 | logger.debug("vim_action_delete vim response: " + str(content)) |
| tierno | 392f285 | 2016-05-13 12:28:55 +0200 | [diff] [blame] | 3278 | items = content.values()[0] |
| 3279 | if type(items)==list and len(items)==0: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3280 | raise NfvoException("Not found " + item, HTTP_Not_Found) |
| tierno | 392f285 | 2016-05-13 12:28:55 +0200 | [diff] [blame] | 3281 | elif type(items)==list and len(items)>1: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3282 | raise NfvoException("Found more than one {} with this name. Use uuid.".format(item), HTTP_Not_Found) |
| tierno | 392f285 | 2016-05-13 12:28:55 +0200 | [diff] [blame] | 3283 | else: # it is a dict |
| 3284 | item_id = items["id"] |
| 3285 | item_name = str(items.get("name")) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 3286 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3287 | try: |
| 3288 | if item=="networks": |
| Pablo Montes Moreno | 6aa0b2b | 2017-05-23 18:33:12 +0200 | [diff] [blame] | 3289 | # If there is a SDN network associated to the vim-network, proceed to clear the relationship and delete it |
| 3290 | sdn_network_id = get_sdn_net_id(mydb, tenant_id, datacenter, item_id) |
| 3291 | if sdn_network_id != None: |
| 3292 | #Delete any port attachment to this network |
| 3293 | try: |
| 3294 | port_list = ovim.get_ports(columns={'uuid'}, filter={'net_id': sdn_network_id}) |
| 3295 | except ovimException as e: |
| 3296 | raise NfvoException( |
| 3297 | "ovimException obtaining external ports for net {}. ".format(network_id) + str(e), |
| 3298 | HTTP_Internal_Server_Error) |
| 3299 | |
| 3300 | # By calling one by one all ports to be detached we ensure that not only the external_ports get detached |
| 3301 | for port in port_list: |
| 3302 | vim_net_sdn_detach(mydb, tenant_id, datacenter, item_id, port['uuid']) |
| 3303 | |
| 3304 | #Delete from 'instance_nets' the correspondence between the vim-net-id and the sdn-net-id |
| 3305 | try: |
| 3306 | mydb.delete_row(FROM='instance_nets', WHERE={'instance_scenario_id': None, 'sdn_net_id': sdn_network_id, 'vim_net_id': item_id}) |
| 3307 | except db_base_Exception as e: |
| 3308 | raise NfvoException("Error deleting correspondence for VIM/SDN dataplane networks{}: ".format(correspondence) + |
| 3309 | str(e), HTTP_Internal_Server_Error) |
| 3310 | |
| 3311 | #Delete the SDN network |
| 3312 | try: |
| 3313 | ovim.delete_network(sdn_network_id) |
| 3314 | except ovimException as e: |
| 3315 | logger.error("ovimException deleting SDN network={} ".format(sdn_network_id) + str(e), exc_info=True) |
| 3316 | raise NfvoException("ovimException deleting SDN network={} ".format(sdn_network_id) + str(e), |
| 3317 | HTTP_Internal_Server_Error) |
| 3318 | |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3319 | content = myvim.delete_network(item_id) |
| 3320 | elif item=="tenants": |
| 3321 | content = myvim.delete_tenant(item_id) |
| tierno | 4540ea5 | 2017-01-18 17:44:32 +0100 | [diff] [blame] | 3322 | elif item == "images": |
| 3323 | content = myvim.delete_image(item_id) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3324 | else: |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 3325 | raise NfvoException(item + "?", HTTP_Method_Not_Allowed) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3326 | except vimconn.vimconnException as e: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3327 | #logger.error( "vim_action Not possible to delete_{} {}from VIM: {} ".format(item, name, str(e))) |
| 3328 | raise NfvoException("Not possible to delete_{} {} from VIM: {}".format(item, name, str(e)), e.http_code) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3329 | |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3330 | return "{} {} {} deleted".format(item[:-1], item_id,item_name) |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 3331 | |
| tierno | b3d3674 | 2017-03-03 23:51:05 +0100 | [diff] [blame] | 3332 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3333 | def vim_action_create(mydb, tenant_id, datacenter, item, descriptor): |
| 3334 | #get datacenter info |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 3335 | logger.debug("vim_action_create descriptor %s", str(descriptor)) |
| tierno | 392f285 | 2016-05-13 12:28:55 +0200 | [diff] [blame] | 3336 | if tenant_id == "any": |
| 3337 | tenant_id=None |
| tierno | a279391 | 2016-10-04 08:15:08 +0000 | [diff] [blame] | 3338 | datacenter_id, myvim = get_datacenter_by_name_uuid(mydb, tenant_id, datacenter) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3339 | try: |
| 3340 | if item=="networks": |
| 3341 | net = descriptor["network"] |
| 3342 | net_name = net.pop("name") |
| 3343 | net_type = net.pop("type", "bridge") |
| garciadeblas | 9f8456e | 2016-09-05 05:02:59 +0200 | [diff] [blame] | 3344 | net_public = net.pop("shared", False) |
| 3345 | net_ipprofile = net.pop("ip_profile", None) |
| tierno | a7d34d0 | 2017-02-23 14:42:07 +0100 | [diff] [blame] | 3346 | net_vlan = net.pop("vlan", None) |
| 3347 | content = myvim.new_network(net_name, net_type, net_ipprofile, shared=net_public, vlan=net_vlan) #, **net) |
| Pablo Montes Moreno | 6aa0b2b | 2017-05-23 18:33:12 +0200 | [diff] [blame] | 3348 | |
| 3349 | #If the datacenter has a SDN controller defined and the network is of dataplane type, then create the sdn network |
| 3350 | if get_sdn_controller_id(mydb, datacenter) != None and (net_type == 'data' or net_type == 'ptp'): |
| 3351 | try: |
| 3352 | sdn_network = {} |
| 3353 | sdn_network['vlan'] = net_vlan |
| 3354 | sdn_network['type'] = net_type |
| 3355 | sdn_network['name'] = net_name |
| 3356 | ovim_content = ovim.new_network(sdn_network) |
| 3357 | except ovimException as e: |
| 3358 | self.logger.error("ovimException creating SDN network={} ".format( |
| 3359 | sdn_network) + str(e), exc_info=True) |
| 3360 | raise NfvoException("ovimException creating SDN network={} ".format(sdn_network) + str(e), |
| 3361 | HTTP_Internal_Server_Error) |
| 3362 | |
| 3363 | # Save entry in in dabase mano_db in table instance_nets to stablish a dictionary vim_net_id <->sdn_net_id |
| 3364 | # use instance_scenario_id=None to distinguish from real instaces of nets |
| 3365 | correspondence = {'instance_scenario_id': None, 'sdn_net_id': ovim_content, 'vim_net_id': content} |
| 3366 | #obtain datacenter_tenant_id |
| 3367 | correspondence['datacenter_tenant_id'] = mydb.get_rows(SELECT=('uuid',), FROM='datacenter_tenants', WHERE={'datacenter_id': datacenter})[0]['uuid'] |
| 3368 | |
| 3369 | try: |
| 3370 | mydb.new_row('instance_nets', correspondence, add_uuid=True) |
| 3371 | except db_base_Exception as e: |
| 3372 | raise NfvoException("Error saving correspondence for VIM/SDN dataplane networks{}: ".format(correspondence) + |
| 3373 | str(e), HTTP_Internal_Server_Error) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3374 | elif item=="tenants": |
| 3375 | tenant = descriptor["tenant"] |
| 3376 | content = myvim.new_tenant(tenant["name"], tenant.get("description")) |
| 3377 | else: |
| tierno | 42026a0 | 2017-02-10 15:13:40 +0100 | [diff] [blame] | 3378 | raise NfvoException(item + "?", HTTP_Method_Not_Allowed) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3379 | except vimconn.vimconnException as e: |
| tierno | f97fd27 | 2016-07-11 14:32:37 +0200 | [diff] [blame] | 3380 | raise NfvoException("Not possible to create {} at VIM: {}".format(item, str(e)), e.http_code) |
| tierno | ae4a8d1 | 2016-07-08 12:30:39 +0200 | [diff] [blame] | 3381 | |
| tierno | 7edb675 | 2016-03-21 17:37:52 +0100 | [diff] [blame] | 3382 | return vim_action_get(mydb, tenant_id, datacenter, item, content) |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 3383 | |
| 3384 | def sdn_controller_create(mydb, tenant_id, sdn_controller): |
| Pablo Montes Moreno | 7e0e9c6 | 2017-03-27 12:42:32 +0200 | [diff] [blame] | 3385 | data = ovim.new_of_controller(sdn_controller) |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 3386 | logger.debug('New SDN controller created with uuid {}'.format(data)) |
| 3387 | return data |
| 3388 | |
| 3389 | def sdn_controller_update(mydb, tenant_id, controller_id, sdn_controller): |
| Pablo Montes Moreno | 7e0e9c6 | 2017-03-27 12:42:32 +0200 | [diff] [blame] | 3390 | data = ovim.edit_of_controller(controller_id, sdn_controller) |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 3391 | msg = 'SDN controller {} updated'.format(data) |
| 3392 | logger.debug(msg) |
| 3393 | return msg |
| 3394 | |
| 3395 | def sdn_controller_list(mydb, tenant_id, controller_id=None): |
| 3396 | if controller_id == None: |
| Pablo Montes Moreno | 7e0e9c6 | 2017-03-27 12:42:32 +0200 | [diff] [blame] | 3397 | data = ovim.get_of_controllers() |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 3398 | else: |
| Pablo Montes Moreno | 7e0e9c6 | 2017-03-27 12:42:32 +0200 | [diff] [blame] | 3399 | data = ovim.show_of_controller(controller_id) |
| 3400 | |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 3401 | msg = 'SDN controller list:\n {}'.format(data) |
| 3402 | logger.debug(msg) |
| 3403 | return data |
| 3404 | |
| 3405 | def sdn_controller_delete(mydb, tenant_id, controller_id): |
| 3406 | select_ = ('uuid', 'config') |
| 3407 | datacenters = mydb.get_rows(FROM='datacenters', SELECT=select_) |
| 3408 | for datacenter in datacenters: |
| 3409 | if datacenter['config']: |
| 3410 | config = yaml.load(datacenter['config']) |
| 3411 | if 'sdn-controller' in config and config['sdn-controller'] == controller_id: |
| 3412 | raise NfvoException("SDN controller {} is in use by datacenter {}".format(controller_id, datacenter['uuid']), HTTP_Conflict) |
| 3413 | |
| Pablo Montes Moreno | 7e0e9c6 | 2017-03-27 12:42:32 +0200 | [diff] [blame] | 3414 | data = ovim.delete_of_controller(controller_id) |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 3415 | msg = 'SDN controller {} deleted'.format(data) |
| 3416 | logger.debug(msg) |
| 3417 | return msg |
| 3418 | |
| 3419 | def datacenter_sdn_port_mapping_set(mydb, tenant_id, datacenter_id, sdn_port_mapping): |
| 3420 | controller = mydb.get_rows(FROM="datacenters", SELECT=("config",), WHERE={"uuid":datacenter_id}) |
| 3421 | if len(controller) < 1: |
| 3422 | raise NfvoException("Datacenter {} not present in the database".format(datacenter_id), HTTP_Not_Found) |
| 3423 | |
| 3424 | try: |
| 3425 | sdn_controller_id = yaml.load(controller[0]["config"])["sdn-controller"] |
| 3426 | except: |
| 3427 | raise NfvoException("The datacenter {} has not an SDN controller associated".format(datacenter_id), HTTP_Bad_Request) |
| 3428 | |
| Pablo Montes Moreno | 7e0e9c6 | 2017-03-27 12:42:32 +0200 | [diff] [blame] | 3429 | sdn_controller = ovim.show_of_controller(sdn_controller_id) |
| 3430 | switch_dpid = sdn_controller["dpid"] |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 3431 | |
| 3432 | maps = list() |
| 3433 | for compute_node in sdn_port_mapping: |
| 3434 | #element = {"ofc_id": sdn_controller_id, "region": datacenter_id, "switch_dpid": switch_dpid} |
| 3435 | element = dict() |
| 3436 | element["compute_node"] = compute_node["compute_node"] |
| 3437 | for port in compute_node["ports"]: |
| 3438 | element["pci"] = port.get("pci") |
| 3439 | element["switch_port"] = port.get("switch_port") |
| 3440 | element["switch_mac"] = port.get("switch_mac") |
| 3441 | if not element["pci"] or not (element["switch_port"] or element["switch_mac"]): |
| 3442 | raise NfvoException ("The mapping must contain the 'pci' and at least one of the elements 'switch_port'" |
| 3443 | " or 'switch_mac'", HTTP_Bad_Request) |
| 3444 | maps.append(dict(element)) |
| 3445 | |
| Pablo Montes Moreno | 7e0e9c6 | 2017-03-27 12:42:32 +0200 | [diff] [blame] | 3446 | return ovim.set_of_port_mapping(maps, ofc_id=sdn_controller_id, switch_dpid=switch_dpid, region=datacenter_id) |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 3447 | |
| 3448 | def datacenter_sdn_port_mapping_list(mydb, tenant_id, datacenter_id): |
| Pablo Montes Moreno | 7e0e9c6 | 2017-03-27 12:42:32 +0200 | [diff] [blame] | 3449 | maps = ovim.get_of_port_mappings(db_filter={"region": datacenter_id}) |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 3450 | |
| 3451 | result = { |
| 3452 | "sdn-controller": None, |
| 3453 | "datacenter-id": datacenter_id, |
| 3454 | "dpid": None, |
| 3455 | "ports_mapping": list() |
| 3456 | } |
| 3457 | |
| 3458 | datacenter = mydb.get_table_by_uuid_name('datacenters', datacenter_id) |
| 3459 | if datacenter['config']: |
| 3460 | config = yaml.load(datacenter['config']) |
| 3461 | if 'sdn-controller' in config: |
| 3462 | controller_id = config['sdn-controller'] |
| 3463 | sdn_controller = sdn_controller_list(mydb, tenant_id, controller_id) |
| 3464 | result["sdn-controller"] = controller_id |
| 3465 | result["dpid"] = sdn_controller["dpid"] |
| 3466 | |
| Pablo Montes Moreno | 6aa0b2b | 2017-05-23 18:33:12 +0200 | [diff] [blame] | 3467 | if result["sdn-controller"] == None: |
| 3468 | raise NfvoException("SDN controller is not defined for datacenter {}".format(datacenter_id), HTTP_Bad_Request) |
| 3469 | if result["dpid"] == None: |
| 3470 | raise NfvoException("It was not possible to determine DPID for SDN controller {}".format(result["sdn-controller"]), |
| 3471 | HTTP_Internal_Server_Error) |
| Pablo Montes Moreno | 3fbff9b | 2017-03-08 11:28:15 +0100 | [diff] [blame] | 3472 | |
| 3473 | if len(maps) == 0: |
| 3474 | return result |
| 3475 | |
| 3476 | ports_correspondence_dict = dict() |
| 3477 | for link in maps: |
| 3478 | if result["sdn-controller"] != link["ofc_id"]: |
| 3479 | raise NfvoException("The sdn-controller specified for different port mappings differ", HTTP_Internal_Server_Error) |
| 3480 | if result["dpid"] != link["switch_dpid"]: |
| 3481 | raise NfvoException("The dpid specified for different port mappings differ", HTTP_Internal_Server_Error) |
| 3482 | element = dict() |
| 3483 | element["pci"] = link["pci"] |
| 3484 | if link["switch_port"]: |
| 3485 | element["switch_port"] = link["switch_port"] |
| 3486 | if link["switch_mac"]: |
| 3487 | element["switch_mac"] = link["switch_mac"] |
| 3488 | |
| 3489 | if not link["compute_node"] in ports_correspondence_dict: |
| 3490 | content = dict() |
| 3491 | content["compute_node"] = link["compute_node"] |
| 3492 | content["ports"] = list() |
| 3493 | ports_correspondence_dict[link["compute_node"]] = content |
| 3494 | |
| 3495 | ports_correspondence_dict[link["compute_node"]]["ports"].append(element) |
| 3496 | |
| 3497 | for key in sorted(ports_correspondence_dict): |
| 3498 | result["ports_mapping"].append(ports_correspondence_dict[key]) |
| 3499 | |
| 3500 | return result |
| 3501 | |
| 3502 | def datacenter_sdn_port_mapping_delete(mydb, tenant_id, datacenter_id): |
| tierno | 639520f | 2017-04-05 19:55:36 +0200 | [diff] [blame] | 3503 | return ovim.clear_of_port_mapping(db_filter={"region":datacenter_id}) |