blob: 1c6227e77fa4c50fa08706febcd060558b4638ff [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'''
27__author__="Alfonso Tierno, Gerardo Garcia"
28__date__ ="$22-jun-2014 11:19:29$"
29
30import vimconn
31import json
32import yaml
tiernoae4a8d12016-07-08 12:30:39 +020033import logging
tierno7edb6752016-03-21 17:37:52 +010034
35from novaclient import client as nClient, exceptions as nvExceptions
36import keystoneclient.v2_0.client as ksClient
37import keystoneclient.exceptions as ksExceptions
38import glanceclient.v2.client as glClient
39import glanceclient.client as gl1Client
40import glanceclient.exc as gl1Exceptions
41from httplib import HTTPException
42from neutronclient.neutron import client as neClient
43from neutronclient.common import exceptions as neExceptions
44from requests.exceptions import ConnectionError
45
46'''contain the openstack virtual machine status to openmano status'''
47vmStatus2manoFormat={'ACTIVE':'ACTIVE',
48 'PAUSED':'PAUSED',
49 'SUSPENDED': 'SUSPENDED',
50 'SHUTOFF':'INACTIVE',
51 'BUILD':'BUILD',
52 'ERROR':'ERROR','DELETED':'DELETED'
53 }
54netStatus2manoFormat={'ACTIVE':'ACTIVE','PAUSED':'PAUSED','INACTIVE':'INACTIVE','BUILD':'BUILD','ERROR':'ERROR','DELETED':'DELETED'
55 }
56
57class vimconnector(vimconn.vimconnector):
tiernoae4a8d12016-07-08 12:30:39 +020058 def __init__(self, uuid, name, tenant_id, tenant_name, url, url_admin=None, user=None, passwd=None, log_level="DEBUG", config={}):
tierno7edb6752016-03-21 17:37:52 +010059 '''using common constructor parameters. In this case
60 'url' is the keystone authorization url,
61 'url_admin' is not use
62 '''
tiernoae4a8d12016-07-08 12:30:39 +020063 vimconn.vimconnector.__init__(self, uuid, name, tenant_id, tenant_name, url, url_admin, user, passwd, log_level, config)
tierno7edb6752016-03-21 17:37:52 +010064
65 self.k_creds={}
66 self.n_creds={}
67 if not url:
68 raise TypeError, 'url param can not be NoneType'
69 self.k_creds['auth_url'] = url
70 self.n_creds['auth_url'] = url
tierno392f2852016-05-13 12:28:55 +020071 if tenant_name:
72 self.k_creds['tenant_name'] = tenant_name
73 self.n_creds['project_id'] = tenant_name
74 if tenant_id:
75 self.k_creds['tenant_id'] = tenant_id
76 self.n_creds['tenant_id'] = tenant_id
tierno7edb6752016-03-21 17:37:52 +010077 if user:
78 self.k_creds['username'] = user
79 self.n_creds['username'] = user
80 if passwd:
81 self.k_creds['password'] = passwd
82 self.n_creds['api_key'] = passwd
83 self.reload_client = True
tiernoae4a8d12016-07-08 12:30:39 +020084 self.logger = logging.getLogger('mano.vim.openstack')
tierno7edb6752016-03-21 17:37:52 +010085
86 def __setitem__(self,index, value):
87 '''Set individuals parameters
88 Throw TypeError, KeyError
89 '''
tierno392f2852016-05-13 12:28:55 +020090 if index=='tenant_id':
tierno7edb6752016-03-21 17:37:52 +010091 self.reload_client=True
tierno392f2852016-05-13 12:28:55 +020092 self.tenant_id = value
93 if value:
94 self.k_creds['tenant_id'] = value
95 self.n_creds['tenant_id'] = value
96 else:
97 del self.k_creds['tenant_name']
98 del self.n_creds['project_id']
99 elif index=='tenant_name':
100 self.reload_client=True
101 self.tenant_name = value
tierno7edb6752016-03-21 17:37:52 +0100102 if value:
103 self.k_creds['tenant_name'] = value
104 self.n_creds['project_id'] = value
105 else:
106 del self.k_creds['tenant_name']
107 del self.n_creds['project_id']
108 elif index=='user':
109 self.reload_client=True
110 self.user = value
111 if value:
112 self.k_creds['username'] = value
113 self.n_creds['username'] = value
114 else:
115 del self.k_creds['username']
116 del self.n_creds['username']
117 elif index=='passwd':
118 self.reload_client=True
119 self.passwd = value
120 if value:
121 self.k_creds['password'] = value
122 self.n_creds['api_key'] = value
123 else:
124 del self.k_creds['password']
125 del self.n_creds['api_key']
126 elif index=='url':
127 self.reload_client=True
128 self.url = value
129 if value:
130 self.k_creds['auth_url'] = value
131 self.n_creds['auth_url'] = value
132 else:
133 raise TypeError, 'url param can not be NoneType'
134 else:
135 vimconn.vimconnector.__setitem__(self,index, value)
136
137 def _reload_connection(self):
138 '''Called before any operation, it check if credentials has changed
139 Throw keystoneclient.apiclient.exceptions.AuthorizationFailure
140 '''
141 #TODO control the timing and possible token timeout, but it seams that python client does this task for us :-)
142 if self.reload_client:
143 #test valid params
144 if len(self.n_creds) <4:
145 raise ksExceptions.ClientException("Not enough parameters to connect to openstack")
146 self.nova = nClient.Client(2, **self.n_creds)
147 self.keystone = ksClient.Client(**self.k_creds)
148 self.glance_endpoint = self.keystone.service_catalog.url_for(service_type='image', endpoint_type='publicURL')
149 self.glance = glClient.Client(self.glance_endpoint, token=self.keystone.auth_token, **self.k_creds) #TODO check k_creds vs n_creds
150 self.ne_endpoint=self.keystone.service_catalog.url_for(service_type='network', endpoint_type='publicURL')
151 self.neutron = neClient.Client('2.0', endpoint_url=self.ne_endpoint, token=self.keystone.auth_token, **self.k_creds)
152 self.reload_client = False
tierno7edb6752016-03-21 17:37:52 +0100153
tierno7edb6752016-03-21 17:37:52 +0100154 def __net_os2mano(self, net_list_dict):
155 '''Transform the net openstack format to mano format
156 net_list_dict can be a list of dict or a single dict'''
157 if type(net_list_dict) is dict:
158 net_list_=(net_list_dict,)
159 elif type(net_list_dict) is list:
160 net_list_=net_list_dict
161 else:
162 raise TypeError("param net_list_dict must be a list or a dictionary")
163 for net in net_list_:
164 if net.get('provider:network_type') == "vlan":
165 net['type']='data'
166 else:
167 net['type']='bridge'
tiernoae4a8d12016-07-08 12:30:39 +0200168
169
170
171 def _format_exception(self, exception):
172 '''Transform a keystone, nova, neutron exception into a vimconn exception'''
173 if isinstance(exception, (HTTPException, gl1Exceptions.HTTPException, gl1Exceptions.CommunicationError,
174 ConnectionError, ksExceptions.ConnectionError, neExceptions.ConnectionFailed,
175 neClient.exceptions.ConnectionFailed)):
176 raise vimconn.vimconnConnectionException(type(exception).__name__ + ": " + str(exception))
177 elif isinstance(exception, (nvExceptions.ClientException, ksExceptions.ClientException,
178 neExceptions.NeutronException, nvExceptions.BadRequest)):
179 raise vimconn.vimconnUnexpectedResponse(type(exception).__name__ + ": " + str(exception))
180 elif isinstance(exception, (neExceptions.NetworkNotFoundClient, nvExceptions.NotFound)):
181 raise vimconn.vimconnNotFoundException(type(exception).__name__ + ": " + str(exception))
182 elif isinstance(exception, nvExceptions.Conflict):
183 raise vimconn.vimconnConflictException(type(exception).__name__ + ": " + str(exception))
184 else: # ()
185 raise vimconn.vimconnConnectionException(type(exception).__name__ + ": " + str(exception))
186
187 def get_tenant_list(self, filter_dict={}):
188 '''Obtain tenants of VIM
189 filter_dict can contain the following keys:
190 name: filter by tenant name
191 id: filter by tenant uuid/id
192 <other VIM specific>
193 Returns the tenant list of dictionaries: [{'name':'<name>, 'id':'<id>, ...}, ...]
194 '''
195 self.logger.debug("Getting tenant from VIM filter: '%s'", str(filter_dict))
196 try:
197 self._reload_connection()
198 tenant_class_list=self.keystone.tenants.findall(**filter_dict)
199 tenant_list=[]
200 for tenant in tenant_class_list:
201 tenant_list.append(tenant.to_dict())
202 return tenant_list
203 except (ksExceptions.ConnectionError, ksExceptions.ClientException) as e:
204 self._format_exception(e)
205
206 def new_tenant(self, tenant_name, tenant_description):
207 '''Adds a new tenant to openstack VIM. Returns the tenant identifier'''
208 self.logger.debug("Adding a new tenant name: %s", tenant_name)
209 try:
210 self._reload_connection()
211 tenant=self.keystone.tenants.create(tenant_name, tenant_description)
212 return tenant.id
213 except (ksExceptions.ConnectionError, ksExceptions.ClientException) as e:
214 self._format_exception(e)
215
216 def delete_tenant(self, tenant_id):
217 '''Delete a tenant from openstack VIM. Returns the old tenant identifier'''
218 self.logger.debug("Deleting tenant %s from VIM", tenant_id)
219 try:
220 self._reload_connection()
221 self.keystone.tenants.delete(tenant_id)
222 return tenant_id
223 except (ksExceptions.ConnectionError, ksExceptions.ClientException) as e:
224 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100225
tiernoae4a8d12016-07-08 12:30:39 +0200226 def new_network(self,net_name,net_type, shared=False, cidr=None, vlan=None):
227 '''Adds a tenant network to VIM. Returns the network identifier'''
228 self.logger.debug("Adding a new network to VIM name '%s', type '%s'", net_name, net_type)
tierno7edb6752016-03-21 17:37:52 +0100229 try:
230 self._reload_connection()
231 network_dict = {'name': net_name, 'admin_state_up': True}
232 if net_type=="data" or net_type=="ptp":
233 if self.config.get('dataplane_physical_net') == None:
tiernoae4a8d12016-07-08 12:30:39 +0200234 raise vimconn.vimconnConflictException("You must provide a 'dataplane_physical_net' at config value before creating sriov network")
tierno7edb6752016-03-21 17:37:52 +0100235 network_dict["provider:physical_network"] = self.config['dataplane_physical_net'] #"physnet_sriov" #TODO physical
236 network_dict["provider:network_type"] = "vlan"
237 if vlan!=None:
238 network_dict["provider:network_type"] = vlan
tiernoae4a8d12016-07-08 12:30:39 +0200239 network_dict["shared"]=shared
tierno7edb6752016-03-21 17:37:52 +0100240 new_net=self.neutron.create_network({'network':network_dict})
241 #print new_net
242 #create fake subnetwork
243 if not cidr:
244 cidr="192.168.111.0/24"
245 subnet={"name":net_name+"-subnet",
246 "network_id": new_net["network"]["id"],
247 "ip_version": 4,
248 "cidr": cidr
249 }
250 self.neutron.create_subnet({"subnet": subnet} )
tiernoae4a8d12016-07-08 12:30:39 +0200251 return new_net["network"]["id"]
252 except (neExceptions.ConnectionFailed, ksExceptions.ClientException, neExceptions.NeutronException) as e:
253 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100254
255 def get_network_list(self, filter_dict={}):
256 '''Obtain tenant networks of VIM
257 Filter_dict can be:
258 name: network name
259 id: network uuid
260 shared: boolean
261 tenant_id: tenant
262 admin_state_up: boolean
263 status: 'ACTIVE'
264 Returns the network list of dictionaries
265 '''
tiernoae4a8d12016-07-08 12:30:39 +0200266 self.logger.debug("Getting network from VIM filter: '%s'", str(filter_dict))
tierno7edb6752016-03-21 17:37:52 +0100267 try:
268 self._reload_connection()
269 net_dict=self.neutron.list_networks(**filter_dict)
270 net_list=net_dict["networks"]
271 self.__net_os2mano(net_list)
tiernoae4a8d12016-07-08 12:30:39 +0200272 return net_list
273 except (neExceptions.ConnectionFailed, neClient.exceptions.ConnectionFailed, ksExceptions.ClientException, neExceptions.NeutronException) as e:
274 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100275
tiernoae4a8d12016-07-08 12:30:39 +0200276 def get_network(self, net_id):
277 '''Obtain details of network from VIM
278 Returns the network information from a network id'''
279 self.logger.debug(" Getting tenant network %s from VIM", net_id)
tierno7edb6752016-03-21 17:37:52 +0100280 filter_dict={"id": net_id}
tiernoae4a8d12016-07-08 12:30:39 +0200281 net_list = self.get_network_list(filter_dict)
tierno7edb6752016-03-21 17:37:52 +0100282 if len(net_list)==0:
tiernoae4a8d12016-07-08 12:30:39 +0200283 raise vimconn.vimconnNotFoundException("Network '{}' not found".format(net_id))
tierno7edb6752016-03-21 17:37:52 +0100284 elif len(net_list)>1:
tiernoae4a8d12016-07-08 12:30:39 +0200285 raise vimconn.vimconnConflictException("Found more than one network with this criteria")
tierno7edb6752016-03-21 17:37:52 +0100286 net = net_list[0]
287 subnets=[]
288 for subnet_id in net.get("subnets", () ):
289 try:
290 subnet = self.neutron.show_subnet(subnet_id)
291 except Exception as e:
tiernoae4a8d12016-07-08 12:30:39 +0200292 self.logger.error("osconnector.get_network(): Error getting subnet %s %s" % (net_id, str(e)))
293 subnet = {"id": subnet_id, "fault": str(e)}
tierno7edb6752016-03-21 17:37:52 +0100294 subnets.append(subnet)
295 net["subnets"] = subnets
tiernoae4a8d12016-07-08 12:30:39 +0200296 return net
tierno7edb6752016-03-21 17:37:52 +0100297
tiernoae4a8d12016-07-08 12:30:39 +0200298 def delete_network(self, net_id):
299 '''Deletes a tenant network from VIM. Returns the old network identifier'''
300 self.logger.debug("Deleting network '%s' from VIM", net_id)
tierno7edb6752016-03-21 17:37:52 +0100301 try:
302 self._reload_connection()
303 #delete VM ports attached to this networks before the network
304 ports = self.neutron.list_ports(network_id=net_id)
305 for p in ports['ports']:
306 try:
307 self.neutron.delete_port(p["id"])
308 except Exception as e:
tiernoae4a8d12016-07-08 12:30:39 +0200309 self.logger.error("Error deleting port %s: %s", p["id"], str(e))
tierno7edb6752016-03-21 17:37:52 +0100310 self.neutron.delete_network(net_id)
tiernoae4a8d12016-07-08 12:30:39 +0200311 return net_id
312 except (neExceptions.ConnectionFailed, neExceptions.NetworkNotFoundClient, neExceptions.NeutronException,
313 neClient.exceptions.ConnectionFailed, ksExceptions.ClientException, neExceptions.NeutronException) as e:
314 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100315
tiernoae4a8d12016-07-08 12:30:39 +0200316 def refresh_nets_status(self, net_list):
317 '''Get the status of the networks
318 Params: the list of network identifiers
319 Returns a dictionary with:
320 net_id: #VIM id of this network
321 status: #Mandatory. Text with one of:
322 # DELETED (not found at vim)
323 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
324 # OTHER (Vim reported other status not understood)
325 # ERROR (VIM indicates an ERROR status)
326 # ACTIVE, INACTIVE, DOWN (admin down),
327 # BUILD (on building process)
328 #
329 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
330 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
331
332 '''
333 net_dict={}
334 for net_id in net_list:
335 net = {}
336 try:
337 net_vim = self.get_network(net_id)
338 if net_vim['status'] in netStatus2manoFormat:
339 net["status"] = netStatus2manoFormat[ net_vim['status'] ]
340 else:
341 net["status"] = "OTHER"
342 net["error_msg"] = "VIM status reported " + net_vim['status']
343
344 if net['status'] == "ACIVE" and not net_vim['admin_state_up']:
345 net['status'] = 'DOWN'
346 net['vim_info'] = yaml.safe_dump(net_vim)
347 if net_vim.get('fault'): #TODO
348 net['error_msg'] = str(net_vim['fault'])
349 except vimconn.vimconnNotFoundException as e:
350 self.logger.error("Exception getting net status: %s", str(e))
351 net['status'] = "DELETED"
352 net['error_msg'] = str(e)
353 except vimconn.vimconnException as e:
354 self.logger.error("Exception getting net status: %s", str(e))
355 net['status'] = "VIM_ERROR"
356 net['error_msg'] = str(e)
357 net_dict[net_id] = net
358 return net_dict
359
360 def get_flavor(self, flavor_id):
361 '''Obtain flavor details from the VIM. Returns the flavor dict details'''
362 self.logger.debug("Getting flavor '%s'", flavor_id)
tierno7edb6752016-03-21 17:37:52 +0100363 try:
364 self._reload_connection()
365 flavor = self.nova.flavors.find(id=flavor_id)
366 #TODO parse input and translate to VIM format (openmano_schemas.new_vminstance_response_schema)
tiernoae4a8d12016-07-08 12:30:39 +0200367 return flavor.to_dict()
368 except (nvExceptions.NotFound, nvExceptions.ClientException, ksExceptions.ClientException) as e:
369 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100370
tiernoae4a8d12016-07-08 12:30:39 +0200371 def new_flavor(self, flavor_data, change_name_if_used=True):
tierno7edb6752016-03-21 17:37:52 +0100372 '''Adds a tenant flavor to openstack VIM
tiernoae4a8d12016-07-08 12:30:39 +0200373 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 +0100374 Returns the flavor identifier
375 '''
tiernoae4a8d12016-07-08 12:30:39 +0200376 self.logger.debug("Adding flavor '%s'", str(flavor_data))
tierno7edb6752016-03-21 17:37:52 +0100377 retry=0
tiernoae4a8d12016-07-08 12:30:39 +0200378 max_retries=3
tierno7edb6752016-03-21 17:37:52 +0100379 name_suffix = 0
tiernoae4a8d12016-07-08 12:30:39 +0200380 name=flavor_data['name']
381 while retry<max_retries:
tierno7edb6752016-03-21 17:37:52 +0100382 retry+=1
383 try:
384 self._reload_connection()
385 if change_name_if_used:
386 #get used names
387 fl_names=[]
388 fl=self.nova.flavors.list()
389 for f in fl:
390 fl_names.append(f.name)
391 while name in fl_names:
392 name_suffix += 1
tiernoae4a8d12016-07-08 12:30:39 +0200393 name = flavor_data['name']+"-" + str(name_suffix)
tierno7edb6752016-03-21 17:37:52 +0100394
tiernoae4a8d12016-07-08 12:30:39 +0200395 ram = flavor_data.get('ram',64)
396 vcpus = flavor_data.get('vcpus',1)
tierno7edb6752016-03-21 17:37:52 +0100397 numa_properties=None
398
tiernoae4a8d12016-07-08 12:30:39 +0200399 extended = flavor_data.get("extended")
tierno7edb6752016-03-21 17:37:52 +0100400 if extended:
401 numas=extended.get("numas")
402 if numas:
403 numa_nodes = len(numas)
404 if numa_nodes > 1:
405 return -1, "Can not add flavor with more than one numa"
406 numa_properties = {"hw:numa_nodes":str(numa_nodes)}
407 numa_properties["hw:mem_page_size"] = "large"
408 numa_properties["hw:cpu_policy"] = "dedicated"
409 numa_properties["hw:numa_mempolicy"] = "strict"
410 for numa in numas:
411 #overwrite ram and vcpus
412 ram = numa['memory']*1024
413 if 'paired-threads' in numa:
414 vcpus = numa['paired-threads']*2
415 numa_properties["hw:cpu_threads_policy"] = "prefer"
416 elif 'cores' in numa:
417 vcpus = numa['cores']
418 #numa_properties["hw:cpu_threads_policy"] = "prefer"
419 elif 'threads' in numa:
420 vcpus = numa['threads']
421 numa_properties["hw:cpu_policy"] = "isolated"
422 for interface in numa.get("interfaces",() ):
423 if interface["dedicated"]=="yes":
tierno809a7802016-07-08 13:31:24 +0200424 raise vimconn.vimconnException("Passthrough interfaces are not supported for the openstack connector", http_code=vimconn.HTTP_Service_Unavailable)
tierno7edb6752016-03-21 17:37:52 +0100425 #TODO, add the key 'pci_passthrough:alias"="<label at config>:<number ifaces>"' when a way to connect it is available
426
427 #create flavor
428 new_flavor=self.nova.flavors.create(name,
429 ram,
430 vcpus,
tiernoae4a8d12016-07-08 12:30:39 +0200431 flavor_data.get('disk',1),
432 is_public=flavor_data.get('is_public', True)
tierno7edb6752016-03-21 17:37:52 +0100433 )
434 #add metadata
435 if numa_properties:
436 new_flavor.set_keys(numa_properties)
tiernoae4a8d12016-07-08 12:30:39 +0200437 return new_flavor.id
tierno7edb6752016-03-21 17:37:52 +0100438 except nvExceptions.Conflict as e:
tiernoae4a8d12016-07-08 12:30:39 +0200439 if change_name_if_used and retry < max_retries:
tierno7edb6752016-03-21 17:37:52 +0100440 continue
tiernoae4a8d12016-07-08 12:30:39 +0200441 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100442 #except nvExceptions.BadRequest as e:
443 except (ksExceptions.ClientException, nvExceptions.ClientException, ConnectionError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200444 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100445
tiernoae4a8d12016-07-08 12:30:39 +0200446 def delete_flavor(self,flavor_id):
447 '''Deletes a tenant flavor from openstack VIM. Returns the old flavor_id
tierno7edb6752016-03-21 17:37:52 +0100448 '''
tiernoae4a8d12016-07-08 12:30:39 +0200449 try:
450 self._reload_connection()
451 self.nova.flavors.delete(flavor_id)
452 return flavor_id
453 #except nvExceptions.BadRequest as e:
454 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException) as e:
455 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100456
tiernoae4a8d12016-07-08 12:30:39 +0200457 def new_image(self,image_dict):
tierno7edb6752016-03-21 17:37:52 +0100458 '''
tiernoae4a8d12016-07-08 12:30:39 +0200459 Adds a tenant image to VIM. imge_dict is a dictionary with:
460 name: name
461 disk_format: qcow2, vhd, vmdk, raw (by default), ...
462 location: path or URI
463 public: "yes" or "no"
464 metadata: metadata of the image
465 Returns the image_id
tierno7edb6752016-03-21 17:37:52 +0100466 '''
tierno7edb6752016-03-21 17:37:52 +0100467 #using version 1 of glance client
468 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 +0200469 retry=0
470 max_retries=3
471 while retry<max_retries:
tierno7edb6752016-03-21 17:37:52 +0100472 retry+=1
473 try:
474 self._reload_connection()
475 #determine format http://docs.openstack.org/developer/glance/formats.html
476 if "disk_format" in image_dict:
477 disk_format=image_dict["disk_format"]
478 else: #autodiscover base on extention
479 if image_dict['location'][-6:]==".qcow2":
480 disk_format="qcow2"
481 elif image_dict['location'][-4:]==".vhd":
482 disk_format="vhd"
483 elif image_dict['location'][-5:]==".vmdk":
484 disk_format="vmdk"
485 elif image_dict['location'][-4:]==".vdi":
486 disk_format="vdi"
487 elif image_dict['location'][-4:]==".iso":
488 disk_format="iso"
489 elif image_dict['location'][-4:]==".aki":
490 disk_format="aki"
491 elif image_dict['location'][-4:]==".ari":
492 disk_format="ari"
493 elif image_dict['location'][-4:]==".ami":
494 disk_format="ami"
495 else:
496 disk_format="raw"
tiernoae4a8d12016-07-08 12:30:39 +0200497 self.logger.debug("new_image: '%s' loading from '%s'", image_dict['name'], image_dict['location'])
tierno7edb6752016-03-21 17:37:52 +0100498 if image_dict['location'][0:4]=="http":
499 new_image = glancev1.images.create(name=image_dict['name'], is_public=image_dict.get('public',"yes")=="yes",
500 container_format="bare", location=image_dict['location'], disk_format=disk_format)
501 else: #local path
502 with open(image_dict['location']) as fimage:
503 new_image = glancev1.images.create(name=image_dict['name'], is_public=image_dict.get('public',"yes")=="yes",
504 container_format="bare", data=fimage, disk_format=disk_format)
505 #insert metadata. We cannot use 'new_image.properties.setdefault'
506 #because nova and glance are "INDEPENDENT" and we are using nova for reading metadata
507 new_image_nova=self.nova.images.find(id=new_image.id)
508 new_image_nova.metadata.setdefault('location',image_dict['location'])
509 metadata_to_load = image_dict.get('metadata')
510 if metadata_to_load:
511 for k,v in yaml.load(metadata_to_load).iteritems():
512 new_image_nova.metadata.setdefault(k,v)
tiernoae4a8d12016-07-08 12:30:39 +0200513 return new_image.id
514 except (nvExceptions.Conflict, ksExceptions.ClientException, nvExceptions.ClientException) as e:
515 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100516 except (HTTPException, gl1Exceptions.HTTPException, gl1Exceptions.CommunicationError) as e:
tiernoae4a8d12016-07-08 12:30:39 +0200517 if retry==max_retries:
518 continue
519 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100520 except IOError as e: #can not open the file
tiernoae4a8d12016-07-08 12:30:39 +0200521 raise vimconn.vimconnConnectionException(type(e).__name__ + ": " + str(e)+ " for " + image_dict['location'],
522 http_code=vimconn.HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100523
tiernoae4a8d12016-07-08 12:30:39 +0200524 def delete_image(self, image_id):
525 '''Deletes a tenant image from openstack VIM. Returns the old id
tierno7edb6752016-03-21 17:37:52 +0100526 '''
tiernoae4a8d12016-07-08 12:30:39 +0200527 try:
528 self._reload_connection()
529 self.nova.images.delete(image_id)
530 return image_id
531 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException, gl1Exceptions.CommunicationError) as e: #TODO remove
532 self._format_exception(e)
533
534 def get_image_id_from_path(self, path):
535 '''Get the image id from image path in the VIM database. Returns the image_id
536 '''
537 try:
538 self._reload_connection()
539 images = self.nova.images.list()
540 for image in images:
541 if image.metadata.get("location")==path:
542 return image.id
543 raise vimconn.vimconnNotFoundException("image with location '{}' not found".format( path))
544 except (ksExceptions.ClientException, nvExceptions.ClientException, gl1Exceptions.CommunicationError) as e:
545 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100546
tiernoae4a8d12016-07-08 12:30:39 +0200547 def new_vminstance(self,name,description,start,image_id,flavor_id,net_list):
tierno7edb6752016-03-21 17:37:52 +0100548 '''Adds a VM instance to VIM
549 Params:
550 start: indicates if VM must start or boot in pause mode. Ignored
551 image_id,flavor_id: iamge and flavor uuid
552 net_list: list of interfaces, each one is a dictionary with:
553 name:
554 net_id: network uuid to connect
555 vpci: virtual vcpi to assign, ignored because openstack lack #TODO
556 model: interface model, ignored #TODO
557 mac_address: used for SR-IOV ifaces #TODO for other types
558 use: 'data', 'bridge', 'mgmt'
559 type: 'virtual', 'PF', 'VF', 'VFnotShared'
560 vim_id: filled/added by this function
561 #TODO ip, security groups
tiernoae4a8d12016-07-08 12:30:39 +0200562 Returns the instance identifier
tierno7edb6752016-03-21 17:37:52 +0100563 '''
tiernoae4a8d12016-07-08 12:30:39 +0200564 self.logger.debug("Creating VM image '%s' flavor '%s' nics='%s'",image_id, flavor_id,str(net_list))
tierno7edb6752016-03-21 17:37:52 +0100565 try:
566 metadata=[]
567 net_list_vim=[]
568 self._reload_connection()
tiernoae4a8d12016-07-08 12:30:39 +0200569 metadata_vpci={} #For a specific neutron plugin
tierno7edb6752016-03-21 17:37:52 +0100570 for net in net_list:
571 if not net.get("net_id"): #skip non connected iface
572 continue
573 if net["type"]=="virtual":
574 net_list_vim.append({'net-id': net["net_id"]})
575 if "vpci" in net:
576 metadata_vpci[ net["net_id"] ] = [[ net["vpci"], "" ]]
577 elif net["type"]=="PF":
tiernoae4a8d12016-07-08 12:30:39 +0200578 self.logger.warn("new_vminstance: Warning, can not connect a passthrough interface ")
tierno7edb6752016-03-21 17:37:52 +0100579 #TODO insert this when openstack consider passthrough ports as openstack neutron ports
580 else: #VF
581 if "vpci" in net:
582 if "VF" not in metadata_vpci:
583 metadata_vpci["VF"]=[]
584 metadata_vpci["VF"].append([ net["vpci"], "" ])
585 port_dict={
586 "network_id": net["net_id"],
587 "name": net.get("name"),
588 "binding:vnic_type": "direct",
589 "admin_state_up": True
590 }
591 if not port_dict["name"]:
592 port_dict["name"] = name
593 if net.get("mac_address"):
594 port_dict["mac_address"]=net["mac_address"]
595 #TODO: manage having SRIOV without vlan tag
596 #if net["type"] == "VFnotShared"
597 # port_dict["vlan"]=0
598 new_port = self.neutron.create_port({"port": port_dict })
599 net["mac_adress"] = new_port["port"]["mac_address"]
600 net["vim_id"] = new_port["port"]["id"]
601 net["ip"] = new_port["port"].get("fixed_ips",[{}])[0].get("ip_address")
602 net_list_vim.append({"port-id": new_port["port"]["id"]})
603 if metadata_vpci:
604 metadata = {"pci_assignement": json.dumps(metadata_vpci)}
605
tiernoae4a8d12016-07-08 12:30:39 +0200606 self.logger.debug("name '%s' image_id '%s'flavor_id '%s' net_list_vim '%s' description '%s' metadata %s",
607 name, image_id, flavor_id, str(net_list_vim), description, str(metadata))
tierno7edb6752016-03-21 17:37:52 +0100608
609 security_groups = self.config.get('security_groups')
610 if type(security_groups) is str:
611 security_groups = ( security_groups, )
612 server = self.nova.servers.create(name, image_id, flavor_id, nics=net_list_vim, meta=metadata,
613 security_groups = security_groups,
614 availability_zone = self.config.get('availability_zone'),
615 key_name = self.config.get('keypair'),
616 ) #, description=description)
617
618
tiernoae4a8d12016-07-08 12:30:39 +0200619 #print "DONE :-)", server
tierno7edb6752016-03-21 17:37:52 +0100620
621# #TODO server.add_floating_ip("10.95.87.209")
622# #To look for a free floating_ip
623# free_floating_ip = None
624# for floating_ip in self.neutron.list_floatingips().get("floatingips", () ):
625# if not floating_ip["port_id"]:
626# free_floating_ip = floating_ip["floating_ip_address"]
627# break
628# if free_floating_ip:
629# server.add_floating_ip(free_floating_ip)
630
631
tiernoae4a8d12016-07-08 12:30:39 +0200632 return server.id
tierno7edb6752016-03-21 17:37:52 +0100633# except nvExceptions.NotFound as e:
634# error_value=-vimconn.HTTP_Not_Found
635# error_text= "vm instance %s not found" % vm_id
tiernoae4a8d12016-07-08 12:30:39 +0200636 except (ksExceptions.ClientException, nvExceptions.ClientException, ConnectionError,
637 neClient.exceptions.ConnectionFailed) as e:
638 self._format_exception(e)
639 except TypeError as e:
640 raise vimconn.vimconnException(type(e).__name__ + ": "+ str(e), http_code=vimconn.HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100641
tiernoae4a8d12016-07-08 12:30:39 +0200642 def get_vminstance(self,vm_id):
tierno7edb6752016-03-21 17:37:52 +0100643 '''Returns the VM instance information from VIM'''
tiernoae4a8d12016-07-08 12:30:39 +0200644 #self.logger.debug("Getting VM from VIM")
tierno7edb6752016-03-21 17:37:52 +0100645 try:
646 self._reload_connection()
647 server = self.nova.servers.find(id=vm_id)
648 #TODO parse input and translate to VIM format (openmano_schemas.new_vminstance_response_schema)
tiernoae4a8d12016-07-08 12:30:39 +0200649 return server.to_dict()
650 except (ksExceptions.ClientException, nvExceptions.ClientException, nvExceptions.NotFound) as e:
651 self._format_exception(e)
652
653 def get_vminstance_console(self,vm_id, console_type="vnc"):
tierno7edb6752016-03-21 17:37:52 +0100654 '''
655 Get a console for the virtual machine
656 Params:
657 vm_id: uuid of the VM
658 console_type, can be:
659 "novnc" (by default), "xvpvnc" for VNC types,
660 "rdp-html5" for RDP types, "spice-html5" for SPICE types
tiernoae4a8d12016-07-08 12:30:39 +0200661 Returns dict with the console parameters:
662 protocol: ssh, ftp, http, https, ...
663 server: usually ip address
664 port: the http, ssh, ... port
665 suffix: extra text, e.g. the http path and query string
tierno7edb6752016-03-21 17:37:52 +0100666 '''
tiernoae4a8d12016-07-08 12:30:39 +0200667 self.logger.debug("Getting VM CONSOLE from VIM")
tierno7edb6752016-03-21 17:37:52 +0100668 try:
669 self._reload_connection()
670 server = self.nova.servers.find(id=vm_id)
671 if console_type == None or console_type == "novnc":
672 console_dict = server.get_vnc_console("novnc")
673 elif console_type == "xvpvnc":
674 console_dict = server.get_vnc_console(console_type)
675 elif console_type == "rdp-html5":
676 console_dict = server.get_rdp_console(console_type)
677 elif console_type == "spice-html5":
678 console_dict = server.get_spice_console(console_type)
679 else:
tiernoae4a8d12016-07-08 12:30:39 +0200680 raise vimconn.vimconnException("console type '{}' not allowed".format(console_type), http_code=vimconn.HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100681
682 console_dict1 = console_dict.get("console")
683 if console_dict1:
684 console_url = console_dict1.get("url")
685 if console_url:
686 #parse console_url
687 protocol_index = console_url.find("//")
688 suffix_index = console_url[protocol_index+2:].find("/") + protocol_index+2
689 port_index = console_url[protocol_index+2:suffix_index].find(":") + protocol_index+2
690 if protocol_index < 0 or port_index<0 or suffix_index<0:
691 return -vimconn.HTTP_Internal_Server_Error, "Unexpected response from VIM"
692 console_dict={"protocol": console_url[0:protocol_index],
693 "server": console_url[protocol_index+2:port_index],
694 "port": console_url[port_index:suffix_index],
695 "suffix": console_url[suffix_index+1:]
696 }
697 protocol_index += 2
tiernoae4a8d12016-07-08 12:30:39 +0200698 return console_dict
699 raise vimconn.vimconnUnexpectedResponse("Unexpected response from VIM")
tierno7edb6752016-03-21 17:37:52 +0100700
tiernoae4a8d12016-07-08 12:30:39 +0200701 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException, nvExceptions.BadRequest) as e:
702 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100703
tiernoae4a8d12016-07-08 12:30:39 +0200704 def delete_vminstance(self, vm_id):
705 '''Removes a VM instance from VIM. Returns the old identifier
tierno7edb6752016-03-21 17:37:52 +0100706 '''
tiernoae4a8d12016-07-08 12:30:39 +0200707 #print "osconnector: Getting VM from VIM"
tierno7edb6752016-03-21 17:37:52 +0100708 try:
709 self._reload_connection()
710 #delete VM ports attached to this networks before the virtual machine
711 ports = self.neutron.list_ports(device_id=vm_id)
712 for p in ports['ports']:
713 try:
714 self.neutron.delete_port(p["id"])
715 except Exception as e:
tiernoae4a8d12016-07-08 12:30:39 +0200716 self.logger.error("Error deleting port: " + type(e).__name__ + ": "+ str(e))
tierno7edb6752016-03-21 17:37:52 +0100717 self.nova.servers.delete(vm_id)
tiernoae4a8d12016-07-08 12:30:39 +0200718 return vm_id
719 except (nvExceptions.NotFound, ksExceptions.ClientException, nvExceptions.ClientException) as e:
720 self._format_exception(e)
tierno7edb6752016-03-21 17:37:52 +0100721 #TODO insert exception vimconn.HTTP_Unauthorized
722 #if reaching here is because an exception
tierno7edb6752016-03-21 17:37:52 +0100723
tiernoae4a8d12016-07-08 12:30:39 +0200724 def refresh_vms_status(self, vm_list):
725 '''Get the status of the virtual machines and their interfaces/ports
726 Params: the list of VM identifiers
727 Returns a dictionary with:
728 vm_id: #VIM id of this Virtual Machine
729 status: #Mandatory. Text with one of:
730 # DELETED (not found at vim)
731 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
732 # OTHER (Vim reported other status not understood)
733 # ERROR (VIM indicates an ERROR status)
734 # ACTIVE, PAUSED, SUSPENDED, INACTIVE (not running),
735 # CREATING (on building process), ERROR
736 # ACTIVE:NoMgmtIP (Active but any of its interface has an IP address
737 #
738 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
739 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
740 interfaces:
741 - vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
742 mac_address: #Text format XX:XX:XX:XX:XX:XX
743 vim_net_id: #network id where this interface is connected
744 vim_interface_id: #interface/port VIM id
745 ip_address: #null, or text with IPv4, IPv6 address
tierno7edb6752016-03-21 17:37:52 +0100746 '''
tiernoae4a8d12016-07-08 12:30:39 +0200747 vm_dict={}
748 self.logger.debug("refresh_vms status: Getting tenant VM instance information from VIM")
749 for vm_id in vm_list:
750 vm={}
751 try:
752 vm_vim = self.get_vminstance(vm_id)
753 if vm_vim['status'] in vmStatus2manoFormat:
754 vm['status'] = vmStatus2manoFormat[ vm_vim['status'] ]
tierno7edb6752016-03-21 17:37:52 +0100755 else:
tiernoae4a8d12016-07-08 12:30:39 +0200756 vm['status'] = "OTHER"
757 vm['error_msg'] = "VIM status reported " + vm_vim['status']
758 vm['vim_info'] = yaml.safe_dump(vm_vim)
759 vm["interfaces"] = []
760 if vm_vim.get('fault'):
761 vm['error_msg'] = str(vm_vim['fault'])
762 #get interfaces
tierno7edb6752016-03-21 17:37:52 +0100763 try:
tiernoae4a8d12016-07-08 12:30:39 +0200764 self._reload_connection()
765 port_dict=self.neutron.list_ports(device_id=vm_id)
766 for port in port_dict["ports"]:
767 interface={}
768 interface['vim_info'] = yaml.safe_dump(port)
769 interface["mac_address"] = port.get("mac_address")
770 interface["vim_net_id"] = port["network_id"]
771 interface["vim_interface_id"] = port["id"]
772 ips=[]
773 #look for floating ip address
774 floating_ip_dict = self.neutron.list_floatingips(port_id=port["id"])
775 if floating_ip_dict.get("floatingips"):
776 ips.append(floating_ip_dict["floatingips"][0].get("floating_ip_address") )
tierno7edb6752016-03-21 17:37:52 +0100777
tiernoae4a8d12016-07-08 12:30:39 +0200778 for subnet in port["fixed_ips"]:
779 ips.append(subnet["ip_address"])
780 interface["ip_address"] = ";".join(ips)
781 vm["interfaces"].append(interface)
782 except Exception as e:
783 self.logger.error("Error getting vm interface information " + type(e).__name__ + ": "+ str(e))
784 except vimconn.vimconnNotFoundException as e:
785 self.logger.error("Exception getting vm status: %s", str(e))
786 vm['status'] = "DELETED"
787 vm['error_msg'] = str(e)
788 except vimconn.vimconnException as e:
789 self.logger.error("Exception getting vm status: %s", str(e))
790 vm['status'] = "VIM_ERROR"
791 vm['error_msg'] = str(e)
792 vm_dict[vm_id] = vm
793 return vm_dict
tierno7edb6752016-03-21 17:37:52 +0100794
tiernoae4a8d12016-07-08 12:30:39 +0200795 def action_vminstance(self, vm_id, action_dict):
tierno7edb6752016-03-21 17:37:52 +0100796 '''Send and action over a VM instance from VIM
tiernoae4a8d12016-07-08 12:30:39 +0200797 Returns the vm_id if the action was successfully sent to the VIM'''
798 self.logger.debug("Action over VM '%s': %s", vm_id, str(action_dict))
tierno7edb6752016-03-21 17:37:52 +0100799 try:
800 self._reload_connection()
801 server = self.nova.servers.find(id=vm_id)
802 if "start" in action_dict:
803 if action_dict["start"]=="rebuild":
804 server.rebuild()
805 else:
806 if server.status=="PAUSED":
807 server.unpause()
808 elif server.status=="SUSPENDED":
809 server.resume()
810 elif server.status=="SHUTOFF":
811 server.start()
812 elif "pause" in action_dict:
813 server.pause()
814 elif "resume" in action_dict:
815 server.resume()
816 elif "shutoff" in action_dict or "shutdown" in action_dict:
817 server.stop()
818 elif "forceOff" in action_dict:
819 server.stop() #TODO
820 elif "terminate" in action_dict:
821 server.delete()
822 elif "createImage" in action_dict:
823 server.create_image()
824 #"path":path_schema,
825 #"description":description_schema,
826 #"name":name_schema,
827 #"metadata":metadata_schema,
828 #"imageRef": id_schema,
829 #"disk": {"oneOf":[{"type": "null"}, {"type":"string"}] },
830 elif "rebuild" in action_dict:
831 server.rebuild(server.image['id'])
832 elif "reboot" in action_dict:
833 server.reboot() #reboot_type='SOFT'
834 elif "console" in action_dict:
835 console_type = action_dict["console"]
836 if console_type == None or console_type == "novnc":
837 console_dict = server.get_vnc_console("novnc")
838 elif console_type == "xvpvnc":
839 console_dict = server.get_vnc_console(console_type)
840 elif console_type == "rdp-html5":
841 console_dict = server.get_rdp_console(console_type)
842 elif console_type == "spice-html5":
843 console_dict = server.get_spice_console(console_type)
844 else:
tiernoae4a8d12016-07-08 12:30:39 +0200845 raise vimconn.vimconnException("console type '{}' not allowed".format(console_type),
846 http_code=vimconn.HTTP_Bad_Request)
tierno7edb6752016-03-21 17:37:52 +0100847 try:
848 console_url = console_dict["console"]["url"]
849 #parse console_url
850 protocol_index = console_url.find("//")
851 suffix_index = console_url[protocol_index+2:].find("/") + protocol_index+2
852 port_index = console_url[protocol_index+2:suffix_index].find(":") + protocol_index+2
853 if protocol_index < 0 or port_index<0 or suffix_index<0:
tiernoae4a8d12016-07-08 12:30:39 +0200854 raise vimconn.vimconnException("Unexpected response from VIM " + str(console_dict))
tierno7edb6752016-03-21 17:37:52 +0100855 console_dict2={"protocol": console_url[0:protocol_index],
856 "server": console_url[protocol_index+2 : port_index],
857 "port": int(console_url[port_index+1 : suffix_index]),
858 "suffix": console_url[suffix_index+1:]
859 }
tiernoae4a8d12016-07-08 12:30:39 +0200860 return console_dict2
861 except Exception as e:
862 raise vimconn.vimconnException("Unexpected response from VIM " + str(console_dict))
tierno7edb6752016-03-21 17:37:52 +0100863
tiernoae4a8d12016-07-08 12:30:39 +0200864 return vm_id
865 except (ksExceptions.ClientException, nvExceptions.ClientException, nvExceptions.NotFound) as e:
866 self._format_exception(e)
867 #TODO insert exception vimconn.HTTP_Unauthorized
868
869#NOT USED FUNCTIONS
870
871 def new_external_port(self, port_data):
872 #TODO openstack if needed
873 '''Adds a external port to VIM'''
874 '''Returns the port identifier'''
875 return -vimconn.HTTP_Internal_Server_Error, "osconnector.new_external_port() not implemented"
876
877 def connect_port_network(self, port_id, network_id, admin=False):
878 #TODO openstack if needed
879 '''Connects a external port to a network'''
880 '''Returns status code of the VIM response'''
881 return -vimconn.HTTP_Internal_Server_Error, "osconnector.connect_port_network() not implemented"
882
883 def new_user(self, user_name, user_passwd, tenant_id=None):
884 '''Adds a new user to openstack VIM'''
885 '''Returns the user identifier'''
886 self.logger.debug("osconnector: Adding a new user to VIM")
887 try:
888 self._reload_connection()
889 user=self.keystone.users.create(user_name, user_passwd, tenant_id=tenant_id)
890 #self.keystone.tenants.add_user(self.k_creds["username"], #role)
891 return user.id
892 except ksExceptions.ConnectionError as e:
893 error_value=-vimconn.HTTP_Bad_Request
894 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
895 except ksExceptions.ClientException as e: #TODO remove
tierno7edb6752016-03-21 17:37:52 +0100896 error_value=-vimconn.HTTP_Bad_Request
897 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
898 #TODO insert exception vimconn.HTTP_Unauthorized
899 #if reaching here is because an exception
900 if self.debug:
tiernoae4a8d12016-07-08 12:30:39 +0200901 self.logger.debug("new_user " + error_text)
tierno7edb6752016-03-21 17:37:52 +0100902 return error_value, error_text
tiernoae4a8d12016-07-08 12:30:39 +0200903
904 def delete_user(self, user_id):
905 '''Delete a user from openstack VIM'''
906 '''Returns the user identifier'''
907 if self.debug:
908 print "osconnector: Deleting a user from VIM"
909 try:
910 self._reload_connection()
911 self.keystone.users.delete(user_id)
912 return 1, user_id
913 except ksExceptions.ConnectionError as e:
914 error_value=-vimconn.HTTP_Bad_Request
915 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
916 except ksExceptions.NotFound as e:
917 error_value=-vimconn.HTTP_Not_Found
918 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
919 except ksExceptions.ClientException as e: #TODO remove
920 error_value=-vimconn.HTTP_Bad_Request
921 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
922 #TODO insert exception vimconn.HTTP_Unauthorized
923 #if reaching here is because an exception
924 if self.debug:
925 print "delete_tenant " + error_text
926 return error_value, error_text
927
tierno7edb6752016-03-21 17:37:52 +0100928 def get_hosts_info(self):
929 '''Get the information of deployed hosts
930 Returns the hosts content'''
931 if self.debug:
932 print "osconnector: Getting Host info from VIM"
933 try:
934 h_list=[]
935 self._reload_connection()
936 hypervisors = self.nova.hypervisors.list()
937 for hype in hypervisors:
938 h_list.append( hype.to_dict() )
939 return 1, {"hosts":h_list}
940 except nvExceptions.NotFound as e:
941 error_value=-vimconn.HTTP_Not_Found
942 error_text= (str(e) if len(e.args)==0 else str(e.args[0]))
943 except (ksExceptions.ClientException, nvExceptions.ClientException) as e:
944 error_value=-vimconn.HTTP_Bad_Request
945 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
946 #TODO insert exception vimconn.HTTP_Unauthorized
947 #if reaching here is because an exception
948 if self.debug:
949 print "get_hosts_info " + error_text
950 return error_value, error_text
951
952 def get_hosts(self, vim_tenant):
953 '''Get the hosts and deployed instances
954 Returns the hosts content'''
955 r, hype_dict = self.get_hosts_info()
956 if r<0:
957 return r, hype_dict
958 hypervisors = hype_dict["hosts"]
959 try:
960 servers = self.nova.servers.list()
961 for hype in hypervisors:
962 for server in servers:
963 if server.to_dict()['OS-EXT-SRV-ATTR:hypervisor_hostname']==hype['hypervisor_hostname']:
964 if 'vm' in hype:
965 hype['vm'].append(server.id)
966 else:
967 hype['vm'] = [server.id]
968 return 1, hype_dict
969 except nvExceptions.NotFound as e:
970 error_value=-vimconn.HTTP_Not_Found
971 error_text= (str(e) if len(e.args)==0 else str(e.args[0]))
972 except (ksExceptions.ClientException, nvExceptions.ClientException) as e:
973 error_value=-vimconn.HTTP_Bad_Request
974 error_text= type(e).__name__ + ": "+ (str(e) if len(e.args)==0 else str(e.args[0]))
975 #TODO insert exception vimconn.HTTP_Unauthorized
976 #if reaching here is because an exception
977 if self.debug:
978 print "get_hosts " + error_text
979 return error_value, error_text
980
tierno7edb6752016-03-21 17:37:52 +0100981