blob: e88d18d7729804e3098cdf620d9470e73c18c802 [file] [log] [blame]
tierno7edb6752016-03-21 17:37:52 +01001# -*- coding: utf-8 -*-
2
3##
4# Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U.
5# This file is part of openmano
6# All Rights Reserved.
7#
8# Licensed under the Apache License, Version 2.0 (the "License"); you may
9# not use this file except in compliance with the License. You may obtain
10# a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17# License for the specific language governing permissions and limitations
18# under the License.
19#
20# For those usages not covered by the Apache License, Version 2.0 please
21# contact with: nfvlabs@tid.es
22##
23
24'''
25osconnector implements all the methods to interact with openstack using the python-client.
26'''
montesmoreno0c8def02016-12-22 12:16:23 +000027__author__="Alfonso Tierno, Gerardo Garcia, Pablo Montes, xFlow Research"
28__date__ ="$22-jun-2014 11:19:29$"
tierno7edb6752016-03-21 17:37:52 +010029
30import vimconn
31import json
32import yaml
tiernoae4a8d12016-07-08 12:30:39 +020033import logging
garciadeblas9f8456e2016-09-05 05:02:59 +020034import netaddr
montesmoreno0c8def02016-12-22 12:16:23 +000035import time
tierno36c0b172017-01-12 18:32:28 +010036import yaml
garciadeblas2299e3b2017-01-26 14:35:55 +000037import random
tierno7edb6752016-03-21 17:37:52 +010038
ahmadsa96af9f42017-01-31 16:17:14 +050039from novaclient import client as nClient_v2, exceptions as nvExceptions
40from novaclient import api_versions
ahmadsa95baa272016-11-30 09:14:11 +050041import keystoneclient.v2_0.client as ksClient_v2
42from novaclient.v2.client import Client as nClient
43import keystoneclient.v3.client as ksClient
tierno7edb6752016-03-21 17:37:52 +010044import keystoneclient.exceptions as ksExceptions
45import glanceclient.v2.client as glClient
46import glanceclient.client as gl1Client
47import glanceclient.exc as gl1Exceptions
montesmoreno0c8def02016-12-22 12:16:23 +000048import cinderclient.v2.client as cClient_v2
tierno7edb6752016-03-21 17:37:52 +010049from httplib import HTTPException
ahmadsa95baa272016-11-30 09:14:11 +050050from neutronclient.neutron import client as neClient_v2
51from neutronclient.v2_0 import client as neClient
tierno7edb6752016-03-21 17:37:52 +010052from neutronclient.common import exceptions as neExceptions
53from requests.exceptions import ConnectionError
54
55'''contain the openstack virtual machine status to openmano status'''
56vmStatus2manoFormat={'ACTIVE':'ACTIVE',
57 'PAUSED':'PAUSED',
58 'SUSPENDED': 'SUSPENDED',
59 'SHUTOFF':'INACTIVE',
60 'BUILD':'BUILD',
61 'ERROR':'ERROR','DELETED':'DELETED'
62 }
63netStatus2manoFormat={'ACTIVE':'ACTIVE','PAUSED':'PAUSED','INACTIVE':'INACTIVE','BUILD':'BUILD','ERROR':'ERROR','DELETED':'DELETED'
64 }
65
montesmoreno0c8def02016-12-22 12:16:23 +000066#global var to have a timeout creating and deleting volumes
67volume_timeout = 60
montesmoreno2a1fc4e2017-01-09 16:46:04 +000068server_timeout = 60
montesmoreno0c8def02016-12-22 12:16:23 +000069
tierno7edb6752016-03-21 17:37:52 +010070class vimconnector(vimconn.vimconnector):
tiernob3d36742017-03-03 23:51:05 +010071 def __init__(self, uuid, name, tenant_id, tenant_name, url, url_admin=None, user=None, passwd=None,
72 log_level=None, config={}, persistent_info={}):
ahmadsa96af9f42017-01-31 16:17:14 +050073 '''using common constructor parameters. In this case
tierno7edb6752016-03-21 17:37:52 +010074 'url' is the keystone authorization url,
75 'url_admin' is not use
76 '''
ahmadsa95baa272016-11-30 09:14:11 +050077 self.osc_api_version = 'v2.0'
78 if config.get('APIversion') == 'v3.3':
79 self.osc_api_version = 'v3.3'
tiernoae4a8d12016-07-08 12:30:39 +020080 vimconn.vimconnector.__init__(self, uuid, name, tenant_id, tenant_name, url, url_admin, user, passwd, log_level, config)
tiernob3d36742017-03-03 23:51:05 +010081
82 self.persistent_info = persistent_info
tierno7edb6752016-03-21 17:37:52 +010083 self.k_creds={}
84 self.n_creds={}
tiernoc75a5dc2017-01-18 15:53:44 +010085 if self.config.get("insecure"):
86 self.k_creds["insecure"] = True
87 self.n_creds["insecure"] = True
tierno7edb6752016-03-21 17:37:52 +010088 if not url:
89 raise TypeError, 'url param can not be NoneType'
90 self.k_creds['auth_url'] = url
91 self.n_creds['auth_url'] = url
tierno392f2852016-05-13 12:28:55 +020092 if tenant_name:
93 self.k_creds['tenant_name'] = tenant_name
94 self.n_creds['project_id'] = tenant_name
95 if tenant_id:
96 self.k_creds['tenant_id'] = tenant_id
97 self.n_creds['tenant_id'] = tenant_id
tierno7edb6752016-03-21 17:37:52 +010098 if user:
99 self.k_creds['username'] = user
100 self.n_creds['username'] = user
101 if passwd:
102 self.k_creds['password'] = passwd
103 self.n_creds['api_key'] = passwd
ahmadsa95baa272016-11-30 09:14:11 +0500104 if self.osc_api_version == 'v3.3':
105 self.k_creds['project_name'] = tenant_name
106 self.k_creds['project_id'] = tenant_id
montesmorenocf227142017-01-12 12:24:21 +0000107 if config.get('region_name'):
108 self.k_creds['region_name'] = config.get('region_name')
109 self.n_creds['region_name'] = config.get('region_name')
montesmoreno0c8def02016-12-22 12:16:23 +0000110
tierno7edb6752016-03-21 17:37:52 +0100111 self.reload_client = True
tierno73ad9e42016-09-12 18:11:11 +0200112 self.logger = logging.getLogger('openmano.vim.openstack')
tiernofe789902016-09-29 14:20:44 +0000113 if log_level:
114 self.logger.setLevel( getattr(logging, log_level) )
tierno7edb6752016-03-21 17:37:52 +0100115
116 def __setitem__(self,index, value):
117 '''Set individuals parameters
118 Throw TypeError, KeyError
119 '''
tierno392f2852016-05-13 12:28:55 +0200120 if index=='tenant_id':
tierno7edb6752016-03-21 17:37:52 +0100121 self.reload_client=True
tierno392f2852016-05-13 12:28:55 +0200122 self.tenant_id = value
ahmadsa95baa272016-11-30 09:14:11 +0500123 if self.osc_api_version == 'v3.3':
124 if value:
125 self.k_creds['project_id'] = value
126 self.n_creds['project_id'] = value
127 else:
128 del self.k_creds['project_id']
129 del self.n_creds['project_id']
tierno392f2852016-05-13 12:28:55 +0200130 else:
ahmadsa95baa272016-11-30 09:14:11 +0500131 if value:
132 self.k_creds['tenant_id'] = value
133 self.n_creds['tenant_id'] = value
134 else:
135 del self.k_creds['tenant_id']
136 del self.n_creds['tenant_id']
tierno392f2852016-05-13 12:28:55 +0200137 elif index=='tenant_name':
138 self.reload_client=True
139 self.tenant_name = value
ahmadsa95baa272016-11-30 09:14:11 +0500140 if self.osc_api_version == 'v3.3':
141 if value:
142 self.k_creds['project_name'] = value
143 self.n_creds['project_name'] = value
144 else:
145 del self.k_creds['project_name']
146 del self.n_creds['project_name']
tierno7edb6752016-03-21 17:37:52 +0100147 else:
ahmadsa95baa272016-11-30 09:14:11 +0500148 if value:
149 self.k_creds['tenant_name'] = value
150 self.n_creds['project_id'] = value
151 else:
152 del self.k_creds['tenant_name']
153 del self.n_creds['project_id']
tierno7edb6752016-03-21 17:37:52 +0100154 elif index=='user':
155 self.reload_client=True
156 self.user = value
157 if value:
158 self.k_creds['username'] = value
159 self.n_creds['username'] = value
160 else:
161 del self.k_creds['username']
162 del self.n_creds['username']
163 elif index=='passwd':
164 self.reload_client=True
165 self.passwd = value
166 if value:
167 self.k_creds['password'] = value
168 self.n_creds['api_key'] = value
169 else:
170 del self.k_creds['password']
171 del self.n_creds['api_key']
172 elif index=='url':
173 self.reload_client=True
174 self.url = value
175 if value:
176 self.k_creds['auth_url'] = value
177 self.n_creds['auth_url'] = value
178 else:
179 raise TypeError, 'url param can not be NoneType'
180 else:
181 vimconn.vimconnector.__setitem__(self,index, value)
182
183 def _reload_connection(self):
184 '''Called before any operation, it check if credentials has changed
185 Throw keystoneclient.apiclient.exceptions.AuthorizationFailure
186 '''
187 #TODO control the timing and possible token timeout, but it seams that python client does this task for us :-)
188 if self.reload_client:
189 #test valid params
190 if len(self.n_creds) <4:
191 raise ksExceptions.ClientException("Not enough parameters to connect to openstack")
ahmadsa95baa272016-11-30 09:14:11 +0500192 if self.osc_api_version == 'v3.3':
ahmadsa96af9f42017-01-31 16:17:14 +0500193 self.nova = nClient(api_version=api_versions.APIVersion(version_str='2.0'), **self.n_creds)
montesmoreno0c8def02016-12-22 12:16:23 +0000194 #TODO To be updated for v3
195 #self.cinder = cClient.Client(**self.n_creds)
ahmadsa95baa272016-11-30 09:14:11 +0500196 self.keystone = ksClient.Client(**self.k_creds)
197 self.ne_endpoint=self.keystone.service_catalog.url_for(service_type='network', endpoint_type='publicURL')
ahmadsa96af9f42017-01-31 16:17:14 +0500198 self.neutron = neClient.Client(api_version=api_versions.APIVersion(version_str='2.0'), endpoint_url=self.ne_endpoint, token=self.keystone.auth_token, **self.k_creds)
ahmadsa95baa272016-11-30 09:14:11 +0500199 else:
ahmadsa96af9f42017-01-31 16:17:14 +0500200 self.nova = nClient_v2.Client(version='2', **self.n_creds)
montesmoreno0c8def02016-12-22 12:16:23 +0000201 self.cinder = cClient_v2.Client(**self.n_creds)
ahmadsa95baa272016-11-30 09:14:11 +0500202 self.keystone = ksClient_v2.Client(**self.k_creds)
203 self.ne_endpoint=self.keystone.service_catalog.url_for(service_type='network', endpoint_type='publicURL')
204 self.neutron = neClient_v2.Client('2.0', endpoint_url=self.ne_endpoint, token=self.keystone.auth_token, **self.k_creds)
tierno7edb6752016-03-21 17:37:52 +0100205 self.glance_endpoint = self.keystone.service_catalog.url_for(service_type='image', endpoint_type='publicURL')
206 self.glance = glClient.Client(self.glance_endpoint, token=self.keystone.auth_token, **self.k_creds) #TODO check k_creds vs n_creds
tierno7edb6752016-03-21 17:37:52 +0100207 self.reload_client = False
ahmadsa95baa272016-11-30 09:14:11 +0500208
tierno7edb6752016-03-21 17:37:52 +0100209 def __net_os2mano(self, net_list_dict):
210 '''Transform the net openstack format to mano format
211 net_list_dict can be a list of dict or a single dict'''
212 if type(net_list_dict) is dict:
213 net_list_=(net_list_dict,)
214 elif type(net_list_dict) is list:
215 net_list_=net_list_dict
216 else:
217 raise TypeError("param net_list_dict must be a list or a dictionary")
218 for net in net_list_:
219 if net.get('provider:network_type') == "vlan":
220 net['type']='data'
221 else:
222 net['type']='bridge'
tiernoae4a8d12016-07-08 12:30:39 +0200223
224
225
226 def _format_exception(self, exception):
227 '''Transform a keystone, nova, neutron exception into a vimconn exception'''
228 if isinstance(exception, (HTTPException, gl1Exceptions.HTTPException, gl1Exceptions.CommunicationError,
tierno8e995ce2016-09-22 08:13:00 +0000229 ConnectionError, ksExceptions.ConnectionError, neExceptions.ConnectionFailed
230 )):
tiernoae4a8d12016-07-08 12:30:39 +0200231 raise vimconn.vimconnConnectionException(type(exception).__name__ + ": " + str(exception))
232 elif isinstance(exception, (nvExceptions.ClientException, ksExceptions.ClientException,
233 neExceptions.NeutronException, nvExceptions.BadRequest)):
234 raise vimconn.vimconnUnexpectedResponse(type(exception).__name__ + ": " + str(exception))
235 elif isinstance(exception, (neExceptions.NetworkNotFoundClient, nvExceptions.NotFound)):
236 raise vimconn.vimconnNotFoundException(type(exception).__name__ + ": " + str(exception))
237 elif isinstance(exception, nvExceptions.Conflict):
238 raise vimconn.vimconnConflictException(type(exception).__name__ + ": " + str(exception))
239 else: # ()
240 raise vimconn.vimconnConnectionException(type(exception).__name__ + ": " + str(exception))
241
242 def get_tenant_list(self, filter_dict={}):
243 '''Obtain tenants of VIM
244 filter_dict can contain the following keys:
245 name: filter by tenant name
246 id: filter by tenant uuid/id
247 <other VIM specific>
248 Returns the tenant list of dictionaries: [{'name':'<name>, 'id':'<id>, ...}, ...]
249 '''
ahmadsa95baa272016-11-30 09:14:11 +0500250 self.logger.debug("Getting tenants from VIM filter: '%s'", str(filter_dict))
tiernoae4a8d12016-07-08 12:30:39 +0200251 try:
252 self._reload_connection()
montesmoreno0c8def02016-12-22 12:16:23 +0000253 if self.osc_api_version == 'v3.3':
ahmadsa95baa272016-11-30 09:14:11 +0500254 project_class_list=self.keystone.projects.findall(**filter_dict)
255 else:
256 project_class_list=self.keystone.tenants.findall(**filter_dict)
257 project_list=[]
258 for project in project_class_list:
259 project_list.append(project.to_dict())
260 return project_list
tierno8e995ce2016-09-22 08:13:00 +0000261 except (ksExceptions.ConnectionError, ksExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200262 self._format_exception(e)
263
264 def new_tenant(self, tenant_name, tenant_description):
265 '''Adds a new tenant to openstack VIM. Returns the tenant identifier'''
266 self.logger.debug("Adding a new tenant name: %s", tenant_name)
267 try:
268 self._reload_connection()
ahmadsa95baa272016-11-30 09:14:11 +0500269 if self.osc_api_version == 'v3.3':
270 project=self.keystone.projects.create(tenant_name, tenant_description)
271 else:
272 project=self.keystone.tenants.create(tenant_name, tenant_description)
273 return project.id
tierno8e995ce2016-09-22 08:13:00 +0000274 except (ksExceptions.ConnectionError, ksExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200275 self._format_exception(e)
276
277 def delete_tenant(self, tenant_id):
278 '''Delete a tenant from openstack VIM. Returns the old tenant identifier'''
279 self.logger.debug("Deleting tenant %s from VIM", tenant_id)
280 try:
281 self._reload_connection()
montesmoreno0c8def02016-12-22 12:16:23 +0000282 if self.osc_api_version == 'v3.3':
ahmadsa95baa272016-11-30 09:14:11 +0500283 self.keystone.projects.delete(tenant_id)
284 else:
285 self.keystone.tenants.delete(tenant_id)
tiernoae4a8d12016-07-08 12:30:39 +0200286 return tenant_id
tierno8e995ce2016-09-22 08:13:00 +0000287 except (ksExceptions.ConnectionError, ksExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200288 self._format_exception(e)
ahmadsa95baa272016-11-30 09:14:11 +0500289
garciadeblas9f8456e2016-09-05 05:02:59 +0200290 def new_network(self,net_name, net_type, ip_profile=None, shared=False, vlan=None):
tiernoae4a8d12016-07-08 12:30:39 +0200291 '''Adds a tenant network to VIM. Returns the network identifier'''
292 self.logger.debug("Adding a new network to VIM name '%s', type '%s'", net_name, net_type)
garciadeblasedca7b32016-09-29 14:01:52 +0000293 #self.logger.debug(">>>>>>>>>>>>>>>>>> IP profile %s", str(ip_profile))
tierno7edb6752016-03-21 17:37:52 +0100294 try:
garciadeblasedca7b32016-09-29 14:01:52 +0000295 new_net = None
tierno7edb6752016-03-21 17:37:52 +0100296 self._reload_connection()
297 network_dict = {'name': net_name, 'admin_state_up': True}
298 if net_type=="data" or net_type=="ptp":
299 if self.config.get('dataplane_physical_net') == None:
tiernoae4a8d12016-07-08 12:30:39 +0200300 raise vimconn.vimconnConflictException("You must provide a 'dataplane_physical_net' at config value before creating sriov network")
tierno7edb6752016-03-21 17:37:52 +0100301 network_dict["provider:physical_network"] = self.config['dataplane_physical_net'] #"physnet_sriov" #TODO physical
302 network_dict["provider:network_type"] = "vlan"
303 if vlan!=None:
304 network_dict["provider:network_type"] = vlan
tiernoae4a8d12016-07-08 12:30:39 +0200305 network_dict["shared"]=shared
tierno7edb6752016-03-21 17:37:52 +0100306 new_net=self.neutron.create_network({'network':network_dict})
307 #print new_net
garciadeblas9f8456e2016-09-05 05:02:59 +0200308 #create subnetwork, even if there is no profile
309 if not ip_profile:
310 ip_profile = {}
311 if 'subnet_address' not in ip_profile:
garciadeblas2299e3b2017-01-26 14:35:55 +0000312 #Fake subnet is required
313 subnet_rand = random.randint(0, 255)
314 ip_profile['subnet_address'] = "192.168.{}.0/24".format(subnet_rand)
garciadeblas9f8456e2016-09-05 05:02:59 +0200315 if 'ip_version' not in ip_profile:
316 ip_profile['ip_version'] = "IPv4"
tierno7edb6752016-03-21 17:37:52 +0100317 subnet={"name":net_name+"-subnet",
318 "network_id": new_net["network"]["id"],
garciadeblas9f8456e2016-09-05 05:02:59 +0200319 "ip_version": 4 if ip_profile['ip_version']=="IPv4" else 6,
320 "cidr": ip_profile['subnet_address']
tierno7edb6752016-03-21 17:37:52 +0100321 }
garciadeblas9f8456e2016-09-05 05:02:59 +0200322 if 'gateway_address' in ip_profile:
323 subnet['gateway_ip'] = ip_profile['gateway_address']
garciadeblasedca7b32016-09-29 14:01:52 +0000324 if ip_profile.get('dns_address'):
tierno455612d2017-05-30 16:40:10 +0200325 subnet['dns_nameservers'] = ip_profile['dns_address'].split(";")
garciadeblas9f8456e2016-09-05 05:02:59 +0200326 if 'dhcp_enabled' in ip_profile:
327 subnet['enable_dhcp'] = False if ip_profile['dhcp_enabled']=="false" else True
328 if 'dhcp_start_address' in ip_profile:
329 subnet['allocation_pools']=[]
330 subnet['allocation_pools'].append(dict())
331 subnet['allocation_pools'][0]['start'] = ip_profile['dhcp_start_address']
332 if 'dhcp_count' in ip_profile:
333 #parts = ip_profile['dhcp_start_address'].split('.')
334 #ip_int = (int(parts[0]) << 24) + (int(parts[1]) << 16) + (int(parts[2]) << 8) + int(parts[3])
335 ip_int = int(netaddr.IPAddress(ip_profile['dhcp_start_address']))
garciadeblas21d795b2016-09-29 17:31:46 +0200336 ip_int += ip_profile['dhcp_count'] - 1
garciadeblas9f8456e2016-09-05 05:02:59 +0200337 ip_str = str(netaddr.IPAddress(ip_int))
338 subnet['allocation_pools'][0]['end'] = ip_str
garciadeblasedca7b32016-09-29 14:01:52 +0000339 #self.logger.debug(">>>>>>>>>>>>>>>>>> Subnet: %s", str(subnet))
tierno7edb6752016-03-21 17:37:52 +0100340 self.neutron.create_subnet({"subnet": subnet} )
tiernoae4a8d12016-07-08 12:30:39 +0200341 return new_net["network"]["id"]
tierno8e995ce2016-09-22 08:13:00 +0000342 except (neExceptions.ConnectionFailed, ksExceptions.ClientException, neExceptions.NeutronException, ConnectionError) as e:
garciadeblasedca7b32016-09-29 14:01:52 +0000343 if new_net:
344 self.neutron.delete_network(new_net['network']['id'])
tiernoae4a8d12016-07-08 12:30:39 +0200345 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100346
347 def get_network_list(self, filter_dict={}):
348 '''Obtain tenant networks of VIM
349 Filter_dict can be:
350 name: network name
351 id: network uuid
352 shared: boolean
353 tenant_id: tenant
354 admin_state_up: boolean
355 status: 'ACTIVE'
356 Returns the network list of dictionaries
357 '''
tiernoae4a8d12016-07-08 12:30:39 +0200358 self.logger.debug("Getting network from VIM filter: '%s'", str(filter_dict))
tierno7edb6752016-03-21 17:37:52 +0100359 try:
360 self._reload_connection()
montesmoreno0c8def02016-12-22 12:16:23 +0000361 if self.osc_api_version == 'v3.3' and "tenant_id" in filter_dict:
ahmadsa95baa272016-11-30 09:14:11 +0500362 filter_dict['project_id'] = filter_dict.pop('tenant_id')
tierno7edb6752016-03-21 17:37:52 +0100363 net_dict=self.neutron.list_networks(**filter_dict)
364 net_list=net_dict["networks"]
365 self.__net_os2mano(net_list)
tiernoae4a8d12016-07-08 12:30:39 +0200366 return net_list
tierno8e995ce2016-09-22 08:13:00 +0000367 except (neExceptions.ConnectionFailed, ksExceptions.ClientException, neExceptions.NeutronException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200368 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100369
tiernoae4a8d12016-07-08 12:30:39 +0200370 def get_network(self, net_id):
371 '''Obtain details of network from VIM
372 Returns the network information from a network id'''
373 self.logger.debug(" Getting tenant network %s from VIM", net_id)
tierno7edb6752016-03-21 17:37:52 +0100374 filter_dict={"id": net_id}
tiernoae4a8d12016-07-08 12:30:39 +0200375 net_list = self.get_network_list(filter_dict)
tierno7edb6752016-03-21 17:37:52 +0100376 if len(net_list)==0:
tiernoae4a8d12016-07-08 12:30:39 +0200377 raise vimconn.vimconnNotFoundException("Network '{}' not found".format(net_id))
tierno7edb6752016-03-21 17:37:52 +0100378 elif len(net_list)>1:
tiernoae4a8d12016-07-08 12:30:39 +0200379 raise vimconn.vimconnConflictException("Found more than one network with this criteria")
tierno7edb6752016-03-21 17:37:52 +0100380 net = net_list[0]
381 subnets=[]
382 for subnet_id in net.get("subnets", () ):
383 try:
384 subnet = self.neutron.show_subnet(subnet_id)
385 except Exception as e:
tiernoae4a8d12016-07-08 12:30:39 +0200386 self.logger.error("osconnector.get_network(): Error getting subnet %s %s" % (net_id, str(e)))
387 subnet = {"id": subnet_id, "fault": str(e)}
tierno7edb6752016-03-21 17:37:52 +0100388 subnets.append(subnet)
389 net["subnets"] = subnets
Pablo Montes Moreno51e553b2017-03-23 16:39:12 +0100390 net["encapsulation"] = net.get('provider:network_type')
Pablo Montes Moreno3fbff9b2017-03-08 11:28:15 +0100391 net["segmentation_id"] = net.get('provider:segmentation_id')
tiernoae4a8d12016-07-08 12:30:39 +0200392 return net
tierno7edb6752016-03-21 17:37:52 +0100393
tiernoae4a8d12016-07-08 12:30:39 +0200394 def delete_network(self, net_id):
395 '''Deletes a tenant network from VIM. Returns the old network identifier'''
396 self.logger.debug("Deleting network '%s' from VIM", net_id)
tierno7edb6752016-03-21 17:37:52 +0100397 try:
398 self._reload_connection()
399 #delete VM ports attached to this networks before the network
400 ports = self.neutron.list_ports(network_id=net_id)
401 for p in ports['ports']:
402 try:
403 self.neutron.delete_port(p["id"])
404 except Exception as e:
tiernoae4a8d12016-07-08 12:30:39 +0200405 self.logger.error("Error deleting port %s: %s", p["id"], str(e))
tierno7edb6752016-03-21 17:37:52 +0100406 self.neutron.delete_network(net_id)
tiernoae4a8d12016-07-08 12:30:39 +0200407 return net_id
408 except (neExceptions.ConnectionFailed, neExceptions.NetworkNotFoundClient, neExceptions.NeutronException,
tierno8e995ce2016-09-22 08:13:00 +0000409 ksExceptions.ClientException, neExceptions.NeutronException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200410 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100411
tiernoae4a8d12016-07-08 12:30:39 +0200412 def refresh_nets_status(self, net_list):
413 '''Get the status of the networks
414 Params: the list of network identifiers
415 Returns a dictionary with:
416 net_id: #VIM id of this network
417 status: #Mandatory. Text with one of:
418 # DELETED (not found at vim)
419 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
420 # OTHER (Vim reported other status not understood)
421 # ERROR (VIM indicates an ERROR status)
422 # ACTIVE, INACTIVE, DOWN (admin down),
423 # BUILD (on building process)
424 #
425 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
426 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
427
428 '''
429 net_dict={}
430 for net_id in net_list:
431 net = {}
432 try:
433 net_vim = self.get_network(net_id)
434 if net_vim['status'] in netStatus2manoFormat:
435 net["status"] = netStatus2manoFormat[ net_vim['status'] ]
436 else:
437 net["status"] = "OTHER"
438 net["error_msg"] = "VIM status reported " + net_vim['status']
439
tierno8e995ce2016-09-22 08:13:00 +0000440 if net['status'] == "ACTIVE" and not net_vim['admin_state_up']:
tiernoae4a8d12016-07-08 12:30:39 +0200441 net['status'] = 'DOWN'
tierno8e995ce2016-09-22 08:13:00 +0000442 try:
443 net['vim_info'] = yaml.safe_dump(net_vim, default_flow_style=True, width=256)
444 except yaml.representer.RepresenterError:
445 net['vim_info'] = str(net_vim)
tiernoae4a8d12016-07-08 12:30:39 +0200446 if net_vim.get('fault'): #TODO
447 net['error_msg'] = str(net_vim['fault'])
448 except vimconn.vimconnNotFoundException as e:
449 self.logger.error("Exception getting net status: %s", str(e))
450 net['status'] = "DELETED"
451 net['error_msg'] = str(e)
452 except vimconn.vimconnException as e:
453 self.logger.error("Exception getting net status: %s", str(e))
454 net['status'] = "VIM_ERROR"
455 net['error_msg'] = str(e)
456 net_dict[net_id] = net
457 return net_dict
458
459 def get_flavor(self, flavor_id):
460 '''Obtain flavor details from the VIM. Returns the flavor dict details'''
461 self.logger.debug("Getting flavor '%s'", flavor_id)
tierno7edb6752016-03-21 17:37:52 +0100462 try:
463 self._reload_connection()
464 flavor = self.nova.flavors.find(id=flavor_id)
465 #TODO parse input and translate to VIM format (openmano_schemas.new_vminstance_response_schema)
tiernoae4a8d12016-07-08 12:30:39 +0200466 return flavor.to_dict()
tierno8e995ce2016-09-22 08:13:00 +0000467 except (nvExceptions.NotFound, nvExceptions.ClientException, ksExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200468 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100469
tiernocf157a82017-01-30 14:07:06 +0100470 def get_flavor_id_from_data(self, flavor_dict):
471 """Obtain flavor id that match the flavor description
472 Returns the flavor_id or raises a vimconnNotFoundException
473 """
474 try:
475 self._reload_connection()
476 numa=None
477 numas = flavor_dict.get("extended",{}).get("numas")
478 if numas:
479 #TODO
480 raise vimconn.vimconnNotFoundException("Flavor with EPA still not implemted")
481 # if len(numas) > 1:
482 # raise vimconn.vimconnNotFoundException("Cannot find any flavor with more than one numa")
483 # numa=numas[0]
484 # numas = extended.get("numas")
485 for flavor in self.nova.flavors.list():
486 epa = flavor.get_keys()
487 if epa:
488 continue
489 #TODO
490 if flavor.ram != flavor_dict["ram"]:
491 continue
492 if flavor.vcpus != flavor_dict["vcpus"]:
493 continue
494 if flavor.disk != flavor_dict["disk"]:
495 continue
496 return flavor.id
497 raise vimconn.vimconnNotFoundException("Cannot find any flavor matching '{}'".format(str(flavor_dict)))
498 except (nvExceptions.NotFound, nvExceptions.ClientException, ksExceptions.ClientException, ConnectionError) as e:
499 self._format_exception(e)
500
501
tiernoae4a8d12016-07-08 12:30:39 +0200502 def new_flavor(self, flavor_data, change_name_if_used=True):
tierno7edb6752016-03-21 17:37:52 +0100503 '''Adds a tenant flavor to openstack VIM
tiernoae4a8d12016-07-08 12:30:39 +0200504 if change_name_if_used is True, it will change name in case of conflict, because it is not supported name repetition
tierno7edb6752016-03-21 17:37:52 +0100505 Returns the flavor identifier
506 '''
tiernoae4a8d12016-07-08 12:30:39 +0200507 self.logger.debug("Adding flavor '%s'", str(flavor_data))
tierno7edb6752016-03-21 17:37:52 +0100508 retry=0
tiernoae4a8d12016-07-08 12:30:39 +0200509 max_retries=3
tierno7edb6752016-03-21 17:37:52 +0100510 name_suffix = 0
tiernoae4a8d12016-07-08 12:30:39 +0200511 name=flavor_data['name']
512 while retry<max_retries:
tierno7edb6752016-03-21 17:37:52 +0100513 retry+=1
514 try:
515 self._reload_connection()
516 if change_name_if_used:
517 #get used names
518 fl_names=[]
519 fl=self.nova.flavors.list()
520 for f in fl:
521 fl_names.append(f.name)
522 while name in fl_names:
523 name_suffix += 1
tiernoae4a8d12016-07-08 12:30:39 +0200524 name = flavor_data['name']+"-" + str(name_suffix)
tierno7edb6752016-03-21 17:37:52 +0100525
tiernoae4a8d12016-07-08 12:30:39 +0200526 ram = flavor_data.get('ram',64)
527 vcpus = flavor_data.get('vcpus',1)
tierno7edb6752016-03-21 17:37:52 +0100528 numa_properties=None
529
tiernoae4a8d12016-07-08 12:30:39 +0200530 extended = flavor_data.get("extended")
tierno7edb6752016-03-21 17:37:52 +0100531 if extended:
532 numas=extended.get("numas")
533 if numas:
534 numa_nodes = len(numas)
535 if numa_nodes > 1:
536 return -1, "Can not add flavor with more than one numa"
537 numa_properties = {"hw:numa_nodes":str(numa_nodes)}
538 numa_properties["hw:mem_page_size"] = "large"
539 numa_properties["hw:cpu_policy"] = "dedicated"
540 numa_properties["hw:numa_mempolicy"] = "strict"
541 for numa in numas:
542 #overwrite ram and vcpus
543 ram = numa['memory']*1024
Pablo Montes Morenoea1d6232017-05-24 11:33:24 +0200544 #See for reference: https://specs.openstack.org/openstack/nova-specs/specs/mitaka/implemented/virt-driver-cpu-thread-pinning.html
tierno7edb6752016-03-21 17:37:52 +0100545 if 'paired-threads' in numa:
546 vcpus = numa['paired-threads']*2
Pablo Montes Morenoea1d6232017-05-24 11:33:24 +0200547 #cpu_thread_policy "require" implies that the compute node must have an STM architecture
548 numa_properties["hw:cpu_thread_policy"] = "require"
549 numa_properties["hw:cpu_policy"] = "dedicated"
tierno7edb6752016-03-21 17:37:52 +0100550 elif 'cores' in numa:
551 vcpus = numa['cores']
Pablo Montes Morenoea1d6232017-05-24 11:33:24 +0200552 # cpu_thread_policy "prefer" implies that the host must not have an SMT architecture, or a non-SMT architecture will be emulated
553 numa_properties["hw:cpu_thread_policy"] = "isolate"
554 numa_properties["hw:cpu_policy"] = "dedicated"
tierno7edb6752016-03-21 17:37:52 +0100555 elif 'threads' in numa:
556 vcpus = numa['threads']
Pablo Montes Morenoea1d6232017-05-24 11:33:24 +0200557 # cpu_thread_policy "prefer" implies that the host may or may not have an SMT architecture
558 numa_properties["hw:cpu_thread_policy"] = "prefer"
559 numa_properties["hw:cpu_policy"] = "dedicated"
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +0200560 # for interface in numa.get("interfaces",() ):
561 # if interface["dedicated"]=="yes":
562 # raise vimconn.vimconnException("Passthrough interfaces are not supported for the openstack connector", http_code=vimconn.HTTP_Service_Unavailable)
563 # #TODO, add the key 'pci_passthrough:alias"="<label at config>:<number ifaces>"' when a way to connect it is available
tierno7edb6752016-03-21 17:37:52 +0100564
565 #create flavor
566 new_flavor=self.nova.flavors.create(name,
567 ram,
568 vcpus,
tiernoae4a8d12016-07-08 12:30:39 +0200569 flavor_data.get('disk',1),
570 is_public=flavor_data.get('is_public', True)
tierno7edb6752016-03-21 17:37:52 +0100571 )
572 #add metadata
573 if numa_properties:
574 new_flavor.set_keys(numa_properties)
tiernoae4a8d12016-07-08 12:30:39 +0200575 return new_flavor.id
tierno7edb6752016-03-21 17:37:52 +0100576 except nvExceptions.Conflict as e:
tiernoae4a8d12016-07-08 12:30:39 +0200577 if change_name_if_used and retry < max_retries:
tierno7edb6752016-03-21 17:37:52 +0100578 continue
tiernoae4a8d12016-07-08 12:30:39 +0200579 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100580 #except nvExceptions.BadRequest as e:
581 except (ksExceptions.ClientException, nvExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200582 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100583
tiernoae4a8d12016-07-08 12:30:39 +0200584 def delete_flavor(self,flavor_id):
585 '''Deletes a tenant flavor from openstack VIM. Returns the old flavor_id
tierno7edb6752016-03-21 17:37:52 +0100586 '''
tiernoae4a8d12016-07-08 12:30:39 +0200587 try:
588 self._reload_connection()
589 self.nova.flavors.delete(flavor_id)
590 return flavor_id
591 #except nvExceptions.BadRequest as e:
tierno8e995ce2016-09-22 08:13:00 +0000592 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200593 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100594
tiernoae4a8d12016-07-08 12:30:39 +0200595 def new_image(self,image_dict):
tierno7edb6752016-03-21 17:37:52 +0100596 '''
tiernoae4a8d12016-07-08 12:30:39 +0200597 Adds a tenant image to VIM. imge_dict is a dictionary with:
598 name: name
599 disk_format: qcow2, vhd, vmdk, raw (by default), ...
600 location: path or URI
601 public: "yes" or "no"
602 metadata: metadata of the image
603 Returns the image_id
tierno7edb6752016-03-21 17:37:52 +0100604 '''
tierno7edb6752016-03-21 17:37:52 +0100605 #using version 1 of glance client
606 glancev1 = gl1Client.Client('1',self.glance_endpoint, token=self.keystone.auth_token, **self.k_creds) #TODO check k_creds vs n_creds
tiernoae4a8d12016-07-08 12:30:39 +0200607 retry=0
608 max_retries=3
609 while retry<max_retries:
tierno7edb6752016-03-21 17:37:52 +0100610 retry+=1
611 try:
612 self._reload_connection()
613 #determine format http://docs.openstack.org/developer/glance/formats.html
614 if "disk_format" in image_dict:
615 disk_format=image_dict["disk_format"]
garciadeblas14480452017-01-10 13:08:07 +0100616 else: #autodiscover based on extension
tierno7edb6752016-03-21 17:37:52 +0100617 if image_dict['location'][-6:]==".qcow2":
618 disk_format="qcow2"
619 elif image_dict['location'][-4:]==".vhd":
620 disk_format="vhd"
621 elif image_dict['location'][-5:]==".vmdk":
622 disk_format="vmdk"
623 elif image_dict['location'][-4:]==".vdi":
624 disk_format="vdi"
625 elif image_dict['location'][-4:]==".iso":
626 disk_format="iso"
627 elif image_dict['location'][-4:]==".aki":
628 disk_format="aki"
629 elif image_dict['location'][-4:]==".ari":
630 disk_format="ari"
631 elif image_dict['location'][-4:]==".ami":
632 disk_format="ami"
633 else:
634 disk_format="raw"
tiernoae4a8d12016-07-08 12:30:39 +0200635 self.logger.debug("new_image: '%s' loading from '%s'", image_dict['name'], image_dict['location'])
tierno7edb6752016-03-21 17:37:52 +0100636 if image_dict['location'][0:4]=="http":
637 new_image = glancev1.images.create(name=image_dict['name'], is_public=image_dict.get('public',"yes")=="yes",
638 container_format="bare", location=image_dict['location'], disk_format=disk_format)
639 else: #local path
640 with open(image_dict['location']) as fimage:
641 new_image = glancev1.images.create(name=image_dict['name'], is_public=image_dict.get('public',"yes")=="yes",
642 container_format="bare", data=fimage, disk_format=disk_format)
643 #insert metadata. We cannot use 'new_image.properties.setdefault'
644 #because nova and glance are "INDEPENDENT" and we are using nova for reading metadata
645 new_image_nova=self.nova.images.find(id=new_image.id)
646 new_image_nova.metadata.setdefault('location',image_dict['location'])
647 metadata_to_load = image_dict.get('metadata')
648 if metadata_to_load:
649 for k,v in yaml.load(metadata_to_load).iteritems():
650 new_image_nova.metadata.setdefault(k,v)
tiernoae4a8d12016-07-08 12:30:39 +0200651 return new_image.id
652 except (nvExceptions.Conflict, ksExceptions.ClientException, nvExceptions.ClientException) as e:
653 self._format_exception(e)
tierno8e995ce2016-09-22 08:13:00 +0000654 except (HTTPException, gl1Exceptions.HTTPException, gl1Exceptions.CommunicationError, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200655 if retry==max_retries:
656 continue
657 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100658 except IOError as e: #can not open the file
tiernoae4a8d12016-07-08 12:30:39 +0200659 raise vimconn.vimconnConnectionException(type(e).__name__ + ": " + str(e)+ " for " + image_dict['location'],
660 http_code=vimconn.HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100661
tiernoae4a8d12016-07-08 12:30:39 +0200662 def delete_image(self, image_id):
663 '''Deletes a tenant image from openstack VIM. Returns the old id
tierno7edb6752016-03-21 17:37:52 +0100664 '''
tiernoae4a8d12016-07-08 12:30:39 +0200665 try:
666 self._reload_connection()
667 self.nova.images.delete(image_id)
668 return image_id
tierno8e995ce2016-09-22 08:13:00 +0000669 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException, gl1Exceptions.CommunicationError, ConnectionError) as e: #TODO remove
tiernoae4a8d12016-07-08 12:30:39 +0200670 self._format_exception(e)
671
672 def get_image_id_from_path(self, path):
garciadeblasb69fa9f2016-09-28 12:04:10 +0200673 '''Get the image id from image path in the VIM database. Returns the image_id'''
tiernoae4a8d12016-07-08 12:30:39 +0200674 try:
675 self._reload_connection()
676 images = self.nova.images.list()
677 for image in images:
678 if image.metadata.get("location")==path:
679 return image.id
680 raise vimconn.vimconnNotFoundException("image with location '{}' not found".format( path))
tierno8e995ce2016-09-22 08:13:00 +0000681 except (ksExceptions.ClientException, nvExceptions.ClientException, gl1Exceptions.CommunicationError, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200682 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100683
garciadeblasb69fa9f2016-09-28 12:04:10 +0200684 def get_image_list(self, filter_dict={}):
685 '''Obtain tenant images from VIM
686 Filter_dict can be:
687 id: image id
688 name: image name
689 checksum: image checksum
690 Returns the image list of dictionaries:
691 [{<the fields at Filter_dict plus some VIM specific>}, ...]
692 List can be empty
693 '''
694 self.logger.debug("Getting image list from VIM filter: '%s'", str(filter_dict))
695 try:
696 self._reload_connection()
697 filter_dict_os=filter_dict.copy()
698 #First we filter by the available filter fields: name, id. The others are removed.
699 filter_dict_os.pop('checksum',None)
700 image_list=self.nova.images.findall(**filter_dict_os)
701 if len(image_list)==0:
702 return []
703 #Then we filter by the rest of filter fields: checksum
704 filtered_list = []
705 for image in image_list:
tierno4540ea52017-01-18 17:44:32 +0100706 image_class=self.glance.images.get(image.id)
707 if 'checksum' not in filter_dict or image_class['checksum']==filter_dict.get('checksum'):
708 filtered_list.append(image_class.copy())
garciadeblasb69fa9f2016-09-28 12:04:10 +0200709 return filtered_list
710 except (ksExceptions.ClientException, nvExceptions.ClientException, gl1Exceptions.CommunicationError, ConnectionError) as e:
711 self._format_exception(e)
712
montesmoreno0c8def02016-12-22 12:16:23 +0000713 def new_vminstance(self,name,description,start,image_id,flavor_id,net_list,cloud_config=None,disk_list=None):
tierno7edb6752016-03-21 17:37:52 +0100714 '''Adds a VM instance to VIM
715 Params:
716 start: indicates if VM must start or boot in pause mode. Ignored
717 image_id,flavor_id: iamge and flavor uuid
718 net_list: list of interfaces, each one is a dictionary with:
719 name:
720 net_id: network uuid to connect
721 vpci: virtual vcpi to assign, ignored because openstack lack #TODO
722 model: interface model, ignored #TODO
723 mac_address: used for SR-IOV ifaces #TODO for other types
724 use: 'data', 'bridge', 'mgmt'
725 type: 'virtual', 'PF', 'VF', 'VFnotShared'
726 vim_id: filled/added by this function
ahmadsaf853d452016-12-22 11:33:47 +0500727 floating_ip: True/False (or it can be None)
tierno7edb6752016-03-21 17:37:52 +0100728 #TODO ip, security groups
tiernoae4a8d12016-07-08 12:30:39 +0200729 Returns the instance identifier
tierno7edb6752016-03-21 17:37:52 +0100730 '''
tiernofa51c202017-01-27 14:58:17 +0100731 self.logger.debug("new_vminstance input: image='%s' flavor='%s' nics='%s'",image_id, flavor_id,str(net_list))
tierno7edb6752016-03-21 17:37:52 +0100732 try:
tierno6e116232016-07-18 13:01:40 +0200733 metadata={}
tierno7edb6752016-03-21 17:37:52 +0100734 net_list_vim=[]
ahmadsaf853d452016-12-22 11:33:47 +0500735 external_network=[] #list of external networks to be connected to instance, later on used to create floating_ip
tierno7edb6752016-03-21 17:37:52 +0100736 self._reload_connection()
tiernoae4a8d12016-07-08 12:30:39 +0200737 metadata_vpci={} #For a specific neutron plugin
tierno7edb6752016-03-21 17:37:52 +0100738 for net in net_list:
739 if not net.get("net_id"): #skip non connected iface
740 continue
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +0200741
742 port_dict={
743 "network_id": net["net_id"],
744 "name": net.get("name"),
745 "admin_state_up": True
746 }
747 if net["type"]=="virtual":
748 if "vpci" in net:
749 metadata_vpci[ net["net_id"] ] = [[ net["vpci"], "" ]]
750 elif net["type"]=="VF": # for VF
751 if "vpci" in net:
752 if "VF" not in metadata_vpci:
753 metadata_vpci["VF"]=[]
754 metadata_vpci["VF"].append([ net["vpci"], "" ])
755 port_dict["binding:vnic_type"]="direct"
756 else: #For PT
757 if "vpci" in net:
758 if "PF" not in metadata_vpci:
759 metadata_vpci["PF"]=[]
760 metadata_vpci["PF"].append([ net["vpci"], "" ])
761 port_dict["binding:vnic_type"]="direct-physical"
762 if not port_dict["name"]:
763 port_dict["name"]=name
764 if net.get("mac_address"):
765 port_dict["mac_address"]=net["mac_address"]
766 if net.get("port_security") == False:
767 port_dict["port_security_enabled"]=net["port_security"]
768 new_port = self.neutron.create_port({"port": port_dict })
769 net["mac_adress"] = new_port["port"]["mac_address"]
770 net["vim_id"] = new_port["port"]["id"]
771 net["ip"] = new_port["port"].get("fixed_ips", [{}])[0].get("ip_address")
772 net_list_vim.append({"port-id": new_port["port"]["id"]})
773
ahmadsaf853d452016-12-22 11:33:47 +0500774 if net.get('floating_ip', False):
tiernof8383b82017-01-18 15:49:48 +0100775 net['exit_on_floating_ip_error'] = True
ahmadsaf853d452016-12-22 11:33:47 +0500776 external_network.append(net)
tiernof8383b82017-01-18 15:49:48 +0100777 elif net['use'] == 'mgmt' and self.config.get('use_floating_ip'):
778 net['exit_on_floating_ip_error'] = False
779 external_network.append(net)
780
tierno7edb6752016-03-21 17:37:52 +0100781 if metadata_vpci:
782 metadata = {"pci_assignement": json.dumps(metadata_vpci)}
tiernoafbced42016-07-23 01:43:53 +0200783 if len(metadata["pci_assignement"]) >255:
tierno6e116232016-07-18 13:01:40 +0200784 #limit the metadata size
785 #metadata["pci_assignement"] = metadata["pci_assignement"][0:255]
786 self.logger.warn("Metadata deleted since it exceeds the expected length (255) ")
787 metadata = {}
tierno7edb6752016-03-21 17:37:52 +0100788
tiernoae4a8d12016-07-08 12:30:39 +0200789 self.logger.debug("name '%s' image_id '%s'flavor_id '%s' net_list_vim '%s' description '%s' metadata %s",
790 name, image_id, flavor_id, str(net_list_vim), description, str(metadata))
tierno7edb6752016-03-21 17:37:52 +0100791
792 security_groups = self.config.get('security_groups')
793 if type(security_groups) is str:
794 security_groups = ( security_groups, )
tierno36c0b172017-01-12 18:32:28 +0100795 #cloud config
796 userdata=None
797 config_drive = None
tiernoa4e1a6e2016-08-31 14:19:40 +0200798 if isinstance(cloud_config, dict):
tierno36c0b172017-01-12 18:32:28 +0100799 if cloud_config.get("user-data"):
800 userdata=cloud_config["user-data"]
801 if cloud_config.get("boot-data-drive") != None:
802 config_drive = cloud_config["boot-data-drive"]
803 if cloud_config.get("config-files") or cloud_config.get("users") or cloud_config.get("key-pairs"):
804 if userdata:
805 raise vimconn.vimconnConflictException("Cloud-config cannot contain both 'userdata' and 'config-files'/'users'/'key-pairs'")
806 userdata_dict={}
807 #default user
808 if cloud_config.get("key-pairs"):
809 userdata_dict["ssh-authorized-keys"] = cloud_config["key-pairs"]
810 userdata_dict["users"] = [{"default": None, "ssh-authorized-keys": cloud_config["key-pairs"] }]
811 if cloud_config.get("users"):
tierno01d0bf52017-01-25 14:27:20 +0100812 if "users" not in userdata_dict:
tierno36c0b172017-01-12 18:32:28 +0100813 userdata_dict["users"] = [ "default" ]
814 for user in cloud_config["users"]:
815 user_info = {
816 "name" : user["name"],
817 "sudo": "ALL = (ALL)NOPASSWD:ALL"
818 }
819 if "user-info" in user:
820 user_info["gecos"] = user["user-info"]
821 if user.get("key-pairs"):
822 user_info["ssh-authorized-keys"] = user["key-pairs"]
823 userdata_dict["users"].append(user_info)
824
825 if cloud_config.get("config-files"):
826 userdata_dict["write_files"] = []
827 for file in cloud_config["config-files"]:
828 file_info = {
829 "path" : file["dest"],
830 "content": file["content"]
831 }
832 if file.get("encoding"):
833 file_info["encoding"] = file["encoding"]
834 if file.get("permissions"):
835 file_info["permissions"] = file["permissions"]
836 if file.get("owner"):
837 file_info["owner"] = file["owner"]
838 userdata_dict["write_files"].append(file_info)
839 userdata = "#cloud-config\n"
840 userdata += yaml.safe_dump(userdata_dict, indent=4, default_flow_style=False)
tiernoa4e1a6e2016-08-31 14:19:40 +0200841 self.logger.debug("userdata: %s", userdata)
842 elif isinstance(cloud_config, str):
843 userdata = cloud_config
montesmoreno0c8def02016-12-22 12:16:23 +0000844
845 #Create additional volumes in case these are present in disk_list
846 block_device_mapping = None
847 base_disk_index = ord('b')
848 if disk_list != None:
849 block_device_mapping = dict()
850 for disk in disk_list:
851 if 'image_id' in disk:
852 volume = self.cinder.volumes.create(size = disk['size'],name = name + '_vd' +
853 chr(base_disk_index), imageRef = disk['image_id'])
854 else:
855 volume = self.cinder.volumes.create(size=disk['size'], name=name + '_vd' +
856 chr(base_disk_index))
857 block_device_mapping['_vd' + chr(base_disk_index)] = volume.id
858 base_disk_index += 1
859
860 #wait until volumes are with status available
861 keep_waiting = True
862 elapsed_time = 0
863 while keep_waiting and elapsed_time < volume_timeout:
864 keep_waiting = False
865 for volume_id in block_device_mapping.itervalues():
866 if self.cinder.volumes.get(volume_id).status != 'available':
867 keep_waiting = True
868 if keep_waiting:
869 time.sleep(1)
870 elapsed_time += 1
871
872 #if we exceeded the timeout rollback
873 if elapsed_time >= volume_timeout:
874 #delete the volumes we just created
875 for volume_id in block_device_mapping.itervalues():
876 self.cinder.volumes.delete(volume_id)
877
878 #delete ports we just created
879 for net_item in net_list_vim:
880 if 'port-id' in net_item:
montesmorenocf227142017-01-12 12:24:21 +0000881 self.neutron.delete_port(net_item['port-id'])
montesmoreno0c8def02016-12-22 12:16:23 +0000882
883 raise vimconn.vimconnException('Timeout creating volumes for instance ' + name,
884 http_code=vimconn.HTTP_Request_Timeout)
885
tierno7edb6752016-03-21 17:37:52 +0100886 server = self.nova.servers.create(name, image_id, flavor_id, nics=net_list_vim, meta=metadata,
montesmoreno0c8def02016-12-22 12:16:23 +0000887 security_groups=security_groups,
888 availability_zone=self.config.get('availability_zone'),
889 key_name=self.config.get('keypair'),
890 userdata=userdata,
tierno36c0b172017-01-12 18:32:28 +0100891 config_drive = config_drive,
montesmoreno0c8def02016-12-22 12:16:23 +0000892 block_device_mapping = block_device_mapping
893 ) # , description=description)
tiernoae4a8d12016-07-08 12:30:39 +0200894 #print "DONE :-)", server
ahmadsaf853d452016-12-22 11:33:47 +0500895 pool_id = None
896 floating_ips = self.neutron.list_floatingips().get("floatingips", ())
897 for floating_network in external_network:
tiernof8383b82017-01-18 15:49:48 +0100898 try:
899 # wait until vm is active
900 elapsed_time = 0
901 while elapsed_time < server_timeout:
902 status = self.nova.servers.get(server.id).status
903 if status == 'ACTIVE':
904 break
905 time.sleep(1)
906 elapsed_time += 1
montesmoreno2a1fc4e2017-01-09 16:46:04 +0000907
tiernof8383b82017-01-18 15:49:48 +0100908 #if we exceeded the timeout rollback
909 if elapsed_time >= server_timeout:
910 raise vimconn.vimconnException('Timeout creating instance ' + name,
911 http_code=vimconn.HTTP_Request_Timeout)
montesmoreno2a1fc4e2017-01-09 16:46:04 +0000912
tiernof8383b82017-01-18 15:49:48 +0100913 assigned = False
914 while(assigned == False):
915 if floating_ips:
916 ip = floating_ips.pop(0)
917 if not ip.get("port_id", False) and ip.get('tenant_id') == server.tenant_id:
918 free_floating_ip = ip.get("floating_ip_address")
919 try:
920 fix_ip = floating_network.get('ip')
921 server.add_floating_ip(free_floating_ip, fix_ip)
922 assigned = True
923 except Exception as e:
924 raise vimconn.vimconnException(type(e).__name__ + ": Cannot create floating_ip "+ str(e), http_code=vimconn.HTTP_Conflict)
925 else:
926 #Find the external network
927 external_nets = list()
928 for net in self.neutron.list_networks()['networks']:
929 if net['router:external']:
930 external_nets.append(net)
931
932 if len(external_nets) == 0:
933 raise vimconn.vimconnException("Cannot create floating_ip automatically since no external "
934 "network is present",
935 http_code=vimconn.HTTP_Conflict)
936 if len(external_nets) > 1:
937 raise vimconn.vimconnException("Cannot create floating_ip automatically since multiple "
938 "external networks are present",
939 http_code=vimconn.HTTP_Conflict)
940
941 pool_id = external_nets[0].get('id')
942 param = {'floatingip': {'floating_network_id': pool_id, 'tenant_id': server.tenant_id}}
ahmadsaf853d452016-12-22 11:33:47 +0500943 try:
tiernof8383b82017-01-18 15:49:48 +0100944 #self.logger.debug("Creating floating IP")
945 new_floating_ip = self.neutron.create_floatingip(param)
946 free_floating_ip = new_floating_ip['floatingip']['floating_ip_address']
ahmadsaf853d452016-12-22 11:33:47 +0500947 fix_ip = floating_network.get('ip')
948 server.add_floating_ip(free_floating_ip, fix_ip)
tiernof8383b82017-01-18 15:49:48 +0100949 assigned=True
ahmadsaf853d452016-12-22 11:33:47 +0500950 except Exception as e:
tiernof8383b82017-01-18 15:49:48 +0100951 raise vimconn.vimconnException(type(e).__name__ + ": Cannot assign floating_ip "+ str(e), http_code=vimconn.HTTP_Conflict)
952 except Exception as e:
953 if not floating_network['exit_on_floating_ip_error']:
954 self.logger.warn("Cannot create floating_ip. %s", str(e))
955 continue
956 self.delete_vminstance(server.id)
957 raise
montesmoreno2a1fc4e2017-01-09 16:46:04 +0000958
tiernoae4a8d12016-07-08 12:30:39 +0200959 return server.id
tierno7edb6752016-03-21 17:37:52 +0100960# except nvExceptions.NotFound as e:
961# error_value=-vimconn.HTTP_Not_Found
962# error_text= "vm instance %s not found" % vm_id
tiernof8383b82017-01-18 15:49:48 +0100963 except (ksExceptions.ClientException, nvExceptions.ClientException, ConnectionError) as e:
montesmoreno2a1fc4e2017-01-09 16:46:04 +0000964 # delete the volumes we just created
965 if block_device_mapping != None:
966 for volume_id in block_device_mapping.itervalues():
967 self.cinder.volumes.delete(volume_id)
968
969 # delete ports we just created
970 for net_item in net_list_vim:
971 if 'port-id' in net_item:
montesmorenocf227142017-01-12 12:24:21 +0000972 self.neutron.delete_port(net_item['port-id'])
tiernoae4a8d12016-07-08 12:30:39 +0200973 self._format_exception(e)
974 except TypeError as e:
975 raise vimconn.vimconnException(type(e).__name__ + ": "+ str(e), http_code=vimconn.HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100976
tiernoae4a8d12016-07-08 12:30:39 +0200977 def get_vminstance(self,vm_id):
tierno7edb6752016-03-21 17:37:52 +0100978 '''Returns the VM instance information from VIM'''
tiernoae4a8d12016-07-08 12:30:39 +0200979 #self.logger.debug("Getting VM from VIM")
tierno7edb6752016-03-21 17:37:52 +0100980 try:
981 self._reload_connection()
982 server = self.nova.servers.find(id=vm_id)
983 #TODO parse input and translate to VIM format (openmano_schemas.new_vminstance_response_schema)
tiernoae4a8d12016-07-08 12:30:39 +0200984 return server.to_dict()
tierno8e995ce2016-09-22 08:13:00 +0000985 except (ksExceptions.ClientException, nvExceptions.ClientException, nvExceptions.NotFound, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200986 self._format_exception(e)
987
988 def get_vminstance_console(self,vm_id, console_type="vnc"):
tierno7edb6752016-03-21 17:37:52 +0100989 '''
990 Get a console for the virtual machine
991 Params:
992 vm_id: uuid of the VM
993 console_type, can be:
994 "novnc" (by default), "xvpvnc" for VNC types,
995 "rdp-html5" for RDP types, "spice-html5" for SPICE types
tiernoae4a8d12016-07-08 12:30:39 +0200996 Returns dict with the console parameters:
997 protocol: ssh, ftp, http, https, ...
998 server: usually ip address
999 port: the http, ssh, ... port
1000 suffix: extra text, e.g. the http path and query string
tierno7edb6752016-03-21 17:37:52 +01001001 '''
tiernoae4a8d12016-07-08 12:30:39 +02001002 self.logger.debug("Getting VM CONSOLE from VIM")
tierno7edb6752016-03-21 17:37:52 +01001003 try:
1004 self._reload_connection()
1005 server = self.nova.servers.find(id=vm_id)
1006 if console_type == None or console_type == "novnc":
1007 console_dict = server.get_vnc_console("novnc")
1008 elif console_type == "xvpvnc":
1009 console_dict = server.get_vnc_console(console_type)
1010 elif console_type == "rdp-html5":
1011 console_dict = server.get_rdp_console(console_type)
1012 elif console_type == "spice-html5":
1013 console_dict = server.get_spice_console(console_type)
1014 else:
tiernoae4a8d12016-07-08 12:30:39 +02001015 raise vimconn.vimconnException("console type '{}' not allowed".format(console_type), http_code=vimconn.HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001016
1017 console_dict1 = console_dict.get("console")
1018 if console_dict1:
1019 console_url = console_dict1.get("url")
1020 if console_url:
1021 #parse console_url
1022 protocol_index = console_url.find("//")
1023 suffix_index = console_url[protocol_index+2:].find("/") + protocol_index+2
1024 port_index = console_url[protocol_index+2:suffix_index].find(":") + protocol_index+2
1025 if protocol_index < 0 or port_index<0 or suffix_index<0:
1026 return -vimconn.HTTP_Internal_Server_Error, "Unexpected response from VIM"
1027 console_dict={"protocol": console_url[0:protocol_index],
1028 "server": console_url[protocol_index+2:port_index],
1029 "port": console_url[port_index:suffix_index],
1030 "suffix": console_url[suffix_index+1:]
1031 }
1032 protocol_index += 2
tiernoae4a8d12016-07-08 12:30:39 +02001033 return console_dict
1034 raise vimconn.vimconnUnexpectedResponse("Unexpected response from VIM")
tierno7edb6752016-03-21 17:37:52 +01001035
tierno8e995ce2016-09-22 08:13:00 +00001036 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException, nvExceptions.BadRequest, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001037 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +01001038
tiernoae4a8d12016-07-08 12:30:39 +02001039 def delete_vminstance(self, vm_id):
1040 '''Removes a VM instance from VIM. Returns the old identifier
tierno7edb6752016-03-21 17:37:52 +01001041 '''
tiernoae4a8d12016-07-08 12:30:39 +02001042 #print "osconnector: Getting VM from VIM"
tierno7edb6752016-03-21 17:37:52 +01001043 try:
1044 self._reload_connection()
1045 #delete VM ports attached to this networks before the virtual machine
1046 ports = self.neutron.list_ports(device_id=vm_id)
1047 for p in ports['ports']:
1048 try:
1049 self.neutron.delete_port(p["id"])
1050 except Exception as e:
tiernoae4a8d12016-07-08 12:30:39 +02001051 self.logger.error("Error deleting port: " + type(e).__name__ + ": "+ str(e))
montesmoreno0c8def02016-12-22 12:16:23 +00001052
1053 #commented because detaching the volumes makes the servers.delete not work properly ?!?
1054 #dettach volumes attached
1055 server = self.nova.servers.get(vm_id)
1056 volumes_attached_dict = server._info['os-extended-volumes:volumes_attached']
1057 #for volume in volumes_attached_dict:
1058 # self.cinder.volumes.detach(volume['id'])
1059
tierno7edb6752016-03-21 17:37:52 +01001060 self.nova.servers.delete(vm_id)
montesmoreno0c8def02016-12-22 12:16:23 +00001061
1062 #delete volumes.
1063 #Although having detached them should have them in active status
1064 #we ensure in this loop
1065 keep_waiting = True
1066 elapsed_time = 0
1067 while keep_waiting and elapsed_time < volume_timeout:
1068 keep_waiting = False
1069 for volume in volumes_attached_dict:
1070 if self.cinder.volumes.get(volume['id']).status != 'available':
1071 keep_waiting = True
1072 else:
1073 self.cinder.volumes.delete(volume['id'])
1074 if keep_waiting:
1075 time.sleep(1)
1076 elapsed_time += 1
1077
tiernoae4a8d12016-07-08 12:30:39 +02001078 return vm_id
tierno8e995ce2016-09-22 08:13:00 +00001079 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001080 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +01001081 #TODO insert exception vimconn.HTTP_Unauthorized
1082 #if reaching here is because an exception
tierno7edb6752016-03-21 17:37:52 +01001083
tiernoae4a8d12016-07-08 12:30:39 +02001084 def refresh_vms_status(self, vm_list):
1085 '''Get the status of the virtual machines and their interfaces/ports
1086 Params: the list of VM identifiers
1087 Returns a dictionary with:
1088 vm_id: #VIM id of this Virtual Machine
1089 status: #Mandatory. Text with one of:
1090 # DELETED (not found at vim)
1091 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
1092 # OTHER (Vim reported other status not understood)
1093 # ERROR (VIM indicates an ERROR status)
1094 # ACTIVE, PAUSED, SUSPENDED, INACTIVE (not running),
1095 # CREATING (on building process), ERROR
1096 # ACTIVE:NoMgmtIP (Active but any of its interface has an IP address
1097 #
1098 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
1099 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
1100 interfaces:
1101 - vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
1102 mac_address: #Text format XX:XX:XX:XX:XX:XX
1103 vim_net_id: #network id where this interface is connected
1104 vim_interface_id: #interface/port VIM id
1105 ip_address: #null, or text with IPv4, IPv6 address
tierno867ffe92017-03-27 12:50:34 +02001106 compute_node: #identification of compute node where PF,VF interface is allocated
1107 pci: #PCI address of the NIC that hosts the PF,VF
1108 vlan: #physical VLAN used for VF
tierno7edb6752016-03-21 17:37:52 +01001109 '''
tiernoae4a8d12016-07-08 12:30:39 +02001110 vm_dict={}
1111 self.logger.debug("refresh_vms status: Getting tenant VM instance information from VIM")
1112 for vm_id in vm_list:
1113 vm={}
1114 try:
1115 vm_vim = self.get_vminstance(vm_id)
1116 if vm_vim['status'] in vmStatus2manoFormat:
1117 vm['status'] = vmStatus2manoFormat[ vm_vim['status'] ]
tierno7edb6752016-03-21 17:37:52 +01001118 else:
tiernoae4a8d12016-07-08 12:30:39 +02001119 vm['status'] = "OTHER"
1120 vm['error_msg'] = "VIM status reported " + vm_vim['status']
tierno8e995ce2016-09-22 08:13:00 +00001121 try:
1122 vm['vim_info'] = yaml.safe_dump(vm_vim, default_flow_style=True, width=256)
1123 except yaml.representer.RepresenterError:
1124 vm['vim_info'] = str(vm_vim)
tiernoae4a8d12016-07-08 12:30:39 +02001125 vm["interfaces"] = []
1126 if vm_vim.get('fault'):
1127 vm['error_msg'] = str(vm_vim['fault'])
1128 #get interfaces
tierno7edb6752016-03-21 17:37:52 +01001129 try:
tiernoae4a8d12016-07-08 12:30:39 +02001130 self._reload_connection()
1131 port_dict=self.neutron.list_ports(device_id=vm_id)
1132 for port in port_dict["ports"]:
1133 interface={}
tierno8e995ce2016-09-22 08:13:00 +00001134 try:
1135 interface['vim_info'] = yaml.safe_dump(port, default_flow_style=True, width=256)
1136 except yaml.representer.RepresenterError:
1137 interface['vim_info'] = str(port)
tiernoae4a8d12016-07-08 12:30:39 +02001138 interface["mac_address"] = port.get("mac_address")
1139 interface["vim_net_id"] = port["network_id"]
1140 interface["vim_interface_id"] = port["id"]
Mike Marchetti5b9da422017-05-02 15:35:47 -04001141 # check if OS-EXT-SRV-ATTR:host is there,
1142 # in case of non-admin credentials, it will be missing
1143 if vm_vim.get('OS-EXT-SRV-ATTR:host'):
1144 interface["compute_node"] = vm_vim['OS-EXT-SRV-ATTR:host']
tierno867ffe92017-03-27 12:50:34 +02001145 interface["pci"] = None
Mike Marchetti5b9da422017-05-02 15:35:47 -04001146
1147 # check if binding:profile is there,
1148 # in case of non-admin credentials, it will be missing
1149 if port.get('binding:profile'):
1150 if port['binding:profile'].get('pci_slot'):
1151 # TODO: At the moment sr-iov pci addresses are converted to PF pci addresses by setting the slot to 0x00
1152 # TODO: This is just a workaround valid for niantinc. Find a better way to do so
1153 # CHANGE DDDD:BB:SS.F to DDDD:BB:00.(F%2) assuming there are 2 ports per nic
1154 pci = port['binding:profile']['pci_slot']
1155 # interface["pci"] = pci[:-4] + "00." + str(int(pci[-1]) % 2)
1156 interface["pci"] = pci
tierno867ffe92017-03-27 12:50:34 +02001157 interface["vlan"] = None
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +02001158 #if network is of type vlan and port is of type direct (sr-iov) then set vlan id
Pablo Montes Moreno51e553b2017-03-23 16:39:12 +01001159 network = self.neutron.show_network(port["network_id"])
Pablo Montes Moreno3be0b2a2017-03-30 13:22:15 +02001160 if network['network'].get('provider:network_type') == 'vlan' and \
1161 port.get("binding:vnic_type") == "direct":
tierno867ffe92017-03-27 12:50:34 +02001162 interface["vlan"] = network['network'].get('provider:segmentation_id')
tiernoae4a8d12016-07-08 12:30:39 +02001163 ips=[]
1164 #look for floating ip address
1165 floating_ip_dict = self.neutron.list_floatingips(port_id=port["id"])
1166 if floating_ip_dict.get("floatingips"):
1167 ips.append(floating_ip_dict["floatingips"][0].get("floating_ip_address") )
tierno7edb6752016-03-21 17:37:52 +01001168
tiernoae4a8d12016-07-08 12:30:39 +02001169 for subnet in port["fixed_ips"]:
1170 ips.append(subnet["ip_address"])
1171 interface["ip_address"] = ";".join(ips)
1172 vm["interfaces"].append(interface)
1173 except Exception as e:
1174 self.logger.error("Error getting vm interface information " + type(e).__name__ + ": "+ str(e))
1175 except vimconn.vimconnNotFoundException as e:
1176 self.logger.error("Exception getting vm status: %s", str(e))
1177 vm['status'] = "DELETED"
1178 vm['error_msg'] = str(e)
1179 except vimconn.vimconnException as e:
1180 self.logger.error("Exception getting vm status: %s", str(e))
1181 vm['status'] = "VIM_ERROR"
1182 vm['error_msg'] = str(e)
1183 vm_dict[vm_id] = vm
1184 return vm_dict
tierno7edb6752016-03-21 17:37:52 +01001185
tiernoae4a8d12016-07-08 12:30:39 +02001186 def action_vminstance(self, vm_id, action_dict):
tierno7edb6752016-03-21 17:37:52 +01001187 '''Send and action over a VM instance from VIM
tiernoae4a8d12016-07-08 12:30:39 +02001188 Returns the vm_id if the action was successfully sent to the VIM'''
1189 self.logger.debug("Action over VM '%s': %s", vm_id, str(action_dict))
tierno7edb6752016-03-21 17:37:52 +01001190 try:
1191 self._reload_connection()
1192 server = self.nova.servers.find(id=vm_id)
1193 if "start" in action_dict:
1194 if action_dict["start"]=="rebuild":
1195 server.rebuild()
1196 else:
1197 if server.status=="PAUSED":
1198 server.unpause()
1199 elif server.status=="SUSPENDED":
1200 server.resume()
1201 elif server.status=="SHUTOFF":
1202 server.start()
1203 elif "pause" in action_dict:
1204 server.pause()
1205 elif "resume" in action_dict:
1206 server.resume()
1207 elif "shutoff" in action_dict or "shutdown" in action_dict:
1208 server.stop()
1209 elif "forceOff" in action_dict:
1210 server.stop() #TODO
1211 elif "terminate" in action_dict:
1212 server.delete()
1213 elif "createImage" in action_dict:
1214 server.create_image()
1215 #"path":path_schema,
1216 #"description":description_schema,
1217 #"name":name_schema,
1218 #"metadata":metadata_schema,
1219 #"imageRef": id_schema,
1220 #"disk": {"oneOf":[{"type": "null"}, {"type":"string"}] },
1221 elif "rebuild" in action_dict:
1222 server.rebuild(server.image['id'])
1223 elif "reboot" in action_dict:
1224 server.reboot() #reboot_type='SOFT'
1225 elif "console" in action_dict:
1226 console_type = action_dict["console"]
1227 if console_type == None or console_type == "novnc":
1228 console_dict = server.get_vnc_console("novnc")
1229 elif console_type == "xvpvnc":
1230 console_dict = server.get_vnc_console(console_type)
1231 elif console_type == "rdp-html5":
1232 console_dict = server.get_rdp_console(console_type)
1233 elif console_type == "spice-html5":
1234 console_dict = server.get_spice_console(console_type)
1235 else:
tiernoae4a8d12016-07-08 12:30:39 +02001236 raise vimconn.vimconnException("console type '{}' not allowed".format(console_type),
1237 http_code=vimconn.HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +01001238 try:
1239 console_url = console_dict["console"]["url"]
1240 #parse console_url
1241 protocol_index = console_url.find("//")
1242 suffix_index = console_url[protocol_index+2:].find("/") + protocol_index+2
1243 port_index = console_url[protocol_index+2:suffix_index].find(":") + protocol_index+2
1244 if protocol_index < 0 or port_index<0 or suffix_index<0:
tiernoae4a8d12016-07-08 12:30:39 +02001245 raise vimconn.vimconnException("Unexpected response from VIM " + str(console_dict))
tierno7edb6752016-03-21 17:37:52 +01001246 console_dict2={"protocol": console_url[0:protocol_index],
1247 "server": console_url[protocol_index+2 : port_index],
1248 "port": int(console_url[port_index+1 : suffix_index]),
1249 "suffix": console_url[suffix_index+1:]
1250 }
tiernoae4a8d12016-07-08 12:30:39 +02001251 return console_dict2
1252 except Exception as e:
1253 raise vimconn.vimconnException("Unexpected response from VIM " + str(console_dict))
tierno7edb6752016-03-21 17:37:52 +01001254
tiernoae4a8d12016-07-08 12:30:39 +02001255 return vm_id
tierno8e995ce2016-09-22 08:13:00 +00001256 except (ksExceptions.ClientException, nvExceptions.ClientException, nvExceptions.NotFound, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +02001257 self._format_exception(e)
1258 #TODO insert exception vimconn.HTTP_Unauthorized
1259
1260#NOT USED FUNCTIONS
1261
1262 def new_external_port(self, port_data):
1263 #TODO openstack if needed
1264 '''Adds a external port to VIM'''
1265 '''Returns the port identifier'''
1266 return -vimconn.HTTP_Internal_Server_Error, "osconnector.new_external_port() not implemented"
1267
1268 def connect_port_network(self, port_id, network_id, admin=False):
1269 #TODO openstack if needed
1270 '''Connects a external port to a network'''
1271 '''Returns status code of the VIM response'''
1272 return -vimconn.HTTP_Internal_Server_Error, "osconnector.connect_port_network() not implemented"
1273
1274 def new_user(self, user_name, user_passwd, tenant_id=None):
1275 '''Adds a new user to openstack VIM'''
1276 '''Returns the user identifier'''
1277 self.logger.debug("osconnector: Adding a new user to VIM")
1278 try:
1279 self._reload_connection()
1280 user=self.keystone.users.create(user_name, user_passwd, tenant_id=tenant_id)
1281 #self.keystone.tenants.add_user(self.k_creds["username"], #role)
1282 return user.id
1283 except ksExceptions.ConnectionError as e:
1284 error_value=-vimconn.HTTP_Bad_Request
1285 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1286 except ksExceptions.ClientException as e: #TODO remove
tierno7edb6752016-03-21 17:37:52 +01001287 error_value=-vimconn.HTTP_Bad_Request
1288 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1289 #TODO insert exception vimconn.HTTP_Unauthorized
1290 #if reaching here is because an exception
1291 if self.debug:
tiernoae4a8d12016-07-08 12:30:39 +02001292 self.logger.debug("new_user " + error_text)
tierno7edb6752016-03-21 17:37:52 +01001293 return error_value, error_text
tiernoae4a8d12016-07-08 12:30:39 +02001294
1295 def delete_user(self, user_id):
1296 '''Delete a user from openstack VIM'''
1297 '''Returns the user identifier'''
1298 if self.debug:
1299 print "osconnector: Deleting a user from VIM"
1300 try:
1301 self._reload_connection()
1302 self.keystone.users.delete(user_id)
1303 return 1, user_id
1304 except ksExceptions.ConnectionError as e:
1305 error_value=-vimconn.HTTP_Bad_Request
1306 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1307 except ksExceptions.NotFound as e:
1308 error_value=-vimconn.HTTP_Not_Found
1309 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1310 except ksExceptions.ClientException as e: #TODO remove
1311 error_value=-vimconn.HTTP_Bad_Request
1312 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1313 #TODO insert exception vimconn.HTTP_Unauthorized
1314 #if reaching here is because an exception
1315 if self.debug:
1316 print "delete_tenant " + error_text
1317 return error_value, error_text
1318
tierno7edb6752016-03-21 17:37:52 +01001319 def get_hosts_info(self):
1320 '''Get the information of deployed hosts
1321 Returns the hosts content'''
1322 if self.debug:
1323 print "osconnector: Getting Host info from VIM"
1324 try:
1325 h_list=[]
1326 self._reload_connection()
1327 hypervisors = self.nova.hypervisors.list()
1328 for hype in hypervisors:
1329 h_list.append( hype.to_dict() )
1330 return 1, {"hosts":h_list}
1331 except nvExceptions.NotFound as e:
1332 error_value=-vimconn.HTTP_Not_Found
1333 error_text= (str(e) if len(e.args)==0 else str(e.args[0]))
1334 except (ksExceptions.ClientException, nvExceptions.ClientException) as e:
1335 error_value=-vimconn.HTTP_Bad_Request
1336 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1337 #TODO insert exception vimconn.HTTP_Unauthorized
1338 #if reaching here is because an exception
1339 if self.debug:
1340 print "get_hosts_info " + error_text
1341 return error_value, error_text
1342
1343 def get_hosts(self, vim_tenant):
1344 '''Get the hosts and deployed instances
1345 Returns the hosts content'''
1346 r, hype_dict = self.get_hosts_info()
1347 if r<0:
1348 return r, hype_dict
1349 hypervisors = hype_dict["hosts"]
1350 try:
1351 servers = self.nova.servers.list()
1352 for hype in hypervisors:
1353 for server in servers:
1354 if server.to_dict()['OS-EXT-SRV-ATTR:hypervisor_hostname']==hype['hypervisor_hostname']:
1355 if 'vm' in hype:
1356 hype['vm'].append(server.id)
1357 else:
1358 hype['vm'] = [server.id]
1359 return 1, hype_dict
1360 except nvExceptions.NotFound as e:
1361 error_value=-vimconn.HTTP_Not_Found
1362 error_text= (str(e) if len(e.args)==0 else str(e.args[0]))
1363 except (ksExceptions.ClientException, nvExceptions.ClientException) as e:
1364 error_value=-vimconn.HTTP_Bad_Request
1365 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
1366 #TODO insert exception vimconn.HTTP_Unauthorized
1367 #if reaching here is because an exception
1368 if self.debug:
1369 print "get_hosts " + error_text
1370 return error_value, error_text
1371
tierno7edb6752016-03-21 17:37:52 +01001372