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