| tierno | 57f7bda | 2017-02-09 12:01:55 +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 openvim |
| 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 | This is the thread for the http server North API. |
| 26 | Two thread will be launched, with normal and administrative permissions. |
| 27 | ''' |
| 28 | |
| 29 | __author__ = "Alfonso Tierno, Leonardo Mirabal" |
| 30 | __date__ = "$06-Feb-2017 12:07:15$" |
| 31 | |
| 32 | import threading |
| 33 | import vim_db |
| 34 | import logging |
| 35 | import threading |
| 36 | import imp |
| 37 | import host_thread as ht |
| 38 | import dhcp_thread as dt |
| 39 | import openflow_thread as oft |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 40 | from netaddr import IPNetwork |
| 41 | from jsonschema import validate as js_v, exceptions as js_e |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 42 | |
| 43 | HTTP_Bad_Request = 400 |
| 44 | HTTP_Unauthorized = 401 |
| 45 | HTTP_Not_Found = 404 |
| 46 | HTTP_Forbidden = 403 |
| 47 | HTTP_Method_Not_Allowed = 405 |
| 48 | HTTP_Not_Acceptable = 406 |
| 49 | HTTP_Request_Timeout = 408 |
| 50 | HTTP_Conflict = 409 |
| 51 | HTTP_Service_Unavailable = 503 |
| 52 | HTTP_Internal_Server_Error= 500 |
| 53 | |
| 54 | |
| 55 | def convert_boolean(data, items): |
| 56 | '''Check recursively the content of data, and if there is an key contained in items, convert value from string to boolean |
| 57 | It assumes that bandwidth is well formed |
| 58 | Attributes: |
| 59 | 'data': dictionary bottle.FormsDict variable to be checked. None or empty is consideted valid |
| 60 | 'items': tuple of keys to convert |
| 61 | Return: |
| 62 | None |
| 63 | ''' |
| 64 | if type(data) is dict: |
| 65 | for k in data.keys(): |
| 66 | if type(data[k]) is dict or type(data[k]) is tuple or type(data[k]) is list: |
| 67 | convert_boolean(data[k], items) |
| 68 | if k in items: |
| 69 | if type(data[k]) is str: |
| 70 | if data[k] == "false": |
| 71 | data[k] = False |
| 72 | elif data[k] == "true": |
| 73 | data[k] = True |
| 74 | if type(data) is tuple or type(data) is list: |
| 75 | for k in data: |
| 76 | if type(k) is dict or type(k) is tuple or type(k) is list: |
| 77 | convert_boolean(k, items) |
| 78 | |
| 79 | |
| 80 | |
| 81 | class ovimException(Exception): |
| 82 | def __init__(self, message, http_code=HTTP_Bad_Request): |
| 83 | self.http_code = http_code |
| 84 | Exception.__init__(self, message) |
| 85 | |
| 86 | |
| 87 | class ovim(): |
| 88 | running_info = {} #TODO OVIM move the info of running threads from config_dic to this static variable |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 89 | of_module = {} |
| 90 | |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 91 | def __init__(self, configuration): |
| 92 | self.config = configuration |
| 93 | self.logger = logging.getLogger(configuration["logger_name"]) |
| 94 | self.db = None |
| 95 | self.db = self._create_database_connection() |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 96 | self.db_lock = None |
| 97 | self.db_of = None |
| 98 | self.of_test_mode = False |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 99 | |
| 100 | def _create_database_connection(self): |
| 101 | db = vim_db.vim_db((self.config["network_vlan_range_start"], self.config["network_vlan_range_end"]), |
| 102 | self.config['log_level_db']); |
| 103 | if db.connect(self.config['db_host'], self.config['db_user'], self.config['db_passwd'], |
| 104 | self.config['db_name']) == -1: |
| 105 | # self.logger.error("Cannot connect to database %s at %s@%s", self.config['db_name'], self.config['db_user'], |
| 106 | # self.config['db_host']) |
| 107 | raise ovimException("Cannot connect to database {} at {}@{}".format(self.config['db_name'], |
| 108 | self.config['db_user'], |
| 109 | self.config['db_host']) ) |
| 110 | return db |
| 111 | |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 112 | @staticmethod |
| 113 | def _check_dhcp_data_integrity(network): |
| 114 | """ |
| 115 | Check if all dhcp parameter for anet are valid, if not will be calculated from cidr value |
| 116 | :param network: list with user nets paramters |
| 117 | :return: |
| 118 | """ |
| 119 | if "cidr" in network: |
| 120 | cidr = network["cidr"] |
| 121 | ip_tools = IPNetwork(cidr) |
| 122 | cidr_len = ip_tools.prefixlen |
| 123 | if cidr_len > 29: |
| 124 | return False |
| 125 | |
| 126 | ips = IPNetwork(cidr) |
| 127 | if "dhcp_first_ip" not in network: |
| 128 | network["dhcp_first_ip"] = str(ips[2]) |
| 129 | if "dhcp_last_ip" not in network: |
| 130 | network["dhcp_last_ip"] = str(ips[-2]) |
| 131 | if "gateway_ip" not in network: |
| 132 | network["gateway_ip"] = str(ips[1]) |
| 133 | |
| 134 | return True |
| 135 | else: |
| 136 | return False |
| 137 | |
| 138 | @staticmethod |
| 139 | def _check_valid_uuid(uuid): |
| 140 | id_schema = {"type": "string", "pattern": "^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$"} |
| 141 | try: |
| 142 | js_v(uuid, id_schema) |
| 143 | return True |
| 144 | except js_e.ValidationError: |
| 145 | return False |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 146 | |
| 147 | def start_service(self): |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 148 | """ |
| 149 | Start ovim services |
| 150 | :return: |
| 151 | """ |
| 152 | # if self.running_info: |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 153 | # return #TODO service can be checked and rebuild broken threads |
| 154 | r = self.db.get_db_version() |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 155 | if r[0] < 0: |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 156 | raise ovimException("DATABASE is not a VIM one or it is a '0.0' version. Try to upgrade to version '{}' with "\ |
| 157 | "'./database_utils/migrate_vim_db.sh'".format(self.config["database_version"]) ) |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 158 | elif r[1] != self.config["database_version"]: |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 159 | raise ovimException("DATABASE wrong version '{}'. Try to upgrade/downgrade to version '{}' with "\ |
| 160 | "'./database_utils/migrate_vim_db.sh'".format(r[1], self.config["database_version"]) ) |
| 161 | |
| 162 | # create database connection for openflow threads |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 163 | self.db_of = self._create_database_connection() |
| 164 | self.config["db"] = self.db_of |
| 165 | self.db_lock = threading.Lock() |
| 166 | self.config["db_lock"] = self.db_lock |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 167 | |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 168 | self.of_test_mode = False if self.config['mode'] == 'normal' or self.config['mode'] == "OF only" else True |
| 169 | # precreate interfaces; [bridge:<host_bridge_name>, VLAN used at Host, uuid of network camping in this bridge, |
| 170 | # speed in Gbit/s |
| 171 | |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 172 | self.config['dhcp_nets'] = [] |
| 173 | self.config['bridge_nets'] = [] |
| 174 | for bridge, vlan_speed in self.config["bridge_ifaces"].items(): |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 175 | # skip 'development_bridge' |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 176 | if self.config['mode'] == 'development' and self.config['development_bridge'] == bridge: |
| 177 | continue |
| 178 | self.config['bridge_nets'].append([bridge, vlan_speed[0], vlan_speed[1], None]) |
| 179 | |
| 180 | # check if this bridge is already used (present at database) for a network) |
| 181 | used_bridge_nets = [] |
| 182 | for brnet in self.config['bridge_nets']: |
| tierno | 686b395 | 2017-03-10 13:57:24 +0100 | [diff] [blame] | 183 | r, nets = self.db.get_table(SELECT=('uuid',), FROM='nets', WHERE={'provider': "bridge:" + brnet[0]}) |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 184 | if r > 0: |
| 185 | brnet[3] = nets[0]['uuid'] |
| 186 | used_bridge_nets.append(brnet[0]) |
| 187 | if self.config.get("dhcp_server"): |
| 188 | if brnet[0] in self.config["dhcp_server"]["bridge_ifaces"]: |
| 189 | self.config['dhcp_nets'].append(nets[0]['uuid']) |
| 190 | if len(used_bridge_nets) > 0: |
| 191 | self.logger.info("found used bridge nets: " + ",".join(used_bridge_nets)) |
| 192 | # get nets used by dhcp |
| 193 | if self.config.get("dhcp_server"): |
| 194 | for net in self.config["dhcp_server"].get("nets", ()): |
| tierno | 686b395 | 2017-03-10 13:57:24 +0100 | [diff] [blame] | 195 | r, nets = self.db.get_table(SELECT=('uuid',), FROM='nets', WHERE={'name': net}) |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 196 | if r > 0: |
| 197 | self.config['dhcp_nets'].append(nets[0]['uuid']) |
| 198 | |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 199 | # OFC default |
| 200 | self._start_ofc_default_task() |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 201 | |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 202 | # OFC per tenant in DB |
| 203 | self._start_of_db_tasks() |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 204 | |
| 205 | # create dhcp_server thread |
| 206 | host_test_mode = True if self.config['mode'] == 'test' or self.config['mode'] == "OF only" else False |
| 207 | dhcp_params = self.config.get("dhcp_server") |
| 208 | if dhcp_params: |
| 209 | thread = dt.dhcp_thread(dhcp_params=dhcp_params, test=host_test_mode, dhcp_nets=self.config["dhcp_nets"], |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 210 | db=self.db_of, db_lock=self.db_lock, debug=self.config['log_level_of']) |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 211 | thread.start() |
| 212 | self.config['dhcp_thread'] = thread |
| 213 | |
| 214 | # Create one thread for each host |
| 215 | host_test_mode = True if self.config['mode'] == 'test' or self.config['mode'] == "OF only" else False |
| 216 | host_develop_mode = True if self.config['mode'] == 'development' else False |
| 217 | host_develop_bridge_iface = self.config.get('development_bridge', None) |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 218 | |
| 219 | # get host list from data base before starting threads |
| tierno | 686b395 | 2017-03-10 13:57:24 +0100 | [diff] [blame] | 220 | r, hosts = self.db.get_table(SELECT=('name', 'ip_name', 'user', 'uuid'), FROM='hosts', WHERE={'status': 'ok'}) |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 221 | if r < 0: |
| 222 | raise ovimException("Cannot get hosts from database {}".format(hosts)) |
| 223 | |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 224 | self.config['host_threads'] = {} |
| 225 | for host in hosts: |
| 226 | host['image_path'] = '/opt/VNF/images/openvim' |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 227 | thread = ht.host_thread(name=host['name'], user=host['user'], host=host['ip_name'], db=self.db_of, |
| 228 | db_lock=self.db_lock, test=host_test_mode, image_path=self.config['image_path'], |
| 229 | version=self.config['version'], host_id=host['uuid'], develop_mode=host_develop_mode, |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 230 | develop_bridge_iface=host_develop_bridge_iface) |
| 231 | thread.start() |
| 232 | self.config['host_threads'][host['uuid']] = thread |
| 233 | |
| mirabal | b716ac5 | 2017-02-10 14:47:53 +0100 | [diff] [blame] | 234 | # create ovs dhcp thread |
| 235 | result, content = self.db.get_table(FROM='nets') |
| 236 | if result < 0: |
| 237 | self.logger.error("http_get_ports Error %d %s", result, content) |
| 238 | raise ovimException(str(content), -result) |
| 239 | |
| 240 | for net in content: |
| 241 | net_type = net['type'] |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 242 | if (net_type == 'bridge_data' or net_type == 'bridge_man') \ |
| 243 | and net["provider"][:4] == 'OVS:' and net["enable_dhcp"] == "true": |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 244 | self.launch_dhcp_server(net['vlan'], |
| 245 | net['dhcp_first_ip'], |
| 246 | net['dhcp_last_ip'], |
| 247 | net['cidr'], |
| 248 | net['gateway_ip']) |
| mirabal | b716ac5 | 2017-02-10 14:47:53 +0100 | [diff] [blame] | 249 | |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 250 | def _start_of_db_tasks(self): |
| 251 | """ |
| 252 | Start ofc task for existing ofcs in database |
| 253 | :param db_of: |
| 254 | :param db_lock: |
| 255 | :return: |
| 256 | """ |
| 257 | ofcs = self.get_of_controllers() |
| 258 | |
| 259 | for ofc in ofcs: |
| 260 | of_conn = self._load_of_module(ofc) |
| 261 | # create ofc thread per of controller |
| 262 | self._create_ofc_task(ofc['uuid'], ofc['dpid'], of_conn) |
| 263 | |
| 264 | def _create_ofc_task(self, ofc_uuid, dpid, of_conn): |
| 265 | """ |
| 266 | Create an ofc thread for handle each sdn controllers |
| 267 | :param ofc_uuid: sdn controller uuid |
| 268 | :param dpid: sdn controller dpid |
| 269 | :param of_conn: OF_conn module |
| 270 | :return: |
| 271 | """ |
| 272 | if 'ofcs_thread' not in self.config and 'ofcs_thread_dpid' not in self.config: |
| 273 | ofcs_threads = {} |
| 274 | ofcs_thread_dpid = [] |
| 275 | else: |
| 276 | ofcs_threads = self.config['ofcs_thread'] |
| 277 | ofcs_thread_dpid = self.config['ofcs_thread_dpid'] |
| 278 | |
| 279 | if ofc_uuid not in ofcs_threads: |
| 280 | ofc_thread = self._create_ofc_thread(of_conn, ofc_uuid) |
| 281 | if ofc_uuid == "Default": |
| 282 | self.config['of_thread'] = ofc_thread |
| 283 | |
| 284 | ofcs_threads[ofc_uuid] = ofc_thread |
| 285 | self.config['ofcs_thread'] = ofcs_threads |
| 286 | |
| 287 | ofcs_thread_dpid.append({dpid: ofc_thread}) |
| 288 | self.config['ofcs_thread_dpid'] = ofcs_thread_dpid |
| 289 | |
| 290 | def _start_ofc_default_task(self): |
| 291 | """ |
| 292 | Create default ofc thread |
| 293 | """ |
| 294 | if 'of_controller' not in self.config \ |
| 295 | and 'of_controller_ip' not in self.config \ |
| 296 | and 'of_controller_port' not in self.config \ |
| 297 | and 'of_controller_dpid' not in self.config: |
| 298 | return |
| 299 | |
| 300 | # OF THREAD |
| 301 | db_config = {} |
| 302 | db_config['ip'] = self.config.get('of_controller_ip') |
| 303 | db_config['port'] = self.config.get('of_controller_port') |
| 304 | db_config['dpid'] = self.config.get('of_controller_dpid') |
| 305 | db_config['type'] = self.config.get('of_controller') |
| 306 | db_config['user'] = self.config.get('of_user') |
| 307 | db_config['password'] = self.config.get('of_password') |
| 308 | |
| 309 | # create connector to the openflow controller |
| 310 | # load other parameters starting by of_ from config dict in a temporal dict |
| 311 | |
| 312 | of_conn = self._load_of_module(db_config) |
| 313 | # create openflow thread |
| 314 | self._create_ofc_task("Default", db_config['dpid'], of_conn) |
| 315 | |
| 316 | def _load_of_module(self, db_config): |
| 317 | """ |
| 318 | import python module for each SDN controller supported |
| mirabal | f9a1a8d | 2017-03-15 12:42:27 +0100 | [diff] [blame^] | 319 | :param db_config: SDN dn information |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 320 | :return: Module |
| 321 | """ |
| 322 | if not db_config: |
| 323 | raise ovimException("No module found it", HTTP_Internal_Server_Error) |
| 324 | |
| 325 | module_info = None |
| 326 | |
| 327 | try: |
| 328 | if self.of_test_mode: |
| mirabal | f9a1a8d | 2017-03-15 12:42:27 +0100 | [diff] [blame^] | 329 | return oft.of_test_connector({"name": db_config['type'], "dpid": db_config['dpid'], |
| 330 | "of_debug": self.config['log_level_of']}) |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 331 | temp_dict = {} |
| 332 | |
| 333 | if db_config: |
| 334 | temp_dict['of_ip'] = db_config['ip'] |
| 335 | temp_dict['of_port'] = db_config['port'] |
| 336 | temp_dict['of_dpid'] = db_config['dpid'] |
| 337 | temp_dict['of_controller'] = db_config['type'] |
| 338 | |
| 339 | temp_dict['of_debug'] = self.config['log_level_of'] |
| 340 | |
| 341 | if temp_dict['of_controller'] == 'opendaylight': |
| 342 | module = "ODL" |
| 343 | else: |
| 344 | module = temp_dict['of_controller'] |
| 345 | |
| 346 | if module not in ovim.of_module: |
| 347 | module_info = imp.find_module(module) |
| 348 | of_conn_module = imp.load_module("OF_conn", *module_info) |
| 349 | ovim.of_module[module] = of_conn_module |
| 350 | else: |
| 351 | of_conn_module = ovim.of_module[module] |
| 352 | |
| 353 | try: |
| 354 | return of_conn_module.OF_conn(temp_dict) |
| 355 | except Exception as e: |
| 356 | self.logger.error("Cannot open the Openflow controller '%s': %s", type(e).__name__, str(e)) |
| 357 | if module_info and module_info[0]: |
| 358 | file.close(module_info[0]) |
| 359 | raise ovimException("Cannot open the Openflow controller '{}': '{}'".format(type(e).__name__, str(e)), |
| 360 | HTTP_Internal_Server_Error) |
| 361 | except (IOError, ImportError) as e: |
| 362 | if module_info and module_info[0]: |
| 363 | file.close(module_info[0]) |
| 364 | self.logger.error("Cannot open openflow controller module '%s'; %s: %s; revise 'of_controller' " |
| 365 | "field of configuration file.", module, type(e).__name__, str(e)) |
| 366 | raise ovimException("Cannot open openflow controller module '{}'; {}: {}; revise 'of_controller' " |
| 367 | "field of configuration file.".format(module, type(e).__name__, str(e)), |
| 368 | HTTP_Internal_Server_Error) |
| 369 | |
| 370 | def _create_ofc_thread(self, of_conn, ofc_uuid="Default"): |
| 371 | """ |
| 372 | Create and launch a of thread |
| 373 | :return: thread obj |
| 374 | """ |
| 375 | # create openflow thread |
| 376 | |
| 377 | if 'of_controller_nets_with_same_vlan' in self.config: |
| 378 | ofc_net_same_vlan = self.config['of_controller_nets_with_same_vlan'] |
| 379 | else: |
| 380 | ofc_net_same_vlan = False |
| 381 | |
| 382 | thread = oft.openflow_thread(ofc_uuid, of_conn, of_test=self.of_test_mode, db=self.db_of, db_lock=self.db_lock, |
| 383 | pmp_with_same_vlan=ofc_net_same_vlan, debug=self.config['log_level_of']) |
| 384 | #r, c = thread.OF_connector.obtain_port_correspondence() |
| 385 | #if r < 0: |
| 386 | # raise ovimException("Cannot get openflow information %s", c) |
| 387 | thread.start() |
| 388 | return thread |
| 389 | |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 390 | def stop_service(self): |
| 391 | threads = self.config.get('host_threads', {}) |
| 392 | if 'of_thread' in self.config: |
| 393 | threads['of'] = (self.config['of_thread']) |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 394 | if 'ofcs_thread' in self.config: |
| 395 | ofcs_thread = self.config['ofcs_thread'] |
| 396 | for ofc in ofcs_thread: |
| 397 | threads[ofc] = ofcs_thread[ofc] |
| 398 | |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 399 | if 'dhcp_thread' in self.config: |
| 400 | threads['dhcp'] = (self.config['dhcp_thread']) |
| 401 | |
| 402 | for thread in threads.values(): |
| 403 | thread.insert_task("exit") |
| 404 | for thread in threads.values(): |
| 405 | thread.join() |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 406 | |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 407 | def get_networks(self, columns=None, db_filter={}, limit=None): |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 408 | """ |
| 409 | Retreive networks available |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 410 | :param columns: List with select query parameters |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 411 | :param db_filter: List with where query parameters |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 412 | :param limit: Query limit result |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 413 | :return: |
| 414 | """ |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 415 | result, content = self.db.get_table(SELECT=columns, FROM='nets', WHERE=db_filter, LIMIT=limit) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 416 | |
| 417 | if result < 0: |
| 418 | raise ovimException(str(content), -result) |
| 419 | |
| 420 | convert_boolean(content, ('shared', 'admin_state_up', 'enable_dhcp')) |
| 421 | |
| 422 | return content |
| 423 | |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 424 | def show_network(self, network_id, db_filter={}): |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 425 | """ |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 426 | Get network from DB by id |
| 427 | :param network_id: net Id |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 428 | :param db_filter: List with where query parameters |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 429 | :return: |
| 430 | """ |
| 431 | # obtain data |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 432 | if not network_id: |
| 433 | raise ovimException("Not network id was not found") |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 434 | db_filter['uuid'] = network_id |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 435 | |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 436 | result, content = self.db.get_table(FROM='nets', WHERE=db_filter, LIMIT=100) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 437 | |
| 438 | if result < 0: |
| 439 | raise ovimException(str(content), -result) |
| 440 | elif result == 0: |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 441 | raise ovimException("show_network network '%s' not found" % network_id, -result) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 442 | else: |
| 443 | convert_boolean(content, ('shared', 'admin_state_up', 'enable_dhcp')) |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 444 | # get ports from DB |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 445 | result, ports = self.db.get_table(FROM='ports', SELECT=('uuid as port_id',), |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 446 | WHERE={'net_id': network_id}, LIMIT=100) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 447 | if len(ports) > 0: |
| 448 | content[0]['ports'] = ports |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 449 | |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 450 | convert_boolean(content, ('shared', 'admin_state_up', 'enable_dhcp')) |
| 451 | return content[0] |
| 452 | |
| 453 | def new_network(self, network): |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 454 | """ |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 455 | Create a net in DB |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 456 | :return: |
| 457 | """ |
| 458 | tenant_id = network.get('tenant_id') |
| 459 | |
| 460 | if tenant_id: |
| 461 | result, _ = self.db.get_table(FROM='tenants', SELECT=('uuid',), WHERE={'uuid': tenant_id, "enabled": True}) |
| 462 | if result <= 0: |
| 463 | raise ovimException("set_network error, no tenant founded", -result) |
| 464 | |
| 465 | bridge_net = None |
| 466 | # check valid params |
| 467 | net_provider = network.get('provider') |
| 468 | net_type = network.get('type') |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 469 | net_vlan = network.get("vlan") |
| 470 | net_bind_net = network.get("bind_net") |
| 471 | net_bind_type = network.get("bind_type") |
| 472 | name = network["name"] |
| 473 | |
| 474 | # check if network name ends with :<vlan_tag> and network exist in order to make and automated bindning |
| 475 | vlan_index = name.rfind(":") |
| 476 | if not net_bind_net and not net_bind_type and vlan_index > 1: |
| 477 | try: |
| 478 | vlan_tag = int(name[vlan_index + 1:]) |
| 479 | if not vlan_tag and vlan_tag < 4096: |
| 480 | net_bind_net = name[:vlan_index] |
| 481 | net_bind_type = "vlan:" + name[vlan_index + 1:] |
| 482 | except: |
| 483 | pass |
| 484 | |
| 485 | if net_bind_net: |
| 486 | # look for a valid net |
| 487 | if self._check_valid_uuid(net_bind_net): |
| 488 | net_bind_key = "uuid" |
| 489 | else: |
| 490 | net_bind_key = "name" |
| 491 | result, content = self.db.get_table(FROM='nets', WHERE={net_bind_key: net_bind_net}) |
| 492 | if result < 0: |
| 493 | raise ovimException(' getting nets from db ' + content, HTTP_Internal_Server_Error) |
| 494 | elif result == 0: |
| 495 | raise ovimException(" bind_net %s '%s'not found" % (net_bind_key, net_bind_net), HTTP_Bad_Request) |
| 496 | elif result > 1: |
| 497 | raise ovimException(" more than one bind_net %s '%s' found, use uuid" % (net_bind_key, net_bind_net), HTTP_Bad_Request) |
| 498 | network["bind_net"] = content[0]["uuid"] |
| 499 | |
| 500 | if net_bind_type: |
| 501 | if net_bind_type[0:5] != "vlan:": |
| 502 | raise ovimException("bad format for 'bind_type', must be 'vlan:<tag>'", HTTP_Bad_Request) |
| 503 | if int(net_bind_type[5:]) > 4095 or int(net_bind_type[5:]) <= 0: |
| 504 | raise ovimException("bad format for 'bind_type', must be 'vlan:<tag>' with a tag between 1 and 4095", |
| 505 | HTTP_Bad_Request) |
| 506 | network["bind_type"] = net_bind_type |
| 507 | |
| 508 | if net_provider: |
| 509 | if net_provider[:9] == "openflow:": |
| 510 | if net_type: |
| 511 | if net_type != "ptp" and net_type != "data": |
| 512 | raise ovimException(" only 'ptp' or 'data' net types can be bound to 'openflow'", |
| 513 | HTTP_Bad_Request) |
| 514 | else: |
| 515 | net_type = 'data' |
| 516 | else: |
| 517 | if net_type: |
| 518 | if net_type != "bridge_man" and net_type != "bridge_data": |
| 519 | raise ovimException("Only 'bridge_man' or 'bridge_data' net types can be bound " |
| 520 | "to 'bridge', 'macvtap' or 'default", HTTP_Bad_Request) |
| 521 | else: |
| 522 | net_type = 'bridge_man' |
| 523 | |
| 524 | if not net_type: |
| 525 | net_type = 'bridge_man' |
| 526 | |
| 527 | if net_provider: |
| 528 | if net_provider[:7] == 'bridge:': |
| 529 | # check it is one of the pre-provisioned bridges |
| 530 | bridge_net_name = net_provider[7:] |
| 531 | for brnet in self.config['bridge_nets']: |
| 532 | if brnet[0] == bridge_net_name: # free |
| 533 | if not brnet[3]: |
| 534 | raise ovimException("invalid 'provider:physical', " |
| 535 | "bridge '%s' is already used" % bridge_net_name, HTTP_Conflict) |
| 536 | bridge_net = brnet |
| 537 | net_vlan = brnet[1] |
| 538 | break |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 539 | # if bridge_net==None: |
| 540 | # bottle.abort(HTTP_Bad_Request, "invalid 'provider:physical', bridge '%s' is not one of the |
| 541 | # provisioned 'bridge_ifaces' in the configuration file" % bridge_net_name) |
| 542 | # return |
| 543 | |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 544 | elif self.config['network_type'] == 'bridge' and (net_type == 'bridge_data' or net_type == 'bridge_man'): |
| 545 | # look for a free precreated nets |
| 546 | for brnet in self.config['bridge_nets']: |
| 547 | if not brnet[3]: # free |
| 548 | if not bridge_net: |
| 549 | if net_type == 'bridge_man': # look for the smaller speed |
| 550 | if brnet[2] < bridge_net[2]: |
| 551 | bridge_net = brnet |
| 552 | else: # look for the larger speed |
| 553 | if brnet[2] > bridge_net[2]: |
| 554 | bridge_net = brnet |
| 555 | else: |
| 556 | bridge_net = brnet |
| 557 | net_vlan = brnet[1] |
| 558 | if not bridge_net: |
| 559 | raise ovimException("Max limits of bridge networks reached. Future versions of VIM " |
| 560 | "will overcome this limit", HTTP_Bad_Request) |
| 561 | else: |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 562 | self.logger.debug("using net " + bridge_net) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 563 | net_provider = "bridge:" + bridge_net[0] |
| 564 | net_vlan = bridge_net[1] |
| 565 | elif net_type == 'bridge_data' or net_type == 'bridge_man' and self.config['network_type'] == 'ovs': |
| 566 | net_provider = 'OVS' |
| 567 | if not net_vlan and (net_type == "data" or net_type == "ptp" or net_provider == "OVS"): |
| 568 | net_vlan = self.db.get_free_net_vlan() |
| 569 | if net_vlan < 0: |
| 570 | raise ovimException("Error getting an available vlan", HTTP_Internal_Server_Error) |
| 571 | if net_provider == 'OVS': |
| 572 | net_provider = 'OVS' + ":" + str(net_vlan) |
| 573 | |
| 574 | network['provider'] = net_provider |
| 575 | network['type'] = net_type |
| 576 | network['vlan'] = net_vlan |
| 577 | dhcp_integrity = True |
| 578 | if 'enable_dhcp' in network and network['enable_dhcp']: |
| 579 | dhcp_integrity = self._check_dhcp_data_integrity(network) |
| 580 | |
| 581 | result, content = self.db.new_row('nets', network, True, True) |
| 582 | |
| 583 | if result >= 0 and dhcp_integrity: |
| 584 | if bridge_net: |
| 585 | bridge_net[3] = content |
| 586 | if self.config.get("dhcp_server") and self.config['network_type'] == 'bridge': |
| 587 | if network["name"] in self.config["dhcp_server"].get("nets", ()): |
| 588 | self.config["dhcp_nets"].append(content) |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 589 | self.logger.debug("dhcp_server: add new net", content) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 590 | elif not bridge_net and bridge_net[0] in self.config["dhcp_server"].get("bridge_ifaces", ()): |
| 591 | self.config["dhcp_nets"].append(content) |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 592 | self.logger.debug("dhcp_server: add new net", content, content) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 593 | return content |
| 594 | else: |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 595 | raise ovimException("Error posting network", HTTP_Internal_Server_Error) |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 596 | # TODO kei change update->edit |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 597 | |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 598 | def edit_network(self, network_id, network): |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 599 | """ |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 600 | Update entwork data byt id |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 601 | :return: |
| 602 | """ |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 603 | # Look for the previous data |
| 604 | where_ = {'uuid': network_id} |
| 605 | result, network_old = self.db.get_table(FROM='nets', WHERE=where_) |
| 606 | if result < 0: |
| 607 | raise ovimException("Error updating network %s" % network_old, HTTP_Internal_Server_Error) |
| 608 | elif result == 0: |
| 609 | raise ovimException('network %s not found' % network_id, HTTP_Not_Found) |
| 610 | # get ports |
| 611 | nbports, content = self.db.get_table(FROM='ports', SELECT=('uuid as port_id',), |
| 612 | WHERE={'net_id': network_id}, LIMIT=100) |
| 613 | if result < 0: |
| 614 | raise ovimException("http_put_network_id error %d %s" % (result, network_old), HTTP_Internal_Server_Error) |
| 615 | if nbports > 0: |
| 616 | if 'type' in network and network['type'] != network_old[0]['type']: |
| 617 | raise ovimException("Can not change type of network while having ports attached", |
| 618 | HTTP_Method_Not_Allowed) |
| 619 | if 'vlan' in network and network['vlan'] != network_old[0]['vlan']: |
| 620 | raise ovimException("Can not change vlan of network while having ports attached", |
| 621 | HTTP_Method_Not_Allowed) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 622 | |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 623 | # check valid params |
| 624 | net_provider = network.get('provider', network_old[0]['provider']) |
| 625 | net_type = network.get('type', network_old[0]['type']) |
| 626 | net_bind_net = network.get("bind_net") |
| 627 | net_bind_type = network.get("bind_type") |
| 628 | if net_bind_net: |
| 629 | # look for a valid net |
| 630 | if self._check_valid_uuid(net_bind_net): |
| 631 | net_bind_key = "uuid" |
| 632 | else: |
| 633 | net_bind_key = "name" |
| 634 | result, content = self.db.get_table(FROM='nets', WHERE={net_bind_key: net_bind_net}) |
| 635 | if result < 0: |
| 636 | raise ovimException('Getting nets from db ' + content, HTTP_Internal_Server_Error) |
| 637 | elif result == 0: |
| 638 | raise ovimException("bind_net %s '%s'not found" % (net_bind_key, net_bind_net), HTTP_Bad_Request) |
| 639 | elif result > 1: |
| 640 | raise ovimException("More than one bind_net %s '%s' found, use uuid" % (net_bind_key, net_bind_net), |
| 641 | HTTP_Bad_Request) |
| 642 | network["bind_net"] = content[0]["uuid"] |
| 643 | if net_bind_type: |
| 644 | if net_bind_type[0:5] != "vlan:": |
| 645 | raise ovimException("Bad format for 'bind_type', must be 'vlan:<tag>'", HTTP_Bad_Request) |
| 646 | if int(net_bind_type[5:]) > 4095 or int(net_bind_type[5:]) <= 0: |
| 647 | raise ovimException("bad format for 'bind_type', must be 'vlan:<tag>' with a tag between 1 and 4095", |
| 648 | HTTP_Bad_Request) |
| 649 | if net_provider: |
| 650 | if net_provider[:9] == "openflow:": |
| 651 | if net_type != "ptp" and net_type != "data": |
| 652 | raise ovimException("Only 'ptp' or 'data' net types can be bound to 'openflow'", HTTP_Bad_Request) |
| 653 | else: |
| 654 | if net_type != "bridge_man" and net_type != "bridge_data": |
| 655 | raise ovimException("Only 'bridge_man' or 'bridge_data' net types can be bound to " |
| 656 | "'bridge', 'macvtap' or 'default", HTTP_Bad_Request) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 657 | |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 658 | # insert in data base |
| 659 | result, content = self.db.update_rows('nets', network, WHERE={'uuid': network_id}, log=True) |
| 660 | if result >= 0: |
| 661 | # if result > 0 and nbports>0 and 'admin_state_up' in network |
| 662 | # and network['admin_state_up'] != network_old[0]['admin_state_up']: |
| 663 | if result > 0: |
| mirabal | 7bbf50e | 2017-03-13 15:15:18 +0100 | [diff] [blame] | 664 | |
| 665 | try: |
| 666 | self.net_update_ofc_thread(network_id) |
| 667 | except ovimException as e: |
| 668 | raise ovimException("Error while launching openflow rules in network '{}' {}" |
| 669 | .format(network_id, str(e)), HTTP_Internal_Server_Error) |
| 670 | except Exception as e: |
| 671 | raise ovimException("Error while launching openflow rules in network '{}' {}" |
| 672 | .format(network_id, str(e)), HTTP_Internal_Server_Error) |
| 673 | |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 674 | if self.config.get("dhcp_server"): |
| 675 | if network_id in self.config["dhcp_nets"]: |
| 676 | self.config["dhcp_nets"].remove(network_id) |
| mirabal | 7bbf50e | 2017-03-13 15:15:18 +0100 | [diff] [blame] | 677 | if network.get("name", network_old[0]["name"]) in self.config["dhcp_server"].get("nets", ()): |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 678 | self.config["dhcp_nets"].append(network_id) |
| 679 | else: |
| mirabal | 7bbf50e | 2017-03-13 15:15:18 +0100 | [diff] [blame] | 680 | net_bind = network.get("bind_type", network_old[0]["bind_type"]) |
| 681 | if net_bind and net_bind and net_bind[:7] == "bridge:" and net_bind[7:] in self.config["dhcp_server"].get( |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 682 | "bridge_ifaces", ()): |
| 683 | self.config["dhcp_nets"].append(network_id) |
| 684 | return network_id |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 685 | else: |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 686 | raise ovimException(content, -result) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 687 | |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 688 | def delete_network(self, network_id): |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 689 | """ |
| 690 | Delete network by network id |
| 691 | :param network_id: network id |
| 692 | :return: |
| 693 | """ |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 694 | |
| 695 | # delete from the data base |
| 696 | result, content = self.db.delete_row('nets', network_id) |
| 697 | |
| 698 | if result == 0: |
| 699 | raise ovimException("Network %s not found " % network_id, HTTP_Not_Found) |
| 700 | elif result > 0: |
| 701 | for brnet in self.config['bridge_nets']: |
| 702 | if brnet[3] == network_id: |
| 703 | brnet[3] = None |
| 704 | break |
| 705 | if self.config.get("dhcp_server") and network_id in self.config["dhcp_nets"]: |
| 706 | self.config["dhcp_nets"].remove(network_id) |
| 707 | return content |
| 708 | else: |
| 709 | raise ovimException("Error deleting network %s" % network_id, HTTP_Internal_Server_Error) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 710 | |
| 711 | def get_openflow_rules(self, network_id=None): |
| 712 | """ |
| 713 | Get openflow id from DB |
| 714 | :param network_id: Network id, if none all networks will be retrieved |
| 715 | :return: Return a list with Openflow rules per net |
| 716 | """ |
| 717 | # ignore input data |
| 718 | if not network_id: |
| 719 | where_ = {} |
| 720 | else: |
| 721 | where_ = {"net_id": network_id} |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 722 | result, content = self.db.get_table( |
| mirabal | f9a1a8d | 2017-03-15 12:42:27 +0100 | [diff] [blame^] | 723 | SELECT=("name", "net_id", "ofc_id", "priority", "vlan_id", "ingress_port", "src_mac", "dst_mac", "actions"), |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 724 | WHERE=where_, FROM='of_flows') |
| 725 | |
| 726 | if result < 0: |
| 727 | raise ovimException(str(content), -result) |
| 728 | return content |
| 729 | |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 730 | def edit_openflow_rules(self, network_id=None): |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 731 | |
| 732 | """ |
| 733 | To make actions over the net. The action is to reinstall the openflow rules |
| 734 | network_id can be 'all' |
| 735 | :param network_id: Network id, if none all networks will be retrieved |
| 736 | :return : Number of nets updated |
| 737 | """ |
| 738 | |
| 739 | # ignore input data |
| 740 | if not network_id: |
| 741 | where_ = {} |
| 742 | else: |
| 743 | where_ = {"uuid": network_id} |
| 744 | result, content = self.db.get_table(SELECT=("uuid", "type"), WHERE=where_, FROM='nets') |
| 745 | |
| 746 | if result < 0: |
| 747 | raise ovimException(str(content), -result) |
| 748 | |
| 749 | for net in content: |
| 750 | if net["type"] != "ptp" and net["type"] != "data": |
| 751 | result -= 1 |
| 752 | continue |
| mirabal | 7bbf50e | 2017-03-13 15:15:18 +0100 | [diff] [blame] | 753 | |
| 754 | try: |
| 755 | self.net_update_ofc_thread(net['uuid']) |
| 756 | except ovimException as e: |
| 757 | raise ovimException("Error updating network'{}' {}".format(net['uuid'], str(e)), |
| 758 | HTTP_Internal_Server_Error) |
| 759 | except Exception as e: |
| 760 | raise ovimException("Error updating network '{}' {}".format(net['uuid'], str(e)), |
| 761 | HTTP_Internal_Server_Error) |
| 762 | |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 763 | return result |
| 764 | |
| mirabal | f9a1a8d | 2017-03-15 12:42:27 +0100 | [diff] [blame^] | 765 | def delete_openflow_rules(self, ofc_id=None): |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 766 | """ |
| 767 | To make actions over the net. The action is to delete ALL openflow rules |
| 768 | :return: return operation result |
| 769 | """ |
| mirabal | f9a1a8d | 2017-03-15 12:42:27 +0100 | [diff] [blame^] | 770 | |
| 771 | if not ofc_id: |
| 772 | if 'Default' in self.config['ofcs_thread']: |
| 773 | r, c = self.config['ofcs_thread']['Default'].insert_task("clear-all") |
| 774 | else: |
| 775 | raise ovimException("Default Openflow controller not not running", HTTP_Not_Found) |
| 776 | |
| 777 | elif ofc_id in self.config['ofcs_thread']: |
| 778 | r, c = self.config['ofcs_thread'][ofc_id].insert_task("clear-all") |
| 779 | |
| 780 | # ignore input data |
| 781 | if r < 0: |
| 782 | raise ovimException(str(c), -r) |
| 783 | else: |
| 784 | raise ovimException("Openflow controller not found with ofc_id={}".format(ofc_id), HTTP_Not_Found) |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 785 | return r |
| 786 | |
| mirabal | f9a1a8d | 2017-03-15 12:42:27 +0100 | [diff] [blame^] | 787 | def get_openflow_ports(self, ofc_id=None): |
| mirabal | 65ba8f8 | 2017-02-15 12:36:33 +0100 | [diff] [blame] | 788 | """ |
| 789 | Obtain switch ports names of openflow controller |
| 790 | :return: Return flow ports in DB |
| 791 | """ |
| mirabal | f9a1a8d | 2017-03-15 12:42:27 +0100 | [diff] [blame^] | 792 | if not ofc_id: |
| 793 | if 'Default' in self.config['ofcs_thread']: |
| 794 | conn = self.config['ofcs_thread']['Default'].OF_connector |
| 795 | else: |
| 796 | raise ovimException("Default Openflow controller not not running", HTTP_Not_Found) |
| 797 | |
| 798 | if ofc_id in self.config['ofcs_thread']: |
| 799 | conn = self.config['ofcs_thread'][ofc_id].OF_connector |
| 800 | else: |
| 801 | raise ovimException("Openflow controller not found with ofc_id={}".format(ofc_id), HTTP_Not_Found) |
| 802 | return conn.pp2ofi |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 803 | |
| 804 | def get_ports(self, columns=None, filter={}, limit=None): |
| 805 | # result, content = my.db.get_ports(where_) |
| 806 | result, content = self.db.get_table(SELECT=columns, WHERE=filter, FROM='ports', LIMIT=limit) |
| 807 | if result < 0: |
| 808 | self.logger.error("http_get_ports Error %d %s", result, content) |
| 809 | raise ovimException(str(content), -result) |
| 810 | else: |
| 811 | convert_boolean(content, ('admin_state_up',)) |
| 812 | return content |
| 813 | |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 814 | def new_port(self, port_data): |
| 815 | port_data['type'] = 'external' |
| 816 | if port_data.get('net_id'): |
| 817 | # check that new net has the correct type |
| 818 | result, new_net = self.db.check_target_net(port_data['net_id'], None, 'external') |
| 819 | if result < 0: |
| 820 | raise ovimException(str(new_net), -result) |
| 821 | # insert in data base |
| 822 | result, uuid = self.db.new_row('ports', port_data, True, True) |
| 823 | if result > 0: |
| 824 | if 'net_id' in port_data: |
| mirabal | 7bbf50e | 2017-03-13 15:15:18 +0100 | [diff] [blame] | 825 | try: |
| 826 | self.net_update_ofc_thread(port_data['net_id']) |
| 827 | except ovimException as e: |
| 828 | raise ovimException("Cannot insert a task for updating network '{}' {}" |
| 829 | .format(port_data['net_id'], str(e)), HTTP_Internal_Server_Error) |
| 830 | except Exception as e: |
| 831 | raise ovimException("Cannot insert a task for updating network '{}' {}" |
| 832 | .format(port_data['net_id'], str(e)), HTTP_Internal_Server_Error) |
| 833 | |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 834 | return uuid |
| 835 | else: |
| 836 | raise ovimException(str(uuid), -result) |
| 837 | |
| mirabal | 3782945 | 2017-03-09 14:41:21 +0100 | [diff] [blame] | 838 | def new_external_port(self, port_data): |
| 839 | """ |
| 840 | Create new external port and check port mapping correspondence |
| 841 | :param port_data: port_data = { |
| 842 | 'region': 'datacenter region', |
| 843 | 'compute_node': 'compute node id', |
| 844 | 'pci': 'pci port address', |
| 845 | 'vlan': 'net vlan', |
| 846 | 'net_id': 'net id', |
| 847 | 'tenant_id': 'tenant id', |
| 848 | 'mac': 'switch mac', |
| 849 | 'name': 'port name' |
| 850 | 'ip_address': 'ip address - optional'} |
| 851 | :return: |
| 852 | """ |
| 853 | |
| 854 | port_data['type'] = 'external' |
| 855 | |
| 856 | if port_data.get('net_id'): |
| 857 | # check that new net has the correct type |
| 858 | result, new_net = self.db.check_target_net(port_data['net_id'], None, 'external') |
| 859 | if result < 0: |
| 860 | raise ovimException(str(new_net), -result) |
| 861 | # insert in data base |
| 862 | db_filter = {} |
| 863 | |
| 864 | if port_data.get('region'): |
| 865 | db_filter['region'] = port_data['region'] |
| 866 | if port_data.get('pci'): |
| 867 | db_filter['pci'] = port_data['pci'] |
| 868 | if port_data.get('compute_node'): |
| 869 | db_filter['compute_node'] = port_data['compute_node'] |
| 870 | |
| 871 | columns = ['ofc_id', 'switch_dpid', 'switch_port', 'switch_mac', 'pci'] |
| 872 | port_mapping_data = self.get_of_port_mappings(columns, db_filter) |
| 873 | |
| 874 | if not len(port_mapping_data): |
| 875 | raise ovimException("No port mapping founded for region='{}', compute id='{}' and pci='{}'". |
| 876 | format(db_filter['region'], db_filter['compute_node'], db_filter['pci']), |
| 877 | HTTP_Not_Found) |
| 878 | elif len(port_mapping_data) > 1: |
| 879 | raise ovimException("Wrong port data was given, please check pci, region & compute id data", |
| 880 | HTTP_Conflict) |
| 881 | |
| 882 | port_data['ofc_id'] = port_mapping_data[0]['ofc_id'] |
| 883 | port_data['switch_dpid'] = port_mapping_data[0]['switch_dpid'] |
| 884 | port_data['switch_port'] = port_mapping_data[0]['switch_port'] |
| 885 | port_data['switch_mac'] = port_mapping_data[0]['switch_mac'] |
| 886 | |
| 887 | # remove from compute_node, region and pci of_port_data to adapt to 'ports' structure |
| 888 | del port_data['compute_node'] |
| 889 | del port_data['region'] |
| 890 | del port_data['pci'] |
| 891 | |
| 892 | result, uuid = self.db.new_row('ports', port_data, True, True) |
| 893 | if result > 0: |
| mirabal | 7bbf50e | 2017-03-13 15:15:18 +0100 | [diff] [blame] | 894 | try: |
| 895 | self.net_update_ofc_thread(port_data['net_id'], port_data['ofc_id']) |
| 896 | except ovimException as e: |
| 897 | raise ovimException("Cannot insert a task for updating network '{}' {}". |
| 898 | format(port_data['net_id'], str(e)), HTTP_Internal_Server_Error) |
| 899 | except Exception as e: |
| 900 | raise ovimException("Cannot insert a task for updating network '{}' {}" |
| 901 | .format(port_data['net_id'], e), HTTP_Internal_Server_Error) |
| mirabal | 3782945 | 2017-03-09 14:41:21 +0100 | [diff] [blame] | 902 | return uuid |
| 903 | else: |
| 904 | raise ovimException(str(uuid), -result) |
| 905 | |
| mirabal | 7bbf50e | 2017-03-13 15:15:18 +0100 | [diff] [blame] | 906 | def net_update_ofc_thread(self, net_id, ofc_id=None): |
| 907 | """ |
| 908 | Insert a update net task by net id or ofc_id for each ofc thread |
| 909 | :param net_id: network id |
| 910 | :param ofc_id: openflow controller id |
| 911 | :return: |
| 912 | """ |
| 913 | if not net_id: |
| 914 | raise ovimException("No net_id received", HTTP_Internal_Server_Error) |
| 915 | |
| 916 | switch_dpid = None |
| 917 | r = -1 |
| 918 | c = 'No valid ofc_id or switch_dpid received' |
| 919 | |
| 920 | if not ofc_id: |
| 921 | ports = self.get_ports(filter={"net_id": net_id}) |
| 922 | for port in ports: |
| 923 | port_ofc_id = port.get('ofc_id', None) |
| 924 | if port_ofc_id: |
| 925 | ofc_id = port['ofc_id'] |
| 926 | switch_dpid = port['switch_dpid'] |
| 927 | break |
| 928 | |
| 929 | # If no ofc_id found it, default ofc_id is used. |
| 930 | if not ofc_id and not switch_dpid: |
| 931 | ofc_id = "Default" |
| 932 | |
| 933 | if ofc_id and ofc_id in self.config['ofcs_thread']: |
| 934 | r, c = self.config['ofcs_thread'][ofc_id].insert_task("update-net", net_id) |
| 935 | elif switch_dpid: |
| 936 | |
| 937 | ofcs_dpid_list = self.config['ofcs_thread_dpid'] |
| 938 | for ofc_t in ofcs_dpid_list: |
| 939 | if switch_dpid in ofc_t: |
| 940 | r, c = ofc_t[switch_dpid].insert_task("update-net", net_id) |
| 941 | |
| 942 | if r < 0: |
| 943 | message = "Cannot insert a task for updating network '$s', %s", net_id, c |
| 944 | self.logger.error(message) |
| 945 | raise ovimException(message, HTTP_Internal_Server_Error) |
| 946 | |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 947 | def delete_port(self, port_id): |
| 948 | # Look for the previous port data |
| 949 | result, ports = self.db.get_table(WHERE={'uuid': port_id, "type": "external"}, FROM='ports') |
| 950 | if result < 0: |
| 951 | raise ovimException("Cannot get port info from database: {}".format(ports), http_code=-result) |
| 952 | # delete from the data base |
| 953 | result, content = self.db.delete_row('ports', port_id) |
| 954 | if result == 0: |
| 955 | raise ovimException("External port '{}' not found".format(port_id), http_code=HTTP_Not_Found) |
| 956 | elif result < 0: |
| 957 | raise ovimException("Cannot delete port from database: {}".format(content), http_code=-result) |
| 958 | # update network |
| 959 | network = ports[0].get('net_id', None) |
| 960 | if network: |
| 961 | # change of net. |
| mirabal | 7bbf50e | 2017-03-13 15:15:18 +0100 | [diff] [blame] | 962 | |
| 963 | try: |
| 964 | self.net_update_ofc_thread(network) |
| 965 | except ovimException as e: |
| 966 | raise ovimException("Cannot insert a task for delete network '{}' {}".format(network, str(e)), |
| 967 | HTTP_Internal_Server_Error) |
| 968 | except Exception as e: |
| 969 | raise ovimException("Cannot insert a task for delete network '{}' {}".format(network, str(e)), |
| 970 | HTTP_Internal_Server_Error) |
| 971 | |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 972 | return content |
| 973 | |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 974 | def edit_port(self, port_id, port_data, admin=True): |
| 975 | # Look for the previous port data |
| 976 | result, content = self.db.get_table(FROM="ports", WHERE={'uuid': port_id}) |
| 977 | if result < 0: |
| 978 | raise ovimException("Cannot get port info from database: {}".format(content), http_code=-result) |
| 979 | elif result == 0: |
| 980 | raise ovimException("Port '{}' not found".format(port_id), http_code=HTTP_Not_Found) |
| 981 | port = content[0] |
| 982 | nets = [] |
| 983 | host_id = None |
| 984 | result = 1 |
| 985 | if 'net_id' in port_data: |
| 986 | # change of net. |
| 987 | old_net = port.get('net_id', None) |
| 988 | new_net = port_data['net_id'] |
| 989 | if old_net != new_net: |
| 990 | |
| 991 | if new_net: |
| 992 | nets.append(new_net) # put first the new net, so that new openflow rules are created before removing the old ones |
| 993 | if old_net: |
| 994 | nets.append(old_net) |
| 995 | if port['type'] == 'instance:bridge' or port['type'] == 'instance:ovs': |
| 996 | raise ovimException("bridge interfaces cannot be attached to a different net", http_code=HTTP_Forbidden) |
| 997 | elif port['type'] == 'external' and not admin: |
| 998 | raise ovimException("Needed admin privileges",http_code=HTTP_Unauthorized) |
| 999 | if new_net: |
| 1000 | # check that new net has the correct type |
| 1001 | result, new_net_dict = self.db.check_target_net(new_net, None, port['type']) |
| 1002 | if result < 0: |
| 1003 | raise ovimException("Error {}".format(new_net_dict), http_code=HTTP_Conflict) |
| 1004 | # change VLAN for SR-IOV ports |
| 1005 | if result >= 0 and port["type"] == "instance:data" and port["model"] == "VF": # TODO consider also VFnotShared |
| 1006 | if new_net: |
| 1007 | port_data["vlan"] = None |
| 1008 | else: |
| 1009 | port_data["vlan"] = new_net_dict["vlan"] |
| 1010 | # get host where this VM is allocated |
| 1011 | result, content = self.db.get_table(FROM="instances", WHERE={"uuid": port["instance_id"]}) |
| 1012 | if result > 0: |
| 1013 | host_id = content[0]["host_id"] |
| 1014 | |
| 1015 | # insert in data base |
| 1016 | if result >= 0: |
| 1017 | result, content = self.db.update_rows('ports', port_data, WHERE={'uuid': port_id}, log=False) |
| 1018 | |
| 1019 | # Insert task to complete actions |
| 1020 | if result > 0: |
| 1021 | for net_id in nets: |
| mirabal | 7bbf50e | 2017-03-13 15:15:18 +0100 | [diff] [blame] | 1022 | try: |
| 1023 | self.net_update_ofc_thread(net_id) |
| 1024 | except ovimException as e: |
| 1025 | raise ovimException("Error updating network'{}' {}".format(net_id, str(e)), |
| 1026 | HTTP_Internal_Server_Error) |
| 1027 | except Exception as e: |
| 1028 | raise ovimException("Error updating network '{}' {}".format(net_id, str(e)), |
| 1029 | HTTP_Internal_Server_Error) |
| 1030 | |
| tierno | 57f7bda | 2017-02-09 12:01:55 +0100 | [diff] [blame] | 1031 | if host_id: |
| 1032 | r, v = self.config['host_threads'][host_id].insert_task("edit-iface", port_id, old_net, new_net) |
| 1033 | if r < 0: |
| 1034 | self.logger.error("Error updating network '{}' {}".format(r,v)) |
| 1035 | # TODO Do something if fails |
| 1036 | if result >= 0: |
| 1037 | return port_id |
| 1038 | else: |
| 1039 | raise ovimException("Error {}".format(content), http_code=-result) |
| mirabal | b716ac5 | 2017-02-10 14:47:53 +0100 | [diff] [blame] | 1040 | |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 1041 | def new_of_controller(self, ofc_data): |
| 1042 | """ |
| 1043 | Create a new openflow controller into DB |
| 1044 | :param ofc_data: Dict openflow controller data |
| 1045 | :return: openflow controller dpid |
| 1046 | """ |
| 1047 | |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 1048 | result, ofc_uuid = self.db.new_row('ofcs', ofc_data, True, True) |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 1049 | if result < 0: |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 1050 | raise ovimException("New ofc Error %s" % ofc_uuid, HTTP_Internal_Server_Error) |
| 1051 | |
| 1052 | ofc_data['uuid'] = ofc_uuid |
| 1053 | of_conn = self._load_of_module(ofc_data) |
| 1054 | self._create_ofc_task(ofc_uuid, ofc_data['dpid'], of_conn) |
| 1055 | |
| 1056 | return ofc_uuid |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 1057 | |
| 1058 | def edit_of_controller(self, of_id, ofc_data): |
| 1059 | """ |
| 1060 | Edit an openflow controller entry from DB |
| 1061 | :return: |
| 1062 | """ |
| 1063 | if not ofc_data: |
| 1064 | raise ovimException("No data received during uptade OF contorller", http_code=HTTP_Internal_Server_Error) |
| 1065 | |
| 1066 | old_of_controller = self.show_of_controller(of_id) |
| 1067 | |
| 1068 | if old_of_controller: |
| 1069 | result, content = self.db.update_rows('ofcs', ofc_data, WHERE={'uuid': of_id}, log=False) |
| 1070 | if result >= 0: |
| 1071 | return ofc_data |
| 1072 | else: |
| 1073 | raise ovimException("Error uptating OF contorller with uuid {}".format(of_id), |
| 1074 | http_code=-result) |
| 1075 | else: |
| 1076 | raise ovimException("Error uptating OF contorller with uuid {}".format(of_id), |
| 1077 | http_code=HTTP_Internal_Server_Error) |
| 1078 | |
| 1079 | def delete_of_controller(self, of_id): |
| 1080 | """ |
| 1081 | Delete an openflow controller from DB. |
| 1082 | :param of_id: openflow controller dpid |
| 1083 | :return: |
| 1084 | """ |
| 1085 | |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 1086 | ofc = self.show_of_controller(of_id) |
| 1087 | |
| Pablo Montes Moreno | 5b6f749 | 2017-03-02 16:18:36 +0100 | [diff] [blame] | 1088 | result, content = self.db.delete_row("ofcs", of_id) |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 1089 | if result < 0: |
| 1090 | raise ovimException("Cannot delete ofc from database: {}".format(content), http_code=-result) |
| 1091 | elif result == 0: |
| 1092 | raise ovimException("ofc {} not found ".format(content), http_code=HTTP_Not_Found) |
| mirabal | 580435e | 2017-03-01 16:17:10 +0100 | [diff] [blame] | 1093 | |
| 1094 | ofc_thread = self.config['ofcs_thread'][of_id] |
| 1095 | del self.config['ofcs_thread'][of_id] |
| 1096 | for ofc_th in self.config['ofcs_thread_dpid']: |
| 1097 | if ofc['dpid'] in ofc_th: |
| 1098 | self.config['ofcs_thread_dpid'].remove(ofc_th) |
| 1099 | |
| 1100 | ofc_thread.insert_task("exit") |
| 1101 | #ofc_thread.join() |
| 1102 | |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 1103 | return content |
| 1104 | |
| 1105 | def show_of_controller(self, uuid): |
| 1106 | """ |
| 1107 | Show an openflow controller by dpid from DB. |
| 1108 | :param db_filter: List with where query parameters |
| 1109 | :return: |
| 1110 | """ |
| 1111 | |
| 1112 | result, content = self.db.get_table(FROM='ofcs', WHERE={"uuid": uuid}, LIMIT=100) |
| 1113 | |
| 1114 | if result == 0: |
| 1115 | raise ovimException("Openflow controller with uuid '{}' not found".format(uuid), |
| 1116 | http_code=HTTP_Not_Found) |
| 1117 | elif result < 0: |
| 1118 | raise ovimException("Openflow controller with uuid '{}' error".format(uuid), |
| 1119 | http_code=HTTP_Internal_Server_Error) |
| Pablo Montes Moreno | 5b6f749 | 2017-03-02 16:18:36 +0100 | [diff] [blame] | 1120 | return content[0] |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 1121 | |
| mirabal | fbfb797 | 2017-02-27 17:36:17 +0100 | [diff] [blame] | 1122 | def get_of_controllers(self, columns=None, db_filter={}, limit=None): |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 1123 | """ |
| 1124 | Show an openflow controllers from DB. |
| 1125 | :param columns: List with SELECT query parameters |
| 1126 | :param db_filter: List with where query parameters |
| mirabal | fbfb797 | 2017-02-27 17:36:17 +0100 | [diff] [blame] | 1127 | :param limit: result Limit |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 1128 | :return: |
| 1129 | """ |
| mirabal | fbfb797 | 2017-02-27 17:36:17 +0100 | [diff] [blame] | 1130 | result, content = self.db.get_table(SELECT=columns, FROM='ofcs', WHERE=db_filter, LIMIT=limit) |
| mirabal | 9e19459 | 2017-02-17 11:03:25 +0100 | [diff] [blame] | 1131 | |
| 1132 | if result < 0: |
| 1133 | raise ovimException(str(content), -result) |
| 1134 | |
| 1135 | return content |
| 1136 | |
| mirabal | fbfb797 | 2017-02-27 17:36:17 +0100 | [diff] [blame] | 1137 | def get_tenants(self, columns=None, db_filter={}, limit=None): |
| 1138 | """ |
| 1139 | Retrieve tenant list from DB |
| 1140 | :param columns: List with SELECT query parameters |
| 1141 | :param db_filter: List with where query parameters |
| 1142 | :param limit: result limit |
| 1143 | :return: |
| 1144 | """ |
| 1145 | result, content = self.db.get_table(FROM='tenants', SELECT=columns, WHERE=db_filter, LIMIT=limit) |
| 1146 | if result < 0: |
| 1147 | raise ovimException('get_tenatns Error {}'.format(str(content)), -result) |
| 1148 | else: |
| 1149 | convert_boolean(content, ('enabled',)) |
| 1150 | return content |
| 1151 | |
| 1152 | def show_tenant_id(self, tenant_id): |
| 1153 | """ |
| 1154 | Get tenant from DB by id |
| 1155 | :param tenant_id: tenant id |
| 1156 | :return: |
| 1157 | """ |
| 1158 | result, content = self.db.get_table(FROM='tenants', SELECT=('uuid', 'name', 'description', 'enabled'), |
| 1159 | WHERE={"uuid": tenant_id}) |
| 1160 | if result < 0: |
| 1161 | raise ovimException(str(content), -result) |
| 1162 | elif result == 0: |
| 1163 | raise ovimException("tenant with uuid='{}' not found".format(tenant_id), HTTP_Not_Found) |
| 1164 | else: |
| 1165 | convert_boolean(content, ('enabled',)) |
| 1166 | return content[0] |
| 1167 | |
| 1168 | def new_tentant(self, tenant): |
| 1169 | """ |
| 1170 | Create a tenant and store in DB |
| 1171 | :param tenant: Dictionary with tenant data |
| 1172 | :return: the uuid of created tenant. Raise exception upon error |
| 1173 | """ |
| 1174 | |
| 1175 | # insert in data base |
| 1176 | result, tenant_uuid = self.db.new_tenant(tenant) |
| 1177 | |
| 1178 | if result >= 0: |
| 1179 | return tenant_uuid |
| 1180 | else: |
| 1181 | raise ovimException(str(tenant_uuid), -result) |
| 1182 | |
| 1183 | def delete_tentant(self, tenant_id): |
| 1184 | """ |
| 1185 | Delete a tenant from the database. |
| 1186 | :param tenant_id: Tenant id |
| 1187 | :return: delete tenant id |
| 1188 | """ |
| 1189 | |
| 1190 | # check permissions |
| 1191 | r, tenants_flavors = self.db.get_table(FROM='tenants_flavors', SELECT=('flavor_id', 'tenant_id'), |
| 1192 | WHERE={'tenant_id': tenant_id}) |
| 1193 | if r <= 0: |
| 1194 | tenants_flavors = () |
| 1195 | r, tenants_images = self.db.get_table(FROM='tenants_images', SELECT=('image_id', 'tenant_id'), |
| 1196 | WHERE={'tenant_id': tenant_id}) |
| 1197 | if r <= 0: |
| 1198 | tenants_images = () |
| 1199 | |
| 1200 | result, content = self.db.delete_row('tenants', tenant_id) |
| 1201 | if result == 0: |
| 1202 | raise ovimException("tenant '%s' not found" % tenant_id, HTTP_Not_Found) |
| 1203 | elif result > 0: |
| 1204 | for flavor in tenants_flavors: |
| 1205 | self.db.delete_row_by_key("flavors", "uuid", flavor['flavor_id']) |
| 1206 | for image in tenants_images: |
| 1207 | self.db.delete_row_by_key("images", "uuid", image['image_id']) |
| 1208 | return content |
| 1209 | else: |
| 1210 | raise ovimException("Error deleting tenant '%s' " % tenant_id, HTTP_Internal_Server_Error) |
| 1211 | |
| 1212 | def edit_tenant(self, tenant_id, tenant_data): |
| 1213 | """ |
| 1214 | Update a tenant data identified by tenant id |
| 1215 | :param tenant_id: tenant id |
| 1216 | :param tenant_data: Dictionary with tenant data |
| 1217 | :return: |
| 1218 | """ |
| 1219 | |
| 1220 | # Look for the previous data |
| 1221 | result, tenant_data_old = self.db.get_table(FROM='tenants', WHERE={'uuid': tenant_id}) |
| 1222 | if result < 0: |
| 1223 | raise ovimException("Error updating tenant with uuid='{}': {}".format(tenant_id, tenant_data_old), |
| 1224 | HTTP_Internal_Server_Error) |
| 1225 | elif result == 0: |
| 1226 | raise ovimException("tenant with uuid='{}' not found".format(tenant_id), HTTP_Not_Found) |
| 1227 | |
| 1228 | # insert in data base |
| 1229 | result, content = self.db.update_rows('tenants', tenant_data, WHERE={'uuid': tenant_id}, log=True) |
| 1230 | if result >= 0: |
| 1231 | return content |
| 1232 | else: |
| 1233 | raise ovimException(str(content), -result) |
| 1234 | |
| mirabal | 6045a9d | 2017-03-06 11:36:55 +0100 | [diff] [blame] | 1235 | def set_of_port_mapping(self, of_maps, ofc_id=None, switch_dpid=None, region=None): |
| 1236 | """ |
| 1237 | Create new port mapping entry |
| 1238 | :param of_maps: List with port mapping information |
| 1239 | # maps =[{"ofc_id": <ofc_id>,"region": datacenter region,"compute_node": compute uuid,"pci": pci adress, |
| 1240 | "switch_dpid": swith dpid,"switch_port": port name,"switch_mac": mac}] |
| 1241 | :param ofc_id: ofc id |
| 1242 | :param switch_dpid: switch dpid |
| 1243 | :param region: datacenter region id |
| 1244 | :return: |
| 1245 | """ |
| 1246 | |
| 1247 | for map in of_maps: |
| 1248 | if ofc_id: |
| 1249 | map['ofc_id'] = ofc_id |
| 1250 | if switch_dpid: |
| 1251 | map['switch_dpid'] = switch_dpid |
| 1252 | if region: |
| 1253 | map['region'] = region |
| 1254 | |
| 1255 | for of_map in of_maps: |
| 1256 | result, uuid = self.db.new_row('of_port_mappings', of_map, True) |
| 1257 | if result > 0: |
| 1258 | of_map["uuid"] = uuid |
| 1259 | else: |
| 1260 | raise ovimException(str(uuid), -result) |
| 1261 | return of_maps |
| 1262 | |
| 1263 | def clear_of_port_mapping(self, db_filter={}): |
| 1264 | """ |
| 1265 | Clear port mapping filtering using db_filter dict |
| 1266 | :param db_filter: Parameter to filter during remove process |
| 1267 | :return: |
| 1268 | """ |
| 1269 | result, content = self.db.delete_row_by_dict(FROM='of_port_mappings', WHERE=db_filter) |
| 1270 | # delete_row_by_key |
| 1271 | if result >= 0: |
| 1272 | return content |
| 1273 | else: |
| 1274 | raise ovimException("Error deleting of_port_mappings with filter='{}'".format(str(db_filter)), |
| 1275 | HTTP_Internal_Server_Error) |
| 1276 | |
| 1277 | def get_of_port_mappings(self, column=None, db_filter=None, db_limit=None): |
| 1278 | """ |
| 1279 | Retrive port mapping from DB |
| 1280 | :param column: |
| 1281 | :param db_filter: |
| 1282 | :return: |
| 1283 | """ |
| 1284 | result, content = self.db.get_table(SELECT=column, WHERE=db_filter, FROM='of_port_mappings', LIMIT=db_limit) |
| 1285 | |
| 1286 | if result < 0: |
| 1287 | self.logger.error("get_of_port_mappings Error %d %s", result, content) |
| 1288 | raise ovimException(str(content), -result) |
| 1289 | else: |
| 1290 | return content |
| 1291 | |
| mirabal | b716ac5 | 2017-02-10 14:47:53 +0100 | [diff] [blame] | 1292 | def get_dhcp_controller(self): |
| 1293 | """ |
| 1294 | Create an host_thread object for manage openvim controller and not create a thread for itself |
| 1295 | :return: dhcp_host openvim controller object |
| 1296 | """ |
| 1297 | |
| 1298 | if 'openvim_controller' in self.config['host_threads']: |
| 1299 | return self.config['host_threads']['openvim_controller'] |
| 1300 | |
| 1301 | bridge_ifaces = [] |
| 1302 | controller_ip = self.config['ovs_controller_ip'] |
| 1303 | ovs_controller_user = self.config['ovs_controller_user'] |
| 1304 | |
| 1305 | host_test_mode = True if self.config['mode'] == 'test' or self.config['mode'] == "OF only" else False |
| 1306 | host_develop_mode = True if self.config['mode'] == 'development' else False |
| 1307 | |
| 1308 | dhcp_host = ht.host_thread(name='openvim_controller', user=ovs_controller_user, host=controller_ip, |
| tierno | 686b395 | 2017-03-10 13:57:24 +0100 | [diff] [blame] | 1309 | db=self.db_of, |
| 1310 | db_lock=self.db_lock, test=host_test_mode, |
| mirabal | b716ac5 | 2017-02-10 14:47:53 +0100 | [diff] [blame] | 1311 | image_path=self.config['image_path'], version=self.config['version'], |
| 1312 | host_id='openvim_controller', develop_mode=host_develop_mode, |
| 1313 | develop_bridge_iface=bridge_ifaces) |
| 1314 | |
| 1315 | self.config['host_threads']['openvim_controller'] = dhcp_host |
| 1316 | if not host_test_mode: |
| 1317 | dhcp_host.ssh_connect() |
| 1318 | return dhcp_host |
| 1319 | |
| mirabal | 18f5de3 | 2017-02-13 12:41:49 +0100 | [diff] [blame] | 1320 | def launch_dhcp_server(self, vlan, first_ip, last_ip, cidr, gateway): |
| mirabal | b716ac5 | 2017-02-10 14:47:53 +0100 | [diff] [blame] | 1321 | """ |
| 1322 | Launch a dhcpserver base on dnsmasq attached to the net base on vlan id across the the openvim computes |
| 1323 | :param vlan: vlan identifier |
| 1324 | :param first_ip: First dhcp range ip |
| 1325 | :param last_ip: Last dhcp range ip |
| 1326 | :param cidr: net cidr |
| mirabal | e9f6f1a | 2017-02-16 17:57:35 +0100 | [diff] [blame] | 1327 | :param gateway: net gateway |
| mirabal | b716ac5 | 2017-02-10 14:47:53 +0100 | [diff] [blame] | 1328 | :return: |
| 1329 | """ |
| 1330 | ip_tools = IPNetwork(cidr) |
| 1331 | dhcp_netmask = str(ip_tools.netmask) |
| 1332 | ip_range = [first_ip, last_ip] |
| 1333 | |
| 1334 | dhcp_path = self.config['ovs_controller_file_path'] |
| 1335 | |
| 1336 | controller_host = self.get_dhcp_controller() |
| 1337 | controller_host.create_linux_bridge(vlan) |
| 1338 | controller_host.create_dhcp_interfaces(vlan, first_ip, dhcp_netmask) |
| mirabal | 18f5de3 | 2017-02-13 12:41:49 +0100 | [diff] [blame] | 1339 | controller_host.launch_dhcp_server(vlan, ip_range, dhcp_netmask, dhcp_path, gateway) |
| mirabal | b716ac5 | 2017-02-10 14:47:53 +0100 | [diff] [blame] | 1340 | |
| 1341 | |